diff --git a/.gitignore b/.gitignore
index aa34b5aaf7d..89d80f05cfc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -18,6 +18,7 @@ luajit/
spec/test_results.log
spec/test_generation.log
src/luacov.stats.out
+runtime/lua/debugger.lua
# Release
manifest-updated.xml
@@ -37,3 +38,7 @@ src/Data/TimelessJewelData/*.bin
# Simplegraphic Debugging
runtime/imgui.ini
runtime/SimpleGraphic/SimpleGraphic.log
+runtime/SimpleGraphic/Screenshots
+
+.emmyrc.json
+.luarc.json
\ No newline at end of file
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 7710d132461..8a90656dc9b 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -136,6 +136,8 @@ It is recommended to use it over the built-in Lua plugins.
Please note that EmmyLua is not available for other editors based on Visual Studio Code,
such as [VSCodium](https://vscodium.com) or [Eclipse Theia](https://theia-ide.org) but can be built from source if needed.
+Another alternative on VSCode is to use [sumneko's Lua language server](https://marketplace.visualstudio.com/items?itemName=sumneko.lua) along with [actboy168's debugger](https://marketplace.visualstudio.com/items?itemName=actboy168.lua-debug). These can potentially offer more features than EmmyLua, such as conditional breakpoints.
+
### Visual Studio Code
1. Create a new Debug Configuration of type EmmyLua New Debug
@@ -168,20 +170,54 @@ such as [VSCodium](https://vscodium.com) or [Eclipse Theia](https://theia-ide.or
1. In VSCode click Start Debugging (the green icon) or press F5
1. The debugger should connect
+You might also want to use actboy168 debugger. This is possible by using for example the following launch.json configuration:
+
+```json
+{
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "🍄attach",
+ "type": "lua",
+ "request": "attach",
+ "stopOnEntry": false,
+ "address": "127.0.0.1:12306",
+ "luaVersion": "luajit",
+ },
+
+ ]
+}
+```
+
+Then, similarly to the EmmyLua example:
+
+1. Find the sub-folder that looks like `actboy168.lua-debug-x.y.z-win32-x64` in `%USERPROFILE%/.vscode/extensions`. Navigate to it and find the `debugger.lua` script under the script folder. Copy this to `runtime/lua`.
+2. Copy-paste the following code snippet into `launch:OnInit()`:
+ ```lua
+ local debugger = require("debugger"):start("127.0.0.1:12306")
+ -- debugger:event("wait") -- Uncomment this line if you want PoB to wait until the debugger is attached.
+ ```
+
#### Excluding directories from EmmyLua
Depending on the amount of system ram you have available and the amount that gets assigned to the jvm running the emmylua language server you might run into issues when trying to debug Path of building.
-Files in `/Data` `/Export` and `/TreeData` can be massive and cause the EmmyLua language server to use a significant amount of memory. Sometimes causing the language server to crash. To avoid this and speed up initialization consider adding an `.emmyrc.json` file to the `.vscode` folder in the root of the Path of building folder with the following content:
+Files in `/Data` `/Export` and `/TreeData` can be massive and cause the EmmyLua language server to use a significant amount of memory. Sometimes causing the language server to crash. To avoid this and speed up initialization consider adding an `.emmyrc.json` to the root of the Path of building folder with the following content:
```json
{
"$schema": "https://raw.githubusercontent.com/EmmyLuaLs/emmylua-analyzer-rust/refs/heads/main/crates/emmylua_code_analysis/resources/schema.json",
"runtime": {
- "version": "LuaJIT"
+ "version": "LuaJIT",
+ // this is not technically correct as LoadModule behaviour can
+ // differ from require, but it is useful for now
+ "requireLikeFunction": ["LoadModule"],
},
"workspace": {
"ignoreGlobs": [
+ "**/*_spec.lua",
+ "spec/**/*.lua",
+ "runtime/lua/sha1/lua53_ops.lua",
"**/src/Data/**/*.lua",
"**/src/TreeData/**/*.lua",
"**/src/Modules/ModParser.lua"
@@ -190,6 +226,43 @@ Files in `/Data` `/Export` and `/TreeData` can be massive and cause the EmmyLua
}
```
+This file can be customised according to what you want. It is a good idea to ignore test files as these tend to add things to the global namespace, which will look confusing, and they are designed to be run by Busted. `lua53_ops.lua` produces errors and doesn't actually get imported when using LuaJIT. It can be useful to keep the data and mod parser files, but generally this will increase the time the LSP takes to index the project on startup.
+
+### Excluding directories from Sumneko's language server
+
+If you prefer to not use EmmyLua, the following configuration works well for Sumneko's VS Code extension:
+
+```json
+{
+ "Lua.workspace.ignoreDir": [
+ ".vscode",
+ // these files add things to global that aren't there in normal
+ // operation
+ "spec/*",
+ "src/Export/*",
+ "src/HeadlessWrapper.lua",
+
+ // this has lua 5.3 code which produces errors, but doesn't actually run
+ "src/runtime/lua/sha1/*",
+ ],
+ "Lua.diagnostics.disable": ["inject-field"],
+ // disables diagnostics even when you open one of the above
+ "Lua.diagnostics.ignoredFiles": "Disable",
+ "Lua.runtime.version": "LuaJIT",
+ "Lua.workspace.preloadFileSize": 1000,
+ // this is not technically correct as LoadModule behaviour can
+ // differ from require, but it is useful for now
+ "Lua.runtime.special": {
+ "LoadModule": "require"
+ },
+ "Lua.workspace.library": [
+ "src/_SimpleGraphic.def.lua"
+ ],
+}
+```
+
+The extension will automatically skip large files from being preloaded (controlled by `Lua.workspace.preloadFileSize`), so they don't have to be excluded. The configuration file can be found by pressing Ctrl-Shift-P and selecting `Preferences: Open Workspace Settings (JSON)`. If you wish to check test files, you can remove the "ignoredFiles" option and install the busted, LuaFileSystem, and luassert LuaLS addons through `Lua: Open Addon Manager`.
+
### PyCharm Community / IntelliJ Idea Community
1. Create a new "Debug Configuration" of type "Emmy Debugger(NEW)".
diff --git a/spec/System/TestBuilds_spec.lua b/spec/System/TestBuilds_spec.lua
index 826bea70e8a..945658fc9d8 100644
--- a/spec/System/TestBuilds_spec.lua
+++ b/spec/System/TestBuilds_spec.lua
@@ -8,7 +8,7 @@ local function fetchBuilds(path, buildList)
if attr.mode == "directory" then
fetchBuilds(f, buildList)
elseif file:match("^.+(%..+)$") == ".lua" then
- buildList[file] = LoadModule(f)
+ buildList[file] = require(f)
end
end
end
diff --git a/spec/System/TestItemParse_spec.lua b/spec/System/TestItemParse_spec.lua
index 4890207ceac..88935c7d131 100644
--- a/spec/System/TestItemParse_spec.lua
+++ b/spec/System/TestItemParse_spec.lua
@@ -5,40 +5,40 @@ describe("TestItemParse", function()
end
it("Rarity", function()
- local item = new("Item", "Rarity: Normal\nCoral Ring")
+ local item = new("Item"):Item("Rarity: Normal\nCoral Ring")
assert.are.equals("NORMAL", item.rarity)
- item = new("Item", "Rarity: Magic\nCoral Ring")
+ item = new("Item"):Item("Rarity: Magic\nCoral Ring")
assert.are.equals("MAGIC", item.rarity)
- item = new("Item", "Rarity: Rare\nName\nCoral Ring")
+ item = new("Item"):Item("Rarity: Rare\nName\nCoral Ring")
assert.are.equals("RARE", item.rarity)
- item = new("Item", "Rarity: Unique\nName\nCoral Ring")
+ item = new("Item"):Item("Rarity: Unique\nName\nCoral Ring")
assert.are.equals("UNIQUE", item.rarity)
- item = new("Item", "Rarity: Unique\nName\nCoral Ring\nFoil Unique (Verdant)")
+ item = new("Item"):Item("Rarity: Unique\nName\nCoral Ring\nFoil Unique (Verdant)")
assert.are.equals("RELIC", item.rarity)
end)
it("Superior/Synthesised", function()
- local item = new("Item", raw("", "Superior Plate Vest"))
+ local item = new("Item"):Item(raw("", "Superior Plate Vest"))
assert.are.equals("Plate Vest", item.baseName)
- item = new("Item", raw("", "Synthesised Plate Vest"))
+ item = new("Item"):Item(raw("", "Synthesised Plate Vest"))
assert.are.equals("Plate Vest", item.baseName)
- item = new("Item", raw("", "Superior Synthesised Plate Vest"))
+ item = new("Item"):Item(raw("", "Superior Synthesised Plate Vest"))
assert.are.equals("Plate Vest", item.baseName)
end)
it("Two-Toned Boots", function()
- local item = new("Item", raw("", "Two-Toned Boots"))
+ local item = new("Item"):Item(raw("", "Two-Toned Boots"))
assert.are.equals("Two-Toned Boots (Armour/Energy Shield)", item.baseName)
- item = new("Item", raw("Armour: 10\nEnergy Shield: 10", "Two-Toned Boots"))
+ item = new("Item"):Item(raw("Armour: 10\nEnergy Shield: 10", "Two-Toned Boots"))
assert.are.equals("Two-Toned Boots (Armour/Energy Shield)", item.baseName)
- item = new("Item", raw("Armour: 10\nEvasion Rating: 10", "Two-Toned Boots"))
+ item = new("Item"):Item(raw("Armour: 10\nEvasion Rating: 10", "Two-Toned Boots"))
assert.are.equals("Two-Toned Boots (Armour/Evasion)", item.baseName)
- item = new("Item", raw("Evasion Rating: 10\nEnergy Shield: 10", "Two-Toned Boots"))
+ item = new("Item"):Item(raw("Evasion Rating: 10\nEnergy Shield: 10", "Two-Toned Boots"))
assert.are.equals("Two-Toned Boots (Evasion/Energy Shield)", item.baseName)
end)
it("Magic Two-Toned Boots", function()
- local item = new("Item", [[
+ local item = new("Item"):Item([[
Rarity: Magic
Stalwart Two-Toned Boots of Plunder
Armour: 100
@@ -47,7 +47,7 @@ describe("TestItemParse", function()
assert.are.equal("Two-Toned Boots (Armour/Energy Shield)", item.baseName)
assert.are.equal("Stalwart ", item.namePrefix)
assert.are.equal(" of Plunder", item.nameSuffix)
- item = new("Item", [[
+ item = new("Item"):Item([[
Rarity: Magic
Sanguine Two-Toned Boots of the Phoenix
Armour: 100
@@ -56,7 +56,7 @@ describe("TestItemParse", function()
assert.are.equal("Two-Toned Boots (Armour/Evasion)", item.baseName)
assert.are.equal("Sanguine ", item.namePrefix)
assert.are.equal(" of the Phoenix", item.nameSuffix)
- item = new("Item", [[
+ item = new("Item"):Item([[
Rarity: Magic
Stout Two-Toned Boots of the Lightning
Evasion Rating: 100
@@ -68,7 +68,7 @@ describe("TestItemParse", function()
end)
it("Title", function()
- local item = new("Item", [[
+ local item = new("Item"):Item([[
Rarity: Rare
Phoenix Paw
Iron Gauntlets
@@ -79,24 +79,24 @@ describe("TestItemParse", function()
end)
it("Unique ID", function()
- local item = new("Item", raw("Unique ID: 40f9711d5bd7ad2bcbddaf71c705607aef0eecd3dcadaafec6c0192f79b82863"))
+ local item = new("Item"):Item(raw("Unique ID: 40f9711d5bd7ad2bcbddaf71c705607aef0eecd3dcadaafec6c0192f79b82863"))
assert.are.equals("40f9711d5bd7ad2bcbddaf71c705607aef0eecd3dcadaafec6c0192f79b82863", item.uniqueID)
end)
it("Item Level", function()
- local item = new("Item", raw("Item Level: 10"))
+ local item = new("Item"):Item(raw("Item Level: 10"))
assert.are.equals(10, item.itemLevel)
end)
it("Quality", function()
- local item = new("Item", raw("Quality: 10"))
+ local item = new("Item"):Item(raw("Quality: 10"))
assert.are.equals(10, item.quality)
- item = new("Item", raw("Quality: +12% (augmented)"))
+ item = new("Item"):Item(raw("Quality: +12% (augmented)"))
assert.are.equals(12, item.quality)
end)
it("Sockets", function()
- local item = new("Item", raw("Sockets: R-G R-B-W A"))
+ local item = new("Item"):Item(raw("Sockets: R-G R-B-W A"))
assert.are.same({
{ color = "R", group = 0 },
{ color = "G", group = 0 },
@@ -108,56 +108,56 @@ describe("TestItemParse", function()
end)
it("Jewel", function()
- local item = new("Item", raw("Radius: Large\nLimited to: 2", "Cobalt Jewel"))
+ local item = new("Item"):Item(raw("Radius: Large\nLimited to: 2", "Cobalt Jewel"))
assert.are.equals("Large", item.jewelRadiusLabel)
assert.are.equals(2, item.limit)
end)
it("Variant name", function()
- local item = new("Item", raw("Variant: Pre 3.19.0\nVariant: Current"))
+ local item = new("Item"):Item(raw("Variant: Pre 3.19.0\nVariant: Current"))
assert.are.same({ "Pre 3.19.0", "Current" }, item.variantList)
end)
it("Talisman Tier", function()
- local item = new("Item", raw("Talisman Tier: 3", "Rotfeather Talisman"))
+ local item = new("Item"):Item(raw("Talisman Tier: 3", "Rotfeather Talisman"))
assert.are.equals(3, item.talismanTier)
end)
it("Defence", function()
- local item = new("Item", raw("Armour: 25"))
+ local item = new("Item"):Item(raw("Armour: 25"))
assert.are.equals(25, item.armourData.Armour)
- item = new("Item", raw("Armour: 25 (augmented)"))
+ item = new("Item"):Item(raw("Armour: 25 (augmented)"))
assert.are.equals(25, item.armourData.Armour)
- item = new("Item", raw("Evasion Rating: 35", "Shabby Jerkin"))
+ item = new("Item"):Item(raw("Evasion Rating: 35", "Shabby Jerkin"))
assert.are.equals(35, item.armourData.Evasion)
- item = new("Item", raw("Energy Shield: 15", "Simple Robe"))
+ item = new("Item"):Item(raw("Energy Shield: 15", "Simple Robe"))
assert.are.equals(15, item.armourData.EnergyShield)
- item = new("Item", raw("Ward: 180", "Runic Crown"))
+ item = new("Item"):Item(raw("Ward: 180", "Runic Crown"))
assert.are.equals(180, item.armourData.Ward)
end)
it("Defence BasePercentile", function()
- local item = new("Item", raw("ArmourBasePercentile: 0.5"))
+ local item = new("Item"):Item(raw("ArmourBasePercentile: 0.5"))
assert.are.equals(0.5, item.armourData.ArmourBasePercentile)
- item = new("Item", raw("EvasionBasePercentile: 0.6", "Shabby Jerkin"))
+ item = new("Item"):Item(raw("EvasionBasePercentile: 0.6", "Shabby Jerkin"))
assert.are.equals(0.6, item.armourData.EvasionBasePercentile)
- item = new("Item", raw("EnergyShieldBasePercentile: 0.7", "Simple Robe"))
+ item = new("Item"):Item(raw("EnergyShieldBasePercentile: 0.7", "Simple Robe"))
assert.are.equals(0.7, item.armourData.EnergyShieldBasePercentile)
- item = new("Item", raw("WardBasePercentile: 0.8", "Runic Crown"))
+ item = new("Item"):Item(raw("WardBasePercentile: 0.8", "Runic Crown"))
assert.are.equals(0.8, item.armourData.WardBasePercentile)
end)
it("Requires Level", function()
- local item = new("Item", raw("Requires Level 10"))
+ local item = new("Item"):Item(raw("Requires Level 10"))
assert.are.equals(10, item.requirements.level)
- item = new("Item", raw("Level: 10"))
+ item = new("Item"):Item(raw("Level: 10"))
assert.are.equals(10, item.requirements.level)
- item = new("Item", raw("LevelReq: 10"))
+ item = new("Item"):Item(raw("LevelReq: 10"))
assert.are.equals(10, item.requirements.level)
end)
it("Alt Variant", function()
- local item = new("Item", raw([[
+ local item = new("Item"):Item(raw([[
Has Alt Variant: true
Has Alt Variant Two: true
Has Alt Variant Three: true
@@ -184,7 +184,7 @@ describe("TestItemParse", function()
end)
it("Prefix/Suffix", function()
- local item = new("Item", raw([[
+ local item = new("Item"):Item(raw([[
Prefix: {range:0.1}IncreasedLife1
Suffix: {range:0.2}ColdResist1
]]))
@@ -195,7 +195,7 @@ describe("TestItemParse", function()
end)
it("Implicits", function()
- local item = new("Item", raw([[
+ local item = new("Item"):Item(raw([[
Implicits: 2
+8 to Strength
+10 to Intelligence
@@ -209,38 +209,38 @@ describe("TestItemParse", function()
end)
it("League", function()
- local item = new("Item", raw("League: Heist"))
+ local item = new("Item"):Item(raw("League: Heist"))
assert.are.equals("Heist", item.league)
end)
it("Source", function()
- local item = new("Item", raw("Source: No longer obtainable"))
+ local item = new("Item"):Item(raw("Source: No longer obtainable"))
assert.are.equals("No longer obtainable", item.source)
end)
it("Note", function()
- local item = new("Item", raw("Note: ~price 1 chaos"))
+ local item = new("Item"):Item(raw("Note: ~price 1 chaos"))
assert.are.equals("~price 1 chaos", item.note)
end)
it("Attribute Requirements", function()
- local item = new("Item", raw("Dex: 100"))
+ local item = new("Item"):Item(raw("Dex: 100"))
assert.are.equals(100, item.requirements.dex)
- item = new("Item", raw("Int: 101"))
+ item = new("Item"):Item(raw("Int: 101"))
assert.are.equals(101, item.requirements.int)
- item = new("Item", raw("Str: 102"))
+ item = new("Item"):Item(raw("Str: 102"))
assert.are.equals(102, item.requirements.str)
end)
it("Requires Class", function()
- local item = new("Item", raw("Requires Class Witch"))
+ local item = new("Item"):Item(raw("Requires Class Witch"))
assert.are.equals("Witch", item.classRestriction)
- item = new("Item", raw("Class:: Witch"))
+ item = new("Item"):Item(raw("Class:: Witch"))
assert.are.equals("Witch", item.classRestriction)
end)
it("Requires Class variant", function()
- local item = new("Item", raw([[
+ local item = new("Item"):Item(raw([[
Selected Variant: 2
+8 to Strength
{variant:1}Requires Class Witch
@@ -251,70 +251,70 @@ describe("TestItemParse", function()
end)
it("Influence", function()
- local item = new("Item", raw("Shaper Item"))
+ local item = new("Item"):Item(raw("Shaper Item"))
assert.truthy(item.shaper)
- item = new("Item", raw("Elder Item"))
+ item = new("Item"):Item(raw("Elder Item"))
assert.truthy(item.elder)
- item = new("Item", raw("Warlord Item"))
+ item = new("Item"):Item(raw("Warlord Item"))
assert.truthy(item.adjudicator)
- item = new("Item", raw("Hunter Item"))
+ item = new("Item"):Item(raw("Hunter Item"))
assert.truthy(item.basilisk)
- item = new("Item", raw("Crusader Item"))
+ item = new("Item"):Item(raw("Crusader Item"))
assert.truthy(item.crusader)
- item = new("Item", raw("Redeemer Item"))
+ item = new("Item"):Item(raw("Redeemer Item"))
assert.truthy(item.eyrie)
- item = new("Item", raw("Searing Exarch Item"))
+ item = new("Item"):Item(raw("Searing Exarch Item"))
assert.truthy(item.cleansing)
- item = new("Item", raw("Eater of Worlds Item"))
+ item = new("Item"):Item(raw("Eater of Worlds Item"))
assert.truthy(item.tangle)
end)
it("short flags", function()
- local item = new("Item", raw("Split"))
+ local item = new("Item"):Item(raw("Split"))
assert.truthy(item.split)
- item = new("Item", raw("Mirrored"))
+ item = new("Item"):Item(raw("Mirrored"))
assert.truthy(item.mirrored)
- item = new("Item", raw("Corrupted"))
+ item = new("Item"):Item(raw("Corrupted"))
assert.truthy(item.corrupted)
- item = new("Item", raw("Fractured Item"))
+ item = new("Item"):Item(raw("Fractured Item"))
assert.truthy(item.fractured)
- item = new("Item", raw("Synthesised Item"))
+ item = new("Item"):Item(raw("Synthesised Item"))
assert.truthy(item.synthesised)
- item = new("Item", raw("Crafted: true"))
+ item = new("Item"):Item(raw("Crafted: true"))
assert.truthy(item.crafted)
- item = new("Item", raw("Unreleased: true"))
+ item = new("Item"):Item(raw("Unreleased: true"))
assert.truthy(item.unreleased)
end)
it("long flags", function()
- local item = new("Item", raw("This item can be anointed by Cassia"))
+ local item = new("Item"):Item(raw("This item can be anointed by Cassia"))
assert.truthy(item.canBeAnointed)
- item = new("Item", raw("Can have a second Enchantment Modifier"))
+ item = new("Item"):Item(raw("Can have a second Enchantment Modifier"))
assert.truthy(item.canHaveTwoEnchants)
- item = new("Item", raw("Can have 1 additional Enchantment Modifiers"))
+ item = new("Item"):Item(raw("Can have 1 additional Enchantment Modifiers"))
assert.truthy(item.canHaveTwoEnchants)
- item = new("Item", raw("Can have 2 additional Enchantment Modifiers"))
+ item = new("Item"):Item(raw("Can have 2 additional Enchantment Modifiers"))
assert.truthy(item.canHaveTwoEnchants)
assert.truthy(item.canHaveThreeEnchants)
- item = new("Item", raw("Can have 3 additional Enchantment Modifiers"))
+ item = new("Item"):Item(raw("Can have 3 additional Enchantment Modifiers"))
assert.truthy(item.canHaveTwoEnchants)
assert.truthy(item.canHaveThreeEnchants)
assert.truthy(item.canHaveFourEnchants)
- item = new("Item", raw("Has a Crucible Passive Skill Tree with only Support Passive Skills"))
+ item = new("Item"):Item(raw("Has a Crucible Passive Skill Tree with only Support Passive Skills"))
assert.truthy(item.canHaveOnlySupportSkillsCrucibleTree)
- item = new("Item", raw("Has a Crucible Passive Skill Tree"))
+ item = new("Item"):Item(raw("Has a Crucible Passive Skill Tree"))
assert.truthy(item.canHaveShieldCrucibleTree)
- item = new("Item", raw("Has a Two Handed Sword Crucible Passive Skill Tree"))
+ item = new("Item"):Item(raw("Has a Two Handed Sword Crucible Passive Skill Tree"))
assert.truthy(item.canHaveTwoHandedSwordCrucibleTree)
end)
it("tags", function()
- local item = new("Item", raw("{tags:life,physical_damage}+8 to Strength"))
+ local item = new("Item"):Item(raw("{tags:life,physical_damage}+8 to Strength"))
assert.are.same({ "life", "physical_damage" }, item.explicitModLines[1].modTags)
end)
it("variant", function()
- local item = new("Item", raw([[
+ local item = new("Item"):Item(raw([[
Selected Variant: 2
{variant:1}+8 to Strength
{variant:2,3}+10 to Strength
@@ -326,37 +326,37 @@ describe("TestItemParse", function()
end)
it("range", function()
- local item = new("Item", raw("{range:0.8}+(8-12) to Strength"))
+ local item = new("Item"):Item(raw("{range:0.8}+(8-12) to Strength"))
assert.are.equals(0.8, item.explicitModLines[1].range)
assert.are.equals(11, item.baseModList[1].value) -- range 0.8 of (8-12) = 11
end)
it("crafted", function()
- local item = new("Item", raw("{crafted}+8 to Strength"))
+ local item = new("Item"):Item(raw("{crafted}+8 to Strength"))
assert.truthy(item.explicitModLines[1].crafted)
- item = new("Item", raw("+8 to Strength (crafted)"))
+ item = new("Item"):Item(raw("+8 to Strength (crafted)"))
assert.truthy(item.explicitModLines[1].crafted)
end)
it("crucible", function()
- local item = new("Item", raw("{crucible}+8 to Strength"))
+ local item = new("Item"):Item(raw("{crucible}+8 to Strength"))
assert.truthy(item.crucibleModLines[1].crucible)
- item = new("Item", raw("+8 to Strength (crucible)"))
+ item = new("Item"):Item(raw("+8 to Strength (crucible)"))
assert.truthy(item.crucibleModLines[1].crucible)
end)
it("custom", function()
- local item = new("Item", raw("{custom}+8 to Strength"))
+ local item = new("Item"):Item(raw("{custom}+8 to Strength"))
assert.truthy(item.explicitModLines[1].custom)
end)
it("eater", function()
- local item = new("Item", raw("{eater}+8 to Strength"))
+ local item = new("Item"):Item(raw("{eater}+8 to Strength"))
assert.truthy(item.explicitModLines[1].eater)
end)
it("enchant", function()
- local item = new("Item", raw("+8 to Strength (enchant)"))
+ local item = new("Item"):Item(raw("+8 to Strength (enchant)"))
assert.are.equals(1, #item.enchantModLines)
-- enchant also sets crafted and implicit
assert.truthy(item.enchantModLines[1].crafted)
@@ -364,36 +364,36 @@ describe("TestItemParse", function()
end)
it("exarch", function()
- local item = new("Item", raw("{exarch}+8 to Strength"))
+ local item = new("Item"):Item(raw("{exarch}+8 to Strength"))
assert.truthy(item.explicitModLines[1].exarch)
end)
it("fractured", function()
- local item = new("Item", raw("{fractured}+8 to Strength"))
+ local item = new("Item"):Item(raw("{fractured}+8 to Strength"))
assert.truthy(item.explicitModLines[1].fractured)
- item = new("Item", raw("+8 to Strength (fractured)"))
+ item = new("Item"):Item(raw("+8 to Strength (fractured)"))
assert.truthy(item.explicitModLines[1].fractured)
end)
it("implicit", function()
- local item = new("Item", raw("+8 to Strength (implicit)"))
+ local item = new("Item"):Item(raw("+8 to Strength (implicit)"))
assert.truthy(item.implicitModLines[1].implicit)
end)
it("scourge", function()
- local item = new("Item", raw("{scourge}+8 to Strength"))
+ local item = new("Item"):Item(raw("{scourge}+8 to Strength"))
assert.truthy(item.scourgeModLines[1].scourge)
- item = new("Item", raw("+8 to Strength (scourge)"))
+ item = new("Item"):Item(raw("+8 to Strength (scourge)"))
assert.truthy(item.scourgeModLines[1].scourge)
end)
it("synthesis", function()
- local item = new("Item", raw("{synthesis}+8 to Strength"))
+ local item = new("Item"):Item(raw("{synthesis}+8 to Strength"))
assert.truthy(item.explicitModLines[1].synthesis)
end)
it("multiple bases", function()
- local item = new("Item", [[
+ local item = new("Item"):Item([[
Ashcaller
Selected Variant: 3
{variant:1,2,3}Quartz Wand
@@ -405,7 +405,7 @@ describe("TestItemParse", function()
}, item.baseLines)
assert.are.equals("Quartz Wand", item.baseName)
- item = new("Item", [[
+ item = new("Item"):Item([[
Ashcaller
Selected Variant: 4
{variant:1,2,3}Quartz Wand
@@ -415,7 +415,7 @@ describe("TestItemParse", function()
end)
it("parses text without armour value then changes quality and has correct final armour", function()
- local item = new("Item", [[
+ local item = new("Item"):Item([[
Armour Gloves
Iron Gauntlets
Quality: 0
@@ -428,7 +428,7 @@ describe("TestItemParse", function()
end)
it("magic item", function()
- local item = new("Item", [[
+ local item = new("Item"):Item([[
Rarity: MAGIC
Name Prefix Iron Gauntlets -> +50 ignite chance
+50% chance to Ignite
@@ -442,13 +442,13 @@ describe("TestItemParse", function()
end)
it("Energy Blade", function()
- local item = new("Item", [[
+ local item = new("Item"):Item([[
Item Class: One Hand Swords
Rarity: Magic
Superior Energy Blade
]])
assert.are.equal("Energy Blade One Handed", item.baseName)
- item = new("Item", [[
+ item = new("Item"):Item([[
Item Class: Two Hand Swords
Rarity: Magic
Superior Energy Blade
@@ -457,7 +457,7 @@ describe("TestItemParse", function()
end)
it("Flask buff", function()
- local item = new("Item", [[
+ local item = new("Item"):Item([[
Rarity: Magic
Chemist's Granite Flask of the Opossum
]])
diff --git a/spec/System/TestItemTools_spec.lua b/spec/System/TestItemTools_spec.lua
index 40224f2627b..6f13d130dc1 100644
--- a/spec/System/TestItemTools_spec.lua
+++ b/spec/System/TestItemTools_spec.lua
@@ -48,9 +48,9 @@ describe("TestItemTools", function()
it("uses the displayed item slot for anoint comparison tooltips", function()
if not common.classes.ItemsTab then
- LoadModule("Classes/ItemsTab")
+ require("Classes.ItemsTab")
end
- local item = new("Item", [[
+ local item = new("Item"):Item([[
Rarity: Rare
Dire Thread
Cord Belt
diff --git a/spec/System/TestRadiusJewelStatDiff_spec.lua b/spec/System/TestRadiusJewelStatDiff_spec.lua
index 008fa01e547..3ba4d1eaa15 100644
--- a/spec/System/TestRadiusJewelStatDiff_spec.lua
+++ b/spec/System/TestRadiusJewelStatDiff_spec.lua
@@ -144,7 +144,7 @@ end
-- parsing path: the mod sets jewelData.radiusIndex (an annular ring index, not
-- the same as the full-circle index 3 that "Radius: Large" would produce).
local function newThreadOfHope()
- return new("Item", "Rarity: UNIQUE\n" ..
+ return new("Item"):Item("Rarity: UNIQUE\n" ..
"Thread of Hope\n" ..
"Crimson Jewel\n" ..
"Variant: Large Ring\n" ..
@@ -156,7 +156,7 @@ local function newThreadOfHope()
end
local function newCustomLeapJewel(name)
- return new("Item", "Rarity: RARE\n" ..
+ return new("Item"):Item("Rarity: RARE\n" ..
name .. "\n" ..
"Crimson Jewel\n" ..
"Radius: Variable\n" ..
@@ -166,7 +166,7 @@ local function newCustomLeapJewel(name)
end
local function newPlainJewel()
- return new("Item", "Rarity: RARE\n" ..
+ return new("Item"):Item("Rarity: RARE\n" ..
"Plain Spark\n" ..
"Crimson Jewel\n" ..
"Implicits: 0\n")
@@ -176,7 +176,7 @@ end
-- a specific keystone. The parser populates both impossibleEscapeKeystone
-- and impossibleEscapeKeystones from the "in Radius of X" mod.
local function newImpossibleEscape(keystoneName)
- return new("Item", "Rarity: UNIQUE\n" ..
+ return new("Item"):Item("Rarity: UNIQUE\n" ..
"Impossible Escape\n" ..
"Viridian Jewel\n" ..
"Radius: Small\n" ..
@@ -196,7 +196,7 @@ end
-- text are intentionally omitted; the tests exercise behavior, not the parser
-- against the full serialized form.
local function newLethalPride()
- return new("Item", "Rarity: UNIQUE\n" ..
+ return new("Item"):Item("Rarity: UNIQUE\n" ..
"Lethal Pride\n" ..
"Timeless Jewel\n" ..
"Radius: Large\n" ..
@@ -211,7 +211,7 @@ end
-- will reset the modList back to the original tree node modList.
local function simulateKaruiConquest(node)
node.conqueredBy = { id = 10000, conqueror = { id = 1, type = "karui" } }
- node.modList = new("ModList")
+ node.modList = new("ModList"):ModList()
node.modList:NewMod("Life", "BASE", 100, "Timeless Jewel")
end
@@ -220,7 +220,7 @@ local function overrideNodeWithLife(spec, node, life)
override.id = node.id
override.dn = node.dn
override.sd = { "+" .. life .. " to maximum Life" }
- override.modList = new("ModList")
+ override.modList = new("ModList"):ModList()
override.modList:NewMod("Life", "BASE", life, "Test")
spec.hashOverrides[node.id] = override
end
@@ -456,7 +456,7 @@ describe("TestRadiusJewelStatDiff", function()
local plainJewel = newPlainJewel()
build.itemsTab:AddItem(plainJewel, true)
- local tooltip = new("Tooltip")
+ local tooltip = new("Tooltip"):Tooltip()
build.itemsTab:AddItemTooltip(tooltip, plainJewel, slot)
assert.is_true(tooltipContains(tooltip, "Equipping this item in"),
@@ -515,7 +515,7 @@ describe("TestRadiusJewelStatDiff", function()
assert.are.equals(2, #targetNode.intuitiveLeapLikesAffecting,
"Allocated overlap node should still be supported by both radius jewels")
- local tooltip = new("Tooltip")
+ local tooltip = new("Tooltip"):Tooltip()
build.itemsTab:AddItemTooltip(tooltip, itemA, slotA)
assert.is_false(tooltipContainsNegativeStat(tooltip, "Total Life"),
@@ -590,7 +590,7 @@ describe("TestRadiusJewelStatDiff", function()
assert.is_true(#nodesInRadius > 0, "Should have allocated nodes in jewel radius")
simulateKaruiConquest(nodesInRadius[1])
- local tooltip = new("Tooltip")
+ local tooltip = new("Tooltip"):Tooltip()
build.itemsTab:AddItemTooltip(tooltip, item, slot)
assert.is_true(tooltipContains(tooltip, "Removing this item"),
diff --git a/spec/System/TestTradeQueryCurrency_spec.lua b/spec/System/TestTradeQueryCurrency_spec.lua
index d412af2950c..13fb6fb4cab 100644
--- a/spec/System/TestTradeQueryCurrency_spec.lua
+++ b/spec/System/TestTradeQueryCurrency_spec.lua
@@ -2,7 +2,7 @@ describe("TradeQuery Currency Conversion", function()
local mock_tradeQuery
before_each(function()
- mock_tradeQuery = new("TradeQuery", { itemsTab = {} })
+ mock_tradeQuery = new("TradeQuery"):TradeQuery({ itemsTab = {} })
end)
-- test case for commit: "Skip callback on errors to prevent incomplete conversions"
diff --git a/spec/System/TestTradeQueryGenerator_spec.lua b/spec/System/TestTradeQueryGenerator_spec.lua
index befb96a6570..b495860d637 100644
--- a/spec/System/TestTradeQueryGenerator_spec.lua
+++ b/spec/System/TestTradeQueryGenerator_spec.lua
@@ -1,5 +1,5 @@
describe("TradeQueryGenerator", function()
- local mock_queryGen = new("TradeQueryGenerator", { itemsTab = {} })
+ local mock_queryGen = new("TradeQueryGenerator"):TradeQueryGenerator({ itemsTab = {} })
describe("ProcessMod", function()
-- Pass: Mod line maps correctly to trade stat entry without error
diff --git a/spec/System/TestTradeQueryRateLimiter_spec.lua b/spec/System/TestTradeQueryRateLimiter_spec.lua
index 4542385fdf2..c1457f2be0c 100644
--- a/spec/System/TestTradeQueryRateLimiter_spec.lua
+++ b/spec/System/TestTradeQueryRateLimiter_spec.lua
@@ -3,7 +3,7 @@ describe("TradeQueryRateLimiter", function()
-- Pass: Extracts keys/values correctly
-- Fail: Nil/malformed values, indicating regex failure, breaking policy updates from API
it("parses basic headers", function()
- local limiter = new("TradeQueryRateLimiter")
+ local limiter = new("TradeQueryRateLimiter"):TradeQueryRateLimiter()
local headers = limiter:ParseHeader("X-Rate-Limit-Policy: test\nRetry-After: 5\nContent-Type: json")
assert.are.equal(headers["x-rate-limit-policy"], "test")
assert.are.equal(headers["retry-after"], "5")
@@ -15,7 +15,7 @@ describe("TradeQueryRateLimiter", function()
-- Pass: Extracts rules/limits/states accurately
-- Fail: Wrong buckets/windows, indicating parsing bug, enforcing incorrect rates
it("parses full policy", function()
- local limiter = new("TradeQueryRateLimiter")
+ local limiter = new("TradeQueryRateLimiter"):TradeQueryRateLimiter()
local header = "X-Rate-Limit-Policy: trade-search-request-limit\nX-Rate-Limit-Rules: Ip,Account\nX-Rate-Limit-Ip: 8:10:60,15:60:120\nX-Rate-Limit-Ip-State: 7:10:60,14:60:120\nX-Rate-Limit-Account: 2:5:60\nX-Rate-Limit-Account-State: 1:5:60\nRetry-After: 10"
local policies = limiter:ParsePolicy(header)
local policy = policies["trade-search-request-limit"]
@@ -30,7 +30,7 @@ describe("TradeQueryRateLimiter", function()
-- Pass: Reduces limits (e.g., 5 -> 4)
-- Fail: Unchanged limits, indicating margin ignored, risking user over-requests
it("applies margin to limits", function()
- local limiter = new("TradeQueryRateLimiter")
+ local limiter = new("TradeQueryRateLimiter"):TradeQueryRateLimiter()
limiter.limitMargin = 1
local header = "X-Rate-Limit-Policy: test\nX-Rate-Limit-Rules: Ip\nX-Rate-Limit-Ip: 5:10:60\nX-Rate-Limit-Ip-State: 4:10:60"
limiter:UpdateFromHeader(header)
@@ -42,7 +42,7 @@ describe("TradeQueryRateLimiter", function()
-- Pass: Delays past timestamp
-- Fail: Allows immediate request, indicating ignored cooldowns, causing 429 errors
it("blocks on retry-after", function()
- local limiter = new("TradeQueryRateLimiter")
+ local limiter = new("TradeQueryRateLimiter"):TradeQueryRateLimiter()
local now = os.time()
limiter.policies["test"] = {}
limiter.retryAfter["test"] = now + 10
@@ -53,7 +53,7 @@ describe("TradeQueryRateLimiter", function()
-- Pass: Calculates delay from timestamps
-- Fail: Allows request in limit, indicating state misread, over-throttling or bans
it("blocks on window limit", function()
- local limiter = new("TradeQueryRateLimiter")
+ local limiter = new("TradeQueryRateLimiter"):TradeQueryRateLimiter()
local now = os.time()
limiter.policies["test"] = { ["ip"] = { ["limits"] = { ["10"] = { ["request"] = 1, ["timeout"] = 60 } }, ["state"] = { ["10"] = { ["request"] = 1, ["timeout"] = 0 } } } }
limiter.requestHistory["test"] = { timestamps = {now - 5} }
@@ -67,7 +67,7 @@ describe("TradeQueryRateLimiter", function()
-- Pass: Removes old stamps, decrements to 1
-- Fail: Stale data persists, indicating aging bug, perpetual blocking
it("cleans up timestamps and decrements", function()
- local limiter = new("TradeQueryRateLimiter")
+ local limiter = new("TradeQueryRateLimiter"):TradeQueryRateLimiter()
limiter.policies["test"] = { ["ip"] = { ["state"] = { ["10"] = { ["request"] = 2, ["timeout"] = 0, ["decremented"] = nil } } } }
limiter.requestHistory["test"] = { timestamps = {os.time() - 15, os.time() - 5}, maxWindow=10, lastCheck=os.time() - 10 }
limiter:AgeOutRequests("test", os.time())
diff --git a/spec/System/TestTradeQueryRequests_spec.lua b/spec/System/TestTradeQueryRequests_spec.lua
index 873b5102d5b..7fc621fdb7e 100644
--- a/spec/System/TestTradeQueryRequests_spec.lua
+++ b/spec/System/TestTradeQueryRequests_spec.lua
@@ -12,7 +12,7 @@ describe("TradeQueryRequests", function()
return key
end
}
- local requests = new("TradeQueryRequests", mock_limiter)
+ local requests = new("TradeQueryRequests"):TradeQueryRequests(mock_limiter)
local function simulateRetry(requests, mock_limiter, policy, current_time)
local now = current_time
diff --git a/spec/System/TestTradeQuery_spec.lua b/spec/System/TestTradeQuery_spec.lua
index 332374a8395..222959e0219 100644
--- a/spec/System/TestTradeQuery_spec.lua
+++ b/spec/System/TestTradeQuery_spec.lua
@@ -7,7 +7,7 @@ describe("TradeQuery", function()
-- lives behind a callback we never trigger, or is already initialized
-- by the TradeQuery constructor.
local function newTradeQuery(state)
- local tq = new("TradeQuery", { itemsTab = {} })
+ local tq = new("TradeQuery"):TradeQuery({ itemsTab = {} })
tq.itemsTab.activeItemSet = {}
tq.itemsTab.slots = {}
tq.slotTables[1] = { slotName = "Ring 1" }
@@ -27,7 +27,7 @@ describe("TradeQuery", function()
-- No sorted results at all -> first guard must short-circuit.
local tq = newTradeQuery({})
local dropdown = buildRow1Dropdown(tq)
- local tooltip = new("Tooltip")
+ local tooltip = new("Tooltip"):Tooltip()
assert.has_no.errors(function()
dropdown.tooltipFunc(tooltip, "DROP", 1, nil)
@@ -46,7 +46,7 @@ describe("TradeQuery", function()
})
local dropdown = buildRow1Dropdown(tq)
tq.resultTbl[1] = {}
- local tooltip = new("Tooltip")
+ local tooltip = new("Tooltip"):Tooltip()
assert.has_no.errors(function()
dropdown.tooltipFunc(tooltip, "DROP", 1, nil)
diff --git a/src/Classes/BuildListControl.lua b/src/Classes/BuildListControl.lua
index 3f42430ce9a..d4cbff54604 100644
--- a/src/Classes/BuildListControl.lua
+++ b/src/Classes/BuildListControl.lua
@@ -6,15 +6,18 @@
local ipairs = ipairs
local s_format = string.format
-local BuildListClass = newClass("BuildListControl", "ListControl", function(self, anchor, rect, listMode)
- self.ListControl(anchor, rect, 20, "VERTICAL", false, listMode.list)
+---@class BuildListControl: ListControl
+local BuildListClass = newClass("BuildListControl", "ListControl")
+
+function BuildListClass:BuildListControl(anchor, rect, listMode)
+ self:ListControl(anchor, rect, 20, "VERTICAL", false, listMode.list)
self.listMode = listMode
- self.colList = {
- { width = function() return self:GetProperty("width") - 172 end },
+ self.colList = {
+ { width = function() return self:GetProperty("width") - 172 end },
{ },
}
self.showRowSeparators = true
- self.controls.path = new("PathControl", {"BOTTOM",self,"TOP"}, {0, -2, self.width, 24}, main.buildPath, listMode.subPath, function(subPath)
+ self.controls.path = new("PathControl"):PathControl({"BOTTOM",self,"TOP"}, {0, -2, self.width, 24}, main.buildPath, listMode.subPath, function(subPath)
listMode.subPath = subPath
listMode:BuildList()
self.selIndex = nil
@@ -41,10 +44,11 @@ local BuildListClass = newClass("BuildListControl", "ListControl", function(self
end
end
self.dragTargetList = { self.controls.path, self }
- self.controls.path.width = function ()
+ self.controls.path.width = function()
return self.width()
end
-end)
+ return self
+end
function BuildListClass:SelByFileName(selFileName)
for index, build in ipairs(self.list) do
@@ -74,8 +78,8 @@ end
function BuildListClass:RenameBuild(build, copyOnName)
local controls = { }
- controls.label = new("LabelControl", nil, {0, 20, 0, 16}, "^7Enter the new name for this "..(build.folderName and "folder:" or "build:"))
- controls.edit = new("EditControl", nil, {0, 40, 350, 20}, build.folderName or build.buildName, nil, "\\/:%*%?\"<>|%c", 100, function(buf)
+ controls.label = new("LabelControl"):LabelControl(nil, {0, 20, 0, 16}, "^7Enter the new name for this "..(build.folderName and "folder:" or "build:"))
+ controls.edit = new("EditControl"):EditControl(nil, {0, 40, 350, 20}, build.folderName or build.buildName, nil, "\\/:%*%?\"<>|%c", 100, function(buf)
controls.save.enabled = false
if build.folderName then
if buf:match("%S") then
@@ -97,7 +101,7 @@ function BuildListClass:RenameBuild(build, copyOnName)
end
end
end)
- controls.save = new("ButtonControl", nil, {-45, 70, 80, 20}, "Save", function()
+ controls.save = new("ButtonControl"):ButtonControl(nil, {-45, 70, 80, 20}, "Save", function()
local newBuildName = controls.edit.buf
if build.folderName then
if copyOnName then
@@ -132,7 +136,7 @@ function BuildListClass:RenameBuild(build, copyOnName)
self.listMode:SelectControl(self)
end)
controls.save.enabled = false
- controls.cancel = new("ButtonControl", nil, {45, 70, 80, 20}, "Cancel", function()
+ controls.cancel = new("ButtonControl"):ButtonControl(nil, {45, 70, 80, 20}, "Cancel", function()
main:ClosePopup()
self.listMode:SelectControl(self)
end)
diff --git a/src/Classes/ButtonControl.lua b/src/Classes/ButtonControl.lua
index a37c6fc6585..e231280f5ec 100644
--- a/src/Classes/ButtonControl.lua
+++ b/src/Classes/ButtonControl.lua
@@ -3,14 +3,18 @@
-- Class: Button Control
-- Basic button control.
--
-local ButtonClass = newClass("ButtonControl", "Control", "TooltipHost", function(self, anchor, rect, label, onClick, onHover, forceTooltip)
- self.Control(anchor, rect)
- self.TooltipHost()
+---@class ButtonControl: Control, TooltipHost
+local ButtonClass = newClass("ButtonControl", "Control", "TooltipHost")
+
+function ButtonClass:ButtonControl(anchor, rect, label, onClick, onHover, forceTooltip)
+ self:Control(anchor, rect)
+ self:TooltipHost()
self.label = label
self.onClick = onClick
self.onHover = onHover
self.forceTooltip = forceTooltip
-end)
+ return self
+end
function ButtonClass:Click()
if self:IsShown() and self:IsEnabled() then
diff --git a/src/Classes/CalcBreakdownControl.lua b/src/Classes/CalcBreakdownControl.lua
index c93ff9f84c1..47c7f48649f 100644
--- a/src/Classes/CalcBreakdownControl.lua
+++ b/src/Classes/CalcBreakdownControl.lua
@@ -13,19 +13,24 @@ local m_cos = math.cos
local m_pi = math.pi
local band = bit.band
-local CalcBreakdownClass = newClass("CalcBreakdownControl", "Control", "ControlHost", function(self, calcsTab)
- self.Control()
- self.ControlHost()
+---@class CalcBreakdownControl: Control, ControlHost
+local CalcBreakdownClass = newClass("CalcBreakdownControl", "Control", "ControlHost")
+
+function CalcBreakdownClass:CalcBreakdownControl(calcsTab)
+ self:Control()
+ self:ControlHost()
self.calcsTab = calcsTab
self.shown = false
- self.tooltip = new("Tooltip")
- self.nodeViewer = new("PassiveTreeView")
+ self.tooltip = new("Tooltip"):Tooltip()
+ self.nodeViewer = new("PassiveTreeView"):PassiveTreeView()
self.rangeGuide = NewImageHandle()
self.rangeGuide:Load("Assets/range_guide.png")
self.uiOverlay = NewImageHandle()
self.uiOverlay:Load("Assets/game_ui_small.png")
- self.controls.scrollBar = new("ScrollBarControl", {"RIGHT",self,"RIGHT"}, {-2, 0, 18, 0}, 80, "VERTICAL", true)
-end)
+ self.controls.scrollBar = new("ScrollBarControl"):ScrollBarControl({ "RIGHT", self, "RIGHT" }, { -2, 0, 18, 0 }, 80,
+ "VERTICAL", true)
+ return self
+end
function CalcBreakdownClass:IsMouseOver()
if not self:IsShown() then
diff --git a/src/Classes/CalcSectionControl.lua b/src/Classes/CalcSectionControl.lua
index 75be52c567e..d5407bad437 100644
--- a/src/Classes/CalcSectionControl.lua
+++ b/src/Classes/CalcSectionControl.lua
@@ -5,9 +5,12 @@
--
local t_insert = table.insert
-local CalcSectionClass = newClass("CalcSectionControl", "Control", "ControlHost", function(self, calcsTab, width, id, group, colour, subSection, updateFunc)
- self.Control(calcsTab, {0, 0, width, 0})
- self.ControlHost()
+---@class CalcSectionControl: Control, ControlHost
+local CalcSectionClass = newClass("CalcSectionControl", "Control", "ControlHost")
+
+function CalcSectionClass:CalcSectionControl(calcsTab, width, id, group, colour, subSection, updateFunc)
+ self:Control(calcsTab, {0, 0, width, 0})
+ self:ControlHost()
self.calcsTab = calcsTab
self.id = id
self.group = group
@@ -33,7 +36,7 @@ local CalcSectionClass = newClass("CalcSectionControl", "Control", "ControlHost"
end
end
subSec.collapsed = subSec.defaultCollapsed
- self.controls["toggle"..i] = new("ButtonControl", {"TOPRIGHT",self,"TOPRIGHT"}, {-3, -13 + (16 * i), 16, 16}, function()
+ self.controls["toggle"..i] = new("ButtonControl"):ButtonControl({"TOPRIGHT",self,"TOPRIGHT"}, {-3, -13 + (16 * i), 16, 16}, function()
return subSec.collapsed and "+" or "-"
end, function()
subSec.collapsed = not subSec.collapsed
@@ -52,7 +55,8 @@ local CalcSectionClass = newClass("CalcSectionControl", "Control", "ControlHost"
self.shown = function()
return self.enabled
end
-end)
+ return self
+end
function CalcSectionClass:IsMouseOver()
if not self:IsShown() then
diff --git a/src/Classes/CalcsTab.lua b/src/Classes/CalcsTab.lua
index 690103ba096..5c4bb356a98 100644
--- a/src/Classes/CalcsTab.lua
+++ b/src/Classes/CalcsTab.lua
@@ -16,14 +16,18 @@ local buffModeDropList = {
{ label = "Effective DPS", buffMode = "EFFECTIVE" }
}
-local CalcsTabClass = newClass("CalcsTab", "UndoHandler", "ControlHost", "Control", function(self, build)
- self.UndoHandler()
- self.ControlHost()
- self.Control()
+---@class CalcsTab: UndoHandler, ControlHost, Control
+local CalcsTabClass = newClass("CalcsTab", "UndoHandler", "ControlHost", "Control")
+
+---@param build Build
+function CalcsTabClass:CalcsTab(build)
+ self:UndoHandler()
+ self:ControlHost()
+ self:Control()
self.build = build
- self.calcs = LoadModule("Modules/Calcs")
+ self.calcs = require("Modules.Calcs")
self.input = { }
self.input.skill_number = 1
@@ -32,13 +36,13 @@ local CalcsTabClass = newClass("CalcsTab", "UndoHandler", "ControlHost", "Contro
self.colWidth = 230
self.sectionList = { }
- self.controls.search = new("EditControl", {"TOPLEFT",self,"TOPLEFT"}, {4, 5, 260, 20}, "", "Search", "%c", 100, nil, nil, nil, true)
+ self.controls.search = new("EditControl"):EditControl({"TOPLEFT",self,"TOPLEFT"}, {4, 5, 260, 20}, "", "Search", "%c", 100, nil, nil, nil, true)
t_insert(self.controls, self.controls.search)
-- Special section for skill/mode selection
self:NewSection(3, "SkillSelect", 1, colorCodes.NORMAL, {{ defaultCollapsed = false, label = "View Skill Details", data = {
{ label = "Socket Group", { controlName = "mainSocketGroup",
- control = new("DropDownControl", nil, {0, 0, 300, 16}, nil, function(index, value)
+ control = new("DropDownControl"):DropDownControl(nil, {0, 0, 300, 16}, nil, function(index, value)
self.input.skill_number = index
self:AddUndoState()
self.build.buildFlag = true
@@ -52,14 +56,14 @@ local CalcsTabClass = newClass("CalcsTab", "UndoHandler", "ControlHost", "Contro
}
}, },
{ label = "Active Skill", { controlName = "mainSkill",
- control = new("DropDownControl", nil, {0, 0, 300, 16}, nil, function(index, value)
+ control = new("DropDownControl"):DropDownControl(nil, {0, 0, 300, 16}, nil, function(index, value)
local mainSocketGroup = self.build.skillsTab.socketGroupList[self.input.skill_number]
mainSocketGroup.mainActiveSkillCalcs = index
self.build.buildFlag = true
end)
}, },
{ label = "Skill Part", playerFlag = "multiPart", { controlName = "mainSkillPart",
- control = new("DropDownControl", nil, {0, 0, 250, 16}, nil, function(index, value)
+ control = new("DropDownControl"):DropDownControl(nil, {0, 0, 250, 16}, nil, function(index, value)
local mainSocketGroup = self.build.skillsTab.socketGroupList[self.input.skill_number]
local srcInstance = mainSocketGroup.displaySkillListCalcs[mainSocketGroup.mainActiveSkillCalcs].activeEffect.srcInstance
srcInstance.skillPartCalcs = index
@@ -67,7 +71,7 @@ local CalcsTabClass = newClass("CalcsTab", "UndoHandler", "ControlHost", "Contro
self.build.buildFlag = true
end)
}, },{ label = "Skill Stages", playerFlag = "multiStage", { controlName = "mainSkillStageCount",
- control = new("EditControl", nil, {0, 0, 52, 16}, nil, nil, "%D", nil, function(buf)
+ control = new("EditControl"):EditControl(nil, {0, 0, 52, 16}, nil, nil, "%D", nil, function(buf)
local mainSocketGroup = self.build.skillsTab.socketGroupList[self.input.skill_number]
local srcInstance = mainSocketGroup.displaySkillListCalcs[mainSocketGroup.mainActiveSkillCalcs].activeEffect.srcInstance
srcInstance.skillStageCountCalcs = tonumber(buf)
@@ -76,7 +80,7 @@ local CalcsTabClass = newClass("CalcsTab", "UndoHandler", "ControlHost", "Contro
end)
}, },
{ label = "Active Mines", playerFlag = "mine", { controlName = "mainSkillMineCount",
- control = new("EditControl", nil, {0, 0, 52, 16}, nil, nil, "%D", nil, function(buf)
+ control = new("EditControl"):EditControl(nil, {0, 0, 52, 16}, nil, nil, "%D", nil, function(buf)
local mainSocketGroup = self.build.skillsTab.socketGroupList[self.input.skill_number]
local srcInstance = mainSocketGroup.displaySkillListCalcs[mainSocketGroup.mainActiveSkillCalcs].activeEffect.srcInstance
srcInstance.skillMineCountCalcs = tonumber(buf)
@@ -85,13 +89,13 @@ local CalcsTabClass = newClass("CalcsTab", "UndoHandler", "ControlHost", "Contro
end)
}, },
{ label = "Show Minion Stats", flag = "haveMinion", { controlName = "showMinion",
- control = new("CheckBoxControl", nil, {0, 0, 18}, nil, function(state)
+ control = new("CheckBoxControl"):CheckBoxControl(nil, {0, 0, 18}, nil, function(state)
self.input.showMinion = state
self:AddUndoState()
end, "Show stats for the minion instead of the player.")
}, },
{ label = "Minion", flag = "minion", { controlName = "mainSkillMinion",
- control = new("DropDownControl", nil, {0, 0, 160, 16}, nil, function(index, value)
+ control = new("DropDownControl"):DropDownControl(nil, {0, 0, 160, 16}, nil, function(index, value)
local mainSocketGroup = self.build.skillsTab.socketGroupList[self.input.skill_number]
local srcInstance = mainSocketGroup.displaySkillListCalcs[mainSocketGroup.mainActiveSkillCalcs].activeEffect.srcInstance
if value.itemSetId then
@@ -104,12 +108,12 @@ local CalcsTabClass = newClass("CalcsTab", "UndoHandler", "ControlHost", "Contro
end)
} },
{ label = "Spectre Library", flag = "spectre", { controlName = "mainSkillMinionLibrary",
- control = new("ButtonControl", nil, {0, 0, 100, 16}, "Manage Spectres...", function()
+ control = new("ButtonControl"):ButtonControl(nil, {0, 0, 100, 16}, "Manage Spectres...", function()
self.build:OpenSpectreLibrary()
end)
} },
{ label = "Minion Skill", flag = "haveMinion", { controlName = "mainSkillMinionSkill",
- control = new("DropDownControl", nil, {0, 0, 200, 16}, nil, function(index, value)
+ control = new("DropDownControl"):DropDownControl(nil, {0, 0, 200, 16}, nil, function(index, value)
local mainSocketGroup = self.build.skillsTab.socketGroupList[self.input.skill_number]
local srcInstance = mainSocketGroup.displaySkillListCalcs[mainSocketGroup.mainActiveSkillCalcs].activeEffect.srcInstance
srcInstance.skillMinionSkillCalcs = index
@@ -119,8 +123,8 @@ local CalcsTabClass = newClass("CalcsTab", "UndoHandler", "ControlHost", "Contro
} },
{ label = "Calculation Mode", {
controlName = "mode",
- control = new("DropDownControl", nil, {0, 0, 100, 16}, buffModeDropList, function(index, value)
- self.input.misc_buffMode = value.buffMode
+ control = new("DropDownControl"):DropDownControl(nil, {0, 0, 100, 16}, buffModeDropList, function(index, value)
+ self.input.misc_buffMode = value.buffMode
self:AddUndoState()
self.build.buildFlag = true
end, [[
@@ -142,16 +146,17 @@ Effective DPS: Curses and enemy properties (such as resistances and status condi
end)
-- Add sections from the CalcSections module
- local sectionData = LoadModule("Modules/CalcSections")
+ local sectionData = require("Modules.CalcSections")
for _, section in ipairs(sectionData) do
self:NewSection(unpack(section))
end
- self.controls.breakdown = new("CalcBreakdownControl", self)
+ self.controls.breakdown = new("CalcBreakdownControl"):CalcBreakdownControl(self)
- self.controls.scrollBar = new("ScrollBarControl", {"TOPRIGHT",self,"TOPRIGHT"}, {0, 0, 18, 0}, 50, "VERTICAL", true)
+ self.controls.scrollBar = new("ScrollBarControl"):ScrollBarControl({"TOPRIGHT",self,"TOPRIGHT"}, {0, 0, 18, 0}, 50, "VERTICAL", true)
self.powerBuilderInitialized = nil
-end)
+ return self
+end
function CalcsTabClass:Load(xml, dbFileName)
for _, node in ipairs(xml) do
@@ -351,7 +356,7 @@ function CalcsTabClass:Draw(viewPort, inputEvents)
end
function CalcsTabClass:NewSection(width, ...)
- local section = new("CalcSectionControl", self, width * self.colWidth + 8 * (width - 1), ...)
+ local section = new("CalcSectionControl"):CalcSectionControl(self, width * self.colWidth + 8 * (width - 1), ...)
section.widthCols = width
t_insert(self.controls, section)
t_insert(self.sectionList, section)
diff --git a/src/Classes/CheckBoxControl.lua b/src/Classes/CheckBoxControl.lua
index 16a83030f93..1c285db5fd8 100644
--- a/src/Classes/CheckBoxControl.lua
+++ b/src/Classes/CheckBoxControl.lua
@@ -3,15 +3,19 @@
-- Class: Check Box Control
-- Basic check box control.
--
-local CheckBoxClass = newClass("CheckBoxControl", "Control", "TooltipHost", function(self, anchor, rect, label, changeFunc, tooltipText, initialState)
+---@class CheckBoxControl: Control, TooltipHost
+local CheckBoxClass = newClass("CheckBoxControl", "Control", "TooltipHost")
+
+function CheckBoxClass:CheckBoxControl(anchor, rect, label, changeFunc, tooltipText, initialState)
rect[4] = rect[3] or 0
- self.Control(anchor, rect)
- self.TooltipHost(tooltipText)
+ self:Control(anchor, rect)
+ self:TooltipHost(tooltipText)
self.label = label
self.labelWidth = DrawStringWidth(self.width - 4, "VAR", label or "") + 5
self.changeFunc = changeFunc
self.state = initialState
-end)
+ return self
+end
function CheckBoxClass:IsMouseOver()
if not self:IsShown() then
diff --git a/src/Classes/CompareBuySimilar.lua b/src/Classes/CompareBuySimilar.lua
index 698d5be9b83..a8600e3e819 100644
--- a/src/Classes/CompareBuySimilar.lua
+++ b/src/Classes/CompareBuySimilar.lua
@@ -6,7 +6,7 @@
local t_insert = table.insert
local m_floor = math.floor
local dkjson = require "dkjson"
-local tradeHelpers = LoadModule("Classes/CompareTradeHelpers")
+local tradeHelpers = require("Classes.CompareTradeHelpers")
local M = {}
@@ -31,7 +31,7 @@ end
-- Helper: create a numeric EditControl without +/- spinner buttons
local function newPlainNumericEdit(anchor, rect, init, prompt, limit)
- local ctrl = new("EditControl", anchor, rect, init, prompt, "%D", limit)
+ local ctrl = new("EditControl"):EditControl(anchor, rect, init, prompt, "%D", limit)
-- Remove the +/- spinner buttons that "%D" filter triggers
ctrl.isNumeric = false
if ctrl.controls then
@@ -246,7 +246,7 @@ function M.openPopup(item, slotName, primaryBuild)
local tradeQuery = primaryBuild.itemsTab and primaryBuild.itemsTab.tradeQuery
local tradeQueryRequests = tradeQuery and tradeQuery.tradeQueryRequests
if not tradeQueryRequests then
- tradeQueryRequests = new("TradeQueryRequests")
+ tradeQueryRequests = new("TradeQueryRequests"):TradeQueryRequests()
end
-- Helper to fetch and populate leagues for a given realm API id
@@ -277,24 +277,24 @@ function M.openPopup(item, slotName, primaryBuild)
end
-- Realm dropdown
- controls.realmLabel = new("LabelControl", {"TOPLEFT", nil, "TOPLEFT"}, {leftMargin, ctrlY, 0, 16}, "^7Realm:")
- controls.realmDrop = new("DropDownControl", {"LEFT", controls.realmLabel, "RIGHT"}, {4, 0, 80, 20}, {"PC", "PS4", "Xbox"}, function(index, value)
+ controls.realmLabel = new("LabelControl"):LabelControl({"TOPLEFT", nil, "TOPLEFT"}, {leftMargin, ctrlY, 0, 16}, "^7Realm:")
+ controls.realmDrop = new("DropDownControl"):DropDownControl({"LEFT", controls.realmLabel, "RIGHT"}, {4, 0, 80, 20}, {"PC", "PS4", "Xbox"}, function(index, value)
local realmApiId = REALM_API_IDS[value] or "pc"
fetchLeaguesForRealm(realmApiId)
end)
-- League dropdown
- controls.leagueLabel = new("LabelControl", {"LEFT", controls.realmDrop, "RIGHT"}, {12, 0, 0, 16}, "^7League:")
- controls.leagueDrop = new("DropDownControl", {"LEFT", controls.leagueLabel, "RIGHT"}, {4, 0, 160, 20}, {"Loading..."}, function(index, value)
+ controls.leagueLabel = new("LabelControl"):LabelControl({"LEFT", controls.realmDrop, "RIGHT"}, {12, 0, 0, 16}, "^7League:")
+ controls.leagueDrop = new("DropDownControl"):DropDownControl({"LEFT", controls.leagueLabel, "RIGHT"}, {4, 0, 160, 20}, {"Loading..."}, function(index, value)
-- League selection stored in the dropdown itself
end)
controls.leagueDrop.enabled = function() return #controls.leagueDrop.list > 0 and controls.leagueDrop.list[1] ~= "Loading..." end
-- Listed status dropdown
- controls.listedDrop = new("DropDownControl", {"TOPRIGHT", nil, "TOPRIGHT"}, {-leftMargin, ctrlY, 242, 20}, LISTED_STATUS_LABELS, function(index, value)
+ controls.listedDrop = new("DropDownControl"):DropDownControl({"TOPRIGHT", nil, "TOPRIGHT"}, {-leftMargin, ctrlY, 242, 20}, LISTED_STATUS_LABELS, function(index, value)
-- Listed status selection stored in the dropdown itself
end)
- controls.listedLabel = new("LabelControl", {"RIGHT", controls.listedDrop, "LEFT"}, {-4, 0, 0, 16}, "^7Listed:")
+ controls.listedLabel = new("LabelControl"):LabelControl({"RIGHT", controls.listedDrop, "LEFT"}, {-4, 0, 0, 16}, "^7Listed:")
-- Fetch initial leagues for default realm
fetchLeaguesForRealm("pc")
@@ -302,22 +302,22 @@ function M.openPopup(item, slotName, primaryBuild)
if isUnique then
-- Unique item name label
- controls.nameLabel = new("LabelControl", nil, {0, ctrlY, 0, 16}, "^x" .. (colorCodes[item.rarity] or "FFFFFF"):gsub("%^x","") .. item.name)
+ controls.nameLabel = new("LabelControl"):LabelControl(nil, {0, ctrlY, 0, 16}, "^x" .. (colorCodes[item.rarity] or "FFFFFF"):gsub("%^x","") .. item.name)
ctrlY = ctrlY + rowHeight
else
-- Category label
local categoryLabel = tradeHelpers.getTradeCategoryLabel(slotName, item)
- controls.categoryLabel = new("LabelControl", {"TOPLEFT", nil, "TOPLEFT"}, {leftMargin, ctrlY, 0, 16}, "^7Category: " .. categoryLabel)
+ controls.categoryLabel = new("LabelControl"):LabelControl({"TOPLEFT", nil, "TOPLEFT"}, {leftMargin, ctrlY, 0, 16}, "^7Category: " .. categoryLabel)
ctrlY = ctrlY + rowHeight
-- Base type checkbox
- controls.baseTypeCheck = new("CheckBoxControl", nil, {-popupWidth/2 + leftMargin + checkboxSize/2, ctrlY, checkboxSize}, "", nil, nil)
- controls.baseTypeLabel = new("LabelControl", {"LEFT", controls.baseTypeCheck, "RIGHT"}, {4, 0, 0, 16}, "^7Use specific base: " .. (item.baseName or "Unknown"))
+ controls.baseTypeCheck = new("CheckBoxControl"):CheckBoxControl(nil, {-popupWidth/2 + leftMargin + checkboxSize/2, ctrlY, checkboxSize}, "", nil, nil)
+ controls.baseTypeLabel = new("LabelControl"):LabelControl({"LEFT", controls.baseTypeCheck, "RIGHT"}, {4, 0, 0, 16}, "^7Use specific base: " .. (item.baseName or "Unknown"))
ctrlY = ctrlY + rowHeight
-- Item level
ctrlY = ctrlY + 4
- controls.ilvlLabel = new("LabelControl", {"TOPLEFT", nil, "TOPLEFT"}, {leftMargin, ctrlY, 0, 16}, "^7Item Level:")
+ controls.ilvlLabel = new("LabelControl"):LabelControl({"TOPLEFT", nil, "TOPLEFT"}, {leftMargin, ctrlY, 0, 16}, "^7Item Level:")
controls.ilvlMin = newPlainNumericEdit(nil, {minFieldX - popupWidth/2, ctrlY, fieldW, fieldH}, "", "Min", 4)
controls.ilvlMax = newPlainNumericEdit(nil, {maxFieldX - popupWidth/2, ctrlY, fieldW, fieldH}, "", "Max", 4)
ctrlY = ctrlY + rowHeight
@@ -325,8 +325,8 @@ function M.openPopup(item, slotName, primaryBuild)
-- Defence stat rows
for i, def in ipairs(defenceEntries) do
local prefix = "def" .. i
- controls[prefix .. "Check"] = new("CheckBoxControl", nil, {-popupWidth/2 + leftMargin + checkboxSize/2, ctrlY, checkboxSize}, "", nil, nil)
- controls[prefix .. "Label"] = new("LabelControl", {"LEFT", controls[prefix .. "Check"], "RIGHT"}, {4, 0, 0, 16}, "^7" .. def.label)
+ controls[prefix .. "Check"] = new("CheckBoxControl"):CheckBoxControl(nil, {-popupWidth/2 + leftMargin + checkboxSize/2, ctrlY, checkboxSize}, "", nil, nil)
+ controls[prefix .. "Label"] = new("LabelControl"):LabelControl({"LEFT", controls[prefix .. "Check"], "RIGHT"}, {4, 0, 0, 16}, "^7" .. def.label)
controls[prefix .. "Min"] = newPlainNumericEdit(nil, {minFieldX - popupWidth/2, ctrlY, fieldW, fieldH}, tostring(m_floor(def.value)), "Min", 6)
controls[prefix .. "Max"] = newPlainNumericEdit(nil, {maxFieldX - popupWidth/2, ctrlY, fieldW, fieldH}, "", "Max", 6)
ctrlY = ctrlY + rowHeight
@@ -342,14 +342,14 @@ function M.openPopup(item, slotName, primaryBuild)
for i, entry in ipairs(modEntries) do
local prefix = "mod" .. i
local canSearch = entry.tradeId ~= nil
- controls[prefix .. "Check"] = new("CheckBoxControl", nil, {-popupWidth/2 + leftMargin + checkboxSize/2, ctrlY, checkboxSize}, "", nil, nil)
+ controls[prefix .. "Check"] = new("CheckBoxControl"):CheckBoxControl(nil, {-popupWidth/2 + leftMargin + checkboxSize/2, ctrlY, checkboxSize}, "", nil, nil)
controls[prefix .. "Check"].enabled = function() return canSearch end
-- Truncate long mod text to fit
local displayText = entry.formatted
if #displayText > 45 then
displayText = displayText:sub(1, 42) .. "..."
end
- controls[prefix .. "Label"] = new("LabelControl", {"LEFT", controls[prefix .. "Check"], "RIGHT"}, {4, 0, 0, 16}, (canSearch and "^7" or "^8") .. displayText)
+ controls[prefix .. "Label"] = new("LabelControl"):LabelControl({"LEFT", controls[prefix .. "Check"], "RIGHT"}, {4, 0, 0, 16}, (canSearch and "^7" or "^8") .. displayText)
controls[prefix .. "Min"] = newPlainNumericEdit(nil, {minFieldX - popupWidth/2, ctrlY, fieldW, fieldH}, entry.value ~= 0 and tostring(m_floor(entry.value)) or "", "Min", 8)
controls[prefix .. "Max"] = newPlainNumericEdit(nil, {maxFieldX - popupWidth/2, ctrlY, fieldW, fieldH}, "", "Max", 8)
if not canSearch then
@@ -361,7 +361,7 @@ function M.openPopup(item, slotName, primaryBuild)
-- Search button
ctrlY = ctrlY + 8
- controls.search = new("ButtonControl", nil, {0, ctrlY, 110, 20}, "Generate URL", function()
+ controls.search = new("ButtonControl"):ButtonControl(nil, {0, ctrlY, 110, 20}, "Generate URL", function()
local success, result = pcall(function()
return buildURL(item, slotName, controls, modEntries, defenceEntries, isUnique)
end)
@@ -376,7 +376,7 @@ function M.openPopup(item, slotName, primaryBuild)
ctrlY = ctrlY + rowHeight + 4
-- URL field
- controls.uri = new("EditControl", nil, {-30, ctrlY, popupWidth - 100, fieldH}, "", nil, "^%C\t\n")
+ controls.uri = new("EditControl"):EditControl(nil, {-30, ctrlY, popupWidth - 100, fieldH}, "", nil, "^%C\t\n")
controls.uri:SetPlaceholder("Press 'Generate URL' then Ctrl+Click to open")
controls.uri.tooltipFunc = function(tooltip)
tooltip:Clear()
@@ -384,7 +384,7 @@ function M.openPopup(item, slotName, primaryBuild)
tooltip:AddLine(16, "^7Ctrl + Click to open in web browser")
end
end
- controls.close = new("ButtonControl", nil, {popupWidth/2 - 50, ctrlY, 60, 20}, "Close", function()
+ controls.close = new("ButtonControl"):ButtonControl(nil, {popupWidth/2 - 50, ctrlY, 60, 20}, "Close", function()
main:ClosePopup()
end)
diff --git a/src/Classes/CompareEntry.lua b/src/Classes/CompareEntry.lua
index f4e2ca55706..78416752fa5 100644
--- a/src/Classes/CompareEntry.lua
+++ b/src/Classes/CompareEntry.lua
@@ -9,8 +9,11 @@ local s_format = string.format
local m_min = math.min
local m_max = math.max
-local CompareEntryClass = newClass("CompareEntry", "ControlHost", function(self, xmlText, label)
- self.ControlHost()
+---@class CompareEntry: ControlHost
+local CompareEntryClass = newClass("CompareEntry", "ControlHost")
+
+function CompareEntryClass:CompareEntry(xmlText, label)
+ self:ControlHost()
self.label = label or "Comparison Build"
self.buildName = label or "Comparison Build"
@@ -45,13 +48,17 @@ local CompareEntryClass = newClass("CompareEntry", "ControlHost", function(self,
self.outputRevision = 1
-- Display stats (same as primary build uses)
- self.displayStats, self.minionDisplayStats, self.extraSaveStats = LoadModule("Modules/BuildDisplayStats")
+ local displayStatsModule = require("Modules.BuildDisplayStats")
+ self.displayStats = displayStatsModule.displayStats
+ self.minionDisplayStats = displayStatsModule.minionDisplayStats
+ self.extraSaveStats = displayStatsModule.extraSaveStats
-- Load from XML
if xmlText then
self:LoadFromXML(xmlText)
end
-end)
+ return self
+end
function CompareEntryClass:LoadFromXML(xmlText)
-- Parse the XML
@@ -99,14 +106,14 @@ function CompareEntryClass:LoadFromXML(xmlText)
-- Create tabs
-- PartyTab is replaced with a stub providing an empty enemyModList and actor
-- (CalcPerform.lua:1088 accesses build.partyTab.actor for party member buffs)
- local partyActor = { Aura = {}, Curse = {}, Warcry = {}, Link = {}, modDB = new("ModDB"), output = {} }
+ local partyActor = { Aura = {}, Curse = {}, Warcry = {}, Link = {}, modDB = new("ModDB"):ModDB(), output = {} }
partyActor.modDB.actor = partyActor
- self.partyTab = { enemyModList = new("ModList"), actor = partyActor }
- self.configTab = new("ConfigTab", self)
- self.itemsTab = new("ItemsTab", self)
- self.treeTab = new("TreeTab", self)
- self.skillsTab = new("SkillsTab", self)
- self.calcsTab = new("CalcsTab", self)
+ self.partyTab = { enemyModList = new("ModList"):ModList(), actor = partyActor }
+ self.configTab = new("ConfigTab"):ConfigTab(self)
+ self.itemsTab = new("ItemsTab"):ItemsTab(self)
+ self.treeTab = new("TreeTab"):TreeTab(self)
+ self.skillsTab = new("SkillsTab"):SkillsTab(self)
+ self.calcsTab = new("CalcsTab"):CalcsTab(self)
-- Set up savers table
self.savers = {
diff --git a/src/Classes/ComparePowerReportListControl.lua b/src/Classes/ComparePowerReportListControl.lua
index 00e21a2711c..49cdb507999 100644
--- a/src/Classes/ComparePowerReportListControl.lua
+++ b/src/Classes/ComparePowerReportListControl.lua
@@ -7,8 +7,11 @@
local t_insert = table.insert
local t_sort = table.sort
-local ComparePowerReportListClass = newClass("ComparePowerReportListControl", "ListControl", function(self, anchor, rect)
- self.ListControl(anchor, rect, 18, "VERTICAL", false)
+---@class ComparePowerReportListControl: ListControl
+local ComparePowerReportListClass = newClass("ComparePowerReportListControl", "ListControl")
+
+function ComparePowerReportListClass:ComparePowerReportListControl(anchor, rect)
+ self:ListControl(anchor, rect, 18, "VERTICAL", false)
local width = rect[3]
self.impactColumn = { width = width * 0.22, label = "", sortable = true }
@@ -22,7 +25,8 @@ local ComparePowerReportListClass = newClass("ComparePowerReportListControl", "L
self.colLabels = true
self.showRowSeparators = true
self.statusText = "Select a metric above to generate the power report."
-end)
+ return self
+end
function ComparePowerReportListClass:SetReport(stat, report)
self.impactColumn.label = stat and stat.label or ""
diff --git a/src/Classes/CompareTab.lua b/src/Classes/CompareTab.lua
index 24506313c6c..c7e6f9fe4ae 100644
--- a/src/Classes/CompareTab.lua
+++ b/src/Classes/CompareTab.lua
@@ -10,11 +10,11 @@ local m_max = math.max
local m_floor = math.floor
local s_format = string.format
local dkjson = require "dkjson"
-local tradeHelpers = LoadModule("Classes/CompareTradeHelpers")
-local buySimilar = LoadModule("Classes/CompareBuySimilar")
-local calcsHelpers = LoadModule("Classes/CompareCalcsHelpers")
-local buildListHelpers = LoadModule("Modules/BuildListHelpers")
-local configVisibility = LoadModule("Modules/ConfigVisibility")
+local tradeHelpers = require("Classes.CompareTradeHelpers")
+local buySimilar = require("Classes.CompareBuySimilar")
+local calcsHelpers = require("Classes.CompareCalcsHelpers")
+local buildListHelpers = require("Modules.BuildListHelpers")
+local configVisibility = require("Modules.ConfigVisibility")
-- Node IDs below this value are normal passive tree nodes; IDs at or above are cluster jewel nodes
local CLUSTER_NODE_OFFSET = 65536
@@ -122,9 +122,13 @@ local function matchFlags(reqFlags, notFlags, flags)
return true
end
-local CompareTabClass = newClass("CompareTab", "ControlHost", "Control", function(self, primaryBuild)
- self.ControlHost()
- self.Control()
+---@class CompareTab: ControlHost, Control
+local CompareTabClass = newClass("CompareTab", "ControlHost", "Control")
+
+---@param build Build
+function CompareTabClass:CompareTab(primaryBuild)
+ self:ControlHost()
+ self:Control()
self.primaryBuild = primaryBuild
@@ -155,13 +159,13 @@ local CompareTabClass = newClass("CompareTab", "ControlHost", "Control", functio
self.treeOverlayMode = true
-- Tooltip for item hover in Items view
- self.itemTooltip = new("Tooltip")
+ self.itemTooltip = new("Tooltip"):Tooltip()
-- Items expanded mode (false = compact names only, true = full item details inline)
self.itemsExpandedMode = false
-- Tooltip for calcs hover breakdown
- self.calcsTooltip = new("Tooltip")
+ self.calcsTooltip = new("Tooltip"):Tooltip()
self.calcsShowOnlyDifferences = true
-- Interactive config controls state
@@ -184,27 +188,28 @@ local CompareTabClass = newClass("CompareTab", "ControlHost", "Control", functio
self.comparePowerCompareId = nil -- track which compare entry was calculated
-- Pre-load static module data
- self.configOptions = LoadModule("Modules/ConfigOptions")
- self.calcSections = LoadModule("Modules/CalcSections")
- self.calcs = LoadModule("Modules/Calcs")
+ self.configOptions = require("Modules.ConfigOptions")
+ self.calcSections = require("Modules.CalcSections")
+ self.calcs = require("Modules.Calcs")
-- Controls for the comparison screen
self:InitControls()
-end)
+ return self
+end
function CompareTabClass:InitControls()
-- Sub-tab buttons
local subTabs = { "Summary", "Tree", "Skills", "Items", "Calcs", "Config" }
local subTabModes = { "SUMMARY", "TREE", "SKILLS", "ITEMS", "CALCS", "CONFIG" }
- self.controls.subTabAnchor = new("Control", nil, {0, 0, 0, 20})
+ self.controls.subTabAnchor = new("Control"):Control(nil, {0, 0, 0, 20})
for i, tabName in ipairs(subTabs) do
local mode = subTabModes[i]
local prevName = i > 1 and ("subTab" .. subTabs[i-1]) or "subTabAnchor"
local anchor = i == 1
and {"TOPLEFT", self.controls.subTabAnchor, "TOPLEFT"}
or {"LEFT", self.controls[prevName], "RIGHT"}
- self.controls["subTab" .. tabName] = new("ButtonControl", anchor, {i == 1 and 0 or 4, 0, 72, 20}, tabName, function()
+ self.controls["subTab" .. tabName] = new("ButtonControl"):ButtonControl(anchor, {i == 1 and 0 or 4, 0, 72, 20}, tabName, function()
-- Clear tree overlay compareSpec when leaving TREE mode
if self.compareViewMode == "TREE" and self.treeOverlayMode
and self.primaryBuild.treeTab and self.primaryBuild.treeTab.viewer then
@@ -225,8 +230,8 @@ function CompareTabClass:InitControls()
end
-- Build B selector dropdown
- self.controls.compareBuildLabel = new("LabelControl", {"TOPLEFT", self.controls.subTabAnchor, "TOPLEFT"}, {0, -88, 0, 16}, "^7Compare with:")
- self.controls.compareBuildSelect = new("DropDownControl", {"LEFT", self.controls.compareBuildLabel, "RIGHT"}, {4, 0, 250, 20}, {}, function(index, value)
+ self.controls.compareBuildLabel = new("LabelControl"):LabelControl({"TOPLEFT", self.controls.subTabAnchor, "TOPLEFT"}, {0, -88, 0, 16}, "^7Compare with:")
+ self.controls.compareBuildSelect = new("DropDownControl"):DropDownControl({"LEFT", self.controls.compareBuildLabel, "RIGHT"}, {4, 0, 250, 20}, {}, function(index, value)
if index and index > 0 and index <= #self.compareEntries then
self.activeCompareIndex = index
self.treeSearchNeedsSync = true
@@ -237,12 +242,12 @@ function CompareTabClass:InitControls()
end
-- Import button (opens import popup)
- self.controls.importBtn = new("ButtonControl", {"LEFT", self.controls.compareBuildSelect, "RIGHT"}, {8, 0, 100, 20}, "Import...", function()
+ self.controls.importBtn = new("ButtonControl"):ButtonControl({"LEFT", self.controls.compareBuildSelect, "RIGHT"}, {8, 0, 100, 20}, "Import...", function()
self:OpenImportPopup()
end)
-- Re-import current build button
- self.controls.reimportBtn = new("ButtonControl", {"LEFT", self.controls.importBtn, "RIGHT"}, {4, 0, 140, 20}, "Re-import Current", function()
+ self.controls.reimportBtn = new("ButtonControl"):ButtonControl({"LEFT", self.controls.importBtn, "RIGHT"}, {4, 0, 140, 20}, "Re-import Current", function()
self:ReimportPrimary()
end)
self.controls.reimportBtn.tooltipFunc = function(tooltip)
@@ -269,7 +274,7 @@ function CompareTabClass:InitControls()
end
-- Remove comparison build button
- self.controls.removeBtn = new("ButtonControl", {"LEFT", self.controls.reimportBtn, "RIGHT"}, {4, 0, 70, 20}, "Remove", function()
+ self.controls.removeBtn = new("ButtonControl"):ButtonControl({"LEFT", self.controls.reimportBtn, "RIGHT"}, {4, 0, 70, 20}, "Remove", function()
if self.activeCompareIndex > 0 and self.activeCompareIndex <= #self.compareEntries then
self:RemoveBuild(self.activeCompareIndex)
end
@@ -286,9 +291,9 @@ function CompareTabClass:InitControls()
end
-- Tree spec selector for comparison build
- self.controls.compareSpecLabel = new("LabelControl", {"TOPLEFT", self.controls.subTabAnchor, "TOPLEFT"}, {0, -54, 0, 16}, "^7Tree set:")
+ self.controls.compareSpecLabel = new("LabelControl"):LabelControl({"TOPLEFT", self.controls.subTabAnchor, "TOPLEFT"}, {0, -54, 0, 16}, "^7Tree set:")
self.controls.compareSpecLabel.shown = setsEnabled
- self.controls.compareSpecSelect = new("DropDownControl", {"LEFT", self.controls.compareSpecLabel, "RIGHT"}, {2, 0, 150, 20}, {}, function(index, value)
+ self.controls.compareSpecSelect = new("DropDownControl"):DropDownControl({"LEFT", self.controls.compareSpecLabel, "RIGHT"}, {2, 0, 150, 20}, {}, function(index, value)
local entry = self:GetActiveCompare()
if entry and entry.treeTab and entry.treeTab.specList[index] then
entry:SetActiveSpec(index)
@@ -303,9 +308,9 @@ function CompareTabClass:InitControls()
self.controls.compareSpecSelect.enableDroppedWidth = true
-- Skill set selector for comparison build
- self.controls.compareSkillSetLabel = new("LabelControl", {"LEFT", self.controls.compareSpecSelect, "RIGHT"}, {8, 0, 0, 16}, "^7Skill set:")
+ self.controls.compareSkillSetLabel = new("LabelControl"):LabelControl({"LEFT", self.controls.compareSpecSelect, "RIGHT"}, {8, 0, 0, 16}, "^7Skill set:")
self.controls.compareSkillSetLabel.shown = setsEnabled
- self.controls.compareSkillSetSelect = new("DropDownControl", {"LEFT", self.controls.compareSkillSetLabel, "RIGHT"}, {2, 0, 150, 20}, {}, function(index, value)
+ self.controls.compareSkillSetSelect = new("DropDownControl"):DropDownControl({"LEFT", self.controls.compareSkillSetLabel, "RIGHT"}, {2, 0, 150, 20}, {}, function(index, value)
local entry = self:GetActiveCompare()
if entry and entry.skillsTab and entry.skillsTab.skillSetOrderList[index] then
entry:SetActiveSkillSet(entry.skillsTab.skillSetOrderList[index])
@@ -313,9 +318,9 @@ function CompareTabClass:InitControls()
end)
self.controls.compareSkillSetSelect.enabled = setsEnabled
-- Item set selector for comparison build
- self.controls.compareItemSetLabel = new("LabelControl", {"LEFT", self.controls.compareSkillSetSelect, "RIGHT"}, {8, 0, 0, 16}, "^7Item set:")
+ self.controls.compareItemSetLabel = new("LabelControl"):LabelControl({"LEFT", self.controls.compareSkillSetSelect, "RIGHT"}, {8, 0, 0, 16}, "^7Item set:")
self.controls.compareItemSetLabel.shown = setsEnabled
- self.controls.compareItemSetSelect = new("DropDownControl", {"LEFT", self.controls.compareItemSetLabel, "RIGHT"}, {2, 0, 150, 20}, {}, function(index, value)
+ self.controls.compareItemSetSelect = new("DropDownControl"):DropDownControl({"LEFT", self.controls.compareItemSetLabel, "RIGHT"}, {2, 0, 150, 20}, {}, function(index, value)
local entry = self:GetActiveCompare()
if entry and entry.itemsTab and entry.itemsTab.itemSetOrderList[index] then
entry:SetActiveItemSet(entry.itemsTab.itemSetOrderList[index])
@@ -323,9 +328,9 @@ function CompareTabClass:InitControls()
end)
self.controls.compareItemSetSelect.enabled = setsEnabled
-- Config set selector for comparison build
- self.controls.compareConfigSetLabel = new("LabelControl", {"LEFT", self.controls.compareItemSetSelect, "RIGHT"}, {8, 0, 0, 16}, "^7Config set:")
+ self.controls.compareConfigSetLabel = new("LabelControl"):LabelControl({"LEFT", self.controls.compareItemSetSelect, "RIGHT"}, {8, 0, 0, 16}, "^7Config set:")
self.controls.compareConfigSetLabel.shown = setsEnabled
- self.controls.compareConfigSetSelect = new("DropDownControl", {"LEFT", self.controls.compareConfigSetLabel, "RIGHT"}, {2, 0, 150, 20}, {}, function(index, value)
+ self.controls.compareConfigSetSelect = new("DropDownControl"):DropDownControl({"LEFT", self.controls.compareConfigSetLabel, "RIGHT"}, {2, 0, 150, 20}, {}, function(index, value)
local entry = self:GetActiveCompare()
if entry and entry.configTab then
local setId = entry.configTab.configSetOrderList[index]
@@ -342,11 +347,11 @@ function CompareTabClass:InitControls()
-- ============================================================
-- Comparison build main skill selector (row between sets and sub-tabs)
-- ============================================================
- self.controls.cmpSkillLabel = new("LabelControl", {"TOPLEFT", self.controls.subTabAnchor, "TOPLEFT"}, {0, -32, 0, 16}, "^7Skill:")
+ self.controls.cmpSkillLabel = new("LabelControl"):LabelControl({"TOPLEFT", self.controls.subTabAnchor, "TOPLEFT"}, {0, -32, 0, 16}, "^7Skill:")
self.controls.cmpSkillLabel.shown = setsEnabled
-- Socket group dropdown
- self.controls.cmpSocketGroup = new("DropDownControl", {"LEFT", self.controls.cmpSkillLabel, "RIGHT"}, {4, 0, 200, 20}, {}, function(index, value)
+ self.controls.cmpSocketGroup = new("DropDownControl"):DropDownControl({"LEFT", self.controls.cmpSkillLabel, "RIGHT"}, {4, 0, 200, 20}, {}, function(index, value)
local entry = self:GetActiveCompare()
if entry then
entry:SetMainSocketGroup(index)
@@ -357,7 +362,7 @@ function CompareTabClass:InitControls()
self.controls.cmpSocketGroup.enableDroppedWidth = true
-- Active skill within group
- self.controls.cmpMainSkill = new("DropDownControl", {"LEFT", self.controls.cmpSocketGroup, "RIGHT"}, {4, 0, 225, 20}, {}, function(index, value)
+ self.controls.cmpMainSkill = new("DropDownControl"):DropDownControl({"LEFT", self.controls.cmpSocketGroup, "RIGHT"}, {4, 0, 225, 20}, {}, function(index, value)
local entry = self:GetActiveCompare()
if entry then
local mainSocketGroup = entry.skillsTab.socketGroupList[entry.mainSocketGroup]
@@ -370,7 +375,7 @@ function CompareTabClass:InitControls()
self.controls.cmpMainSkill.shown = false
-- Skill part (multi-part skills)
- self.controls.cmpSkillPart = new("DropDownControl", {"LEFT", self.controls.cmpMainSkill, "RIGHT"}, {4, 0, 200, 20}, {}, function(index, value)
+ self.controls.cmpSkillPart = new("DropDownControl"):DropDownControl({"LEFT", self.controls.cmpMainSkill, "RIGHT"}, {4, 0, 200, 20}, {}, function(index, value)
local entry = self:GetActiveCompare()
if entry then
local mainSocketGroup = entry.skillsTab.socketGroupList[entry.mainSocketGroup]
@@ -387,9 +392,9 @@ function CompareTabClass:InitControls()
self.controls.cmpSkillPart.shown = false
-- Stage count
- self.controls.cmpStageCountLabel = new("LabelControl", {"LEFT", self.controls.cmpSkillPart, "RIGHT"}, {6, 0, 0, 16}, "^7Stages:")
+ self.controls.cmpStageCountLabel = new("LabelControl"):LabelControl({"LEFT", self.controls.cmpSkillPart, "RIGHT"}, {6, 0, 0, 16}, "^7Stages:")
self.controls.cmpStageCountLabel.shown = function() return self.controls.cmpStageCount.shown end
- self.controls.cmpStageCount = new("EditControl", {"LEFT", self.controls.cmpStageCountLabel, "RIGHT"}, {4, 0, 52, 20}, "", nil, "%D", 5, function(buf)
+ self.controls.cmpStageCount = new("EditControl"):EditControl({"LEFT", self.controls.cmpStageCountLabel, "RIGHT"}, {4, 0, 52, 20}, "", nil, "%D", 5, function(buf)
local entry = self:GetActiveCompare()
if entry then
local mainSocketGroup = entry.skillsTab.socketGroupList[entry.mainSocketGroup]
@@ -406,9 +411,9 @@ function CompareTabClass:InitControls()
self.controls.cmpStageCount.shown = false
-- Mine count
- self.controls.cmpMineCountLabel = new("LabelControl", {"LEFT", self.controls.cmpStageCount, "RIGHT"}, {6, 0, 0, 16}, "^7Mines:")
+ self.controls.cmpMineCountLabel = new("LabelControl"):LabelControl({"LEFT", self.controls.cmpStageCount, "RIGHT"}, {6, 0, 0, 16}, "^7Mines:")
self.controls.cmpMineCountLabel.shown = function() return self.controls.cmpMineCount.shown end
- self.controls.cmpMineCount = new("EditControl", {"LEFT", self.controls.cmpMineCountLabel, "RIGHT"}, {4, 0, 52, 20}, "", nil, "%D", 5, function(buf)
+ self.controls.cmpMineCount = new("EditControl"):EditControl({"LEFT", self.controls.cmpMineCountLabel, "RIGHT"}, {4, 0, 52, 20}, "", nil, "%D", 5, function(buf)
local entry = self:GetActiveCompare()
if entry then
local mainSocketGroup = entry.skillsTab.socketGroupList[entry.mainSocketGroup]
@@ -425,7 +430,7 @@ function CompareTabClass:InitControls()
self.controls.cmpMineCount.shown = false
-- Minion selector
- self.controls.cmpMinion = new("DropDownControl", {"LEFT", self.controls.cmpMineCount, "RIGHT"}, {6, 0, 140, 20}, {}, function(index, value)
+ self.controls.cmpMinion = new("DropDownControl"):DropDownControl({"LEFT", self.controls.cmpMineCount, "RIGHT"}, {6, 0, 140, 20}, {}, function(index, value)
local entry = self:GetActiveCompare()
if entry then
local mainSocketGroup = entry.skillsTab.socketGroupList[entry.mainSocketGroup]
@@ -449,7 +454,7 @@ function CompareTabClass:InitControls()
self.controls.cmpMinion.shown = false
-- Minion skill selector
- self.controls.cmpMinionSkill = new("DropDownControl", {"LEFT", self.controls.cmpMinion, "RIGHT"}, {4, 0, 140, 20}, {}, function(index, value)
+ self.controls.cmpMinionSkill = new("DropDownControl"):DropDownControl({"LEFT", self.controls.cmpMinion, "RIGHT"}, {4, 0, 140, 20}, {}, function(index, value)
local entry = self:GetActiveCompare()
if entry then
local mainSocketGroup = entry.skillsTab.socketGroupList[entry.mainSocketGroup]
@@ -475,7 +480,7 @@ function CompareTabClass:InitControls()
{ label = "Effective DPS", buffMode = "EFFECTIVE" },
}
-- Primary build calcs skill controls
- self.controls.primCalcsSocketGroup = new("DropDownControl", nil, {0, 0, 200, 18}, {}, function(index, value)
+ self.controls.primCalcsSocketGroup = new("DropDownControl"):DropDownControl(nil, {0, 0, 200, 18}, {}, function(index, value)
self.primaryBuild.calcsTab.input.skill_number = index
self.primaryBuild.buildFlag = true
end)
@@ -483,7 +488,7 @@ function CompareTabClass:InitControls()
self.controls.primCalcsSocketGroup.maxDroppedWidth = 400
self.controls.primCalcsSocketGroup.enableDroppedWidth = true
- self.controls.primCalcsMainSkill = new("DropDownControl", nil, {0, 0, 200, 18}, {}, function(index, value)
+ self.controls.primCalcsMainSkill = new("DropDownControl"):DropDownControl(nil, {0, 0, 200, 18}, {}, function(index, value)
local mainSocketGroup = self.primaryBuild.skillsTab.socketGroupList[self.primaryBuild.calcsTab.input.skill_number]
if mainSocketGroup then
mainSocketGroup.mainActiveSkillCalcs = index
@@ -492,7 +497,7 @@ function CompareTabClass:InitControls()
end)
self.controls.primCalcsMainSkill.shown = false
- self.controls.primCalcsSkillPart = new("DropDownControl", nil, {0, 0, 150, 18}, {}, function(index, value)
+ self.controls.primCalcsSkillPart = new("DropDownControl"):DropDownControl(nil, {0, 0, 150, 18}, {}, function(index, value)
local mainSocketGroup = self.primaryBuild.skillsTab.socketGroupList[self.primaryBuild.calcsTab.input.skill_number]
if mainSocketGroup then
local displaySkillList = mainSocketGroup.displaySkillListCalcs
@@ -505,7 +510,7 @@ function CompareTabClass:InitControls()
end)
self.controls.primCalcsSkillPart.shown = false
- self.controls.primCalcsStageCount = new("EditControl", nil, {0, 0, 52, 18}, "", nil, "%D", 5, function(buf)
+ self.controls.primCalcsStageCount = new("EditControl"):EditControl(nil, {0, 0, 52, 18}, "", nil, "%D", 5, function(buf)
local mainSocketGroup = self.primaryBuild.skillsTab.socketGroupList[self.primaryBuild.calcsTab.input.skill_number]
if mainSocketGroup then
local displaySkillList = mainSocketGroup.displaySkillListCalcs
@@ -518,7 +523,7 @@ function CompareTabClass:InitControls()
end)
self.controls.primCalcsStageCount.shown = false
- self.controls.primCalcsMineCount = new("EditControl", nil, {0, 0, 52, 18}, "", nil, "%D", 5, function(buf)
+ self.controls.primCalcsMineCount = new("EditControl"):EditControl(nil, {0, 0, 52, 18}, "", nil, "%D", 5, function(buf)
local mainSocketGroup = self.primaryBuild.skillsTab.socketGroupList[self.primaryBuild.calcsTab.input.skill_number]
if mainSocketGroup then
local displaySkillList = mainSocketGroup.displaySkillListCalcs
@@ -531,13 +536,13 @@ function CompareTabClass:InitControls()
end)
self.controls.primCalcsMineCount.shown = false
- self.controls.primCalcsShowMinion = new("CheckBoxControl", nil, {0, 0, 18}, nil, function(state)
+ self.controls.primCalcsShowMinion = new("CheckBoxControl"):CheckBoxControl(nil, {0, 0, 18}, nil, function(state)
self.primaryBuild.calcsTab.input.showMinion = state
self.primaryBuild.buildFlag = true
end, "Show stats for the minion instead of the player.")
self.controls.primCalcsShowMinion.shown = false
- self.controls.primCalcsMinion = new("DropDownControl", nil, {0, 0, 140, 18}, {}, function(index, value)
+ self.controls.primCalcsMinion = new("DropDownControl"):DropDownControl(nil, {0, 0, 140, 18}, {}, function(index, value)
local mainSocketGroup = self.primaryBuild.skillsTab.socketGroupList[self.primaryBuild.calcsTab.input.skill_number]
if mainSocketGroup then
local displaySkillList = mainSocketGroup.displaySkillListCalcs
@@ -557,7 +562,7 @@ function CompareTabClass:InitControls()
end)
self.controls.primCalcsMinion.shown = false
- self.controls.primCalcsMinionSkill = new("DropDownControl", nil, {0, 0, 140, 18}, {}, function(index, value)
+ self.controls.primCalcsMinionSkill = new("DropDownControl"):DropDownControl(nil, {0, 0, 140, 18}, {}, function(index, value)
local mainSocketGroup = self.primaryBuild.skillsTab.socketGroupList[self.primaryBuild.calcsTab.input.skill_number]
if mainSocketGroup then
local displaySkillList = mainSocketGroup.displaySkillListCalcs
@@ -570,14 +575,14 @@ function CompareTabClass:InitControls()
end)
self.controls.primCalcsMinionSkill.shown = false
- self.controls.primCalcsMode = new("DropDownControl", nil, {0, 0, 120, 18}, calcsBuffModeDropList, function(index, value)
+ self.controls.primCalcsMode = new("DropDownControl"):DropDownControl(nil, {0, 0, 120, 18}, calcsBuffModeDropList, function(index, value)
self.primaryBuild.calcsTab.input.misc_buffMode = value.buffMode
self.primaryBuild.buildFlag = true
end)
self.controls.primCalcsMode.shown = false
-- Compare build calcs skill controls
- self.controls.cmpCalcsSocketGroup = new("DropDownControl", nil, {0, 0, 200, 18}, {}, function(index, value)
+ self.controls.cmpCalcsSocketGroup = new("DropDownControl"):DropDownControl(nil, {0, 0, 200, 18}, {}, function(index, value)
local entry = self:GetActiveCompare()
if entry then
entry.calcsTab.input.skill_number = index
@@ -588,7 +593,7 @@ function CompareTabClass:InitControls()
self.controls.cmpCalcsSocketGroup.maxDroppedWidth = 400
self.controls.cmpCalcsSocketGroup.enableDroppedWidth = true
- self.controls.cmpCalcsMainSkill = new("DropDownControl", nil, {0, 0, 200, 18}, {}, function(index, value)
+ self.controls.cmpCalcsMainSkill = new("DropDownControl"):DropDownControl(nil, {0, 0, 200, 18}, {}, function(index, value)
local entry = self:GetActiveCompare()
if entry then
local mainSocketGroup = entry.skillsTab.socketGroupList[entry.calcsTab.input.skill_number]
@@ -600,7 +605,7 @@ function CompareTabClass:InitControls()
end)
self.controls.cmpCalcsMainSkill.shown = false
- self.controls.cmpCalcsSkillPart = new("DropDownControl", nil, {0, 0, 150, 18}, {}, function(index, value)
+ self.controls.cmpCalcsSkillPart = new("DropDownControl"):DropDownControl(nil, {0, 0, 150, 18}, {}, function(index, value)
local entry = self:GetActiveCompare()
if entry then
local mainSocketGroup = entry.skillsTab.socketGroupList[entry.calcsTab.input.skill_number]
@@ -616,7 +621,7 @@ function CompareTabClass:InitControls()
end)
self.controls.cmpCalcsSkillPart.shown = false
- self.controls.cmpCalcsStageCount = new("EditControl", nil, {0, 0, 52, 18}, "", nil, "%D", 5, function(buf)
+ self.controls.cmpCalcsStageCount = new("EditControl"):EditControl(nil, {0, 0, 52, 18}, "", nil, "%D", 5, function(buf)
local entry = self:GetActiveCompare()
if entry then
local mainSocketGroup = entry.skillsTab.socketGroupList[entry.calcsTab.input.skill_number]
@@ -632,7 +637,7 @@ function CompareTabClass:InitControls()
end)
self.controls.cmpCalcsStageCount.shown = false
- self.controls.cmpCalcsMineCount = new("EditControl", nil, {0, 0, 52, 18}, "", nil, "%D", 5, function(buf)
+ self.controls.cmpCalcsMineCount = new("EditControl"):EditControl(nil, {0, 0, 52, 18}, "", nil, "%D", 5, function(buf)
local entry = self:GetActiveCompare()
if entry then
local mainSocketGroup = entry.skillsTab.socketGroupList[entry.calcsTab.input.skill_number]
@@ -648,7 +653,7 @@ function CompareTabClass:InitControls()
end)
self.controls.cmpCalcsMineCount.shown = false
- self.controls.cmpCalcsShowMinion = new("CheckBoxControl", nil, {0, 0, 18}, nil, function(state)
+ self.controls.cmpCalcsShowMinion = new("CheckBoxControl"):CheckBoxControl(nil, {0, 0, 18}, nil, function(state)
local entry = self:GetActiveCompare()
if entry then
entry.calcsTab.input.showMinion = state
@@ -657,7 +662,7 @@ function CompareTabClass:InitControls()
end, "Show stats for the minion instead of the player.")
self.controls.cmpCalcsShowMinion.shown = false
- self.controls.cmpCalcsMinion = new("DropDownControl", nil, {0, 0, 140, 18}, {}, function(index, value)
+ self.controls.cmpCalcsMinion = new("DropDownControl"):DropDownControl(nil, {0, 0, 140, 18}, {}, function(index, value)
local entry = self:GetActiveCompare()
if entry then
local mainSocketGroup = entry.skillsTab.socketGroupList[entry.calcsTab.input.skill_number]
@@ -680,7 +685,7 @@ function CompareTabClass:InitControls()
end)
self.controls.cmpCalcsMinion.shown = false
- self.controls.cmpCalcsMinionSkill = new("DropDownControl", nil, {0, 0, 140, 18}, {}, function(index, value)
+ self.controls.cmpCalcsMinionSkill = new("DropDownControl"):DropDownControl(nil, {0, 0, 140, 18}, {}, function(index, value)
local entry = self:GetActiveCompare()
if entry then
local mainSocketGroup = entry.skillsTab.socketGroupList[entry.calcsTab.input.skill_number]
@@ -696,7 +701,7 @@ function CompareTabClass:InitControls()
end)
self.controls.cmpCalcsMinionSkill.shown = false
- self.controls.cmpCalcsMode = new("DropDownControl", nil, {0, 0, 120, 18}, calcsBuffModeDropList, function(index, value)
+ self.controls.cmpCalcsMode = new("DropDownControl"):DropDownControl(nil, {0, 0, 120, 18}, calcsBuffModeDropList, function(index, value)
local entry = self:GetActiveCompare()
if entry then
entry.calcsTab.input.misc_buffMode = value.buffMode
@@ -705,7 +710,7 @@ function CompareTabClass:InitControls()
end)
self.controls.cmpCalcsMode.shown = false
- self.controls.calcsShowOnlyDifferencesCheck = new("CheckBoxControl", nil, {0, 0, 18}, "Show only differences", function(state)
+ self.controls.calcsShowOnlyDifferencesCheck = new("CheckBoxControl"):CheckBoxControl(nil, {0, 0, 18}, "Show only differences", function(state)
self.calcsShowOnlyDifferences = state
end, "Show only rows that differ between both builds. Disable to include unchanged rows.")
self.controls.calcsShowOnlyDifferencesCheck.shown = function()
@@ -732,7 +737,7 @@ function CompareTabClass:InitControls()
end
-- Overlay toggle checkbox
- self.controls.treeOverlayCheck = new("CheckBoxControl", nil, {0, 0, 20}, "Overlay comparison", function(state)
+ self.controls.treeOverlayCheck = new("CheckBoxControl"):CheckBoxControl(nil, {0, 0, 20}, "Overlay comparison", function(state)
self.treeOverlayMode = state
self.treeSearchNeedsSync = true
if not state and self.primaryBuild.treeTab and self.primaryBuild.treeTab.viewer then
@@ -742,7 +747,7 @@ function CompareTabClass:InitControls()
self.controls.treeOverlayCheck.shown = treeFooterShown
-- Overlay-mode search (single search for primary viewer)
- self.controls.overlayTreeSearch = new("EditControl", nil, {0, 0, 300, 20}, "", "Search", "%c", 100, function(buf)
+ self.controls.overlayTreeSearch = new("EditControl"):EditControl(nil, {0, 0, 300, 20}, "", "Search", "%c", 100, function(buf)
if self.primaryBuild.treeTab and self.primaryBuild.treeTab.viewer then
self.primaryBuild.treeTab.viewer.searchStr = buf
end
@@ -752,7 +757,7 @@ function CompareTabClass:InitControls()
end
-- Items expanded mode toggle
- self.controls.itemsExpandedCheck = new("CheckBoxControl", nil, {0, 0, 20}, "Expanded mode", function(state)
+ self.controls.itemsExpandedCheck = new("CheckBoxControl"):CheckBoxControl(nil, {0, 0, 20}, "Expanded mode", function(state)
self.itemsExpandedMode = state
self.scrollY = 0
end)
@@ -764,9 +769,9 @@ function CompareTabClass:InitControls()
local itemsShown = function()
return self.compareViewMode == "ITEMS" and self:GetActiveCompare() ~= nil
end
- self.controls.primaryItemSetLabel = new("LabelControl", nil, {0, 0, 0, 16}, "^7Item set:")
+ self.controls.primaryItemSetLabel = new("LabelControl"):LabelControl(nil, {0, 0, 0, 16}, "^7Item set:")
self.controls.primaryItemSetLabel.shown = itemsShown
- self.controls.primaryItemSetSelect = new("DropDownControl", nil, {0, 0, 216, 20}, {}, function(index, value)
+ self.controls.primaryItemSetSelect = new("DropDownControl"):DropDownControl(nil, {0, 0, 216, 20}, {}, function(index, value)
if self.primaryBuild.itemsTab and self.primaryBuild.itemsTab.itemSetOrderList[index] then
self.primaryBuild.itemsTab:SetActiveItemSet(self.primaryBuild.itemsTab.itemSetOrderList[index])
self.primaryBuild.itemsTab:AddUndoState()
@@ -776,9 +781,9 @@ function CompareTabClass:InitControls()
self.controls.primaryItemSetSelect.shown = itemsShown
-- Item set dropdown for compare build
- self.controls.compareItemSetLabel2 = new("LabelControl", nil, {0, 0, 0, 16}, "^7Item set:")
+ self.controls.compareItemSetLabel2 = new("LabelControl"):LabelControl(nil, {0, 0, 0, 16}, "^7Item set:")
self.controls.compareItemSetLabel2.shown = itemsShown
- self.controls.compareItemSetSelect2 = new("DropDownControl", nil, {0, 0, 216, 20}, {}, function(index, value)
+ self.controls.compareItemSetSelect2 = new("DropDownControl"):DropDownControl(nil, {0, 0, 216, 20}, {}, function(index, value)
local entry = self:GetActiveCompare()
if entry and entry.itemsTab and entry.itemsTab.itemSetOrderList[index] then
entry:SetActiveItemSet(entry.itemsTab.itemSetOrderList[index])
@@ -788,9 +793,9 @@ function CompareTabClass:InitControls()
self.controls.compareItemSetSelect2.shown = itemsShown
-- Tree set dropdown for primary build
- self.controls.primaryTreeSetLabel = new("LabelControl", nil, {0, 0, 0, 16}, "^7Tree set:")
+ self.controls.primaryTreeSetLabel = new("LabelControl"):LabelControl(nil, {0, 0, 0, 16}, "^7Tree set:")
self.controls.primaryTreeSetLabel.shown = itemsShown
- self.controls.primaryTreeSetSelect = new("DropDownControl", nil, {0, 0, 216, 20}, {}, function(index, value)
+ self.controls.primaryTreeSetSelect = new("DropDownControl"):DropDownControl(nil, {0, 0, 216, 20}, {}, function(index, value)
if self.primaryBuild.treeTab and self.primaryBuild.treeTab.specList[index] then
self.primaryBuild.modFlag = true
self.primaryBuild.treeTab:SetActiveSpec(index)
@@ -802,9 +807,9 @@ function CompareTabClass:InitControls()
self.controls.primaryTreeSetSelect.enableDroppedWidth = true
-- Tree set dropdown for compare build
- self.controls.compareTreeSetLabel = new("LabelControl", nil, {0, 0, 0, 16}, "^7Tree set:")
+ self.controls.compareTreeSetLabel = new("LabelControl"):LabelControl(nil, {0, 0, 0, 16}, "^7Tree set:")
self.controls.compareTreeSetLabel.shown = itemsShown
- self.controls.compareTreeSetSelect = new("DropDownControl", nil, {0, 0, 216, 20}, {}, function(index, value)
+ self.controls.compareTreeSetSelect = new("DropDownControl"):DropDownControl(nil, {0, 0, 216, 20}, {}, function(index, value)
local entry = self:GetActiveCompare()
if entry and entry.treeTab and entry.treeTab.specList[index] then
entry:SetActiveSpec(index)
@@ -819,13 +824,13 @@ function CompareTabClass:InitControls()
self.controls.compareTreeSetSelect.enableDroppedWidth = true
-- Footer anchor controls (side-by-side only)
- self.controls.leftFooterAnchor = new("Control", nil, {0, 0, 0, 20})
+ self.controls.leftFooterAnchor = new("Control"):Control(nil, {0, 0, 0, 20})
self.controls.leftFooterAnchor.shown = treeSideBySideShown
- self.controls.rightFooterAnchor = new("Control", nil, {0, 0, 0, 20})
+ self.controls.rightFooterAnchor = new("Control"):Control(nil, {0, 0, 0, 20})
self.controls.rightFooterAnchor.shown = treeSideBySideShown
-- Left side (primary build) spec/version controls (header, both modes)
- self.controls.leftSpecSelect = new("DropDownControl", nil, {0, 0, 180, 20}, {}, function(index, value)
+ self.controls.leftSpecSelect = new("DropDownControl"):DropDownControl(nil, {0, 0, 180, 20}, {}, function(index, value)
if self.primaryBuild.treeTab and self.primaryBuild.treeTab.specList[index] then
self.primaryBuild.modFlag = true
self.primaryBuild.treeTab:SetActiveSpec(index)
@@ -835,7 +840,7 @@ function CompareTabClass:InitControls()
self.controls.leftSpecSelect.maxDroppedWidth = 500
self.controls.leftSpecSelect.enableDroppedWidth = true
- self.controls.leftVersionSelect = new("DropDownControl", {"LEFT", self.controls.leftSpecSelect, "RIGHT"}, {4, 0, 100, 20}, self.treeVersionDropdownList, function(index, selected)
+ self.controls.leftVersionSelect = new("DropDownControl"):DropDownControl({"LEFT", self.controls.leftSpecSelect, "RIGHT"}, {4, 0, 100, 20}, self.treeVersionDropdownList, function(index, selected)
if selected and selected.value and self.primaryBuild.spec and selected.value ~= self.primaryBuild.spec.treeVersion then
self.primaryBuild.treeTab:OpenVersionConvertPopup(selected.value, true)
end
@@ -843,7 +848,7 @@ function CompareTabClass:InitControls()
self.controls.leftVersionSelect.shown = treeFooterShown
-- Left search (footer, side-by-side only)
- self.controls.leftTreeSearch = new("EditControl", {"TOPLEFT", self.controls.leftFooterAnchor, "TOPLEFT"}, {0, 0, 200, 20}, "", "Search", "%c", 100, function(buf)
+ self.controls.leftTreeSearch = new("EditControl"):EditControl({"TOPLEFT", self.controls.leftFooterAnchor, "TOPLEFT"}, {0, 0, 200, 20}, "", "Search", "%c", 100, function(buf)
if self.primaryBuild.treeTab and self.primaryBuild.treeTab.viewer then
self.primaryBuild.treeTab.viewer.searchStr = buf
end
@@ -851,7 +856,7 @@ function CompareTabClass:InitControls()
self.controls.leftTreeSearch.shown = treeSideBySideShown
-- Right side (compare build) spec/version controls (header, both modes)
- self.controls.rightSpecSelect = new("DropDownControl", nil, {0, 0, 180, 20}, {}, function(index, value)
+ self.controls.rightSpecSelect = new("DropDownControl"):DropDownControl(nil, {0, 0, 180, 20}, {}, function(index, value)
local entry = self:GetActiveCompare()
if entry and entry.treeTab and entry.treeTab.specList[index] then
entry:SetActiveSpec(index)
@@ -865,7 +870,7 @@ function CompareTabClass:InitControls()
self.controls.rightSpecSelect.maxDroppedWidth = 500
self.controls.rightSpecSelect.enableDroppedWidth = true
- self.controls.rightVersionSelect = new("DropDownControl", {"LEFT", self.controls.rightSpecSelect, "RIGHT"}, {4, 0, 100, 20}, self.treeVersionDropdownList, function(index, selected)
+ self.controls.rightVersionSelect = new("DropDownControl"):DropDownControl({"LEFT", self.controls.rightSpecSelect, "RIGHT"}, {4, 0, 100, 20}, self.treeVersionDropdownList, function(index, selected)
local entry = self:GetActiveCompare()
if entry and selected and selected.value and entry.spec then
if selected.value ~= entry.spec.treeVersion then
@@ -876,7 +881,7 @@ function CompareTabClass:InitControls()
self.controls.rightVersionSelect.shown = treeFooterShown
-- Copy compared tree to primary build
- self.controls.copySpecBtn = new("ButtonControl", {"LEFT", self.controls.rightVersionSelect, "RIGHT"}, {4, 0, 76, 20}, "Copy tree", function()
+ self.controls.copySpecBtn = new("ButtonControl"):ButtonControl({"LEFT", self.controls.rightVersionSelect, "RIGHT"}, {4, 0, 76, 20}, "Copy tree", function()
self:CopyCompareSpecToPrimary(false)
end)
self.controls.copySpecBtn.shown = treeFooterShown
@@ -885,14 +890,14 @@ function CompareTabClass:InitControls()
return entry and entry.treeTab and entry.treeTab.specList[entry.treeTab.activeSpec] ~= nil
end
- self.controls.copySpecUseBtn = new("ButtonControl", {"LEFT", self.controls.copySpecBtn, "RIGHT"}, {2, 0, 100, 20}, "Copy and use", function()
+ self.controls.copySpecUseBtn = new("ButtonControl"):ButtonControl({"LEFT", self.controls.copySpecBtn, "RIGHT"}, {2, 0, 100, 20}, "Copy and use", function()
self:CopyCompareSpecToPrimary(true)
end)
self.controls.copySpecUseBtn.shown = treeFooterShown
self.controls.copySpecUseBtn.enabled = self.controls.copySpecBtn.enabled
-- Right search (footer, side-by-side only)
- self.controls.rightTreeSearch = new("EditControl", {"TOPLEFT", self.controls.rightFooterAnchor, "TOPLEFT"}, {0, 0, 200, 20}, "", "Search", "%c", 100, function(buf)
+ self.controls.rightTreeSearch = new("EditControl"):EditControl({"TOPLEFT", self.controls.rightFooterAnchor, "TOPLEFT"}, {0, 0, 200, 20}, "", "Search", "%c", 100, function(buf)
local entry = self:GetActiveCompare()
if entry and entry.treeTab and entry.treeTab.viewer then
entry.treeTab.viewer.searchStr = buf
@@ -901,7 +906,7 @@ function CompareTabClass:InitControls()
self.controls.rightTreeSearch.shown = treeSideBySideShown
-- Config view: "Copy Config from Compare Build" button
- self.controls.copyConfigBtn = new("ButtonControl", nil, {0, 0, 240, 20},
+ self.controls.copyConfigBtn = new("ButtonControl"):ButtonControl(nil, {0, 0, 240, 20},
"Copy Config from Compare Build",
function() self:CopyCompareConfig() end)
self.controls.copyConfigBtn.shown = function()
@@ -909,7 +914,7 @@ function CompareTabClass:InitControls()
end
-- Config view: "Show All / Hide Ineligible" toggle button
- self.controls.configToggleBtn = new("ButtonControl", nil, {0, 0, 240, 20},
+ self.controls.configToggleBtn = new("ButtonControl"):ButtonControl(nil, {0, 0, 240, 20},
function()
return self.configToggle and "Hide Ineligible Configurations" or "Show All Configurations"
end,
@@ -921,7 +926,7 @@ function CompareTabClass:InitControls()
end
-- Config view: search bar
- self.controls.configSearchEdit = new("EditControl", nil, {0, 0, 240, 20}, "", "Search", "%c", 100, nil, nil, nil, true)
+ self.controls.configSearchEdit = new("EditControl"):EditControl(nil, {0, 0, 240, 20}, "", "Search", "%c", 100, nil, nil, nil, true)
self.controls.configSearchEdit.shown = function()
return self.compareViewMode == "CONFIG" and self:GetActiveCompare() ~= nil
end
@@ -930,9 +935,9 @@ function CompareTabClass:InitControls()
local configShown = function()
return self.compareViewMode == "CONFIG" and self:GetActiveCompare() ~= nil
end
- self.controls.configPrimarySetLabel = new("LabelControl", nil, {0, 0, 0, 16}, "^7Config set:")
+ self.controls.configPrimarySetLabel = new("LabelControl"):LabelControl(nil, {0, 0, 0, 16}, "^7Config set:")
self.controls.configPrimarySetLabel.shown = configShown
- self.controls.configPrimarySetSelect = new("DropDownControl", nil, {0, 0, 150, 20}, nil, function(index, value)
+ self.controls.configPrimarySetSelect = new("DropDownControl"):DropDownControl(nil, {0, 0, 150, 20}, nil, function(index, value)
local configTab = self.primaryBuild.configTab
local setId = configTab.configSetOrderList[index]
if setId then
@@ -960,7 +965,7 @@ function CompareTabClass:InitControls()
t_insert(powerStatList, entry)
end
end
- self.controls.comparePowerStatSelect = new("DropDownControl", nil, {0, 0, 200, 20}, powerStatList, function(index, value)
+ self.controls.comparePowerStatSelect = new("DropDownControl"):DropDownControl(nil, {0, 0, 200, 20}, powerStatList, function(index, value)
if value and value.stat and value ~= self.comparePowerStat then
self.comparePowerStat = value
self.comparePowerDirty = true
@@ -981,35 +986,35 @@ function CompareTabClass:InitControls()
end
-- Category checkboxes
- self.controls.comparePowerTreeCheck = new("CheckBoxControl", nil, {0, 0, 18}, "Tree:", function(state)
+ self.controls.comparePowerTreeCheck = new("CheckBoxControl"):CheckBoxControl(nil, {0, 0, 18}, "Tree:", function(state)
self.comparePowerCategories.treeNodes = state
self.comparePowerDirty = true
end, "Include passive tree nodes from compared build")
self.controls.comparePowerTreeCheck.shown = powerReportShown
self.controls.comparePowerTreeCheck.state = true
- self.controls.comparePowerItemsCheck = new("CheckBoxControl", nil, {0, 0, 18}, "Items:", function(state)
+ self.controls.comparePowerItemsCheck = new("CheckBoxControl"):CheckBoxControl(nil, {0, 0, 18}, "Items:", function(state)
self.comparePowerCategories.items = state
self.comparePowerDirty = true
end, "Include items from compared build")
self.controls.comparePowerItemsCheck.shown = powerReportShown
self.controls.comparePowerItemsCheck.state = true
- self.controls.comparePowerGemsCheck = new("CheckBoxControl", nil, {0, 0, 18}, "Skill gems:", function(state)
+ self.controls.comparePowerGemsCheck = new("CheckBoxControl"):CheckBoxControl(nil, {0, 0, 18}, "Skill gems:", function(state)
self.comparePowerCategories.skillGems = state
self.comparePowerDirty = true
end, "Include skill gem groups unique to compared build")
self.controls.comparePowerGemsCheck.shown = powerReportShown
self.controls.comparePowerGemsCheck.state = true
- self.controls.comparePowerSupportGemsCheck = new("CheckBoxControl", nil, {0, 0, 18}, "Support gems:", function(state)
+ self.controls.comparePowerSupportGemsCheck = new("CheckBoxControl"):CheckBoxControl(nil, {0, 0, 18}, "Support gems:", function(state)
self.comparePowerCategories.supportGems = state
self.comparePowerDirty = true
end, "Include support gems from compared build's active skill")
self.controls.comparePowerSupportGemsCheck.shown = powerReportShown
self.controls.comparePowerSupportGemsCheck.state = true
- self.controls.comparePowerConfigCheck = new("CheckBoxControl", nil, {0, 0, 18}, "Config:", function(state)
+ self.controls.comparePowerConfigCheck = new("CheckBoxControl"):CheckBoxControl(nil, {0, 0, 18}, "Config:", function(state)
self.comparePowerCategories.config = state
self.comparePowerDirty = true
end, "Include config option differences from compared build")
@@ -1017,19 +1022,19 @@ function CompareTabClass:InitControls()
self.controls.comparePowerConfigCheck.state = true
-- Power report list control (static height, own scrollbar)
- self.controls.comparePowerReportList = new("ComparePowerReportListControl", nil, {0, 0, 750, 250})
+ self.controls.comparePowerReportList = new("ComparePowerReportListControl"):ComparePowerReportListControl(nil, {0, 0, 750, 250})
self.controls.comparePowerReportList.compareTab = self
self.controls.comparePowerReportList.shown = powerReportShown
-- Scrollbar for Calcs sub-tab
- self.controls.calcsScrollBar = new("ScrollBarControl", nil, {0, 0, 18, 0}, 50, "VERTICAL", true)
+ self.controls.calcsScrollBar = new("ScrollBarControl"):ScrollBarControl(nil, {0, 0, 18, 0}, 50, "VERTICAL", true)
local calcsScrollBar = self.controls.calcsScrollBar
self.controls.calcsScrollBar.shown = function()
return self.compareViewMode == "CALCS" and self:GetActiveCompare() ~= nil and calcsScrollBar.enabled
end
-- Shared vertical scrollbar for Summary/Items/Skills/Config sub-tabs
- self.controls.viewScrollBar = new("ScrollBarControl", nil, {0, 0, 18, 0}, 50, "VERTICAL", true)
+ self.controls.viewScrollBar = new("ScrollBarControl"):ScrollBarControl(nil, {0, 0, 18, 0}, 50, "VERTICAL", true)
local viewScrollBar = self.controls.viewScrollBar
self.controls.viewScrollBar.shown = function()
return self:GetActiveCompare() ~= nil
@@ -1039,14 +1044,14 @@ function CompareTabClass:InitControls()
end
-- Horizontal scrollbar for Items sub-tab
- self.controls.itemsHScrollBar = new("ScrollBarControl", nil, {0, 0, 0, LAYOUT.itemsHScrollBarHeight}, 60, "HORIZONTAL", true)
+ self.controls.itemsHScrollBar = new("ScrollBarControl"):ScrollBarControl(nil, {0, 0, 0, LAYOUT.itemsHScrollBarHeight}, 60, "HORIZONTAL", true)
local itemsHScrollBar = self.controls.itemsHScrollBar
self.controls.itemsHScrollBar.shown = function()
return self.compareViewMode == "ITEMS" and self:GetActiveCompare() ~= nil and itemsHScrollBar.enabled
end
-- Horizontal scrollbar for Skills sub-tab
- self.controls.skillsHScrollBar = new("ScrollBarControl", nil, {0, 0, 0, LAYOUT.skillsHScrollBarHeight}, 60, "HORIZONTAL", true)
+ self.controls.skillsHScrollBar = new("ScrollBarControl"):ScrollBarControl(nil, {0, 0, 0, LAYOUT.skillsHScrollBarHeight}, 60, "HORIZONTAL", true)
local skillsHScrollBar = self.controls.skillsHScrollBar
self.controls.skillsHScrollBar.shown = function()
return self.compareViewMode == "SKILLS" and self:GetActiveCompare() ~= nil and skillsHScrollBar.enabled
@@ -1117,7 +1122,7 @@ local function makeConfigControl(varData, inputTable, configTab, buildObj, sourc
local control
local pVal = inputTable[varData.var]
if varData.type == "check" then
- control = new("CheckBoxControl", nil, {0, 0, 18}, nil, function(state)
+ control = new("CheckBoxControl"):CheckBoxControl(nil, {0, 0, 18}, nil, function(state)
inputTable[varData.var] = state
configTab:UpdateControls()
configTab:BuildModList()
@@ -1128,7 +1133,7 @@ local function makeConfigControl(varData, inputTable, configTab, buildObj, sourc
or varData.type == "countAllowZero" or varData.type == "float" then
local filter = (varData.type == "integer" and "^%-%d")
or (varData.type == "float" and "^%d.") or "%D"
- control = new("EditControl", nil, {0, 0, 90, 18},
+ control = new("EditControl"):EditControl(nil, {0, 0, 90, 18},
tostring(pVal or ""), nil, filter, 7,
function(buf)
inputTable[varData.var] = tonumber(buf)
@@ -1137,7 +1142,7 @@ local function makeConfigControl(varData, inputTable, configTab, buildObj, sourc
buildObj.buildFlag = true
end)
elseif varData.type == "list" and varData.list then
- control = new("DropDownControl", nil, {0, 0, 150, 18},
+ control = new("DropDownControl"):DropDownControl(nil, {0, 0, 150, 18},
varData.list, function(index, value)
inputTable[varData.var] = value.val
configTab:UpdateControls()
@@ -1226,7 +1231,7 @@ end
-- Import a comparison build from XML text
function CompareTabClass:ImportBuild(xmlText, label)
- local entry = new("CompareEntry", xmlText, label)
+ local entry = new("CompareEntry"):CompareEntry(xmlText, label)
if entry and entry.calcsTab and entry.calcsTab.mainOutput then
t_insert(self.compareEntries, entry)
self.activeCompareIndex = #self.compareEntries
@@ -1306,7 +1311,7 @@ function CompareTabClass:CopyCompareSpecToPrimary(andUse)
-- Create new spec from source (same pattern as PassiveSpecListControl Copy)
-- Note: we don't copy jewels because they reference item IDs in the compared
-- build's itemsTab which don't exist in the primary build
- local newSpec = new("PassiveSpec", self.primaryBuild, sourceSpec.treeVersion)
+ local newSpec = new("PassiveSpec"):PassiveSpec(self.primaryBuild, sourceSpec.treeVersion)
newSpec.title = (sourceSpec.title or "Default") .. " (Compared)"
newSpec:RestoreUndoState(sourceSpec:CreateUndoState())
newSpec:BuildClusterJewelGraphs()
@@ -1408,7 +1413,7 @@ function CompareTabClass:CopyCompareItemToPrimary(slotName, compareEntry, andUse
local cItem = cSlot and compareEntry.itemsTab.items and compareEntry.itemsTab.items[cSlot.selItemId]
if not cItem or not cItem.raw then return end
- local newItem = new("Item", cItem.raw)
+ local newItem = new("Item"):Item(cItem.raw)
newItem:NormaliseQuality()
local pItemsTab = self.primaryBuild.itemsTab
pItemsTab:AddItem(newItem, true) -- true = noAutoEquip
@@ -1431,20 +1436,20 @@ function CompareTabClass:OpenImportPopup()
-- Use a local variable for state text so it doesn't go into the controls table
-- (PopupDialog iterates all controls table entries and expects them to be control objects)
local stateText = ""
- controls.label = new("LabelControl", nil, {0, 20, 0, 16}, "^7Paste a build code or URL to import as comparison:")
- controls.input = new("EditControl", nil, {0, 50, 450, 20}, "", nil, nil, nil, nil, nil, nil, true)
+ controls.label = new("LabelControl"):LabelControl(nil, {0, 20, 0, 16}, "^7Paste a build code or URL to import as comparison:")
+ controls.input = new("EditControl"):EditControl(nil, {0, 50, 450, 20}, "", nil, nil, nil, nil, nil, nil, true)
controls.input.enterFunc = function()
if controls.input.buf and controls.input.buf ~= "" then
controls.go.onClick()
end
end
- controls.name = new("EditControl", nil, {0, 80, 450, 20}, "", "Name (optional)", nil, 100, nil)
- controls.state = new("LabelControl", {"TOPLEFT", controls.name, "BOTTOMLEFT"}, {0, 4, 0, 16})
+ controls.name = new("EditControl"):EditControl(nil, {0, 80, 450, 20}, "", "Name (optional)", nil, 100, nil)
+ controls.state = new("LabelControl"):LabelControl({"TOPLEFT", controls.name, "BOTTOMLEFT"}, {0, 4, 0, 16})
controls.state.label = function()
return stateText or ""
end
- controls.go = new("ButtonControl", nil, {-118, 130, 80, 20}, "Import", function()
+ controls.go = new("ButtonControl"):ButtonControl(nil, {-118, 130, 80, 20}, "Import", function()
local buf = controls.input.buf
if not buf or buf == "" then
return
@@ -1481,11 +1486,11 @@ function CompareTabClass:OpenImportPopup()
stateText = colorCodes.NEGATIVE .. "Invalid build code"
end
end)
- controls.importFolder = new("ButtonControl", nil, {0, 130, 140, 20}, "Import from Folder", function()
+ controls.importFolder = new("ButtonControl"):ButtonControl(nil, {0, 130, 140, 20}, "Import from Folder", function()
main:ClosePopup()
self:OpenImportFolderPopup()
end)
- controls.cancel = new("ButtonControl", nil, {118, 130, 80, 20}, "Cancel", function()
+ controls.cancel = new("ButtonControl"):ButtonControl(nil, {118, 130, 80, 20}, "Cancel", function()
main:ClosePopup()
end)
main:OpenPopup(500, 160, "Import Comparison Build", controls, "go", "input", "cancel")
@@ -1537,11 +1542,11 @@ function CompareTabClass:OpenImportFolderPopup()
end
-- Search box and sort dropdown sit above the build list.
- controls.searchText = new("EditControl", {"TOPLEFT", nil, "TOPLEFT"}, {15, 25, 450, 20}, "", "Search", "%c%(%)", 100, function(buf)
+ controls.searchText = new("EditControl"):EditControl({"TOPLEFT", nil, "TOPLEFT"}, {15, 25, 450, 20}, "", "Search", "%c%(%)", 100, function(buf)
searchText = buf
listHost:BuildList()
end, nil, nil, true)
- controls.sort = new("DropDownControl", {"TOPLEFT", nil, "TOPLEFT"}, {475, 25, 210, 20}, buildListHelpers.buildSortDropList, function(index, value)
+ controls.sort = new("DropDownControl"):DropDownControl({"TOPLEFT", nil, "TOPLEFT"}, {475, 25, 210, 20}, buildListHelpers.buildSortDropList, function(index, value)
sortMode = value.sortMode
main.buildSortMode = value.sortMode
buildListHelpers.SortList(listHost.list, sortMode)
@@ -1549,7 +1554,7 @@ function CompareTabClass:OpenImportFolderPopup()
controls.sort:SelByValue(sortMode, "sortMode")
-- Build list itself. Reuses BuildListControl (which provides the PathControl breadcrumbs)
- controls.buildList = new("BuildListControl", {"TOPLEFT", nil, "TOPLEFT"}, {15, 75, 0, 0}, listHost)
+ controls.buildList = new("BuildListControl"):BuildListControl({"TOPLEFT", nil, "TOPLEFT"}, {15, 75, 0, 0}, listHost)
controls.buildList.width = function() return 670 end
controls.buildList.height = function() return 355 end
@@ -1581,14 +1586,14 @@ function CompareTabClass:OpenImportFolderPopup()
-- Populate the initial list now that the control (and its path control) exist.
listHost:BuildList()
- controls.open = new("ButtonControl", {"TOPLEFT", nil, "TOPLEFT"}, {255, 465, 80, 20}, "Open", function()
+ controls.open = new("ButtonControl"):ButtonControl({"TOPLEFT", nil, "TOPLEFT"}, {255, 465, 80, 20}, "Open", function()
local sel = controls.buildList.selValue
if sel then
controls.buildList:LoadBuild(sel)
end
end)
controls.open.enabled = function() return controls.buildList.selValue ~= nil end
- controls.close = new("ButtonControl", {"TOPLEFT", nil, "TOPLEFT"}, {365, 465, 80, 20}, "Close", function()
+ controls.close = new("ButtonControl"):ButtonControl({"TOPLEFT", nil, "TOPLEFT"}, {365, 465, 80, 20}, "Close", function()
main:ClosePopup()
end)
@@ -2655,7 +2660,7 @@ function CompareTabClass:ComparePowerBuilder(compareEntry, powerStat, categories
local pSlot = self.primaryBuild.itemsTab and self.primaryBuild.itemsTab.slots[slotName]
local pItem = pSlot and self.primaryBuild.itemsTab.items[pSlot.selItemId]
if cItem and cItem.raw and not (pItem and pItem.name == cItem.name) then
- local newItem = new("Item", cItem.raw)
+ local newItem = new("Item"):Item(cItem.raw)
newItem:NormaliseQuality()
-- if our comparison has abyssal jewels, but the primary build
@@ -2678,7 +2683,7 @@ function CompareTabClass:ComparePowerBuilder(compareEntry, powerStat, categories
-- might not exist
if cmpJewel then
-- copy item
- local itemCopy = new("Item", cmpJewel:BuildRaw())
+ local itemCopy = new("Item"):Item(cmpJewel:BuildRaw())
table.insert(cmpJewels, itemCopy)
self.primaryBuild.itemsTab:AddItem(itemCopy, false)
@@ -2763,7 +2768,7 @@ function CompareTabClass:ComparePowerBuilder(compareEntry, powerStat, categories
local jewelSlots = self:GetJewelComparisonSlots(compareEntry)
for _, jEntry in ipairs(jewelSlots) do
if jEntry.cItem and jEntry.cItem.raw and not (jEntry.pItem and jEntry.pItem.name == jEntry.cItem.name) then
- local newItem = new("Item", jEntry.cItem.raw)
+ local newItem = new("Item"):Item(jEntry.cItem.raw)
newItem:NormaliseQuality()
local bestImpactVal = nil
@@ -3904,7 +3909,7 @@ function CompareTabClass:DrawItems(vp, compareEntry, inputEvents)
local calcFunc, calcBase = self.calcs.getMiscCalculator(self.primaryBuild)
if calcFunc then
-- Create a fresh item to evaluate
- local newItem = new("Item", hoverEquipItem.raw)
+ local newItem = new("Item"):Item(hoverEquipItem.raw)
newItem:NormaliseQuality()
-- Determine what's currently in the target slot
diff --git a/src/Classes/CompareTradeHelpers.lua b/src/Classes/CompareTradeHelpers.lua
index eb1802348d8..cc6f0bd1040 100644
--- a/src/Classes/CompareTradeHelpers.lua
+++ b/src/Classes/CompareTradeHelpers.lua
@@ -10,7 +10,7 @@ do
local queryModFile = io.open("Data/QueryMods.lua", "r")
if queryModFile then
queryModFile:close()
- queryModsData = LoadModule("Data/QueryMods")
+ queryModsData = require("Data.QueryMods")
end
end
diff --git a/src/Classes/ConfigSetListControl.lua b/src/Classes/ConfigSetListControl.lua
index c38e809d76c..f9440970822 100644
--- a/src/Classes/ConfigSetListControl.lua
+++ b/src/Classes/ConfigSetListControl.lua
@@ -7,10 +7,13 @@ local t_insert = table.insert
local t_remove = table.remove
local m_max = math.max
-local ConfigSetListClass = newClass("ConfigSetListControl", "ListControl", function(self, anchor, rect, configTab)
- self.ListControl(anchor, rect, 16, "VERTICAL", true, configTab.configSetOrderList)
+---@class ConfigSetListControl: ListControl
+local ConfigSetListClass = newClass("ConfigSetListControl", "ListControl")
+
+function ConfigSetListClass:ConfigSetListControl(anchor, rect, configTab)
+ self:ListControl(anchor, rect, 16, "VERTICAL", true, configTab.configSetOrderList)
self.configTab = configTab
- self.controls.copy = new("ButtonControl", {"BOTTOMLEFT",self,"TOP"}, {2, -4, 60, 18}, "Copy", function()
+ self.controls.copy = new("ButtonControl"):ButtonControl({"BOTTOMLEFT",self,"TOP"}, {2, -4, 60, 18}, "Copy", function()
local configSet = configTab.configSets[self.selValue]
local newConfigSet = copyTable(configSet)
newConfigSet.id = 1
@@ -23,30 +26,31 @@ local ConfigSetListClass = newClass("ConfigSetListControl", "ListControl", funct
self.controls.copy.enabled = function()
return self.selValue ~= nil
end
- self.controls.delete = new("ButtonControl", {"LEFT",self.controls.copy,"RIGHT"}, {4, 0, 60, 18}, "Delete", function()
+ self.controls.delete = new("ButtonControl"):ButtonControl({"LEFT",self.controls.copy,"RIGHT"}, {4, 0, 60, 18}, "Delete", function()
self:OnSelDelete(self.selIndex, self.selValue)
end)
self.controls.delete.enabled = function()
return self.selValue ~= nil and #self.list > 1
end
- self.controls.rename = new("ButtonControl", {"BOTTOMRIGHT",self,"TOP"}, {-2, -4, 60, 18}, "Rename", function()
+ self.controls.rename = new("ButtonControl"):ButtonControl({"BOTTOMRIGHT",self,"TOP"}, {-2, -4, 60, 18}, "Rename", function()
self:RenameSet(configTab.configSets[self.selValue])
end)
self.controls.rename.enabled = function()
return self.selValue ~= nil
end
- self.controls.new = new("ButtonControl", {"RIGHT",self.controls.rename,"LEFT"}, {-4, 0, 60, 18}, "New", function()
+ self.controls.new = new("ButtonControl"):ButtonControl({"RIGHT",self.controls.rename,"LEFT"}, {-4, 0, 60, 18}, "New", function()
self:RenameSet(configTab:NewConfigSet(), true)
end)
-end)
+ return self
+end
function ConfigSetListClass:RenameSet(configSet, addOnName)
local controls = { }
- controls.label = new("LabelControl", nil, {0, 20, 0, 16}, "^7Enter name for this config set:")
- controls.edit = new("EditControl", nil, {0, 40, 350, 20}, configSet.title, nil, nil, 100, function(buf)
+ controls.label = new("LabelControl"):LabelControl(nil, {0, 20, 0, 16}, "^7Enter name for this config set:")
+ controls.edit = new("EditControl"):EditControl(nil, {0, 40, 350, 20}, configSet.title, nil, nil, 100, function(buf)
controls.save.enabled = buf:match("%S")
end)
- controls.save = new("ButtonControl", nil, {-45, 70, 80, 20}, "Save", function()
+ controls.save = new("ButtonControl"):ButtonControl(nil, {-45, 70, 80, 20}, "Save", function()
configSet.title = controls.edit.buf
self.configTab.modFlag = true
if addOnName then
@@ -59,7 +63,7 @@ function ConfigSetListClass:RenameSet(configSet, addOnName)
main:ClosePopup()
end)
controls.save.enabled = false
- controls.cancel = new("ButtonControl", nil, {45, 70, 80, 20}, "Cancel", function()
+ controls.cancel = new("ButtonControl"):ButtonControl(nil, {45, 70, 80, 20}, "Cancel", function()
if addOnName then
self.configTab.configSets[configSet.id] = nil
end
diff --git a/src/Classes/ConfigTab.lua b/src/Classes/ConfigTab.lua
index 22222887c8a..c98f969c254 100644
--- a/src/Classes/ConfigTab.lua
+++ b/src/Classes/ConfigTab.lua
@@ -9,13 +9,17 @@ local m_max = math.max
local m_floor = math.floor
local s_upper = string.upper
-local varList = LoadModule("Modules/ConfigOptions")
-local configVisibility = LoadModule("Modules/ConfigVisibility")
+local varList = require("Modules.ConfigOptions")
+local configVisibility = require("Modules.ConfigVisibility")
-local ConfigTabClass = newClass("ConfigTab", "UndoHandler", "ControlHost", "Control", function(self, build)
- self.UndoHandler()
- self.ControlHost()
- self.Control()
+---@class ConfigTab: UndoHandler, ControlHost, Control
+local ConfigTabClass = newClass("ConfigTab", "UndoHandler", "ControlHost", "Control")
+
+---@param build Build
+function ConfigTabClass:ConfigTab(build)
+ self:UndoHandler()
+ self:ControlHost()
+ self:Control()
self.build = build
@@ -36,10 +40,10 @@ local ConfigTabClass = newClass("ConfigTab", "UndoHandler", "ControlHost", "Cont
self.toggleConfigs = false
- self.controls.sectionAnchor = new("LabelControl", { "TOPLEFT", self, "TOPLEFT" }, { 0, 20, 0, 0 }, "")
+ self.controls.sectionAnchor = new("LabelControl"):LabelControl({ "TOPLEFT", self, "TOPLEFT" }, { 0, 20, 0, 0 }, "")
-- Set selector
- self.controls.setSelect = new("DropDownControl", { "TOPLEFT", self.controls.sectionAnchor, "TOPLEFT" }, { 76, -12, 210, 20 }, nil, function(index, value)
+ self.controls.setSelect = new("DropDownControl"):DropDownControl({ "TOPLEFT", self.controls.sectionAnchor, "TOPLEFT" }, { 76, -12, 210, 20 }, nil, function(index, value)
self:SetActiveConfigSet(self.configSetOrderList[index])
self:AddUndoState()
end)
@@ -47,15 +51,15 @@ local ConfigTabClass = newClass("ConfigTab", "UndoHandler", "ControlHost", "Cont
self.controls.setSelect.enabled = function()
return #self.configSetOrderList > 1
end
- self.controls.setLabel = new("LabelControl", { "RIGHT", self.controls.setSelect, "LEFT" }, { -2, 0, 0, 16 }, "^7Config set:")
- self.controls.setManage = new("ButtonControl", { "LEFT", self.controls.setSelect, "RIGHT" }, { 4, 0, 90, 20 }, "Manage...", function()
+ self.controls.setLabel = new("LabelControl"):LabelControl({ "RIGHT", self.controls.setSelect, "LEFT" }, { -2, 0, 0, 16 }, "^7Config set:")
+ self.controls.setManage = new("ButtonControl"):ButtonControl({ "LEFT", self.controls.setSelect, "RIGHT" }, { 4, 0, 90, 20 }, "Manage...", function()
self:OpenConfigSetManagePopup()
end)
- self.controls.search = new("EditControl", { "TOPLEFT", self.controls.sectionAnchor, "TOPLEFT" }, { 8, 15, 360, 20 }, "", "Search", "%c", 100, function()
+ self.controls.search = new("EditControl"):EditControl({ "TOPLEFT", self.controls.sectionAnchor, "TOPLEFT" }, { 8, 15, 360, 20 }, "", "Search", "%c", 100, function()
self:UpdateControls()
end, nil, nil, true)
- self.controls.toggleConfigs = new("ButtonControl", { "LEFT", self.controls.search, "RIGHT" }, { 10, 0, 200, 20 }, function()
+ self.controls.toggleConfigs = new("ButtonControl"):ButtonControl({ "LEFT", self.controls.search, "RIGHT" }, { 10, 0, 200, 20 }, function()
-- dynamic text
return self.toggleConfigs and "Hide Ineligible Configurations" or "Show All Configurations"
end, function()
@@ -131,7 +135,7 @@ local ConfigTabClass = newClass("ConfigTab", "UndoHandler", "ControlHost", "Cont
local lastSection
for _, varData in ipairs(varList) do
if varData.section then
- lastSection = new("SectionControl", {"TOPLEFT",self.controls.search,"BOTTOMLEFT"}, {0, 0, 360, 0}, varData.section)
+ lastSection = new("SectionControl"):SectionControl({"TOPLEFT",self.controls.search,"BOTTOMLEFT"}, {0, 0, 360, 0}, varData.section)
lastSection.varControlList = { }
lastSection.col = varData.col
lastSection.height = function(self)
@@ -148,14 +152,14 @@ local ConfigTabClass = newClass("ConfigTab", "UndoHandler", "ControlHost", "Cont
else
local control
if varData.type == "check" then
- control = new("CheckBoxControl", {"TOPLEFT",lastSection,"TOPLEFT"}, {234, 0, 18}, varData.label, function(state)
+ control = new("CheckBoxControl"):CheckBoxControl({"TOPLEFT",lastSection,"TOPLEFT"}, {234, 0, 18}, varData.label, function(state)
self.configSets[self.activeConfigSetId].input[varData.var] = state
self:AddUndoState()
self:BuildModList()
self.build.buildFlag = true
end)
elseif varData.type == "count" or varData.type == "integer" or varData.type == "countAllowZero" or varData.type == "float" then
- control = new("EditControl", {"TOPLEFT",lastSection,"TOPLEFT"}, {234, 0, 90, 18}, "", nil, (varData.type == "integer" and "^%-%d") or (varData.type == "float" and "^%d.") or "%D", 10, function(buf, placeholder)
+ control = new("EditControl"):EditControl({"TOPLEFT",lastSection,"TOPLEFT"}, {234, 0, 90, 18}, "", nil, (varData.type == "integer" and "^%-%d") or (varData.type == "float" and "^%d.") or "%D", 10, function(buf, placeholder)
if placeholder then
self.configSets[self.activeConfigSetId].placeholder[varData.var] = tonumber(buf)
else
@@ -166,14 +170,14 @@ local ConfigTabClass = newClass("ConfigTab", "UndoHandler", "ControlHost", "Cont
self.build.buildFlag = true
end)
elseif varData.type == "list" then
- control = new("DropDownControl", {"TOPLEFT",lastSection,"TOPLEFT"}, {234, 0, 118, 16}, varData.list, function(index, value)
+ control = new("DropDownControl"):DropDownControl({"TOPLEFT",lastSection,"TOPLEFT"}, {234, 0, 118, 16}, varData.list, function(index, value)
self.configSets[self.activeConfigSetId].input[varData.var] = value.val
self:AddUndoState()
self:BuildModList()
self.build.buildFlag = true
end)
elseif varData.type == "text" and not varData.resizable then
- control = new("EditControl", {"TOPLEFT",lastSection,"TOPLEFT"}, {8, 0, 344, 118}, "", nil, "^%C\t\n", nil, function(buf, placeholder)
+ control = new("EditControl"):EditControl({"TOPLEFT",lastSection,"TOPLEFT"}, {8, 0, 344, 118}, "", nil, "^%C\t\n", nil, function(buf, placeholder)
if placeholder then
self.configSets[self.activeConfigSetId].placeholder[varData.var] = tostring(buf)
else
@@ -184,7 +188,7 @@ local ConfigTabClass = newClass("ConfigTab", "UndoHandler", "ControlHost", "Cont
self.build.buildFlag = true
end, 16)
elseif varData.type == "text" and varData.resizable then
- control = new("ResizableEditControl", {"TOPLEFT",lastSection,"TOPLEFT"}, {8, 0, 344, 118, nil, nil, nil, 118 + 16 * 40}, "", nil, "^%C\t\n", nil, function(buf, placeholder)
+ control = new("ResizableEditControl"):ResizableEditControl({"TOPLEFT",lastSection,"TOPLEFT"}, {8, 0, 344, 118, nil, nil, nil, 118 + 16 * 40}, "", nil, "^%C\t\n", nil, function(buf, placeholder)
if placeholder then
self.configSets[self.activeConfigSetId].placeholder[varData.var] = tostring(buf)
else
@@ -195,7 +199,7 @@ local ConfigTabClass = newClass("ConfigTab", "UndoHandler", "ControlHost", "Cont
self.build.buildFlag = true
end, 16)
else
- control = new("Control", {"TOPLEFT",lastSection,"TOPLEFT"}, {234, 0, 16, 16})
+ control = new("Control"):Control({"TOPLEFT",lastSection,"TOPLEFT"}, {234, 0, 16, 16})
end
if varData.inactiveText then
@@ -519,7 +523,7 @@ local ConfigTabClass = newClass("ConfigTab", "UndoHandler", "ControlHost", "Cont
end
local labelControl = control
if varData.label and varData.type ~= "check" then
- labelControl = new("LabelControl", {"RIGHT",control,"LEFT"}, {-4, 0, 0, DrawStringWidth(14, "VAR", varData.label) > 228 and 12 or 14}, "^7"..varData.label)
+ labelControl = new("LabelControl"):LabelControl({"RIGHT",control,"LEFT"}, {-4, 0, 0, DrawStringWidth(14, "VAR", varData.label) > 228 and 12 or 14}, "^7"..varData.label)
t_insert(self.controls, labelControl)
end
if varData.var then
@@ -607,8 +611,9 @@ local ConfigTabClass = newClass("ConfigTab", "UndoHandler", "ControlHost", "Cont
t_insert(lastSection.varControlList, control)
end
end
- self.controls.scrollBar = new("ScrollBarControl", {"TOPRIGHT",self,"TOPRIGHT"}, {0, 0, 18, 0}, 50, "VERTICAL", true)
-end)
+ self.controls.scrollBar = new("ScrollBarControl"):ScrollBarControl({"TOPRIGHT",self,"TOPRIGHT"}, {0, 0, 18, 0}, 50, "VERTICAL", true)
+ return self
+end
function ConfigTabClass:Load(xml, fileName)
self.activeConfigSetId = 1
@@ -850,9 +855,9 @@ function ConfigTabClass:UpdateLevel()
end
function ConfigTabClass:BuildModList()
- local modList = new("ModList")
+ local modList = new("ModList"):ModList()
self.modList = modList
- local enemyModList = new("ModList")
+ local enemyModList = new("ModList"):ModList()
self.enemyModList = enemyModList
local input = self.configSets[self.activeConfigSetId].input
local placeholder = self.configSets[self.activeConfigSetId].placeholder
@@ -934,8 +939,8 @@ end
function ConfigTabClass:OpenConfigSetManagePopup()
main:OpenPopup(370, 290, "Manage Config Sets", {
- new("ConfigSetListControl", nil, {0, 50, 350, 200}, self),
- new("ButtonControl", nil, {0, 260, 90, 20}, "Done", function()
+ new("ConfigSetListControl"):ConfigSetListControl(nil, {0, 50, 350, 200}, self),
+ new("ButtonControl"):ButtonControl(nil, {0, 260, 90, 20}, "Done", function()
main:ClosePopup()
end),
})
diff --git a/src/Classes/Control.lua b/src/Classes/Control.lua
index 110eb6884ee..1b96288642a 100644
--- a/src/Classes/Control.lua
+++ b/src/Classes/Control.lua
@@ -6,6 +6,8 @@
local t_insert = table.insert
local m_floor = math.floor
+
+---@enum (key) AnchorPoint
local anchorPos = {
["TOPLEFT"] = { 0 , 0 },
["TOP"] = { 0.5, 0 },
@@ -32,7 +34,18 @@ local rect = {
for containers
--]]
-local ControlClass = newClass("Control", function(self, anchor, rect)
+---@class Control
+---@field enabled boolean | fun(...: any): boolean
+---@field onFocusGained? fun()
+---@field onFocusLost? fun()
+local ControlClass = newClass("Control")
+
+---@alias ControlAnchor [AnchorPoint, Control|ControlHost, AnchorPoint, boolean|nil]
+---@alias ControlRect [number|nil, number|nil, number|nil, number]
+
+---@param anchor? ControlAnchor
+---@param rect? ControlRect
+function ControlClass:Control(anchor, rect)
self.rectStart = rect or {0, 0, 0, 0}
self.x, self.y, self.width, self.height = unpack(self.rectStart)
self.shown = true
@@ -41,7 +54,8 @@ local ControlClass = newClass("Control", function(self, anchor, rect)
if anchor then
self:SetAnchor(anchor[1], anchor[2], anchor[3], nil, nil, anchor[4])
end
-end)
+ return self
+end
function ControlClass:GetProperty(name)
if type(self[name]) == "function" then
diff --git a/src/Classes/ControlHost.lua b/src/Classes/ControlHost.lua
index 13aec58ef93..4f795135b82 100644
--- a/src/Classes/ControlHost.lua
+++ b/src/Classes/ControlHost.lua
@@ -4,9 +4,13 @@
-- Host for UI controls
--
-local ControlHostClass = newClass("ControlHost", function(self)
- self.controls = { }
-end)
+---@class ControlHost
+local ControlHostClass = newClass("ControlHost")
+
+function ControlHostClass:ControlHost()
+ self.controls = {}
+ return self
+end
function ControlHostClass:SelectControl(newSelControl)
if self.selControl == newSelControl then
diff --git a/src/Classes/DraggerControl.lua b/src/Classes/DraggerControl.lua
index de331cbb046..6619b5314c4 100644
--- a/src/Classes/DraggerControl.lua
+++ b/src/Classes/DraggerControl.lua
@@ -3,9 +3,12 @@
-- Class: Dragger Button Control
-- Dragger button control.
--
-local DraggerClass = newClass("DraggerControl", "Control", "TooltipHost", function(self, anchor, rect, label, onKeyDown, onKeyUp, onRightClick, onHover, forceTooltip)
- self.Control(anchor, rect)
- self.TooltipHost()
+---@type DraggerControl: Control, TooltipHost
+local DraggerClass = newClass("DraggerControl", "Control", "TooltipHost")
+
+function DraggerClass:DraggerControl(anchor, rect, label, onKeyDown, onKeyUp, onRightClick, onHover, forceTooltip)
+ self:Control(anchor, rect)
+ self:TooltipHost()
self.label = label
self.onKeyDown = onKeyDown
self.onKeyUp = onKeyUp
@@ -14,7 +17,8 @@ local DraggerClass = newClass("DraggerControl", "Control", "TooltipHost", functi
self.forceTooltip = forceTooltip
self.cursorX = 0
self.cursorY = 0
-end)
+ return self
+end
function DraggerClass:SetImage(path)
if path then
diff --git a/src/Classes/DropDownControl.lua b/src/Classes/DropDownControl.lua
index bd75e93f1da..379a6d0bf8c 100644
--- a/src/Classes/DropDownControl.lua
+++ b/src/Classes/DropDownControl.lua
@@ -8,11 +8,14 @@ local m_min = math.min
local m_max = math.max
local m_floor = math.floor
-local DropDownClass = newClass("DropDownControl", "Control", "ControlHost", "TooltipHost", "SearchHost", function(self, anchor, rect, list, selFunc, tooltipText)
- self.Control(anchor, rect)
- self.ControlHost()
- self.TooltipHost(tooltipText)
- self.SearchHost(
+---@class DropDownControl: Control, ControlHost, TooltipHost, SearchHost
+local DropDownClass = newClass("DropDownControl", "Control", "ControlHost", "TooltipHost", "SearchHost")
+
+function DropDownClass:DropDownControl(anchor, rect, list, selFunc, tooltipText)
+ self:Control(anchor, rect)
+ self:ControlHost()
+ self:TooltipHost(tooltipText)
+ self:SearchHost(
-- list to filter
function()
return self.list
@@ -30,7 +33,7 @@ local DropDownClass = newClass("DropDownControl", "Control", "ControlHost", "Too
return StripEscapes(listVal)
end
)
- self.controls.scrollBar = new("ScrollBarControl", {"TOPRIGHT",self,"TOPRIGHT"}, {-1, 0, 18, 0}, (self.height - 4) * 4)
+ self.controls.scrollBar = new("ScrollBarControl"):ScrollBarControl({"TOPRIGHT",self,"TOPRIGHT"}, {-1, 0, 18, 0}, (self.height - 4) * 4)
self.controls.scrollBar.height = function()
return self.dropHeight + 2
end
@@ -49,8 +52,9 @@ local DropDownClass = newClass("DropDownControl", "Control", "ControlHost", "Too
self.enableDroppedWidth = false
-- Set by the parent control. Activates the auto width of the box component.
self.enableChangeBoxWidth = false
- -- self.tag = "-"
-end)
+ -- self.tag = "-"
+ return self
+end
-- maps the actual dropdown row index (after eventual filtering) to the original (unfiltered) list index
function DropDownClass:DropIndexToListIndex(dropIndex)
diff --git a/src/Classes/EditControl.lua b/src/Classes/EditControl.lua
index 2964057adf0..1f90bdace25 100644
--- a/src/Classes/EditControl.lua
+++ b/src/Classes/EditControl.lua
@@ -7,7 +7,7 @@ local m_max = math.max
local m_min = math.min
local m_floor = math.floor
local protected_replace = "*"
-local utf8 = require('lua-utf8')
+local utf8 = require("lua-utf8")
local function lastLine(str)
local lastLineIndex = 1
@@ -36,11 +36,14 @@ local function newlineCount(str)
end
end
-local EditClass = newClass("EditControl", "ControlHost", "Control", "UndoHandler", "TooltipHost", function(self, anchor, rect, init, prompt, filter, limit, changeFunc, lineHeight, allowZoom, clearable)
- self.ControlHost()
- self.Control(anchor, rect)
- self.UndoHandler()
- self.TooltipHost()
+---@class EditControl: ControlHost, Control, UndoHandler, TooltipHost
+local EditClass = newClass("EditControl", "ControlHost", "Control", "UndoHandler", "TooltipHost")
+
+function EditClass:EditControl(anchor, rect, init, prompt, filter, limit, changeFunc, lineHeight, allowZoom, clearable)
+ self:ControlHost()
+ self:Control(anchor, rect)
+ self:UndoHandler()
+ self:TooltipHost()
self:SetText(init or "")
self.prompt = prompt
self.filter = filter or (main.unicode and "%c" or "^%w%p ")
@@ -64,24 +67,24 @@ local EditClass = newClass("EditControl", "ControlHost", "Control", "UndoHandler
if self.filter == "%D" or self.filter == "^%-%d" then
-- Add +/- buttons for integer number edits
self.isNumeric = true
- self.controls.buttonDown = new("ButtonControl", {"RIGHT",self,"RIGHT"}, {-2, 0, buttonSize, buttonSize}, "-", function()
+ self.controls.buttonDown = new("ButtonControl"):ButtonControl({"RIGHT",self,"RIGHT"}, {-2, 0, buttonSize, buttonSize}, "-", function()
self:OnKeyUp("DOWN")
end)
- self.controls.buttonUp = new("ButtonControl", {"RIGHT",self.controls.buttonDown,"LEFT"}, {-1, 0, buttonSize, buttonSize}, "+", function()
+ self.controls.buttonUp = new("ButtonControl"):ButtonControl({"RIGHT",self.controls.buttonDown,"LEFT"}, {-1, 0, buttonSize, buttonSize}, "+", function()
self:OnKeyUp("UP")
end)
elseif clearable then
- self.controls.buttonClear = new("ButtonControl", {"RIGHT",self,"RIGHT"}, {-2, 0, buttonSize, buttonSize}, "x", function()
+ self.controls.buttonClear = new("ButtonControl"):ButtonControl({"RIGHT",self,"RIGHT"}, {-2, 0, buttonSize, buttonSize}, "x", function()
self:SetText("", true)
end)
self.controls.buttonClear.shown = function() return #self.buf > 0 and self:IsMouseInBounds() end
end
- self.controls.scrollBarH = new("ScrollBarControl", {"BOTTOMLEFT",self,"BOTTOMLEFT"}, {1, -1, 0, 14}, 60, "HORIZONTAL", true)
+ self.controls.scrollBarH = new("ScrollBarControl"):ScrollBarControl({"BOTTOMLEFT",self,"BOTTOMLEFT"}, {1, -1, 0, 14}, 60, "HORIZONTAL", true)
self.controls.scrollBarH.width = function()
local width, height = self:GetSize()
return width - (self.controls.scrollBarV.enabled and 16 or 2)
end
- self.controls.scrollBarV = new("ScrollBarControl", {"TOPRIGHT",self,"TOPRIGHT"}, {-1, 1, 14, 0}, (lineHeight or 0) * 3, "VERTICAL", true)
+ self.controls.scrollBarV = new("ScrollBarControl"):ScrollBarControl({"TOPRIGHT",self,"TOPRIGHT"}, {-1, 1, 14, 0}, (lineHeight or 0) * 3, "VERTICAL", true)
self.controls.scrollBarV.height = function()
local width, height = self:GetSize()
return height - (self.controls.scrollBarH.enabled and 16 or 2)
@@ -91,7 +94,8 @@ local EditClass = newClass("EditControl", "ControlHost", "Control", "UndoHandler
self.controls.scrollBarV.shown = false
end
self.protected = false
-end)
+ return self
+end
function EditClass:SetText(text, notify)
self.buf = tostring(text)
diff --git a/src/Classes/ExtBuildListControl.lua b/src/Classes/ExtBuildListControl.lua
index fb6070ba692..c00323a3a23 100644
--- a/src/Classes/ExtBuildListControl.lua
+++ b/src/Classes/ExtBuildListControl.lua
@@ -10,36 +10,39 @@ local m_max = math.max
local m_min = math.min
local dkjson = require "dkjson"
-local ExtBuildListControlClass = newClass("ExtBuildListControl", "ControlHost", "Control",
- function(self, anchor, rect, providers)
- self.Control(anchor, rect)
- self.ControlHost()
- self:SelectControl()
-
- self.rowHeight = 200
- self.scroll = "VERTICAL"
- self.forceTooltip = false
- self.font = "VAR"
- self.importButtons = {}
- self.previewButtons = {}
- self.inTransition = false
- self.contentHeight = 0
- self.tabs = {}
- self.activeListProvider = nil
- self.buildProviders = providers
- self.buildProvidersList = {}
- self.providerMaxLength = 150
- for _, provider in ipairs(self.buildProviders) do
- self.providerMaxLength = m_max(self.providerMaxLength, DrawStringWidth(16, self.font, provider.name) + 30)
- t_insert(self.buildProvidersList, provider.name)
- end
- end)
+---@class ExtBuildListControl: ControlHost, Control
+local ExtBuildListControlClass = newClass("ExtBuildListControl", "ControlHost", "Control")
+
+function ExtBuildListControlClass:ExtBuildListControl(anchor, rect, providers)
+ self:Control(anchor, rect)
+ self:ControlHost()
+ self:SelectControl()
+
+ self.rowHeight = 200
+ self.scroll = "VERTICAL"
+ self.forceTooltip = false
+ self.font = "VAR"
+ self.importButtons = {}
+ self.previewButtons = {}
+ self.inTransition = false
+ self.contentHeight = 0
+ self.tabs = {}
+ self.activeListProvider = nil
+ self.buildProviders = providers
+ self.buildProvidersList = {}
+ self.providerMaxLength = 150
+ for _, provider in ipairs(self.buildProviders) do
+ self.providerMaxLength = m_max(self.providerMaxLength, DrawStringWidth(16, self.font, provider.name) + 30)
+ t_insert(self.buildProvidersList, provider.name)
+ end
+ return self
+end
function ExtBuildListControlClass:Init(providerName)
wipeTable(self.controls)
wipeTable(self.tabs)
- self.controls.sort = new("DropDownControl", { "TOP", self, "TOP" }, { 0, -20, self.providerMaxLength, 20 },
+ self.controls.sort = new("DropDownControl"):DropDownControl({ "TOP", self, "TOP" }, { 0, -20, self.providerMaxLength, 20 },
self.buildProvidersList, function(index, value)
self:Init(value)
end)
@@ -72,7 +75,7 @@ function ExtBuildListControlClass:Init(providerName)
if lastControl then
anchor = { "LEFT", lastControl, "RIGHT" }
end
- local button = new("ButtonControl", anchor, { 0, lastControl and 0 or -20, stringWidth + 10, 20 }, title, function()
+ local button = new("ButtonControl"):ButtonControl(anchor, { 0, lastControl and 0 or -20, stringWidth + 10, 20 }, title, function()
if self.activeListProvider:GetActiveList() == title then
return
end
@@ -105,7 +108,7 @@ function ExtBuildListControlClass:Init(providerName)
return (self.width() - self.controls.sort.width()) / 2
end
- self.controls.scrollBarV = new("ScrollBarControl", { "RIGHT", self, "RIGHT" }, { -1, 0, self.scroll and 16 or 0, 0 },
+ self.controls.scrollBarV = new("ScrollBarControl"):ScrollBarControl({ "RIGHT", self, "RIGHT" }, { -1, 0, self.scroll and 16 or 0, 0 },
80, "VERTICAL") {
-- y = function()
-- return (self.scrollH and -8 or 0)
@@ -120,7 +123,7 @@ function ExtBuildListControlClass:Init(providerName)
end
if self.activeListProvider:GetPageUrl() then
- self.controls.all = new("ButtonControl", { "BOTTOM", self, "BOTTOM" }, { 0, 1, self.width, 20 }, "See All",
+ self.controls.all = new("ButtonControl"):ButtonControl({ "BOTTOM", self, "BOTTOM" }, { 0, 1, self.width, 20 }, "See All",
function()
local url = self.activeListProvider:GetPageUrl()
if url then
@@ -407,14 +410,14 @@ function ExtBuildListControlClass:Draw(viewPort, noTooltip)
local relativeHeight = currentHeight + 10 - self.controls.scrollBarV.offset
if relativeHeight > y and relativeHeight < self.height() + y - 10 then
if build.buildLink then
- local importButton = new("ButtonControl", nil, { x, currentHeight - self.controls.scrollBarV.offset, 45, 20 }, "Import", function()
+ local importButton = new("ButtonControl"):ButtonControl(nil, { x, currentHeight - self.controls.scrollBarV.offset, 45, 20 }, "Import", function()
self:importBuild(build)
end)
t_insert(self.controls, importButton)
end
if build.previewLink then
- local previewButton = new("ButtonControl", nil, { x + 50, currentHeight - self.controls.scrollBarV.offset, 60, 20 }, "Preview", function()
+ local previewButton = new("ButtonControl"):ButtonControl(nil, { x + 50, currentHeight - self.controls.scrollBarV.offset, 60, 20 }, "Preview", function()
OpenURL(build.previewLink)
end)
t_insert(self.controls, previewButton)
diff --git a/src/Classes/ExtBuildListProvider.lua b/src/Classes/ExtBuildListProvider.lua
index 2b0904ce863..546dc8b32c7 100644
--- a/src/Classes/ExtBuildListProvider.lua
+++ b/src/Classes/ExtBuildListProvider.lua
@@ -10,14 +10,16 @@
-- .buildList [Needs to be filled in :GetBuilds with current list. buildName and buildLink fields are required.]
-- .statusMsg [This can be used to print status message on the screen. Builds will not be listed if it has a value other than nil.]
-local ExtBuildListProviderClass = newClass("ExtBuildListProvider",
- function(self, listTitles)
- self.listTitles = listTitles
- self.buildList = {}
- self.activeList = nil
- self.statusMsg = nil
- end
-)
+---@class ExtBuildListProvider
+local ExtBuildListProviderClass = newClass("ExtBuildListProvider")
+
+function ExtBuildListProviderClass:ExtBuildListProvider(listTitles)
+ self.listTitles = listTitles
+ self.buildList = {}
+ self.activeList = nil
+ self.statusMsg = nil
+ return self
+end
function ExtBuildListProviderClass:GetPageUrl()
return nil
diff --git a/src/Classes/FolderListControl.lua b/src/Classes/FolderListControl.lua
index 8cc7c11ba25..8e0abcd4066 100644
--- a/src/Classes/FolderListControl.lua
+++ b/src/Classes/FolderListControl.lua
@@ -6,13 +6,16 @@
local ipairs = ipairs
local t_insert = table.insert
-local FolderListClass = newClass("FolderListControl", "ListControl", function(self, anchor, rect, subPath, onChange)
- self.ListControl(anchor, rect, 16, "VERTICAL", false, { })
+---@class FolderListControl: ListControl
+local FolderListClass = newClass("FolderListControl", "ListControl")
+
+function FolderListClass:FolderListControl(anchor, rect, subPath, onChange)
+ self:ListControl(anchor, rect, 16, "VERTICAL", false, { })
self.subPath = subPath or ""
self.sortMode = "NAME"
self.onChangeCallback = onChange
- self.controls.path = new("PathControl", {"BOTTOM",self,"TOP"}, {0, -2, self.width, 24}, main.buildPath, self.subPath, function(newSubPath)
+ self.controls.path = new("PathControl"):PathControl({"BOTTOM",self,"TOP"}, {0, -2, self.width, 24}, main.buildPath, self.subPath, function(newSubPath)
self.subPath = newSubPath
self:BuildList()
self.selIndex = nil
@@ -22,7 +25,8 @@ local FolderListClass = newClass("FolderListControl", "ListControl", function(se
end
end)
self:BuildList()
-end)
+ return self
+end
function FolderListClass:SortList()
if not self.list then return end
diff --git a/src/Classes/GemSelectControl.lua b/src/Classes/GemSelectControl.lua
index f8ef76d2297..ba7f0d50e56 100644
--- a/src/Classes/GemSelectControl.lua
+++ b/src/Classes/GemSelectControl.lua
@@ -14,9 +14,19 @@ local m_floor = math.floor
local toolTipText = "Prefix tag searches with a colon and exclude tags with a dash. e.g. :fire:lightning:-cold:area"
local imbuedTooltipText = "\"Socketed in\" item must be set in order to add an imbued support.\nOnly one imbued support is allowed per item."
-local GemSelectClass = newClass("GemSelectControl", "EditControl", function(self, anchor, rect, skillsTab, index, changeFunc, forceTooltip, imbued)
- self.EditControl(anchor, rect, nil, nil, "^ %a':-")
- self.controls.scrollBar = new("ScrollBarControl", { "TOPRIGHT", self, "TOPRIGHT" }, {-1, 0, 18, 0}, (self.height - 4) * 4)
+---@class GemSelectControl: EditControl
+local GemSelectClass = newClass("GemSelectControl", "EditControl")
+
+---@param anchor ControlAnchor
+---@param rect ControlRect
+---@param skillsTab SkillsTab
+---@param index integer
+---@param changeFunc fun(...)
+---@param forceTooltip boolean
+---@param imbued boolean
+function GemSelectClass:GemSelectControl(anchor, rect, skillsTab, index, changeFunc, forceTooltip, imbued)
+ self:EditControl(anchor, rect, nil, nil, "^ %a':-")
+ self.controls.scrollBar = new("ScrollBarControl"):ScrollBarControl({ "TOPRIGHT", self, "TOPRIGHT" }, {-1, 0, 18, 0}, (self.height - 4) * 4)
self.controls.scrollBar.y = function()
local width, height = self:GetSize()
return height + 1
@@ -52,7 +62,8 @@ local GemSelectClass = newClass("GemSelectControl", "EditControl", function(self
lifeReservationPercent = "LifePercent",
}
self.imbuedSelect = imbued
-end)
+ return self
+end
function GemSelectClass:CalcOutputWithThisGem(calcFunc, gemData, useFullDPS)
local gemList = self.skillsTab.displayGroup.gemList
@@ -486,7 +497,7 @@ function GemSelectClass:Draw(viewPort, noTooltip)
SetViewport()
self:DrawControls(viewPort, (noTooltip and not self.forceTooltip) and self)
if self.hoverSel then
- local calcFunc, calcBase = self.skillsTab.build.calcsTab:GetMiscCalculator(self.build)
+ local calcFunc, calcBase = self.skillsTab.build.calcsTab:GetMiscCalculator()
if calcFunc then
self.tooltip:Clear()
local gemData = self.gems[self.list[self.hoverSel]]
diff --git a/src/Classes/ImportTab.lua b/src/Classes/ImportTab.lua
index 7f4e631ff96..384fac07c3e 100644
--- a/src/Classes/ImportTab.lua
+++ b/src/Classes/ImportTab.lua
@@ -19,27 +19,31 @@ local realmList = {
local influenceInfo = itemLib.influenceInfo.all
-local ImportTabClass = newClass("ImportTab", "ControlHost", "Control", function(self, build)
- self.ControlHost()
- self.Control()
+---@class ImportTab: ControlHost, Control
+local ImportTabClass = newClass("ImportTab", "ControlHost", "Control")
+
+---@param build Build
+function ImportTabClass:ImportTab(build)
+ self:ControlHost()
+ self:Control()
self.build = build
self.charImportMode = "GETACCOUNTNAME"
self.charImportStatus = "Idle"
- self.controls.sectionCharImport = new("SectionControl", {"TOPLEFT",self,"TOPLEFT"}, {10, 18, 650, 250}, "Character Import")
- self.controls.charImportStatusLabel = new("LabelControl", {"TOPLEFT",self.controls.sectionCharImport,"TOPLEFT"}, {6, 14, 200, 16}, function()
+ self.controls.sectionCharImport = new("SectionControl"):SectionControl({"TOPLEFT",self,"TOPLEFT"}, {10, 18, 650, 250}, "Character Import")
+ self.controls.charImportStatusLabel = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.sectionCharImport,"TOPLEFT"}, {6, 14, 200, 16}, function()
return "^7Character import status: "..self.charImportStatus
end)
-- Stage: input account name
- self.controls.accountNameHeader = new("LabelControl", {"TOPLEFT",self.controls.sectionCharImport,"TOPLEFT"}, {6, 40, 200, 16}, "^7To start importing a character, enter the character's account name:")
+ self.controls.accountNameHeader = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.sectionCharImport,"TOPLEFT"}, {6, 40, 200, 16}, "^7To start importing a character, enter the character's account name:")
self.controls.accountNameHeader.shown = function()
return self.charImportMode == "GETACCOUNTNAME"
end
- self.controls.accountRealm = new("DropDownControl", {"TOPLEFT",self.controls.accountNameHeader,"BOTTOMLEFT"}, {0, 4, 60, 20}, realmList)
+ self.controls.accountRealm = new("DropDownControl"):DropDownControl({"TOPLEFT",self.controls.accountNameHeader,"BOTTOMLEFT"}, {0, 4, 60, 20}, realmList)
self.controls.accountRealm:SelByValue(main.lastRealm or "PC", "id")
- self.controls.accountName = new("EditControl", {"LEFT",self.controls.accountRealm,"RIGHT"}, {8, 0, 200, 20}, main.lastAccountName or "", nil, "%c", nil, nil, nil, nil, true)
+ self.controls.accountName = new("EditControl"):EditControl({"LEFT",self.controls.accountRealm,"RIGHT"}, {8, 0, 200, 20}, main.lastAccountName or "", nil, "%c", nil, nil, nil, nil, true)
self.controls.accountName.pasteFilter = function(text)
return text:gsub(".", function(c)
local byte = c:byte()
@@ -61,7 +65,7 @@ local ImportTabClass = newClass("ImportTab", "ControlHost", "Control", function(
return a:lower() < b:lower()
end)
end -- don't load the list many times
- self.controls.accountNameGo = new("ButtonControl", {"LEFT",self.controls.accountName,"RIGHT"}, {8, 0, 60, 20}, "Start", function()
+ self.controls.accountNameGo = new("ButtonControl"):ButtonControl({"LEFT",self.controls.accountName,"RIGHT"}, {8, 0, 60, 20}, "Start", function()
self.controls.sessionInput.buf = ""
self:DownloadCharacterList()
end)
@@ -75,13 +79,13 @@ local ImportTabClass = newClass("ImportTab", "ControlHost", "Control", function(
end
end
- self.controls.accountHistory = new("DropDownControl", {"LEFT",self.controls.accountNameGo,"RIGHT"}, {8, 0, 200, 20}, historyList, function()
+ self.controls.accountHistory = new("DropDownControl"):DropDownControl({"LEFT",self.controls.accountNameGo,"RIGHT"}, {8, 0, 200, 20}, historyList, function()
self.controls.accountName.buf = self.controls.accountHistory.list[self.controls.accountHistory.selIndex]
end)
self.controls.accountHistory:SelByValue(main.lastAccountName)
self.controls.accountHistory:CheckDroppedWidth(true)
- self.controls.removeAccount = new("ButtonControl", {"LEFT",self.controls.accountHistory,"RIGHT"}, {8, 0, 20, 20}, "X", function()
+ self.controls.removeAccount = new("ButtonControl"):ButtonControl({"LEFT",self.controls.accountHistory,"RIGHT"}, {8, 0, 20, 20}, "X", function()
local accountName = self.controls.accountHistory.list[self.controls.accountHistory.selIndex]
if (accountName ~= nil) then
t_remove(self.controls.accountHistory.list, self.controls.accountHistory.selIndex)
@@ -95,15 +99,15 @@ local ImportTabClass = newClass("ImportTab", "ControlHost", "Control", function(
tooltip:AddLine(16, "^7Removes account from the dropdown list")
end
- self.controls.accountNameMissingDiscriminator = new("LabelControl", {"TOPLEFT",self.controls.accountName,"BOTTOMLEFT"}, {0, 8, 0, 16}, "^1Missing discriminator e.g. #1234")
+ self.controls.accountNameMissingDiscriminator = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.accountName,"BOTTOMLEFT"}, {0, 8, 0, 16}, "^1Missing discriminator e.g. #1234")
self.controls.accountNameMissingDiscriminator.shown = function()
return not self.controls.accountName.buf:match("[#%-]%d%d%d%d$") and self.controls.accountName.buf ~= ""
end
- self.controls.accountNameUnicode = new("LabelControl", {"TOPLEFT",self.controls.accountRealm,"BOTTOMLEFT"}, {0, 34, 0, 14}, "^7Note: if the account name contains non-ASCII characters it must be pasted into the textbox,\nnot typed manually.")
+ self.controls.accountNameUnicode = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.accountRealm,"BOTTOMLEFT"}, {0, 34, 0, 14}, "^7Note: if the account name contains non-ASCII characters it must be pasted into the textbox,\nnot typed manually.")
-- Stage: input POESESSID
- self.controls.sessionHeader = new("LabelControl", {"TOPLEFT",self.controls.sectionCharImport,"TOPLEFT"}, {6, 40, 200, 14})
+ self.controls.sessionHeader = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.sectionCharImport,"TOPLEFT"}, {6, 40, 200, 14})
self.controls.sessionHeader.label = function()
return [[
^7The list of characters on ']]..self.controls.accountName.buf..[[' couldn't be retrieved. This may be because:
@@ -119,19 +123,19 @@ You can get this from your web browser's cookies while logged into the Path of E
self.controls.sessionHeader.shown = function()
return self.charImportMode == "GETSESSIONID"
end
- self.controls.sessionRetry = new("ButtonControl", {"TOPLEFT",self.controls.sessionHeader,"TOPLEFT"}, {0, 122, 60, 20}, "Retry", function()
+ self.controls.sessionRetry = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.sessionHeader,"TOPLEFT"}, {0, 122, 60, 20}, "Retry", function()
self:DownloadCharacterList()
end)
- self.controls.sessionCancel = new("ButtonControl", {"LEFT",self.controls.sessionRetry,"RIGHT"}, {8, 0, 60, 20}, "Cancel", function()
+ self.controls.sessionCancel = new("ButtonControl"):ButtonControl({"LEFT",self.controls.sessionRetry,"RIGHT"}, {8, 0, 60, 20}, "Cancel", function()
self.charImportMode = "GETACCOUNTNAME"
self.charImportStatus = "Idle"
end)
- self.controls.sessionPrivacySettings = new("ButtonControl", {"LEFT",self.controls.sessionCancel,"RIGHT"}, {8, 0, 120, 20}, "Privacy Settings", function()
+ self.controls.sessionPrivacySettings = new("ButtonControl"):ButtonControl({"LEFT",self.controls.sessionCancel,"RIGHT"}, {8, 0, 120, 20}, "Privacy Settings", function()
OpenURL('https://www.pathofexile.com/my-account/privacy')
end)
- self.controls.sessionInput = new("EditControl", {"TOPLEFT",self.controls.sessionRetry,"BOTTOMLEFT"}, {0, 8, 350, 20}, "", "POESESSID", "%X", 32)
+ self.controls.sessionInput = new("EditControl"):EditControl({"TOPLEFT",self.controls.sessionRetry,"BOTTOMLEFT"}, {0, 8, 350, 20}, "", "POESESSID", "%X", 32)
self.controls.sessionInput:SetProtected(true)
- self.controls.sessionGo = new("ButtonControl", {"LEFT",self.controls.sessionInput,"RIGHT"}, {8, 0, 60, 20}, "Go", function()
+ self.controls.sessionGo = new("ButtonControl"):ButtonControl({"LEFT",self.controls.sessionInput,"RIGHT"}, {8, 0, 60, 20}, "Go", function()
self:DownloadCharacterList()
end)
self.controls.sessionGo.enabled = function()
@@ -139,20 +143,20 @@ You can get this from your web browser's cookies while logged into the Path of E
end
-- Stage: select character and import data
- self.controls.charSelectHeader = new("LabelControl", {"TOPLEFT",self.controls.sectionCharImport,"TOPLEFT"}, {6, 40, 200, 16}, "^7Choose character to import data from:")
+ self.controls.charSelectHeader = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.sectionCharImport,"TOPLEFT"}, {6, 40, 200, 16}, "^7Choose character to import data from:")
self.controls.charSelectHeader.shown = function()
return self.charImportMode == "SELECTCHAR" or self.charImportMode == "IMPORTING"
end
- self.controls.charSelectLeagueLabel = new("LabelControl", {"TOPLEFT",self.controls.charSelectHeader,"BOTTOMLEFT"}, {0, 6, 0, 14}, "^7League:")
- self.controls.charSelectLeague = new("DropDownControl", {"LEFT",self.controls.charSelectLeagueLabel,"RIGHT"}, {4, 0, 150, 18}, nil, function(index, value)
+ self.controls.charSelectLeagueLabel = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.charSelectHeader,"BOTTOMLEFT"}, {0, 6, 0, 14}, "^7League:")
+ self.controls.charSelectLeague = new("DropDownControl"):DropDownControl({"LEFT",self.controls.charSelectLeagueLabel,"RIGHT"}, {4, 0, 150, 18}, nil, function(index, value)
self:BuildCharacterList(value.league)
end)
- self.controls.charSelect = new("DropDownControl", {"TOPLEFT",self.controls.charSelectHeader,"BOTTOMLEFT"}, {0, 24, 400, 18})
+ self.controls.charSelect = new("DropDownControl"):DropDownControl({"TOPLEFT",self.controls.charSelectHeader,"BOTTOMLEFT"}, {0, 24, 400, 18})
self.controls.charSelect.enabled = function()
return self.charImportMode == "SELECTCHAR"
end
- self.controls.charImportHeader = new("LabelControl", {"TOPLEFT",self.controls.charSelect,"BOTTOMLEFT"}, {0, 16, 200, 16}, "^7Import:")
- self.controls.charImportTree = new("ButtonControl", {"LEFT",self.controls.charImportHeader, "RIGHT"}, {8, 0, 170, 20}, "Passive Tree and Jewels", function()
+ self.controls.charImportHeader = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.charSelect,"BOTTOMLEFT"}, {0, 16, 200, 16}, "^7Import:")
+ self.controls.charImportTree = new("ButtonControl"):ButtonControl({"LEFT",self.controls.charImportHeader, "RIGHT"}, {8, 0, 170, 20}, "Passive Tree and Jewels", function()
if self.build.spec:CountAllocNodes() > 0 then
main:OpenConfirmPopup("Character Import", "Importing the passive tree will overwrite your current tree.", "Import", function()
self:DownloadPassiveTree()
@@ -165,39 +169,39 @@ You can get this from your web browser's cookies while logged into the Path of E
self.controls.charImportTree.enabled = function()
return self.charImportMode == "SELECTCHAR"
end
- self.controls.charImportTreeClearJewels = new("CheckBoxControl", {"LEFT",self.controls.charImportTree,"RIGHT"}, {90, 0, 18}, "Delete jewels:", nil, "Delete all existing jewels when importing.", true)
- self.controls.charImportItems = new("ButtonControl", {"LEFT",self.controls.charImportTree, "LEFT"}, {0, 36, 110, 20}, "Items and Skills", function()
+ self.controls.charImportTreeClearJewels = new("CheckBoxControl"):CheckBoxControl({"LEFT",self.controls.charImportTree,"RIGHT"}, {90, 0, 18}, "Delete jewels:", nil, "Delete all existing jewels when importing.", true)
+ self.controls.charImportItems = new("ButtonControl"):ButtonControl({"LEFT",self.controls.charImportTree, "LEFT"}, {0, 36, 110, 20}, "Items and Skills", function()
self:DownloadItems()
self:SetPredefinedBuildName()
end)
self.controls.charImportItems.enabled = function()
return self.charImportMode == "SELECTCHAR"
end
- self.controls.charImportItemsClearSkills = new("CheckBoxControl", {"LEFT",self.controls.charImportItems,"RIGHT"}, {85, 0, 18}, "Delete skills:", nil, "Delete all existing skills when importing.", true)
- self.controls.charImportItemsClearItems = new("CheckBoxControl", {"LEFT",self.controls.charImportItems,"RIGHT"}, {220, 0, 18}, "Delete equipment:", nil, "Delete all equipped items when importing.", true)
- self.controls.charImportItemsIgnoreWeaponSwap = new("CheckBoxControl", {"LEFT",self.controls.charImportItems,"RIGHT"}, {380, 0, 18}, "Ignore weapon swap:", nil, "Ignore items and skills in weapon swap.", false)
- self.controls.charBanditNote = new("LabelControl", {"TOPLEFT",self.controls.charImportHeader,"BOTTOMLEFT"}, {0, 50, 200, 14}, "^7Tip: After you finish importing a character, make sure you update the bandit choice,\nas it cannot be imported.")
+ self.controls.charImportItemsClearSkills = new("CheckBoxControl"):CheckBoxControl({"LEFT",self.controls.charImportItems,"RIGHT"}, {85, 0, 18}, "Delete skills:", nil, "Delete all existing skills when importing.", true)
+ self.controls.charImportItemsClearItems = new("CheckBoxControl"):CheckBoxControl({"LEFT",self.controls.charImportItems,"RIGHT"}, {220, 0, 18}, "Delete equipment:", nil, "Delete all equipped items when importing.", true)
+ self.controls.charImportItemsIgnoreWeaponSwap = new("CheckBoxControl"):CheckBoxControl({"LEFT",self.controls.charImportItems,"RIGHT"}, {380, 0, 18}, "Ignore weapon swap:", nil, "Ignore items and skills in weapon swap.", false)
+ self.controls.charBanditNote = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.charImportHeader,"BOTTOMLEFT"}, {0, 50, 200, 14}, "^7Tip: After you finish importing a character, make sure you update the bandit choice,\nas it cannot be imported.")
- self.controls.charClose = new("ButtonControl", {"TOPLEFT",self.controls.charImportHeader,"BOTTOMLEFT"}, {0, 90, 60, 20}, "Close", function()
+ self.controls.charClose = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.charImportHeader,"BOTTOMLEFT"}, {0, 90, 60, 20}, "Close", function()
self.charImportMode = "GETACCOUNTNAME"
self.charImportStatus = "Idle"
end)
-- Build import/export
- self.controls.sectionBuild = new("SectionControl", {"TOPLEFT",self.controls.sectionCharImport,"BOTTOMLEFT"}, {0, 18, 650, 182}, "Build Sharing")
- self.controls.generateCodeLabel = new("LabelControl", {"TOPLEFT",self.controls.sectionBuild,"TOPLEFT"}, {6, 14, 0, 16}, "^7Generate a code to share this build with other Path of Building users:")
- self.controls.generateCode = new("ButtonControl", {"LEFT",self.controls.generateCodeLabel,"RIGHT"}, {4, 0, 80, 20}, "Generate", function()
+ self.controls.sectionBuild = new("SectionControl"):SectionControl({"TOPLEFT",self.controls.sectionCharImport,"BOTTOMLEFT"}, {0, 18, 650, 182}, "Build Sharing")
+ self.controls.generateCodeLabel = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.sectionBuild,"TOPLEFT"}, {6, 14, 0, 16}, "^7Generate a code to share this build with other Path of Building users:")
+ self.controls.generateCode = new("ButtonControl"):ButtonControl({"LEFT",self.controls.generateCodeLabel,"RIGHT"}, {4, 0, 80, 20}, "Generate", function()
self.controls.generateCodeOut:SetText(common.base64.encode(Deflate(self.build:SaveDB("code"))):gsub("+","-"):gsub("/","_"))
end)
- self.controls.enablePartyExportBuffs = new("CheckBoxControl", {"LEFT",self.controls.generateCode,"RIGHT"}, {100, 0, 18}, "Export Support", function(state)
+ self.controls.enablePartyExportBuffs = new("CheckBoxControl"):CheckBoxControl({"LEFT",self.controls.generateCode,"RIGHT"}, {100, 0, 18}, "Export Support", function(state)
self.build.partyTab.enableExportBuffs = state
self.build.buildFlag = true
end, "This is for party play, to export support character, it enables the exporting of auras, curses and modifiers to the enemy", false)
- self.controls.generateCodeOut = new("EditControl", {"TOPLEFT",self.controls.generateCodeLabel,"BOTTOMLEFT"}, {0, 8, 250, 20}, "", "Code", "%Z")
+ self.controls.generateCodeOut = new("EditControl"):EditControl({"TOPLEFT",self.controls.generateCodeLabel,"BOTTOMLEFT"}, {0, 8, 250, 20}, "", "Code", "%Z")
self.controls.generateCodeOut.enabled = function()
return #self.controls.generateCodeOut.buf > 0
end
- self.controls.generateCodeCopy = new("ButtonControl", {"LEFT",self.controls.generateCodeOut,"RIGHT"}, {8, 0, 60, 20}, "Copy", function()
+ self.controls.generateCodeCopy = new("ButtonControl"):ButtonControl({"LEFT",self.controls.generateCodeOut,"RIGHT"}, {8, 0, 60, 20}, "Copy", function()
Copy(self.controls.generateCodeOut.buf)
self.controls.generateCodeOut:SetText("")
end)
@@ -217,12 +221,12 @@ You can get this from your web browser's cookies while logged into the Path of E
end
local exportWebsitesList = getExportSitesFromImportList()
- self.controls.exportFrom = new("DropDownControl", { "LEFT", self.controls.generateCodeCopy,"RIGHT"}, {8, 0, 120, 20}, exportWebsitesList, function(_, selectedWebsite)
+ self.controls.exportFrom = new("DropDownControl"):DropDownControl({ "LEFT", self.controls.generateCodeCopy,"RIGHT"}, {8, 0, 120, 20}, exportWebsitesList, function(_, selectedWebsite)
main.lastExportedWebsite = selectedWebsite.id
self.exportWebsiteSelected = selectedWebsite.id
end)
self.controls.exportFrom:SelByValue(self.exportWebsiteSelected or main.lastExportedWebsite or "Maxroll", "id")
- self.controls.generateCodeByLink = new("ButtonControl", { "LEFT", self.controls.exportFrom, "RIGHT"}, {8, 0, 100, 20}, "Share", function()
+ self.controls.generateCodeByLink = new("ButtonControl"):ButtonControl({ "LEFT", self.controls.exportFrom, "RIGHT"}, {8, 0, 100, 20}, "Share", function()
local exportWebsite = exportWebsitesList[self.controls.exportFrom.selIndex]
local subScriptId = buildSites.UploadBuild(self.controls.generateCodeOut.buf, exportWebsite)
if subScriptId then
@@ -254,8 +258,8 @@ You can get this from your web browser's cookies while logged into the Path of E
end
return #self.controls.generateCodeOut.buf > 0
end
- self.controls.generateCodeNote = new("LabelControl", {"TOPLEFT",self.controls.generateCodeOut,"BOTTOMLEFT"}, {0, 4, 0, 14}, "^7Note: this code can be very long; you can use 'Share' to shrink it.")
- self.controls.importCodeHeader = new("LabelControl", {"TOPLEFT",self.controls.generateCodeNote,"BOTTOMLEFT"}, {0, 26, 0, 16}, "^7To import a build, enter URL or code here:")
+ self.controls.generateCodeNote = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.generateCodeOut,"BOTTOMLEFT"}, {0, 4, 0, 14}, "^7Note: this code can be very long; you can use 'Share' to shrink it.")
+ self.controls.importCodeHeader = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.generateCodeNote,"BOTTOMLEFT"}, {0, 26, 0, 16}, "^7To import a build, enter URL or code here:")
local importCodeHandle = function (buf)
self.importCodeSite = nil
@@ -330,21 +334,21 @@ You can get this from your web browser's cookies while logged into the Path of E
end
end
- self.controls.importCodeIn = new("EditControl", {"TOPLEFT",self.controls.importCodeHeader,"BOTTOMLEFT"}, {0, 4, 328, 20}, "", nil, nil, nil, importCodeHandle, nil, nil, true)
+ self.controls.importCodeIn = new("EditControl"):EditControl({"TOPLEFT",self.controls.importCodeHeader,"BOTTOMLEFT"}, {0, 4, 328, 20}, "", nil, nil, nil, importCodeHandle, nil, nil, true)
self.controls.importCodeIn.enterFunc = function()
if self.importCodeValid then
self.controls.importCodeGo.onClick()
end
end
- self.controls.importCodeState = new("LabelControl", {"LEFT",self.controls.importCodeIn,"RIGHT"}, {8, 0, 0, 16})
+ self.controls.importCodeState = new("LabelControl"):LabelControl({"LEFT",self.controls.importCodeIn,"RIGHT"}, {8, 0, 0, 16})
self.controls.importCodeState.label = function()
return self.importCodeDetail or ""
end
- self.controls.importCodeMode = new("DropDownControl", {"TOPLEFT",self.controls.importCodeIn,"BOTTOMLEFT"}, {0, 4, 200, 20}, { "Import to this build", "Import to a new build", "Import as comparison" })
+ self.controls.importCodeMode = new("DropDownControl"):DropDownControl({"TOPLEFT",self.controls.importCodeIn,"BOTTOMLEFT"}, {0, 4, 200, 20}, { "Import to this build", "Import to a new build", "Import as comparison" })
self.controls.importCodeMode.enabled = function()
return (self.build.dbFileName or self.controls.importCodeMode.selIndex == 3) and self.importCodeValid
end
- self.controls.importCodeGo = new("ButtonControl", {"LEFT",self.controls.importCodeMode,"RIGHT"}, {8, 0, 160, 20}, "Import", function()
+ self.controls.importCodeGo = new("ButtonControl"):ButtonControl({"LEFT",self.controls.importCodeMode,"RIGHT"}, {8, 0, 160, 20}, "Import", function()
if self.importCodeSite and not self.importCodeXML then
self.importCodeFetching = true
local selectedWebsite = buildSites.websiteList[self.importCodeSite]
@@ -374,7 +378,8 @@ You can get this from your web browser's cookies while logged into the Path of E
self.controls.importCodeGo.onClick()
end
end
-end)
+ return self
+end
function ImportTabClass:Load(xml, fileName)
self.lastRealm = xml.attrib.lastRealm
@@ -1000,7 +1005,7 @@ function ImportTabClass:ImportItem(itemData, slotName)
return
end
- local item = new("Item")
+ local item = new("Item"):Item()
-- Determine rarity, display name and base type of the item
item.rarity = rarityMap[itemData.frameType]
diff --git a/src/Classes/Item.lua b/src/Classes/Item.lua
index d63d7374f93..3dee2afbebc 100644
--- a/src/Classes/Item.lua
+++ b/src/Classes/Item.lua
@@ -57,11 +57,15 @@ end
local influenceInfo = itemLib.influenceInfo.all
-local ItemClass = newClass("Item", function(self, raw, rarity, highQuality)
+---@class Item
+local ItemClass = newClass("Item")
+
+function ItemClass:Item(raw, rarity, highQuality)
if raw then
self:ParseRaw(sanitiseText(raw), rarity, highQuality)
- end
-end)
+ end
+ return self
+end
-- Reset all influence keys to false
function ItemClass:ResetInfluence()
@@ -1384,7 +1388,7 @@ function ItemClass:BuildModListForSlotNum(baseList, slotNum)
if slotNum ~= 1 then
slotName = slotName:gsub("1", tostring(slotNum))
end
- local modList = new("ModList")
+ local modList = new("ModList"):ModList()
for _, baseMod in ipairs(baseList) do
local mod = copyTable(baseMod)
local add = true
@@ -1673,7 +1677,7 @@ function ItemClass:BuildModList()
if not self.base then
return
end
- local baseList = new("ModList")
+ local baseList = new("ModList"):ModList()
if self.base.weapon then
self.weaponData = { }
elseif self.base.armour then
diff --git a/src/Classes/ItemDBControl.lua b/src/Classes/ItemDBControl.lua
index 3136d1a8476..0e6a5aa5af5 100644
--- a/src/Classes/ItemDBControl.lua
+++ b/src/Classes/ItemDBControl.lua
@@ -10,8 +10,11 @@ local m_max = math.max
local m_floor = math.floor
-local ItemDBClass = newClass("ItemDBControl", "ListControl", function(self, anchor, rect, itemsTab, db, dbType)
- self.ListControl(anchor, rect, 16, "VERTICAL", false)
+---@class ItemDBControl: ListControl
+local ItemDBClass = newClass("ItemDBControl", "ListControl")
+
+function ItemDBClass:ItemDBControl(anchor, rect, itemsTab, db, dbType)
+ self:ListControl(anchor, rect, 16, "VERTICAL", false)
self.itemsTab = itemsTab
self.db = db
self.dbType = dbType
@@ -28,35 +31,36 @@ local ItemDBClass = newClass("ItemDBControl", "ListControl", function(self, anch
self.typeList = { "Any type", "Armour", "Jewellery", "One Handed Melee", "Two Handed Melee" }
self.slotList = { "Any slot", "Weapon 1", "Weapon 2", "Helmet", "Body Armour", "Gloves", "Boots", "Amulet", "Ring", "Belt", "Jewel", "Flask", "Graft 1", "Graft 2" }
local baseY = dbType == "RARE" and -22 or -62
- self.controls.slot = new("DropDownControl", {"BOTTOMLEFT",self,"TOPLEFT"}, {0, baseY, 179, 18}, self.slotList, function(index, value)
+ self.controls.slot = new("DropDownControl"):DropDownControl({"BOTTOMLEFT",self,"TOPLEFT"}, {0, baseY, 179, 18}, self.slotList, function(index, value)
self.listBuildFlag = true
end)
- self.controls.type = new("DropDownControl", {"LEFT",self.controls.slot,"RIGHT"}, {2, 0, 179, 18}, self.typeList, function(index, value)
+ self.controls.type = new("DropDownControl"):DropDownControl({"LEFT",self.controls.slot,"RIGHT"}, {2, 0, 179, 18}, self.typeList, function(index, value)
self.listBuildFlag = true
end)
if dbType == "UNIQUE" then
- self.controls.sort = new("DropDownControl", {"BOTTOMLEFT",self,"TOPLEFT"}, {0, baseY + 20, 179, 18}, self.sortDropList, function(index, value)
+ self.controls.sort = new("DropDownControl"):DropDownControl({"BOTTOMLEFT",self,"TOPLEFT"}, {0, baseY + 20, 179, 18}, self.sortDropList, function(index, value)
self:SetSortMode(value.sortMode)
end)
- self.controls.league = new("DropDownControl", {"LEFT",self.controls.sort,"RIGHT"}, {2, 0, 179, 18}, self.leagueList, function(index, value)
+ self.controls.league = new("DropDownControl"):DropDownControl({"LEFT",self.controls.sort,"RIGHT"}, {2, 0, 179, 18}, self.leagueList, function(index, value)
self.listBuildFlag = true
end)
- self.controls.requirement = new("DropDownControl", {"LEFT",self.controls.sort,"BOTTOMLEFT"}, {0, 11, 179, 18}, { "Any requirements", "Current level", "Current attributes", "Current useable" }, function(index, value)
+ self.controls.requirement = new("DropDownControl"):DropDownControl({"LEFT",self.controls.sort,"BOTTOMLEFT"}, {0, 11, 179, 18}, { "Any requirements", "Current level", "Current attributes", "Current useable" }, function(index, value)
self.listBuildFlag = true
end)
- self.controls.obtainable = new("DropDownControl", {"LEFT",self.controls.requirement,"RIGHT"}, {2, 0, 179, 18}, { "Obtainable", "Any source", "Unobtainable", "Vendor Recipe", "Upgraded", "Boss Item", "Corruption"}, function(index, value)
+ self.controls.obtainable = new("DropDownControl"):DropDownControl({"LEFT",self.controls.requirement,"RIGHT"}, {2, 0, 179, 18}, { "Obtainable", "Any source", "Unobtainable", "Vendor Recipe", "Upgraded", "Boss Item", "Corruption"}, function(index, value)
self.listBuildFlag = true
end)
end
- self.controls.search = new("EditControl", {"BOTTOMLEFT",self,"TOPLEFT"}, {0, -2, 258, 18}, "", "Search", "%c", 100, function()
+ self.controls.search = new("EditControl"):EditControl({"BOTTOMLEFT",self,"TOPLEFT"}, {0, -2, 258, 18}, "", "Search", "%c", 100, function()
self.listBuildFlag = true
end, nil, nil, true)
- self.controls.searchMode = new("DropDownControl", {"LEFT",self.controls.search,"RIGHT"}, {2, 0, 100, 18}, { "Anywhere", "Names", "Modifiers" }, function(index, value)
+ self.controls.searchMode = new("DropDownControl"):DropDownControl({"LEFT",self.controls.search,"RIGHT"}, {2, 0, 100, 18}, { "Anywhere", "Names", "Modifiers" }, function(index, value)
self.listBuildFlag = true
end)
self:BuildSortOrder()
self.listBuildFlag = true
-end)
+ return self
+end
function ItemDBClass:LoadLeaguesAndTypes()
local leagueFlag = { }
@@ -323,7 +327,7 @@ end
function ItemDBClass:OnSelClick(index, item, doubleClick)
if IsKeyDown("CTRL") then
-- Add item
- local newItem = new("Item", item.raw)
+ local newItem = new("Item"):Item(item.raw)
newItem:NormaliseQuality()
self.itemsTab:AddItem(newItem, true)
diff --git a/src/Classes/ItemListControl.lua b/src/Classes/ItemListControl.lua
index 53f9fde103e..b184b120425 100644
--- a/src/Classes/ItemListControl.lua
+++ b/src/Classes/ItemListControl.lua
@@ -6,19 +6,22 @@
local pairs = pairs
local t_insert = table.insert
-local ItemListClass = newClass("ItemListControl", "ListControl", function(self, anchor, rect, itemsTab, forceTooltip)
- self.ListControl(anchor, rect, 16, "VERTICAL", true, itemsTab.itemOrderList, forceTooltip)
+---@class ItemListControl: ListControl
+local ItemListClass = newClass("ItemListControl", "ListControl")
+
+function ItemListClass:ItemListControl(anchor, rect, itemsTab, forceTooltip)
+ self:ListControl(anchor, rect, 16, "VERTICAL", true, itemsTab.itemOrderList, forceTooltip)
self.itemsTab = itemsTab
self.label = "^7All items:"
self.defaultText = "^x7F7F7FThis is the list of items that have been added to this build.\nYou can add items to this list by dragging them from\none of the other lists, or by clicking 'Add to build' when\nviewing an item."
self.dragTargetList = { }
- self.controls.delete = new("ButtonControl", {"BOTTOMRIGHT",self,"TOPRIGHT"}, {0, -2, 60, 18}, "Delete", function()
+ self.controls.delete = new("ButtonControl"):ButtonControl({"BOTTOMRIGHT",self,"TOPRIGHT"}, {0, -2, 60, 18}, "Delete", function()
self:OnSelDelete(self.selIndex, self.selValue)
end)
self.controls.delete.enabled = function()
return self.selValue ~= nil
end
- self.controls.deleteAll = new("ButtonControl", {"RIGHT",self.controls.delete,"LEFT"}, {-4, 0, 70, 18}, "Delete All", function()
+ self.controls.deleteAll = new("ButtonControl"):ButtonControl({"RIGHT",self.controls.delete,"LEFT"}, {-4, 0, 70, 18}, "Delete All", function()
main:OpenConfirmPopup("Delete All", "Are you sure you want to delete all items in this build?", "Delete", function()
for _, slot in pairs(itemsTab.slots) do
slot:SetSelItemId(0)
@@ -40,7 +43,7 @@ local ItemListClass = newClass("ItemListControl", "ListControl", function(self,
self.controls.deleteAll.enabled = function()
return #self.list > 0
end
- self.controls.deleteUnused = new("ButtonControl", {"RIGHT",self.controls.deleteAll,"LEFT"}, {-4, 0, 100, 18}, "Delete Unused", function()
+ self.controls.deleteUnused = new("ButtonControl"):ButtonControl({"RIGHT",self.controls.deleteAll,"LEFT"}, {-4, 0, 100, 18}, "Delete Unused", function()
local delList = {}
for _, itemId in pairs(self.list) do
if not itemsTab:GetEquippedSlotForItem(itemsTab.items[itemId]) and not self:FindEquippedAbyssJewel(itemId, false) and not self:FindSocketedJewel(itemId, false) then
@@ -62,10 +65,11 @@ local ItemListClass = newClass("ItemListControl", "ListControl", function(self,
self.controls.deleteUnused.enabled = function()
return #self.list > 0
end
- self.controls.sort = new("ButtonControl", {"RIGHT",self.controls.deleteUnused,"LEFT"}, {-4, 0, 60, 18}, "Sort", function()
+ self.controls.sort = new("ButtonControl"):ButtonControl({"RIGHT",self.controls.deleteUnused,"LEFT"}, {-4, 0, 60, 18}, "Sort", function()
itemsTab:SortItemList()
end)
-end)
+ return self
+end
function ItemListClass:FindSocketedJewel(jewelId, excludeActiveSpec)
if not self.itemsTab.items[jewelId] or self.itemsTab.items[jewelId].type ~= "Jewel" then
@@ -146,7 +150,7 @@ end
function ItemListClass:ReceiveDrag(type, value, source)
if type == "Item" then
- local newItem = new("Item", value.raw)
+ local newItem = new("Item"):Item(value.raw)
newItem:NormaliseQuality()
self.itemsTab:AddItem(newItem, true, self.selDragIndex)
self.itemsTab:PopulateSlots()
@@ -184,7 +188,7 @@ function ItemListClass:OnSelClick(index, itemId, doubleClick)
self.itemsTab.build.buildFlag = true
end
elseif doubleClick then
- local newItem = new("Item", item:BuildRaw())
+ local newItem = new("Item"):Item(item:BuildRaw())
newItem.id = item.id
self.itemsTab:SetDisplayItem(newItem)
end
diff --git a/src/Classes/ItemSetListControl.lua b/src/Classes/ItemSetListControl.lua
index 04d87e85371..4448d74ae2b 100644
--- a/src/Classes/ItemSetListControl.lua
+++ b/src/Classes/ItemSetListControl.lua
@@ -8,10 +8,13 @@ local t_remove = table.remove
local m_max = math.max
local s_format = string.format
-local ItemSetListClass = newClass("ItemSetListControl", "ListControl", function(self, anchor, rect, itemsTab)
- self.ListControl(anchor, rect, 16, "VERTICAL", true, itemsTab.itemSetOrderList)
+---@class ItemSetListControl: ListControl
+local ItemSetListClass = newClass("ItemSetListControl", "ListControl")
+
+function ItemSetListClass:ItemSetListControl(anchor, rect, itemsTab)
+ self:ListControl(anchor, rect, 16, "VERTICAL", true, itemsTab.itemSetOrderList)
self.itemsTab = itemsTab
- self.controls.copy = new("ButtonControl", {"BOTTOMLEFT",self,"TOP"}, {2, -4, 60, 18}, "Copy", function()
+ self.controls.copy = new("ButtonControl"):ButtonControl({"BOTTOMLEFT",self,"TOP"}, {2, -4, 60, 18}, "Copy", function()
local newSet = copyTable(itemsTab.itemSets[self.selValue])
newSet.id = 1
while itemsTab.itemSets[newSet.id] do
@@ -23,31 +26,32 @@ local ItemSetListClass = newClass("ItemSetListControl", "ListControl", function(
self.controls.copy.enabled = function()
return self.selValue ~= nil
end
- self.controls.delete = new("ButtonControl", {"LEFT",self.controls.copy,"RIGHT"}, {4, 0, 60, 18}, "Delete", function()
+ self.controls.delete = new("ButtonControl"):ButtonControl({"LEFT",self.controls.copy,"RIGHT"}, {4, 0, 60, 18}, "Delete", function()
self:OnSelDelete(self.selIndex, self.selValue)
end)
self.controls.delete.enabled = function()
return self.selValue ~= nil and #self.list > 1
end
- self.controls.rename = new("ButtonControl", {"BOTTOMRIGHT",self,"TOP"}, {-2, -4, 60, 18}, "Rename", function()
+ self.controls.rename = new("ButtonControl"):ButtonControl({"BOTTOMRIGHT",self,"TOP"}, {-2, -4, 60, 18}, "Rename", function()
self:RenameSet(itemsTab.itemSets[self.selValue])
end)
self.controls.rename.enabled = function()
return self.selValue ~= nil
end
- self.controls.new = new("ButtonControl", {"RIGHT",self.controls.rename,"LEFT"}, {-4, 0, 60, 18}, "New", function()
+ self.controls.new = new("ButtonControl"):ButtonControl({"RIGHT",self.controls.rename,"LEFT"}, {-4, 0, 60, 18}, "New", function()
local newSet = itemsTab:NewItemSet()
self:RenameSet(newSet, true)
end)
-end)
+ return self
+end
function ItemSetListClass:RenameSet(itemSet, addOnName)
local controls = { }
- controls.label = new("LabelControl", nil, {0, 20, 0, 16}, "^7Enter name for this item set:")
- controls.edit = new("EditControl", nil, {0, 40, 350, 20}, itemSet.title, nil, nil, 100, function(buf)
+ controls.label = new("LabelControl"):LabelControl(nil, {0, 20, 0, 16}, "^7Enter name for this item set:")
+ controls.edit = new("EditControl"):EditControl(nil, {0, 40, 350, 20}, itemSet.title, nil, nil, 100, function(buf)
controls.save.enabled = buf:match("%S")
end)
- controls.save = new("ButtonControl", nil, {-45, 70, 80, 20}, "Save", function()
+ controls.save = new("ButtonControl"):ButtonControl(nil, {-45, 70, 80, 20}, "Save", function()
itemSet.title = controls.edit.buf
self.itemsTab.modFlag = true
if addOnName then
@@ -60,7 +64,7 @@ function ItemSetListClass:RenameSet(itemSet, addOnName)
main:ClosePopup()
end)
controls.save.enabled = false
- controls.cancel = new("ButtonControl", nil, {45, 70, 80, 20}, "Cancel", function()
+ controls.cancel = new("ButtonControl"):ButtonControl(nil, {45, 70, 80, 20}, "Cancel", function()
if addOnName then
self.itemsTab.itemSets[itemSet.id] = nil
end
@@ -95,7 +99,7 @@ function ItemSetListClass:ReceiveDrag(type, value, source)
local itemSet = self.itemsTab:NewItemSet()
itemSet.title = value.title
for slotName, item in pairs(value.slots) do
- local newItem = new("Item", item.raw)
+ local newItem = new("Item"):Item(item.raw)
newItem:NormaliseQuality()
self.itemsTab:AddItem(newItem, true)
itemSet[slotName].selItemId = newItem.id
diff --git a/src/Classes/ItemSlotControl.lua b/src/Classes/ItemSlotControl.lua
index d7b549f3a26..9eafb7cc004 100644
--- a/src/Classes/ItemSlotControl.lua
+++ b/src/Classes/ItemSlotControl.lua
@@ -7,8 +7,11 @@ local pairs = pairs
local t_insert = table.insert
local m_min = math.min
-local ItemSlotClass = newClass("ItemSlotControl", "DropDownControl", function(self, anchor, x, y, itemsTab, slotName, slotLabel, nodeId)
- self.DropDownControl(anchor, {x, y, 310, 20}, { }, function(index, value)
+---@class ItemSlotControl: DropDownControl
+local ItemSlotClass = newClass("ItemSlotControl", "DropDownControl")
+
+function ItemSlotClass:ItemSlotControl(anchor, x, y, itemsTab, slotName, slotLabel, nodeId)
+ self:DropDownControl(anchor, {x, y, 310, 20}, { }, function(index, value)
if self.items[index] ~= self.selItemId then
self:SetSelItemId(self.items[index])
itemsTab:PopulateSlots()
@@ -29,7 +32,7 @@ local ItemSlotClass = newClass("ItemSlotControl", "DropDownControl", function(se
self.slotName = slotName
self.slotNum = tonumber(slotName:match("%d+$") or slotName:match("%d+"))
if slotName:match("Flask") then
- self.controls.activate = new("CheckBoxControl", {"RIGHT",self,"LEFT"}, {-2, 0, 20}, nil, function(state)
+ self.controls.activate = new("CheckBoxControl"):CheckBoxControl({"RIGHT",self,"LEFT"}, {-2, 0, 20}, nil, function(state)
self.active = state
itemsTab.activeItemSet[self.slotName].active = state
itemsTab:AddUndoState()
@@ -55,7 +58,8 @@ local ItemSlotClass = newClass("ItemSlotControl", "DropDownControl", function(se
end
self.label = slotLabel or slotName
self.nodeId = nodeId
-end)
+ return self
+end
function ItemSlotClass:SetSelItemId(selItemId)
if self.nodeId then
@@ -118,7 +122,7 @@ function ItemSlotClass:ReceiveDrag(type, value, source)
if value.id and self.itemsTab.items[value.id] then
self:SetSelItemId(value.id)
else
- local newItem = new("Item", value.raw)
+ local newItem = new("Item"):Item(value.raw)
newItem:NormaliseQuality()
self.itemsTab:AddItem(newItem, true)
self:SetSelItemId(newItem.id)
diff --git a/src/Classes/ItemsTab.lua b/src/Classes/ItemsTab.lua
index 10b3140f611..e1f61d68f6a 100644
--- a/src/Classes/ItemsTab.lua
+++ b/src/Classes/ItemsTab.lua
@@ -92,14 +92,18 @@ local function getOutputStatValue(output, stat)
return 0
end
-local ItemsTabClass = newClass("ItemsTab", "UndoHandler", "ControlHost", "Control", function(self, build)
- self.UndoHandler()
- self.ControlHost()
- self.Control()
+---@class ItemsTab: UndoHandler, ControlHost, Control
+local ItemsTabClass = newClass("ItemsTab", "UndoHandler", "ControlHost", "Control")
+
+---@param build Build
+function ItemsTabClass:ItemsTab(build)
+ self:UndoHandler()
+ self:ControlHost()
+ self:Control()
self.build = build
- self.socketViewer = new("PassiveTreeView")
+ self.socketViewer = new("PassiveTreeView"):PassiveTreeView()
self.items = { }
self.itemOrderList = { }
@@ -107,10 +111,10 @@ local ItemsTabClass = newClass("ItemsTab", "UndoHandler", "ControlHost", "Contro
self.showStatDifferences = true
-- PoB Trader class initialization
- self.tradeQuery = new("TradeQuery", self)
+ self.tradeQuery = new("TradeQuery"):TradeQuery(self)
-- Set selector
- self.controls.setSelect = new("DropDownControl", {"TOPLEFT",self,"TOPLEFT"}, {96, 8, 216, 20}, nil, function(index, value)
+ self.controls.setSelect = new("DropDownControl"):DropDownControl({"TOPLEFT",self,"TOPLEFT"}, {96, 8, 216, 20}, nil, function(index, value)
self:SetActiveItemSet(self.itemSetOrderList[index])
self:AddUndoState()
end)
@@ -124,13 +128,13 @@ local ItemsTabClass = newClass("ItemsTab", "UndoHandler", "ControlHost", "Contro
self:AddItemSetTooltip(tooltip, self.itemSets[self.itemSetOrderList[index]])
end
end
- self.controls.setLabel = new("LabelControl", {"RIGHT",self.controls.setSelect,"LEFT"}, {-2, 0, 0, 16}, "^7Item set:")
- self.controls.setManage = new("ButtonControl", {"LEFT",self.controls.setSelect,"RIGHT"}, {4, 0, 90, 20}, "Manage...", function()
+ self.controls.setLabel = new("LabelControl"):LabelControl({"RIGHT",self.controls.setSelect,"LEFT"}, {-2, 0, 0, 16}, "^7Item set:")
+ self.controls.setManage = new("ButtonControl"):ButtonControl({"LEFT",self.controls.setSelect,"RIGHT"}, {4, 0, 90, 20}, "Manage...", function()
self:OpenItemSetManagePopup()
end)
-- Price Items
- self.controls.priceDisplayItem = new("ButtonControl", {"TOPLEFT",self,"TOPLEFT"}, {96, 32, 310, 20}, "Trade for these items", function()
+ self.controls.priceDisplayItem = new("ButtonControl"):ButtonControl({"TOPLEFT",self,"TOPLEFT"}, {96, 32, 310, 20}, "Trade for these items", function()
self.tradeQuery:PriceItem()
end)
self.controls.priceDisplayItem.tooltipFunc = function(tooltip)
@@ -143,7 +147,7 @@ local ItemsTabClass = newClass("ItemsTab", "UndoHandler", "ControlHost", "Contro
self.slots = { }
self.orderedSlots = { }
self.slotOrder = { }
- self.slotAnchor = new("Control", {"TOPLEFT",self,"TOPLEFT"}, {96, 76, 310, 0})
+ self.slotAnchor = new("Control"):Control({"TOPLEFT",self,"TOPLEFT"}, {96, 76, 310, 0})
local prevSlot = self.slotAnchor
local function addSlot(slot)
prevSlot = slot
@@ -153,7 +157,7 @@ local ItemsTabClass = newClass("ItemsTab", "UndoHandler", "ControlHost", "Contro
t_insert(self.controls, slot)
end
for index, slotName in ipairs(baseSlots) do
- local slot = new("ItemSlotControl", {"TOPLEFT",prevSlot,"BOTTOMLEFT"}, 0, 2, self, slotName)
+ local slot = new("ItemSlotControl"):ItemSlotControl({"TOPLEFT",prevSlot,"BOTTOMLEFT"}, 0, 2, self, slotName)
addSlot(slot)
if slotName:match("Weapon") then
-- Add alternate weapon slot
@@ -161,14 +165,14 @@ local ItemsTabClass = newClass("ItemsTab", "UndoHandler", "ControlHost", "Contro
slot.shown = function()
return not self.activeItemSet.useSecondWeaponSet
end
- local swapSlot = new("ItemSlotControl", {"TOPLEFT",prevSlot,"BOTTOMLEFT"}, 0, 2, self, slotName.." Swap", slotName)
+ local swapSlot = new("ItemSlotControl"):ItemSlotControl({"TOPLEFT",prevSlot,"BOTTOMLEFT"}, 0, 2, self, slotName.." Swap", slotName)
addSlot(swapSlot)
swapSlot.weaponSet = 2
swapSlot.shown = function()
return self.activeItemSet.useSecondWeaponSet
end
for i = 1, 6 do
- local abyssal = new("ItemSlotControl", {"TOPLEFT",prevSlot,"BOTTOMLEFT"}, 0, 2, self, slotName.." Swap Abyssal Socket "..i, "Abyssal #"..i)
+ local abyssal = new("ItemSlotControl"):ItemSlotControl({"TOPLEFT",prevSlot,"BOTTOMLEFT"}, 0, 2, self, slotName.." Swap Abyssal Socket "..i, "Abyssal #"..i)
addSlot(abyssal)
abyssal.parentSlot = swapSlot
abyssal.weaponSet = 2
@@ -189,7 +193,7 @@ local ItemsTabClass = newClass("ItemsTab", "UndoHandler", "ControlHost", "Contro
if slotName == "Weapon 1" or slotName == "Weapon 2" or slotName == "Helmet" or slotName == "Gloves" or slotName == "Body Armour" or slotName == "Boots" or slotName == "Belt" then
-- Add Abyssal Socket slots
for i = 1, 6 do
- local abyssal = new("ItemSlotControl", {"TOPLEFT",prevSlot,"BOTTOMLEFT"}, 0, 2, self, slotName.." Abyssal Socket "..i, "Abyssal #"..i)
+ local abyssal = new("ItemSlotControl"):ItemSlotControl({"TOPLEFT",prevSlot,"BOTTOMLEFT"}, 0, 2, self, slotName.." Abyssal Socket "..i, "Abyssal #"..i)
addSlot(abyssal)
abyssal.parentSlot = slot
if slotName:match("Weapon") then
@@ -204,7 +208,7 @@ local ItemsTabClass = newClass("ItemsTab", "UndoHandler", "ControlHost", "Contro
end
-- Passive tree dropdown controls
- self.controls.specSelect = new("DropDownControl", {"TOPLEFT",prevSlot,"BOTTOMLEFT"}, {0, 8, 216, 20}, nil, function(index, value)
+ self.controls.specSelect = new("DropDownControl"):DropDownControl({"TOPLEFT",prevSlot,"BOTTOMLEFT"}, {0, 8, 216, 20}, nil, function(index, value)
if self.build.treeTab.specList[index] then
self.build.modFlag = true
self.build.treeTab:SetActiveSpec(index)
@@ -214,10 +218,10 @@ local ItemsTabClass = newClass("ItemsTab", "UndoHandler", "ControlHost", "Contro
return #self.controls.specSelect.list > 1
end
prevSlot = self.controls.specSelect
- self.controls.specButton = new("ButtonControl", {"LEFT",prevSlot,"RIGHT"}, {4, 0, 90, 20}, "Manage...", function()
+ self.controls.specButton = new("ButtonControl"):ButtonControl({"LEFT",prevSlot,"RIGHT"}, {4, 0, 90, 20}, "Manage...", function()
self.build.treeTab:OpenSpecManagePopup()
end)
- self.controls.specLabel = new("LabelControl", {"RIGHT",prevSlot,"LEFT"}, {-2, 0, 0, 16}, "^7Passive tree:")
+ self.controls.specLabel = new("LabelControl"):LabelControl({"RIGHT",prevSlot,"LEFT"}, {-2, 0, 0, 16}, "^7Passive tree:")
self.sockets = { }
local socketOrder = { }
@@ -230,12 +234,12 @@ local ItemsTabClass = newClass("ItemsTab", "UndoHandler", "ControlHost", "Contro
return a.id < b.id
end)
for _, node in ipairs(socketOrder) do
- local socketControl = new("ItemSlotControl", {"TOPLEFT",prevSlot,"BOTTOMLEFT"}, 0, 2, self, "Jewel "..node.id, "Socket", node.id)
+ local socketControl = new("ItemSlotControl"):ItemSlotControl({"TOPLEFT",prevSlot,"BOTTOMLEFT"}, 0, 2, self, "Jewel "..node.id, "Socket", node.id)
self.sockets[node.id] = socketControl
addSlot(socketControl)
end
- self.controls.slotHeader = new("LabelControl", {"BOTTOMLEFT",self.slotAnchor,"TOPLEFT"}, {0, -4, 0, 16}, "^7Equipped items:")
- self.controls.weaponSwap1 = new("ButtonControl", {"BOTTOMRIGHT",self.slotAnchor,"TOPRIGHT"}, {-20, -2, 18, 18}, "I", function()
+ self.controls.slotHeader = new("LabelControl"):LabelControl({"BOTTOMLEFT",self.slotAnchor,"TOPLEFT"}, {0, -4, 0, 16}, "^7Equipped items:")
+ self.controls.weaponSwap1 = new("ButtonControl"):ButtonControl({"BOTTOMRIGHT",self.slotAnchor,"TOPRIGHT"}, {-20, -2, 18, 18}, "I", function()
if self.activeItemSet.useSecondWeaponSet then
self.activeItemSet.useSecondWeaponSet = false
self:AddUndoState()
@@ -255,7 +259,7 @@ local ItemsTabClass = newClass("ItemsTab", "UndoHandler", "ControlHost", "Contro
self.controls.weaponSwap1.locked = function()
return not self.activeItemSet.useSecondWeaponSet
end
- self.controls.weaponSwap2 = new("ButtonControl", {"BOTTOMRIGHT",self.slotAnchor,"TOPRIGHT"}, {0, -2, 18, 18}, "II", function()
+ self.controls.weaponSwap2 = new("ButtonControl"):ButtonControl({"BOTTOMRIGHT",self.slotAnchor,"TOPRIGHT"}, {0, -2, 18, 18}, "II", function()
if not self.activeItemSet.useSecondWeaponSet then
self.activeItemSet.useSecondWeaponSet = true
self:AddUndoState()
@@ -275,24 +279,24 @@ local ItemsTabClass = newClass("ItemsTab", "UndoHandler", "ControlHost", "Contro
self.controls.weaponSwap2.locked = function()
return self.activeItemSet.useSecondWeaponSet
end
- self.controls.weaponSwapLabel = new("LabelControl", {"RIGHT",self.controls.weaponSwap1,"LEFT"}, {-4, 0, 0, 14}, "^7Weapon Set:")
+ self.controls.weaponSwapLabel = new("LabelControl"):LabelControl({"RIGHT",self.controls.weaponSwap1,"LEFT"}, {-4, 0, 0, 14}, "^7Weapon Set:")
-- All items list
if main.portraitMode then
- self.controls.itemList = new("ItemListControl", {"TOPRIGHT",self.lastSlot,"BOTTOMRIGHT"}, {0, 0, 360, 308}, self, true)
+ self.controls.itemList = new("ItemListControl"):ItemListControl({"TOPRIGHT",self.lastSlot,"BOTTOMRIGHT"}, {0, 0, 360, 308}, self, true)
else
- self.controls.itemList = new("ItemListControl", {"TOPLEFT",self.controls.setManage,"TOPRIGHT"}, {20, 20, 360, 308}, self, true)
+ self.controls.itemList = new("ItemListControl"):ItemListControl({"TOPLEFT",self.controls.setManage,"TOPRIGHT"}, {20, 20, 360, 308}, self, true)
end
-- Database selector
- self.controls.selectDBLabel = new("LabelControl", {"TOPLEFT",self.controls.itemList,"BOTTOMLEFT"}, {0, 14, 0, 16}, "^7Import from:")
+ self.controls.selectDBLabel = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.itemList,"BOTTOMLEFT"}, {0, 14, 0, 16}, "^7Import from:")
self.controls.selectDBLabel.shown = function()
return self.height < 980
end
- self.controls.selectDB = new("DropDownControl", {"LEFT",self.controls.selectDBLabel,"RIGHT"}, {4, 0, 150, 18}, { "Uniques", "Rare Templates" })
+ self.controls.selectDB = new("DropDownControl"):DropDownControl({"LEFT",self.controls.selectDBLabel,"RIGHT"}, {4, 0, 150, 18}, { "Uniques", "Rare Templates" })
-- Unique database
- self.controls.uniqueDB = new("ItemDBControl", {"TOPLEFT",self.controls.itemList,"BOTTOMLEFT"}, {0, 76, 360, function(c) return m_min(244, self.maxY - select(2, c:GetPos())) end}, self, main.uniqueDB, "UNIQUE")
+ self.controls.uniqueDB = new("ItemDBControl"):ItemDBControl({"TOPLEFT",self.controls.itemList,"BOTTOMLEFT"}, {0, 76, 360, function(c) return m_min(244, self.maxY - select(2, c:GetPos())) end}, self, main.uniqueDB, "UNIQUE")
self.controls.uniqueDB.y = function()
return self.controls.selectDBLabel:IsShown() and 118 or 96
end
@@ -301,7 +305,7 @@ local ItemsTabClass = newClass("ItemsTab", "UndoHandler", "ControlHost", "Contro
end
-- Rare template database
- self.controls.rareDB = new("ItemDBControl", {"TOPLEFT",self.controls.itemList,"BOTTOMLEFT"}, {0, 76, 360, function(c) return m_min(260, self.maxY - select(2, c:GetPos())) end}, self, main.rareDB, "RARE")
+ self.controls.rareDB = new("ItemDBControl"):ItemDBControl({"TOPLEFT",self.controls.itemList,"BOTTOMLEFT"}, {0, 76, 360, function(c) return m_min(260, self.maxY - select(2, c:GetPos())) end}, self, main.rareDB, "RARE")
self.controls.rareDB.y = function()
return self.controls.selectDBLabel:IsShown() and 78 or 396
end
@@ -309,16 +313,16 @@ local ItemsTabClass = newClass("ItemsTab", "UndoHandler", "ControlHost", "Contro
return not self.controls.selectDBLabel:IsShown() or self.controls.selectDB.selIndex == 2
end
-- Create/import item
- self.controls.craftDisplayItem = new("ButtonControl", {"TOPLEFT",main.portraitMode and self.controls.setManage or self.controls.itemList,"TOPRIGHT"}, {20, main.portraitMode and 0 or -20, 120, 20}, "Craft item...", function()
+ self.controls.craftDisplayItem = new("ButtonControl"):ButtonControl({"TOPLEFT",main.portraitMode and self.controls.setManage or self.controls.itemList,"TOPRIGHT"}, {20, main.portraitMode and 0 or -20, 120, 20}, "Craft item...", function()
self:CraftItem()
end)
self.controls.craftDisplayItem.shown = function()
return self.displayItem == nil
end
- self.controls.newDisplayItem = new("ButtonControl", {"TOPLEFT",self.controls.craftDisplayItem,"TOPRIGHT"}, {8, 0, 120, 20}, "Create custom...", function()
+ self.controls.newDisplayItem = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.craftDisplayItem,"TOPRIGHT"}, {8, 0, 120, 20}, "Create custom...", function()
self:EditDisplayItemText()
end)
- self.controls.displayItemTip = new("LabelControl", {"TOPLEFT",self.controls.craftDisplayItem,"BOTTOMLEFT"}, {0, 8, 100, 16},
+ self.controls.displayItemTip = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.craftDisplayItem,"BOTTOMLEFT"}, {0, 8, 100, 16},
[[^7Double-click an item from one of the lists,
or copy and paste an item from in game
(hover over the item and Ctrl+C) to view or edit
@@ -331,31 +335,31 @@ drag it onto the slot. This will also add it to
your build if it's from the unique/template list.
If there's 2 slots an item can go in,
holding Shift will put it in the second.]])
- self.controls.sharedItemList = new("SharedItemListControl", {"TOPLEFT",self.controls.craftDisplayItem, "BOTTOMLEFT"}, {0, 232, 340, 308}, self, true)
+ self.controls.sharedItemList = new("SharedItemListControl"):SharedItemListControl({"TOPLEFT",self.controls.craftDisplayItem, "BOTTOMLEFT"}, {0, 232, 340, 308}, self, true)
-- Display item
- self.displayItemTooltip = new("Tooltip")
+ self.displayItemTooltip = new("Tooltip"):Tooltip()
self.displayItemTooltip.maxWidth = 458
- self.anchorDisplayItem = new("Control", {"TOPLEFT",main.portraitMode and self.controls.setManage or self.controls.itemList,"TOPRIGHT"}, {20, main.portraitMode and 0 or -20, 0, 0})
+ self.anchorDisplayItem = new("Control"):Control({"TOPLEFT",main.portraitMode and self.controls.setManage or self.controls.itemList,"TOPRIGHT"}, {20, main.portraitMode and 0 or -20, 0, 0})
self.anchorDisplayItem.shown = function()
return self.displayItem ~= nil
end
- self.controls.addDisplayItem = new("ButtonControl", {"TOPLEFT",self.anchorDisplayItem,"TOPLEFT"}, {0, 0, 100, 20}, "", function()
+ self.controls.addDisplayItem = new("ButtonControl"):ButtonControl({"TOPLEFT",self.anchorDisplayItem,"TOPLEFT"}, {0, 0, 100, 20}, "", function()
self:AddDisplayItem()
end)
self.controls.addDisplayItem.label = function()
return self.items[self.displayItem.id] and "Save" or "Add to build"
end
- self.controls.editDisplayItem = new("ButtonControl", {"LEFT",self.controls.addDisplayItem,"RIGHT"}, {8, 0, 60, 20}, "Edit...", function()
+ self.controls.editDisplayItem = new("ButtonControl"):ButtonControl({"LEFT",self.controls.addDisplayItem,"RIGHT"}, {8, 0, 60, 20}, "Edit...", function()
self:EditDisplayItemText()
end)
- self.controls.removeDisplayItem = new("ButtonControl", {"LEFT",self.controls.editDisplayItem,"RIGHT"}, {8, 0, 60, 20}, "Cancel", function()
+ self.controls.removeDisplayItem = new("ButtonControl"):ButtonControl({"LEFT",self.controls.editDisplayItem,"RIGHT"}, {8, 0, 60, 20}, "Cancel", function()
self:SetDisplayItem()
end)
-- Section: Variant(s)
- self.controls.displayItemSectionVariant = new("Control", {"TOPLEFT",self.controls.addDisplayItem,"BOTTOMLEFT"}, {0, 8, 0, function()
+ self.controls.displayItemSectionVariant = new("Control"):Control({"TOPLEFT",self.controls.addDisplayItem,"BOTTOMLEFT"}, {0, 8, 0, function()
if not self.controls.displayItemVariant:IsShown() then
return 0
end
@@ -366,7 +370,7 @@ holding Shift will put it in the second.]])
(self.displayItem.hasAltVariant4 and 24 or 0) +
(self.displayItem.hasAltVariant5 and 24 or 0))
end})
- self.controls.displayItemVariant = new("DropDownControl", {"TOPLEFT", self.controls.displayItemSectionVariant,"TOPLEFT"}, {0, 0, 300, 20}, nil, function(index, value)
+ self.controls.displayItemVariant = new("DropDownControl"):DropDownControl({"TOPLEFT", self.controls.displayItemSectionVariant,"TOPLEFT"}, {0, 0, 300, 20}, nil, function(index, value)
self.displayItem.variant = index
self.displayItem:BuildAndParseRaw()
self:UpdateDisplayItemTooltip()
@@ -376,7 +380,7 @@ holding Shift will put it in the second.]])
self.controls.displayItemVariant.shown = function()
return self.displayItem.variantList and #self.displayItem.variantList > 1
end
- self.controls.displayItemAltVariant = new("DropDownControl", {"TOPLEFT",self.controls.displayItemVariant,"BOTTOMLEFT"}, {0, 4, 300, 20}, nil, function(index, value)
+ self.controls.displayItemAltVariant = new("DropDownControl"):DropDownControl({"TOPLEFT",self.controls.displayItemVariant,"BOTTOMLEFT"}, {0, 4, 300, 20}, nil, function(index, value)
self.displayItem.variantAlt = index
self.displayItem:BuildAndParseRaw()
self:UpdateDisplayItemTooltip()
@@ -386,7 +390,7 @@ holding Shift will put it in the second.]])
self.controls.displayItemAltVariant.shown = function()
return self.displayItem.hasAltVariant
end
- self.controls.displayItemAltVariant2 = new("DropDownControl", {"TOPLEFT",self.controls.displayItemAltVariant,"BOTTOMLEFT"}, {0, 4, 300, 20}, nil, function(index, value)
+ self.controls.displayItemAltVariant2 = new("DropDownControl"):DropDownControl({"TOPLEFT",self.controls.displayItemAltVariant,"BOTTOMLEFT"}, {0, 4, 300, 20}, nil, function(index, value)
self.displayItem.variantAlt2 = index
self.displayItem:BuildAndParseRaw()
self:UpdateDisplayItemTooltip()
@@ -396,7 +400,7 @@ holding Shift will put it in the second.]])
self.controls.displayItemAltVariant2.shown = function()
return self.displayItem.hasAltVariant2
end
- self.controls.displayItemAltVariant3 = new("DropDownControl", {"TOPLEFT",self.controls.displayItemAltVariant2,"BOTTOMLEFT"}, {0, 4, 300, 20}, nil, function(index, value)
+ self.controls.displayItemAltVariant3 = new("DropDownControl"):DropDownControl({"TOPLEFT",self.controls.displayItemAltVariant2,"BOTTOMLEFT"}, {0, 4, 300, 20}, nil, function(index, value)
self.displayItem.variantAlt3 = index
self.displayItem:BuildAndParseRaw()
self:UpdateDisplayItemTooltip()
@@ -406,7 +410,7 @@ holding Shift will put it in the second.]])
self.controls.displayItemAltVariant3.shown = function()
return self.displayItem.hasAltVariant3
end
- self.controls.displayItemAltVariant4 = new("DropDownControl", {"TOPLEFT",self.controls.displayItemAltVariant3,"BOTTOMLEFT"}, {0, 4, 300, 20}, nil, function(index, value)
+ self.controls.displayItemAltVariant4 = new("DropDownControl"):DropDownControl({"TOPLEFT",self.controls.displayItemAltVariant3,"BOTTOMLEFT"}, {0, 4, 300, 20}, nil, function(index, value)
self.displayItem.variantAlt4 = index
self.displayItem:BuildAndParseRaw()
self:UpdateDisplayItemTooltip()
@@ -416,7 +420,7 @@ holding Shift will put it in the second.]])
self.controls.displayItemAltVariant4.shown = function()
return self.displayItem.hasAltVariant4
end
- self.controls.displayItemAltVariant5 = new("DropDownControl", {"TOPLEFT",self.controls.displayItemAltVariant4,"BOTTOMLEFT"}, {0, 4, 300, 20}, nil, function(index, value)
+ self.controls.displayItemAltVariant5 = new("DropDownControl"):DropDownControl({"TOPLEFT",self.controls.displayItemAltVariant4,"BOTTOMLEFT"}, {0, 4, 300, 20}, nil, function(index, value)
self.displayItem.variantAlt5 = index
self.displayItem:BuildAndParseRaw()
self:UpdateDisplayItemTooltip()
@@ -428,11 +432,11 @@ holding Shift will put it in the second.]])
end
-- Section: Sockets and Links
- self.controls.displayItemSectionSockets = new("Control", {"TOPLEFT",self.controls.displayItemSectionVariant,"BOTTOMLEFT"}, {0, 0, 0, function()
+ self.controls.displayItemSectionSockets = new("Control"):Control({"TOPLEFT",self.controls.displayItemSectionVariant,"BOTTOMLEFT"}, {0, 0, 0, function()
return self.displayItem and self.displayItem.selectableSocketCount > 0 and 28 or 0
end})
for i = 1, 6 do
- local drop = new("DropDownControl", {"TOPLEFT",self.controls.displayItemSectionSockets,"TOPLEFT"}, {(i-1) * 64, 0, 36, 20}, socketDropList, function(index, value)
+ local drop = new("DropDownControl"):DropDownControl({"TOPLEFT",self.controls.displayItemSectionSockets,"TOPLEFT"}, {(i-1) * 64, 0, 36, 20}, socketDropList, function(index, value)
self.displayItem.sockets[i].color = value.color
self.displayItem:BuildAndParseRaw()
self:UpdateDisplayItemTooltip()
@@ -442,7 +446,7 @@ holding Shift will put it in the second.]])
end
self.controls["displayItemSocket"..i] = drop
if i < 6 then
- local link = new("CheckBoxControl", {"LEFT",drop,"RIGHT"}, {4, 0, 20}, nil, function(state)
+ local link = new("CheckBoxControl"):CheckBoxControl({"LEFT",drop,"RIGHT"}, {4, 0, 20}, nil, function(state)
if state and self.displayItem.sockets[i].group ~= self.displayItem.sockets[i+1].group then
for s = i + 1, #self.displayItem.sockets do
self.displayItem.sockets[s].group = self.displayItem.sockets[s].group - 1
@@ -461,7 +465,7 @@ holding Shift will put it in the second.]])
self.controls["displayItemLink"..i] = link
end
end
- self.controls.displayItemAddSocket = new("ButtonControl", {"TOPLEFT",self.controls.displayItemSectionSockets,"TOPLEFT"}, {function() return (#self.displayItem.sockets - self.displayItem.abyssalSocketCount) * 64 - 12 end, 0, 20, 20}, "+", function()
+ self.controls.displayItemAddSocket = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.displayItemSectionSockets,"TOPLEFT"}, {function() return (#self.displayItem.sockets - self.displayItem.abyssalSocketCount) * 64 - 12 end, 0, 20, 20}, "+", function()
local insertIndex = #self.displayItem.sockets - self.displayItem.abyssalSocketCount + 1
t_insert(self.displayItem.sockets, insertIndex, {
color = self.displayItem.defaultSocketColor,
@@ -479,28 +483,28 @@ holding Shift will put it in the second.]])
end
-- Section: Enchant / Anoint / Corrupt
- self.controls.displayItemSectionEnchant = new("Control", {"TOPLEFT",self.controls.displayItemSectionSockets,"BOTTOMLEFT"}, {0, 0, 0, function()
+ self.controls.displayItemSectionEnchant = new("Control"):Control({"TOPLEFT",self.controls.displayItemSectionSockets,"BOTTOMLEFT"}, {0, 0, 0, function()
return (self.controls.displayItemEnchant:IsShown() or self.controls.displayItemEnchant2:IsShown() or self.controls.displayItemAnoint:IsShown() or self.controls.displayItemAnoint2:IsShown() or self.controls.displayItemCorrupt:IsShown() ) and 28 or 0
end})
- self.controls.displayItemEnchant = new("ButtonControl", {"TOPLEFT",self.controls.displayItemSectionEnchant,"TOPLEFT"}, {0, 0, 160, 20}, "Apply Enchantment...", function()
+ self.controls.displayItemEnchant = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.displayItemSectionEnchant,"TOPLEFT"}, {0, 0, 160, 20}, "Apply Enchantment...", function()
self:EnchantDisplayItem(1)
end)
self.controls.displayItemEnchant.shown = function()
return self.displayItem and self.displayItem.enchantments
end
- self.controls.displayItemEnchant2 = new("ButtonControl", {"TOPLEFT",self.controls.displayItemEnchant,"TOPRIGHT",true}, {8, 0, 160, 20}, "Apply Enchantment 2...", function()
+ self.controls.displayItemEnchant2 = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.displayItemEnchant,"TOPRIGHT",true}, {8, 0, 160, 20}, "Apply Enchantment 2...", function()
self:EnchantDisplayItem(2)
end)
self.controls.displayItemEnchant2.shown = function()
return self.displayItem and self.displayItem.enchantments and self.displayItem.canHaveTwoEnchants and #self.displayItem.enchantModLines > 0
end
- self.controls.displayItemAnoint = new("ButtonControl", {"TOPLEFT",self.controls.displayItemEnchant2,"TOPRIGHT",true}, {8, 0, 100, 20}, "Anoint...", function()
+ self.controls.displayItemAnoint = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.displayItemEnchant2,"TOPRIGHT",true}, {8, 0, 100, 20}, "Anoint...", function()
self:AnointDisplayItem(1)
end)
self.controls.displayItemAnoint.shown = function()
return self.displayItem and isAnointable(self.displayItem)
end
- self.controls.displayItemAnoint2 = new("ButtonControl", {"TOPLEFT",self.controls.displayItemAnoint,"TOPRIGHT",true}, {8, 0, 100, 20}, "Anoint 2...", function()
+ self.controls.displayItemAnoint2 = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.displayItemAnoint,"TOPRIGHT",true}, {8, 0, 100, 20}, "Anoint 2...", function()
self:AnointDisplayItem(2)
end)
self.controls.displayItemAnoint2.shown = function()
@@ -509,7 +513,7 @@ holding Shift will put it in the second.]])
self.displayItem.canHaveTwoEnchants and
#self.displayItem.enchantModLines > 0
end
- self.controls.displayItemAnoint3 = new("ButtonControl", {"TOPLEFT",self.controls.displayItemAnoint2,"TOPRIGHT",true}, {8, 0, 100, 20}, "Anoint 3...", function()
+ self.controls.displayItemAnoint3 = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.displayItemAnoint2,"TOPRIGHT",true}, {8, 0, 100, 20}, "Anoint 3...", function()
self:AnointDisplayItem(3)
end)
self.controls.displayItemAnoint3.shown = function()
@@ -518,7 +522,7 @@ holding Shift will put it in the second.]])
self.displayItem.canHaveThreeEnchants and
#self.displayItem.enchantModLines > 1
end
- self.controls.displayItemAnoint4 = new("ButtonControl", {"TOPLEFT",self.controls.displayItemAnoint3,"TOPRIGHT",true}, {8, 0, 100, 20}, "Anoint 4...", function()
+ self.controls.displayItemAnoint4 = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.displayItemAnoint3,"TOPRIGHT",true}, {8, 0, 100, 20}, "Anoint 4...", function()
self:AnointDisplayItem(4)
end)
self.controls.displayItemAnoint4.shown = function()
@@ -527,21 +531,21 @@ holding Shift will put it in the second.]])
self.displayItem.canHaveFourEnchants and
#self.displayItem.enchantModLines > 2
end
- self.controls.displayItemCorrupt = new("ButtonControl", {"TOPLEFT",self.controls.displayItemAnoint4,"TOPRIGHT",true}, {8, 10, 100, 20}, "Corrupt...", function()
+ self.controls.displayItemCorrupt = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.displayItemAnoint4,"TOPRIGHT",true}, {8, 10, 100, 20}, "Corrupt...", function()
self:CorruptDisplayItem("Corrupted")
end)
self.controls.displayItemCorrupt.shown = function()
return self.displayItem and self.displayItem.corruptible
end
--[[
- self.controls.displayItemScourge = new("ButtonControl", {"TOPLEFT",self.controls.displayItemCorrupt,"TOPRIGHT",true}, {8, 0, 100, 20}, "Scourge...", function()
+ self.controls.displayItemScourge = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.displayItemCorrupt,"TOPRIGHT",true}, {8, 0, 100, 20}, "Scourge...", function()
self:CorruptDisplayItem("Scourge")
end)
self.controls.displayItemScourge.shown = function()
return self.displayItem and self.displayItem.corruptible
end
--]]
- self.controls.displayItemAddImplicit = new("ButtonControl", {"TOPLEFT",self.controls.displayItemCorrupt,"TOPRIGHT",true}, {8, 0, 120, 20}, "Add Implicit...", function()
+ self.controls.displayItemAddImplicit = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.displayItemCorrupt,"TOPRIGHT",true}, {8, 0, 120, 20}, "Add Implicit...", function()
self:AddImplicitToDisplayItem()
end)
self.controls.displayItemAddImplicit.shown = function()
@@ -580,17 +584,17 @@ holding Shift will put it in the second.]])
self.displayItem:BuildAndParseRaw()
self:UpdateDisplayItemTooltip()
end
- self.controls.displayItemSectionInfluence = new("Control", {"TOPLEFT",self.controls.displayItemSectionEnchant,"BOTTOMLEFT"}, {0, 0, 0, function()
+ self.controls.displayItemSectionInfluence = new("Control"):Control({"TOPLEFT",self.controls.displayItemSectionEnchant,"BOTTOMLEFT"}, {0, 0, 0, function()
return self.displayItem and self.displayItem.canBeInfluenced and 28 or 0
end})
- self.controls.displayItemInfluence = new("DropDownControl", {"TOPLEFT",self.controls.displayItemSectionInfluence,"TOPRIGHT"}, {0, 0, 100, 20}, influenceDisplayList, function(index, value)
+ self.controls.displayItemInfluence = new("DropDownControl"):DropDownControl({"TOPLEFT",self.controls.displayItemSectionInfluence,"TOPRIGHT"}, {0, 0, 100, 20}, influenceDisplayList, function(index, value)
local otherIndex = self.controls.displayItemInfluence2.selIndex
setDisplayItemInfluence({ index - 1, otherIndex - 1 })
end)
self.controls.displayItemInfluence.shown = function()
return self.displayItem and self.displayItem.canBeInfluenced
end
- self.controls.displayItemInfluence2 = new("DropDownControl", {"TOPLEFT",self.controls.displayItemInfluence,"TOPRIGHT",true}, {8, 0, 100, 20}, influenceDisplayList, function(index, value)
+ self.controls.displayItemInfluence2 = new("DropDownControl"):DropDownControl({"TOPLEFT",self.controls.displayItemInfluence,"TOPRIGHT",true}, {8, 0, 100, 20}, influenceDisplayList, function(index, value)
local otherIndex = self.controls.displayItemInfluence.selIndex
setDisplayItemInfluence({ index - 1, otherIndex - 1 })
end)
@@ -599,15 +603,15 @@ holding Shift will put it in the second.]])
end
-- Section: Item Quality
- self.controls.displayItemSectionQuality = new("Control", {"TOPLEFT",self.controls.displayItemSectionInfluence,"BOTTOMLEFT"}, {0, 0, 0, function()
+ self.controls.displayItemSectionQuality = new("Control"):Control({"TOPLEFT",self.controls.displayItemSectionInfluence,"BOTTOMLEFT"}, {0, 0, 0, function()
return (self.controls.displayItemQuality:IsShown() and self.controls.displayItemQualityEdit:IsShown()) and 28 or 0
end})
- self.controls.displayItemQuality = new("LabelControl", {"TOPLEFT",self.controls.displayItemSectionQuality,"TOPRIGHT"}, {-4, 0, 0, 16}, "^7Quality:")
+ self.controls.displayItemQuality = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.displayItemSectionQuality,"TOPRIGHT"}, {-4, 0, 0, 16}, "^7Quality:")
self.controls.displayItemQuality.shown = function()
return self.displayItem and self.displayItem.quality and (self.displayItem.base.type ~= "Amulet" or self.displayItem.base.type ~= "Belt" or self.displayItem.base.type ~= "Jewel" or self.displayItem.base.type ~= "Quiver" or self.displayItem.base.type ~= "Ring" or self.displayItem.type ~= "Graft")
end
- self.controls.displayItemQualityEdit = new("EditControl", {"LEFT",self.controls.displayItemQuality,"RIGHT"}, {2, 0, 60, 20}, nil, nil, "%D", 2, function(buf)
+ self.controls.displayItemQualityEdit = new("EditControl"):EditControl({"LEFT",self.controls.displayItemQuality,"RIGHT"}, {2, 0, 60, 20}, nil, nil, "%D", 2, function(buf)
self.displayItem.quality = tonumber(buf)
self.displayItem:BuildAndParseRaw()
self:UpdateDisplayItemTooltip()
@@ -617,10 +621,10 @@ holding Shift will put it in the second.]])
end
-- Section: Catalysts
- self.controls.displayItemSectionCatalyst = new("Control", {"TOPLEFT",self.controls.displayItemSectionQuality,"BOTTOMLEFT"}, {0, 0, 0, function()
+ self.controls.displayItemSectionCatalyst = new("Control"):Control({"TOPLEFT",self.controls.displayItemSectionQuality,"BOTTOMLEFT"}, {0, 0, 0, function()
return (self.controls.displayItemCatalyst:IsShown() or self.controls.displayItemCatalystQualityEdit:IsShown()) and 28 or 0
end})
- self.controls.displayItemCatalyst = new("DropDownControl", {"TOPLEFT",self.controls.displayItemSectionCatalyst,"TOPRIGHT"}, {0, 0, 250, 20},
+ self.controls.displayItemCatalyst = new("DropDownControl"):DropDownControl({"TOPLEFT",self.controls.displayItemSectionCatalyst,"TOPRIGHT"}, {0, 0, 250, 20},
{"Catalyst","Abrasive (Attack)","Accelerating (Speed)","Dextral (Suffix)","Fertile (Life & Mana)","Imbued (Caster)","Intrinsic (Attribute)","Noxious (Physical & Chaos Damage)",
"Prismatic (Resistance)","Sinistral (Prefix)","Tempering (Defense)","Turbulent (Elemental)","Unstable (Critical)"},
function(index, value)
@@ -642,7 +646,7 @@ holding Shift will put it in the second.]])
self.controls.displayItemCatalyst.shown = function()
return self.displayItem and (self.displayItem.crafted or self.displayItem.hasModTags) and (self.displayItem.base.type == "Amulet" or self.displayItem.base.type == "Ring" or self.displayItem.base.type == "Belt")
end
- self.controls.displayItemCatalystQualityEdit = new("EditControl", {"LEFT",self.controls.displayItemCatalyst,"RIGHT"}, {2, 0, 60, 20}, nil, nil, "%D", 2, function(buf)
+ self.controls.displayItemCatalystQualityEdit = new("EditControl"):EditControl({"LEFT",self.controls.displayItemCatalyst,"RIGHT"}, {2, 0, 60, 20}, nil, nil, "%D", 2, function(buf)
self.displayItem.catalystQuality = tonumber(buf)
if self.displayItem.crafted then
for i = 1, self.displayItem.affixLimit do
@@ -659,10 +663,10 @@ holding Shift will put it in the second.]])
end
-- Section: Cluster Jewel
- self.controls.displayItemSectionClusterJewel = new("Control", {"TOPLEFT",self.controls.displayItemSectionCatalyst,"BOTTOMLEFT"}, {0, 0, 0, function()
+ self.controls.displayItemSectionClusterJewel = new("Control"):Control({"TOPLEFT",self.controls.displayItemSectionCatalyst,"BOTTOMLEFT"}, {0, 0, 0, function()
return self.controls.displayItemClusterJewelSkill:IsShown() and 52 or 0
end})
- self.controls.displayItemClusterJewelSkill = new("DropDownControl", {"TOPLEFT",self.controls.displayItemSectionClusterJewel,"TOPLEFT"}, {0, 0, 300, 20}, { }, function(index, value)
+ self.controls.displayItemClusterJewelSkill = new("DropDownControl"):DropDownControl({"TOPLEFT",self.controls.displayItemSectionClusterJewel,"TOPLEFT"}, {0, 0, 300, 20}, { }, function(index, value)
self.displayItem.clusterJewelSkill = value.skillId
self:CraftClusterJewel()
end) {
@@ -671,8 +675,8 @@ holding Shift will put it in the second.]])
end
}
- self.controls.displayItemClusterJewelNodeCountLabel = new("LabelControl", {"TOPLEFT",self.controls.displayItemClusterJewelSkill,"BOTTOMLEFT"}, {0, 7, 0, 14}, "^7Added Passives:")
- self.controls.displayItemClusterJewelNodeCount = new("SliderControl", {"LEFT",self.controls.displayItemClusterJewelNodeCountLabel,"RIGHT"}, {2, 0, 150, 20}, function(val)
+ self.controls.displayItemClusterJewelNodeCountLabel = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.displayItemClusterJewelSkill,"BOTTOMLEFT"}, {0, 7, 0, 14}, "^7Added Passives:")
+ self.controls.displayItemClusterJewelNodeCount = new("SliderControl"):SliderControl({"LEFT",self.controls.displayItemClusterJewelNodeCountLabel,"RIGHT"}, {2, 0, 150, 20}, function(val)
local divVal = self.controls.displayItemClusterJewelNodeCount:GetDivVal()
local clusterJewel = self.displayItem.clusterJewel
self.displayItem.clusterJewelNodeCount = round(val * (clusterJewel.maxNodes - clusterJewel.minNodes) + clusterJewel.minNodes)
@@ -680,7 +684,7 @@ holding Shift will put it in the second.]])
end)
-- Section: Affix Selection
- self.controls.displayItemSectionAffix = new("Control", {"TOPLEFT",self.controls.displayItemSectionClusterJewel,"BOTTOMLEFT"}, {0, 0, 0, function()
+ self.controls.displayItemSectionAffix = new("Control"):Control({"TOPLEFT",self.controls.displayItemSectionClusterJewel,"BOTTOMLEFT"}, {0, 0, 0, function()
if not self.displayItem or not self.displayItem.crafted then
return 0
end
@@ -738,7 +742,7 @@ holding Shift will put it in the second.]])
end
return range
end
- drop = new("DropDownControl", {"TOPLEFT",prev,"TOPLEFT"}, {i==1 and 40 or 0, 0, 418, 20}, nil, function(index, value)
+ drop = new("DropDownControl"):DropDownControl({"TOPLEFT",prev,"TOPLEFT"}, {i==1 and 40 or 0, 0, 418, 20}, nil, function(index, value)
local affix = { modId = "None" }
if value.modId then
affix.modId = value.modId
@@ -873,7 +877,7 @@ holding Shift will put it in the second.]])
drop.shown = function()
return self.displayItem and self.displayItem.crafted and i <= self.displayItem.affixLimit
end
- slider = new("SliderControl", {"TOPLEFT",drop,"BOTTOMLEFT"}, {0, 2, 300, 16}, function(val)
+ slider = new("SliderControl"):SliderControl({"TOPLEFT",drop,"BOTTOMLEFT"}, {0, 2, 300, 16}, function(val)
local affix = self.displayItem[drop.outputTable][drop.outputIndex]
local index, range = slider:GetDivVal()
affix.modId = drop.list[drop.selIndex].modList[index]
@@ -913,21 +917,21 @@ holding Shift will put it in the second.]])
end
drop.slider = slider
self.controls["displayItemAffix"..i] = drop
- self.controls["displayItemAffixLabel"..i] = new("LabelControl", {"RIGHT",drop,"LEFT"}, {-4, 0, 0, 14}, function()
+ self.controls["displayItemAffixLabel"..i] = new("LabelControl"):LabelControl({"RIGHT",drop,"LEFT"}, {-4, 0, 0, 14}, function()
return drop.outputTable == "prefixes" and "^7Prefix:" or "^7Suffix:"
end)
self.controls["displayItemAffixRange"..i] = slider
- self.controls["displayItemAffixRangeLabel"..i] = new("LabelControl", {"RIGHT",slider,"LEFT"}, {-4, 0, 0, 14}, function()
+ self.controls["displayItemAffixRangeLabel"..i] = new("LabelControl"):LabelControl({"RIGHT",slider,"LEFT"}, {-4, 0, 0, 14}, function()
return drop.selIndex > 1 and "^7Roll:" or "^x7F7F7FRoll:"
end)
end
-- Section: Custom modifiers
-- if either Custom or Crucible mod buttons are shown, create the control for the list of mods
- self.controls.displayItemSectionCustom = new("Control", {"TOPLEFT",self.controls.displayItemSectionAffix,"BOTTOMLEFT"}, {0, 0, 0, function()
+ self.controls.displayItemSectionCustom = new("Control"):Control({"TOPLEFT",self.controls.displayItemSectionAffix,"BOTTOMLEFT"}, {0, 0, 0, function()
return (self.controls.displayItemAddCustom:IsShown() or self.controls.displayItemAddCrucible:IsShown()) and 28 + self.displayItem.customCount * 22 or 0
end})
- self.controls.displayItemAddCustom = new("ButtonControl", {"TOPLEFT",self.controls.displayItemSectionCustom,"TOPLEFT"}, {0, 0, 120, 20}, "Add modifier...", function()
+ self.controls.displayItemAddCustom = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.displayItemSectionCustom,"TOPLEFT"}, {0, 0, 120, 20}, "Add modifier...", function()
self:AddCustomModifierToDisplayItem()
end)
self.controls.displayItemAddCustom.shown = function()
@@ -936,7 +940,7 @@ holding Shift will put it in the second.]])
-- Section: Crucible modifiers
-- if the Add modifier button is not shown, take its place, otherwise move it to the right of it
- self.controls.displayItemAddCrucible = new("ButtonControl", {"TOPLEFT",self.controls.displayItemSectionCustom,"TOPLEFT"}, {function()
+ self.controls.displayItemAddCrucible = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.displayItemSectionCustom,"TOPLEFT"}, {function()
return (self.controls.displayItemAddCustom:IsShown() and 128) or 0
end, 0, 150, 20}, "Add Crucible mod...", function()
self:AddCrucibleModifierToDisplayItem()
@@ -946,7 +950,7 @@ holding Shift will put it in the second.]])
end
-- Section: Modifier Range
- self.controls.displayItemSectionRange = new("Control", {"TOPLEFT",self.controls.displayItemSectionCustom,"BOTTOMLEFT"}, {0, 0, 0, function()
+ self.controls.displayItemSectionRange = new("Control"):Control({"TOPLEFT",self.controls.displayItemSectionCustom,"BOTTOMLEFT"}, {0, 0, 0, function()
if not self.displayItem or not self.displayItem.rangeLineList[1] then
return 0
end
@@ -957,13 +961,13 @@ holding Shift will put it in the second.]])
return 28
end
end})
- self.controls.displayItemRangeLine = new("DropDownControl", {"TOPLEFT",self.controls.displayItemSectionRange,"TOPLEFT"}, {0, 0, 350, 18}, nil, function(index, value)
+ self.controls.displayItemRangeLine = new("DropDownControl"):DropDownControl({"TOPLEFT",self.controls.displayItemSectionRange,"TOPLEFT"}, {0, 0, 350, 18}, nil, function(index, value)
self.controls.displayItemRangeSlider.val = self.displayItem.rangeLineList[index].range
end)
self.controls.displayItemRangeLine.shown = function()
return self.displayItem and self.displayItem.rangeLineList[1] ~= nil and not (main.showAllItemAffixes and self.displayItem.rarity == "UNIQUE")
end
- self.controls.displayItemRangeSlider = new("SliderControl", {"LEFT",self.controls.displayItemRangeLine,"RIGHT"}, {8, 0, 100, 18}, function(val)
+ self.controls.displayItemRangeSlider = new("SliderControl"):SliderControl({"LEFT",self.controls.displayItemRangeLine,"RIGHT"}, {8, 0, 100, 18}, function(val)
self.displayItem.rangeLineList[self.controls.displayItemRangeLine.selIndex].range = val
self.displayItem:BuildAndParseRaw()
self:UpdateDisplayItemTooltip()
@@ -973,7 +977,7 @@ holding Shift will put it in the second.]])
for i = 1, 20 do
local baseControl = i == 1 and self.controls.displayItemSectionRange or self.controls["displayItemStackedRangeSlider"..(i-1)]
- self.controls["displayItemStackedRangeSlider"..i] = new("SliderControl", {"TOPLEFT",baseControl,"TOPLEFT"}, {0, function()
+ self.controls["displayItemStackedRangeSlider"..i] = new("SliderControl"):SliderControl({"TOPLEFT",baseControl,"TOPLEFT"}, {0, function()
return i == 1 and 2 or 22
end, 100, 18}, function(val)
if self.displayItem and self.displayItem.rangeLineList[i] then
@@ -983,7 +987,7 @@ holding Shift will put it in the second.]])
self:UpdateCustomControls()
end
end)
- self.controls["displayItemStackedRangeLine"..i] = new("LabelControl", {"LEFT",self.controls["displayItemStackedRangeSlider"..i],"RIGHT"}, {8, -2, 350, 14}, function()
+ self.controls["displayItemStackedRangeLine"..i] = new("LabelControl"):LabelControl({"LEFT",self.controls["displayItemStackedRangeSlider"..i],"RIGHT"}, {8, -2, 350, 14}, function()
if self.displayItem and self.displayItem.rangeLineList[i] then
return "^7" .. self.displayItem.rangeLineList[i].line
end
@@ -999,11 +1003,11 @@ holding Shift will put it in the second.]])
end
-- Tooltip anchor
- self.controls.displayItemTooltipAnchor = new("Control", {"TOPLEFT",self.controls.displayItemSectionRange,"BOTTOMLEFT"})
+ self.controls.displayItemTooltipAnchor = new("Control"):Control({"TOPLEFT",self.controls.displayItemSectionRange,"BOTTOMLEFT"})
-- Scroll bars
- self.controls.scrollBarH = new("ScrollBarControl", nil, {0, 0, 0, 18}, 100, "HORIZONTAL", true)
- self.controls.scrollBarV = new("ScrollBarControl", nil, {0, 0, 18, 0}, 100, "VERTICAL", true)
+ self.controls.scrollBarH = new("ScrollBarControl"):ScrollBarControl(nil, {0, 0, 0, 18}, 100, "HORIZONTAL", true)
+ self.controls.scrollBarV = new("ScrollBarControl"):ScrollBarControl(nil, {0, 0, 18, 0}, 100, "VERTICAL", true)
-- Initialise drag target lists
t_insert(self.controls.itemList.dragTargetList, self.controls.sharedItemList)
@@ -1031,7 +1035,8 @@ holding Shift will put it in the second.]])
self:PopulateSlots()
self.lastSlot = self.slots[baseSlots[#baseSlots]]
-end)
+ return self
+end
function ItemsTabClass:Load(xml, dbFileName)
self.activeItemSetId = 0
@@ -1040,7 +1045,7 @@ function ItemsTabClass:Load(xml, dbFileName)
self.tradeQuery.statSortSelectionList = { }
for _, node in ipairs(xml) do
if node.elem == "Item" then
- local item = new("Item", "")
+ local item = new("Item"):Item("")
item.id = tonumber(node.attrib.id)
item.variant = tonumber(node.attrib.variant)
if node.attrib.variantAlt then
@@ -1421,7 +1426,7 @@ function ItemsTabClass:EquipItemInSet(item, itemSetId)
slotName = slotName .. " Swap"
end
if not item.id or not self.items[item.id] then
- item = new("Item", item.raw)
+ item = new("Item"):Item(item.raw)
self:AddItem(item, true)
end
local altSlot = slotName:gsub("1","2")
@@ -1660,7 +1665,7 @@ end
-- Attempt to create a new item from the given item raw text and sets it as the new display item
function ItemsTabClass:CreateDisplayItemFromRaw(itemRaw, normalise)
- local newItem = new("Item", itemRaw)
+ local newItem = new("Item"):Item(itemRaw)
if newItem.base then
self:CopyAnointsAndEldritchImplicits(newItem, main.migrateEldritchImplicits, false)
if normalise then
@@ -1963,9 +1968,9 @@ function ItemsTabClass:UpdateCustomControls()
local line = itemLib.formatModLine(modLine)
if line then
if not self.controls["displayItemCustomModifierRemove"..i] then
- self.controls["displayItemCustomModifierRemove"..i] = new("ButtonControl", {"TOPLEFT",self.controls.displayItemSectionCustom,"TOPLEFT"}, {0, i * 22 + 4, 70, 20}, "^7Remove")
- self.controls["displayItemCustomModifier"..i] = new("LabelControl", {"LEFT",self.controls["displayItemCustomModifierRemove"..i],"RIGHT"}, {65, 0, 0, 16})
- self.controls["displayItemCustomModifierLabel"..i] = new("LabelControl", {"LEFT",self.controls["displayItemCustomModifierRemove"..i],"RIGHT"}, {5, 0, 0, 16})
+ self.controls["displayItemCustomModifierRemove"..i] = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.displayItemSectionCustom,"TOPLEFT"}, {0, i * 22 + 4, 70, 20}, "^7Remove")
+ self.controls["displayItemCustomModifier"..i] = new("LabelControl"):LabelControl({"LEFT",self.controls["displayItemCustomModifierRemove"..i],"RIGHT"}, {65, 0, 0, 16})
+ self.controls["displayItemCustomModifierLabel"..i] = new("LabelControl"):LabelControl({"LEFT",self.controls["displayItemCustomModifierRemove"..i],"RIGHT"}, {5, 0, 0, 16})
end
self.controls["displayItemCustomModifierRemove"..i].shown = true
local label = itemLib.formatModLine(modLine)
@@ -2024,7 +2029,7 @@ end
function ItemsTabClass:AddModComparisonTooltip(tooltip, mod)
local slotName = self.displayItem:GetPrimarySlot()
- local newItem = new("Item", self.displayItem:BuildRaw())
+ local newItem = new("Item"):Item(self.displayItem:BuildRaw())
for _, subMod in ipairs(mod) do
t_insert(newItem.explicitModLines, { line = checkLineForAllocates(subMod, self.build.spec.nodes), modTags = mod.modTags, [mod.type] = true })
@@ -2108,11 +2113,11 @@ end
-- Opens the item set manager
function ItemsTabClass:OpenItemSetManagePopup()
local controls = { }
- controls.setList = new("ItemSetListControl", nil, {-155, 50, 300, 200}, self)
- controls.sharedList = new("SharedItemSetListControl", nil, {155, 50, 300, 200}, self)
+ controls.setList = new("ItemSetListControl"):ItemSetListControl(nil, {-155, 50, 300, 200}, self)
+ controls.sharedList = new("SharedItemSetListControl"):SharedItemSetListControl(nil, {155, 50, 300, 200}, self)
controls.setList.dragTargetList = { controls.sharedList }
controls.sharedList.dragTargetList = { controls.setList }
- controls.close = new("ButtonControl", nil, {0, 260, 90, 20}, "Done", function()
+ controls.close = new("ButtonControl"):ButtonControl(nil, {0, 260, 90, 20}, "Done", function()
main:ClosePopup()
end)
main:OpenPopup(630, 290, "Manage Item Sets", controls)
@@ -2122,7 +2127,7 @@ end
function ItemsTabClass:CraftItem()
local controls = { }
local function makeItem(base)
- local item = new("Item")
+ local item = new("Item"):Item()
item.name = base.name
item.base = base.base
item.baseName = base.name
@@ -2166,21 +2171,21 @@ function ItemsTabClass:CraftItem()
item:BuildAndParseRaw()
return item
end
- controls.rarityLabel = new("LabelControl", {"TOPRIGHT",nil,"TOPLEFT"}, {50, 20, 0, 16}, "Rarity:")
- controls.rarity = new("DropDownControl", nil, {-80, 20, 100, 18}, rarityDropList)
+ controls.rarityLabel = new("LabelControl"):LabelControl({"TOPRIGHT",nil,"TOPLEFT"}, {50, 20, 0, 16}, "Rarity:")
+ controls.rarity = new("DropDownControl"):DropDownControl(nil, {-80, 20, 100, 18}, rarityDropList)
controls.rarity.selIndex = self.lastCraftRaritySel or 3
- controls.title = new("EditControl", nil, {70, 20, 190, 18}, "", "Name")
+ controls.title = new("EditControl"):EditControl(nil, {70, 20, 190, 18}, "", "Name")
controls.title.shown = function()
return controls.rarity.selIndex >= 3
end
- controls.typeLabel = new("LabelControl", {"TOPRIGHT",nil,"TOPLEFT"}, {50, 45, 0, 16}, "Type:")
- controls.type = new("DropDownControl", {"TOPLEFT",nil,"TOPLEFT"}, {55, 45, 295, 18}, self.build.data.itemBaseTypeList, function(index, value)
+ controls.typeLabel = new("LabelControl"):LabelControl({"TOPRIGHT",nil,"TOPLEFT"}, {50, 45, 0, 16}, "Type:")
+ controls.type = new("DropDownControl"):DropDownControl({"TOPLEFT",nil,"TOPLEFT"}, {55, 45, 295, 18}, self.build.data.itemBaseTypeList, function(index, value)
controls.base.list = self.build.data.itemBaseLists[self.build.data.itemBaseTypeList[index]]
controls.base.selIndex = 1
end)
controls.type.selIndex = self.lastCraftTypeSel or 1
- controls.baseLabel = new("LabelControl", {"TOPRIGHT",nil,"TOPLEFT"}, {50, 70, 0, 16}, "Base:")
- controls.base = new("DropDownControl", {"TOPLEFT",nil,"TOPLEFT"}, {55, 70, 200, 18}, self.build.data.itemBaseLists[self.build.data.itemBaseTypeList[controls.type.selIndex]])
+ controls.baseLabel = new("LabelControl"):LabelControl({"TOPRIGHT",nil,"TOPLEFT"}, {50, 70, 0, 16}, "Base:")
+ controls.base = new("DropDownControl"):DropDownControl({"TOPLEFT",nil,"TOPLEFT"}, {55, 70, 200, 18}, self.build.data.itemBaseLists[self.build.data.itemBaseTypeList[controls.type.selIndex]])
controls.base.selIndex = self.lastCraftBaseSel or 1
controls.base.tooltipFunc = function(tooltip, mode, index, value)
tooltip:Clear()
@@ -2188,7 +2193,7 @@ function ItemsTabClass:CraftItem()
self:AddItemTooltip(tooltip, makeItem(value), nil, true)
end
end
- controls.save = new("ButtonControl", nil, {-45, 100, 80, 20}, "Create", function()
+ controls.save = new("ButtonControl"):ButtonControl(nil, {-45, 100, 80, 20}, "Create", function()
main:ClosePopup()
local item = makeItem(controls.base.list[controls.base.selIndex])
self:SetDisplayItem(item)
@@ -2199,7 +2204,7 @@ function ItemsTabClass:CraftItem()
self.lastCraftTypeSel = controls.type.selIndex
self.lastCraftBaseSel = controls.base.selIndex
end)
- controls.cancel = new("ButtonControl", nil, {45, 100, 80, 20}, "Cancel", function()
+ controls.cancel = new("ButtonControl"):ButtonControl(nil, {45, 100, 80, 20}, "Cancel", function()
main:ClosePopup()
end)
main:OpenPopup(370, 130, "Craft Item", controls)
@@ -2216,8 +2221,8 @@ function ItemsTabClass:EditDisplayItemText(alsoAddItem)
return "Rarity: "..controls.rarity.list[controls.rarity.selIndex].rarity.."\n"..controls.edit.buf
end
end
- controls.rarity = new("DropDownControl", nil, {-190, 10, 100, 18}, rarityDropList)
- controls.edit = new("EditControl", nil, {0, 40, 480, 420}, "", nil, "^%C\t\n", nil, nil, 14)
+ controls.rarity = new("DropDownControl"):DropDownControl(nil, {-190, 10, 100, 18}, rarityDropList)
+ controls.edit = new("EditControl"):EditControl(nil, {0, 40, 480, 420}, "", nil, "^%C\t\n", nil, nil, 14)
if self.displayItem then
controls.edit:SetText(self.displayItem:BuildRaw():gsub("Rarity: %w+\n",""))
controls.rarity:SelByValue(self.displayItem.rarity, "rarity")
@@ -2226,7 +2231,7 @@ function ItemsTabClass:EditDisplayItemText(alsoAddItem)
end
controls.edit.font = "FIXED"
controls.edit.pasteFilter = sanitiseText
- controls.save = new("ButtonControl", nil, {-45, 470, 80, 20}, self.displayItem and "Save" or "Create", function()
+ controls.save = new("ButtonControl"):ButtonControl(nil, {-45, 470, 80, 20}, self.displayItem and "Save" or "Create", function()
local id = self.displayItem and self.displayItem.id
self:CreateDisplayItemFromRaw(buildRaw(), not self.displayItem)
self.displayItem.id = id
@@ -2236,12 +2241,12 @@ function ItemsTabClass:EditDisplayItemText(alsoAddItem)
main:ClosePopup()
end, nil, true)
controls.save.enabled = function()
- local item = new("Item", buildRaw())
+ local item = new("Item"):Item(buildRaw())
return item.base ~= nil
end
controls.save.tooltipFunc = function(tooltip)
tooltip:Clear()
- local item = new("Item", buildRaw())
+ local item = new("Item"):Item(buildRaw())
if item.base then
self:AddItemTooltip(tooltip, item, nil, true)
else
@@ -2254,7 +2259,7 @@ function ItemsTabClass:EditDisplayItemText(alsoAddItem)
tooltip:AddLine(14, "Scholar's Platinum Kris of Joy")
end
end
- controls.cancel = new("ButtonControl", nil, {45, 470, 80, 20}, "Cancel", function()
+ controls.cancel = new("ButtonControl"):ButtonControl(nil, {45, 470, 80, 20}, "Cancel", function()
main:ClosePopup()
end)
main:OpenPopup(500, 500, self.displayItem and "Edit Item Text" or "Create Custom Item from Text", controls, nil, "edit")
@@ -2330,7 +2335,7 @@ function ItemsTabClass:EnchantDisplayItem(enchantSlot)
buildEnchantmentSourceList()
buildEnchantmentList()
local function enchantItem(idx, remove)
- local item = new("Item", self.displayItem:BuildRaw())
+ local item = new("Item"):Item(self.displayItem:BuildRaw())
local index = idx or controls.enchantment.selIndex
item.id = self.displayItem.id
local entry = enchantmentList[index]
@@ -2359,7 +2364,7 @@ function ItemsTabClass:EnchantDisplayItem(enchantSlot)
if entry.sortValues[stat] ~= nil then
return entry.sortValues[stat]
end
- local item = new("Item", self.displayItem:BuildRaw())
+ local item = new("Item"):Item(self.displayItem:BuildRaw())
item.id = self.displayItem.id
local line = entry.line
local first, second = line:match("([^/]+)/([^/]+)")
@@ -2419,8 +2424,8 @@ function ItemsTabClass:EnchantDisplayItem(enchantSlot)
end
end
if haveSkills then
- controls.skillLabel = new("LabelControl", {"TOPRIGHT",nil,"TOPLEFT"}, {95, 20, 0, 16}, "^7Skill:")
- controls.skill = new("DropDownControl", {"TOPLEFT",nil,"TOPLEFT"}, {100, 20, 180, 18}, skillList, function(index, value)
+ controls.skillLabel = new("LabelControl"):LabelControl({"TOPRIGHT",nil,"TOPLEFT"}, {95, 20, 0, 16}, "^7Skill:")
+ controls.skill = new("DropDownControl"):DropDownControl({"TOPLEFT",nil,"TOPLEFT"}, {100, 20, 180, 18}, skillList, function(index, value)
buildEnchantmentSourceList()
buildEnchantmentList()
controls.enchantment:SetSel(1)
@@ -2428,7 +2433,7 @@ function ItemsTabClass:EnchantDisplayItem(enchantSlot)
applySort(controls.sort.list[controls.sort.selIndex].stat, true)
end
end)
- controls.allSkills = new("CheckBoxControl", {"TOPLEFT",nil,"TOPLEFT"}, {350, 20, 18}, "All skills:", function(state)
+ controls.allSkills = new("CheckBoxControl"):CheckBoxControl({"TOPLEFT",nil,"TOPLEFT"}, {350, 20, 18}, "All skills:", function(state)
buildSkillList(not state)
controls.skill:SetSel(1)
buildEnchantmentList()
@@ -2443,33 +2448,33 @@ function ItemsTabClass:EnchantDisplayItem(enchantSlot)
controls.allSkills.enabled = false
end
end
- controls.enchantmentSourceLabel = new("LabelControl", {"TOPRIGHT",nil,"TOPLEFT"}, {95, 45, 0, 16}, "^7Source:")
- controls.enchantmentSource = new("DropDownControl", {"TOPLEFT",nil,"TOPLEFT"}, {100, 45, 180, 18}, enchantmentSourceList, function(index, value)
+ controls.enchantmentSourceLabel = new("LabelControl"):LabelControl({"TOPRIGHT",nil,"TOPLEFT"}, {95, 45, 0, 16}, "^7Source:")
+ controls.enchantmentSource = new("DropDownControl"):DropDownControl({"TOPLEFT",nil,"TOPLEFT"}, {100, 45, 180, 18}, enchantmentSourceList, function(index, value)
buildEnchantmentList()
controls.enchantment:SetSel(m_min(controls.enchantment.selIndex, #enchantmentList))
if controls.sort then
applySort(controls.sort.list[controls.sort.selIndex].stat, true)
end
end)
- controls.sortLabel = new("LabelControl", {"TOPRIGHT",nil,"TOPLEFT"}, {350, 45, 0, 16}, "^7Sort by:")
- controls.sort = new("DropDownControl", {"TOPLEFT",nil,"TOPLEFT"}, {355, 45, 240, 18}, sortList, function(index, value)
+ controls.sortLabel = new("LabelControl"):LabelControl({"TOPRIGHT",nil,"TOPLEFT"}, {350, 45, 0, 16}, "^7Sort by:")
+ controls.sort = new("DropDownControl"):DropDownControl({"TOPLEFT",nil,"TOPLEFT"}, {355, 45, 240, 18}, sortList, function(index, value)
applySort(value.stat, true)
end)
- controls.enchantmentLabel = new("LabelControl", {"TOPRIGHT",nil,"TOPLEFT"}, {95, 70, 0, 16}, "^7Enchantment:")
- controls.enchantment = new("DropDownControl", {"TOPLEFT",nil,"TOPLEFT"}, {100, 70, 495, 18}, enchantmentList)
+ controls.enchantmentLabel = new("LabelControl"):LabelControl({"TOPRIGHT",nil,"TOPLEFT"}, {95, 70, 0, 16}, "^7Enchantment:")
+ controls.enchantment = new("DropDownControl"):DropDownControl({"TOPLEFT",nil,"TOPLEFT"}, {100, 70, 495, 18}, enchantmentList)
controls.enchantment.tooltipFunc = function(tooltip, mode, index)
tooltip:Clear()
self:AddItemTooltip(tooltip, enchantItem(index), nil, true)
end
- controls.save = new("ButtonControl", nil, {-88, 100, 80, 20}, "Enchant", function()
+ controls.save = new("ButtonControl"):ButtonControl(nil, {-88, 100, 80, 20}, "Enchant", function()
self:SetDisplayItem(enchantItem())
main:ClosePopup()
end)
- controls.remove = new("ButtonControl", nil, {0, 100, 80, 20}, "Remove", function()
+ controls.remove = new("ButtonControl"):ButtonControl(nil, {0, 100, 80, 20}, "Remove", function()
self:SetDisplayItem(enchantItem(nil, true))
main:ClosePopup()
end)
- controls.close = new("ButtonControl", nil, {88, 100, 80, 20}, "Cancel", function()
+ controls.close = new("ButtonControl"):ButtonControl(nil, {88, 100, 80, 20}, "Cancel", function()
main:ClosePopup()
end)
main:OpenPopup(605, 130, "Enchant Item", controls)
@@ -2513,7 +2518,7 @@ end
---@return table @The new item
function ItemsTabClass:anointItem(node)
self.anointEnchantSlot = self.anointEnchantSlot or 1
- local item = new("Item", self.displayItem:BuildRaw())
+ local item = new("Item"):Item(self.displayItem:BuildRaw())
item.id = self.displayItem.id
if #item.enchantModLines >= self.anointEnchantSlot then
t_remove(item.enchantModLines, self.anointEnchantSlot)
@@ -2585,7 +2590,7 @@ function ItemsTabClass:AnointDisplayItem(enchantSlot)
self.anointEnchantSlot = enchantSlot or 1
local controls = { }
- controls.notableDB = new("NotableDBControl", {"TOPLEFT",nil,"TOPLEFT"}, {10, 60, 360, 360}, self, self.build.spec.tree.nodes, "ANOINT")
+ controls.notableDB = new("NotableDBControl"):NotableDBControl({"TOPLEFT",nil,"TOPLEFT"}, {10, 60, 360, 360}, self, self.build.spec.tree.nodes, "ANOINT")
local function saveLabel()
local node = controls.notableDB.selValue
@@ -2606,7 +2611,7 @@ function ItemsTabClass:AnointDisplayItem(enchantSlot)
local width = saveLabelWidth()
return -(width + 90) / 2
end
- controls.save = new("ButtonControl", {"BOTTOMLEFT", nil, "BOTTOM" }, {saveLabelX, -4, saveLabelWidth, 20}, saveLabel, function()
+ controls.save = new("ButtonControl"):ButtonControl({"BOTTOMLEFT", nil, "BOTTOM" }, {saveLabelX, -4, saveLabelWidth, 20}, saveLabel, function()
self:SetDisplayItem(self:anointItem(controls.notableDB.selValue))
main:ClosePopup()
end)
@@ -2614,7 +2619,7 @@ function ItemsTabClass:AnointDisplayItem(enchantSlot)
tooltip:Clear()
self:AppendAnointTooltip(tooltip, controls.notableDB.selValue)
end
- controls.close = new("ButtonControl", {"TOPLEFT", controls.save, "TOPRIGHT" }, {10, 0, 80, 20}, "Cancel", function()
+ controls.close = new("ButtonControl"):ButtonControl({"TOPLEFT", controls.save, "TOPRIGHT" }, {10, 0, 80, 20}, "Cancel", function()
main:ClosePopup()
end)
main:OpenPopup(380, 448, "Anoint Item", controls)
@@ -2669,7 +2674,7 @@ function ItemsTabClass:CorruptDisplayItem(modType)
if entry.sortValues[stat] ~= nil then
return entry.sortValues[stat]
end
- local item = new("Item", self.displayItem:BuildRaw())
+ local item = new("Item"):Item(self.displayItem:BuildRaw())
item.id = self.displayItem.id
item.corrupted = true
local mod = entry.mod
@@ -2740,7 +2745,7 @@ function ItemsTabClass:CorruptDisplayItem(modType)
if controls.implicit4 then controls.implicit4:UpdateSearch() end
end
local function corruptItem()
- local item = new("Item", self.displayItem:BuildRaw())
+ local item = new("Item"):Item(self.displayItem:BuildRaw())
item.id = self.displayItem.id
item.corrupted = true
local newImplicit = { }
@@ -2766,8 +2771,8 @@ function ItemsTabClass:CorruptDisplayItem(modType)
item:BuildAndParseRaw()
return item
end
- controls.sourceLabel = new("LabelControl", {"TOPRIGHT",nil,"TOPLEFT"}, {95, 20, 0, 16}, "^7Source:")
- controls.source = new("DropDownControl", {"TOPLEFT",nil,"TOPLEFT"}, {100, 20, 150, 18}, sourceList, function(index, value)
+ controls.sourceLabel = new("LabelControl"):LabelControl({"TOPRIGHT",nil,"TOPLEFT"}, {95, 20, 0, 16}, "^7Source:")
+ controls.source = new("DropDownControl"):DropDownControl({"TOPLEFT",nil,"TOPLEFT"}, {100, 20, 150, 18}, sourceList, function(index, value)
if value == "Scourge" then
currentModType = "ScourgeUpside"
buildImplicitList("ScourgeUpside")
@@ -2820,12 +2825,12 @@ function ItemsTabClass:CorruptDisplayItem(modType)
controls.implicit4:SetSel(1)
end)
controls.source.enabled = #sourceList > 1
- controls.sortLabel = new("LabelControl", {"TOPRIGHT",nil,"TOPLEFT"}, {350, 20, 0, 16}, "^7Sort by:")
- controls.sort = new("DropDownControl", {"TOPLEFT",nil,"TOPLEFT"}, {355, 20, 240, 18}, sortList, function(index, value)
+ controls.sortLabel = new("LabelControl"):LabelControl({"TOPRIGHT",nil,"TOPLEFT"}, {350, 20, 0, 16}, "^7Sort by:")
+ controls.sort = new("DropDownControl"):DropDownControl({"TOPLEFT",nil,"TOPLEFT"}, {355, 20, 240, 18}, sortList, function(index, value)
applySort(value.stat)
end)
- controls.implicitLabel = new("LabelControl", {"TOPRIGHT",nil,"TOPLEFT"}, {75, 45, 0, 16}, "^7Implicit #1:")
- controls.implicit = new("DropDownControl", {"TOPLEFT",nil,"TOPLEFT"}, {80, 45, 440, 18}, nil, function()
+ controls.implicitLabel = new("LabelControl"):LabelControl({"TOPRIGHT",nil,"TOPLEFT"}, {75, 45, 0, 16}, "^7Implicit #1:")
+ controls.implicit = new("DropDownControl"):DropDownControl({"TOPLEFT",nil,"TOPLEFT"}, {80, 45, 440, 18}, nil, function()
buildList(controls.implicit2, controls.implicit, currentModType)
end)
controls.implicit.tooltipFunc = function(tooltip, mode, index, value)
@@ -2839,8 +2844,8 @@ function ItemsTabClass:CorruptDisplayItem(modType)
end
controls.implicit.shown = not self.displayItem.implicitsCannotBeChanged
controls.implicitLabel.shown = not self.displayItem.implicitsCannotBeChanged
- controls.implicit2Label = new("LabelControl", {"TOPRIGHT",nil,"TOPLEFT"}, {75, 65, 0, 16}, "^7Implicit #2:")
- controls.implicit2 = new("DropDownControl", {"TOPLEFT",nil,"TOPLEFT"}, {80, 65, 440, 18}, nil, function()
+ controls.implicit2Label = new("LabelControl"):LabelControl({"TOPRIGHT",nil,"TOPLEFT"}, {75, 65, 0, 16}, "^7Implicit #2:")
+ controls.implicit2 = new("DropDownControl"):DropDownControl({"TOPLEFT",nil,"TOPLEFT"}, {80, 65, 440, 18}, nil, function()
buildList(controls.implicit, controls.implicit2, currentModType)
end)
controls.implicit2.tooltipFunc = function(tooltip, mode, index, value)
@@ -2854,8 +2859,8 @@ function ItemsTabClass:CorruptDisplayItem(modType)
end
controls.implicit2.shown = not self.displayItem.implicitsCannotBeChanged
controls.implicit2Label.shown = not self.displayItem.implicitsCannotBeChanged
- controls.implicit3Label = new("LabelControl", {"TOPRIGHT",nil,"TOPLEFT"}, {75, 85, 0, 16}, "^7Implicit #3:")
- controls.implicit3 = new("DropDownControl", {"TOPLEFT",nil,"TOPLEFT"}, {80, 65, 440, 18}, nil, function()
+ controls.implicit3Label = new("LabelControl"):LabelControl({"TOPRIGHT",nil,"TOPLEFT"}, {75, 85, 0, 16}, "^7Implicit #3:")
+ controls.implicit3 = new("DropDownControl"):DropDownControl({"TOPLEFT",nil,"TOPLEFT"}, {80, 65, 440, 18}, nil, function()
buildList(controls.implicit4, controls.implicit3, "ScourgeDownside")
end)
controls.implicit3.tooltipFunc = function(tooltip, mode, index, value)
@@ -2869,8 +2874,8 @@ function ItemsTabClass:CorruptDisplayItem(modType)
end
controls.implicit3Label.shown = false
controls.implicit3.shown = false
- controls.implicit4Label = new("LabelControl", {"TOPRIGHT",nil,"TOPLEFT"}, {75, 105, 0, 16}, "^7Implicit #4:")
- controls.implicit4 = new("DropDownControl", {"TOPLEFT",nil,"TOPLEFT"}, {80, 105, 440, 18}, nil, function()
+ controls.implicit4Label = new("LabelControl"):LabelControl({"TOPRIGHT",nil,"TOPLEFT"}, {75, 105, 0, 16}, "^7Implicit #4:")
+ controls.implicit4 = new("DropDownControl"):DropDownControl({"TOPLEFT",nil,"TOPLEFT"}, {80, 105, 440, 18}, nil, function()
buildList(controls.implicit3, controls.implicit4, "ScourgeDownside")
end)
controls.implicit4.tooltipFunc = function(tooltip, mode, index, value)
@@ -2884,11 +2889,11 @@ function ItemsTabClass:CorruptDisplayItem(modType)
end
controls.implicit4Label.shown = false
controls.implicit4.shown = false
- controls.implicitCannotBeChangedLabel = new("LabelControl", {"TOPLEFT",nil,"TOPLEFT"}, {20, 45, 0, 20}, "^7This Items Implicits Cannot Be Changed")
+ controls.implicitCannotBeChangedLabel = new("LabelControl"):LabelControl({"TOPLEFT",nil,"TOPLEFT"}, {20, 45, 0, 20}, "^7This Items Implicits Cannot Be Changed")
controls.implicitCannotBeChangedLabel.shown = self.displayItem.implicitsCannotBeChanged
buildList(controls.implicit, controls.implicit2, currentModType)
buildList(controls.implicit2, controls.implicit, currentModType)
- controls.save = new("ButtonControl", nil, {-45, 99, 80, 20}, modType, function()
+ controls.save = new("ButtonControl"):ButtonControl(nil, {-45, 99, 80, 20}, modType, function()
self:SetDisplayItem(corruptItem())
main:ClosePopup()
end)
@@ -2896,7 +2901,7 @@ function ItemsTabClass:CorruptDisplayItem(modType)
tooltip:Clear()
self:AddItemTooltip(tooltip, corruptItem(), nil, true)
end
- controls.close = new("ButtonControl", nil, {45, 99, 80, 20}, "Cancel", function()
+ controls.close = new("ButtonControl"):ButtonControl(nil, {45, 99, 80, 20}, "Cancel", function()
main:ClosePopup()
end)
main:OpenPopup(605, 129, modType .. " Item", controls)
@@ -2920,7 +2925,7 @@ function ItemsTabClass:AddCustomModifierToDisplayItem()
if listMod.sortValues[stat] ~= nil then
return listMod.sortValues[stat]
end
- local item = new("Item", self.displayItem:BuildRaw())
+ local item = new("Item"):Item(self.displayItem:BuildRaw())
item.id = self.displayItem.id
for _, line in ipairs(listMod.mod) do
t_insert(item.explicitModLines, { line = checkLineForAllocates(line, self.build.spec.nodes), modTags = listMod.mod.modTags, [listMod.type] = true })
@@ -3142,7 +3147,7 @@ function ItemsTabClass:AddCustomModifierToDisplayItem()
t_insert(sourceList, { label = "Custom", sourceId = "CUSTOM" })
buildMods(sourceList[1].sourceId)
local function addModifier()
- local item = new("Item", self.displayItem:BuildRaw())
+ local item = new("Item"):Item(self.displayItem:BuildRaw())
item.id = self.displayItem.id
local sourceId = sourceList[controls.source.selIndex].sourceId
if sourceId == "CUSTOM" then
@@ -3158,8 +3163,8 @@ function ItemsTabClass:AddCustomModifierToDisplayItem()
item:BuildAndParseRaw()
return item
end
- controls.sourceLabel = new("LabelControl", {"TOPRIGHT",nil,"TOPLEFT"}, {95, 20, 0, 16}, "^7Source:")
- controls.source = new("DropDownControl", {"TOPLEFT",nil,"TOPLEFT"}, {100, 20, 150, 18}, sourceList, function(index, value)
+ controls.sourceLabel = new("LabelControl"):LabelControl({"TOPRIGHT",nil,"TOPLEFT"}, {95, 20, 0, 16}, "^7Source:")
+ controls.source = new("DropDownControl"):DropDownControl({"TOPLEFT",nil,"TOPLEFT"}, {100, 20, 150, 18}, sourceList, function(index, value)
buildMods(value.sourceId)
controls.modSelect:SetSel(1)
if controls.sort then
@@ -3167,18 +3172,18 @@ function ItemsTabClass:AddCustomModifierToDisplayItem()
end
end)
controls.source.enabled = #sourceList > 1
- controls.sortLabel = new("LabelControl", {"TOPRIGHT",nil,"TOPLEFT"}, {350, 20, 0, 16}, "^7Sort by:")
+ controls.sortLabel = new("LabelControl"):LabelControl({"TOPRIGHT",nil,"TOPLEFT"}, {350, 20, 0, 16}, "^7Sort by:")
controls.sortLabel.shown = function()
return sourceList[controls.source.selIndex].sourceId ~= "CUSTOM"
end
- controls.sort = new("DropDownControl", {"TOPLEFT",nil,"TOPLEFT"}, {355, 20, 240, 18}, sortList, function(index, value)
+ controls.sort = new("DropDownControl"):DropDownControl({"TOPLEFT",nil,"TOPLEFT"}, {355, 20, 240, 18}, sortList, function(index, value)
applySort(value.stat, true)
end)
controls.sort.shown = function()
return sourceList[controls.source.selIndex].sourceId ~= "CUSTOM"
end
- controls.modSelectLabel = new("LabelControl", {"TOPRIGHT",nil,"TOPLEFT"}, {95, 45, 0, 16}, "^7Modifier:")
- controls.modSelect = new("DropDownControl", {"TOPLEFT",nil,"TOPLEFT"}, {100, 45, 600, 18}, modList)
+ controls.modSelectLabel = new("LabelControl"):LabelControl({"TOPRIGHT",nil,"TOPLEFT"}, {95, 45, 0, 16}, "^7Modifier:")
+ controls.modSelect = new("DropDownControl"):DropDownControl({"TOPLEFT",nil,"TOPLEFT"}, {100, 45, 600, 18}, modList)
controls.modSelect.shown = function()
return sourceList[controls.source.selIndex].sourceId ~= "CUSTOM"
end
@@ -3191,11 +3196,11 @@ function ItemsTabClass:AddCustomModifierToDisplayItem()
self:AddModComparisonTooltip(tooltip, value.mod)
end
end
- controls.custom = new("EditControl", {"TOPLEFT",nil,"TOPLEFT"}, {100, 45, 440, 18})
+ controls.custom = new("EditControl"):EditControl({"TOPLEFT",nil,"TOPLEFT"}, {100, 45, 440, 18})
controls.custom.shown = function()
return sourceList[controls.source.selIndex].sourceId == "CUSTOM"
end
- controls.save = new("ButtonControl", nil, {-45, 75, 80, 20}, "Add", function()
+ controls.save = new("ButtonControl"):ButtonControl(nil, {-45, 75, 80, 20}, "Add", function()
self:SetDisplayItem(addModifier())
main:ClosePopup()
end)
@@ -3203,7 +3208,7 @@ function ItemsTabClass:AddCustomModifierToDisplayItem()
tooltip:Clear()
self:AddItemTooltip(tooltip, addModifier())
end
- controls.close = new("ButtonControl", nil, {45, 75, 80, 20}, "Cancel", function()
+ controls.close = new("ButtonControl"):ButtonControl(nil, {45, 75, 80, 20}, "Cancel", function()
main:ClosePopup()
end)
main:OpenPopup(710, 105, "Add Modifier to Item", controls, "save", sourceList[controls.source.selIndex].sourceId == "CUSTOM" and "custom")
@@ -3280,7 +3285,7 @@ function ItemsTabClass:AddCrucibleModifierToDisplayItem()
end
end
local function addModifier()
- local item = new("Item", self.displayItem:BuildRaw())
+ local item = new("Item"):Item(self.displayItem:BuildRaw())
item.id = self.displayItem.id
item.crucibleModLines = { }
local listMod = {
@@ -3307,8 +3312,8 @@ function ItemsTabClass:AddCrucibleModifierToDisplayItem()
buildCrucibleMods()
local y = 45
for i = 1,5 do
- controls["modSelectNode"..i.."Label"] = new("LabelControl", {"TOPRIGHT",nil,"TOPLEFT"}, {95, y, 0, 16}, "^7Node "..i..":")
- controls["modSelectNode"..i] = new("DropDownControl", {"TOPLEFT",nil,"TOPLEFT"}, {100, y, 555, 18}, modList[i])
+ controls["modSelectNode"..i.."Label"] = new("LabelControl"):LabelControl({"TOPRIGHT",nil,"TOPLEFT"}, {95, y, 0, 16}, "^7Node "..i..":")
+ controls["modSelectNode"..i] = new("DropDownControl"):DropDownControl({"TOPLEFT",nil,"TOPLEFT"}, {100, y, 555, 18}, modList[i])
controls["modSelectNode"..i].tooltipFunc = function(tooltip, mode, index, value)
tooltip:Clear()
if mode ~= "OUT" and value and value ~= "None" then
@@ -3328,7 +3333,7 @@ function ItemsTabClass:AddCrucibleModifierToDisplayItem()
end
end
end
- controls.save = new("ButtonControl", nil, {-45, 157, 80, 20}, "Add", function()
+ controls.save = new("ButtonControl"):ButtonControl(nil, {-45, 157, 80, 20}, "Add", function()
self:SetDisplayItem(addModifier())
main:ClosePopup()
end)
@@ -3336,7 +3341,7 @@ function ItemsTabClass:AddCrucibleModifierToDisplayItem()
tooltip:Clear()
self:AddItemTooltip(tooltip, addModifier())
end
- controls.close = new("ButtonControl", nil, {45, 157, 80, 20}, "Cancel", function()
+ controls.close = new("ButtonControl"):ButtonControl(nil, {45, 157, 80, 20}, "Cancel", function()
main:ClosePopup()
end)
main:OpenPopup(710, 185, "Add Crucible Modifier to Item", controls, "save")
@@ -3531,7 +3536,7 @@ function ItemsTabClass:AddImplicitToDisplayItem()
if listMod.sortValues[stat] ~= nil then
return listMod.sortValues[stat]
end
- local item = new("Item", self.displayItem:BuildRaw())
+ local item = new("Item"):Item(self.displayItem:BuildRaw())
item.id = self.displayItem.id
applyCandidateMod(item, listMod)
item:BuildAndParseRaw()
@@ -3614,7 +3619,7 @@ function ItemsTabClass:AddImplicitToDisplayItem()
end
end
local function addModifier()
- local item = new("Item", self.displayItem:BuildRaw())
+ local item = new("Item"):Item(self.displayItem:BuildRaw())
item.id = self.displayItem.id
local sourceId = sourceList[controls.source.selIndex].sourceId
if sourceId == "CUSTOM" then
@@ -3629,8 +3634,8 @@ function ItemsTabClass:AddImplicitToDisplayItem()
item:BuildAndParseRaw()
return item
end
- controls.sourceLabel = new("LabelControl", {"TOPRIGHT",nil,"TOPLEFT"}, {95, 20, 0, 16}, "^7Source:")
- controls.source = new("DropDownControl", {"TOPLEFT",nil,"TOPLEFT"}, {100, 20, 150, 18}, sourceList, function(index, value)
+ controls.sourceLabel = new("LabelControl"):LabelControl({"TOPRIGHT",nil,"TOPLEFT"}, {95, 20, 0, 16}, "^7Source:")
+ controls.source = new("DropDownControl"):DropDownControl({"TOPLEFT",nil,"TOPLEFT"}, {100, 20, 150, 18}, sourceList, function(index, value)
if value.sourceId ~= "CUSTOM" then
controls.modSelectLabel.y = 70
buildMods(value.sourceId)
@@ -3645,18 +3650,18 @@ function ItemsTabClass:AddImplicitToDisplayItem()
end
end)
controls.source.enabled = #sourceList > 1
- controls.sortLabel = new("LabelControl", {"TOPRIGHT",nil,"TOPLEFT"}, {350, 20, 0, 16}, "^7Sort by:")
+ controls.sortLabel = new("LabelControl"):LabelControl({"TOPRIGHT",nil,"TOPLEFT"}, {350, 20, 0, 16}, "^7Sort by:")
controls.sortLabel.shown = function()
return sourceList[controls.source.selIndex].sourceId ~= "CUSTOM"
end
- controls.sort = new("DropDownControl", {"TOPLEFT",nil,"TOPLEFT"}, {355, 20, 240, 18}, sortList, function(index, value)
+ controls.sort = new("DropDownControl"):DropDownControl({"TOPLEFT",nil,"TOPLEFT"}, {355, 20, 240, 18}, sortList, function(index, value)
applySort(value.stat, true)
end)
controls.sort.shown = function()
return sourceList[controls.source.selIndex].sourceId ~= "CUSTOM"
end
- controls.modGroupSelectLabel = new("LabelControl", {"TOPRIGHT",nil,"TOPLEFT"}, {95, 45, 0, 16}, "^7Type:")
- controls.modGroupSelect = new("DropDownControl", {"TOPLEFT",nil,"TOPLEFT"}, {100, 45, 600, 18}, modGroups, function(index, value)
+ controls.modGroupSelectLabel = new("LabelControl"):LabelControl({"TOPRIGHT",nil,"TOPLEFT"}, {95, 45, 0, 16}, "^7Type:")
+ controls.modGroupSelect = new("DropDownControl"):DropDownControl({"TOPLEFT",nil,"TOPLEFT"}, {100, 45, 600, 18}, modGroups, function(index, value)
controls.modSelect.list = modList[value.modListIndex]
controls.modSelect:SetSel(1)
end)
@@ -3678,8 +3683,8 @@ function ItemsTabClass:AddImplicitToDisplayItem()
self:AddModComparisonTooltip(tooltip, value.mod)
end
end
- controls.modSelectLabel = new("LabelControl", {"TOPRIGHT",nil,"TOPLEFT"}, {95, 70, 0, 16}, "^7Modifier:")
- controls.modSelect = new("DropDownControl", {"TOPLEFT",nil,"TOPLEFT"}, {100, 70, 600, 18}, sourceList[controls.source.selIndex].sourceId ~= "CUSTOM" and modList[modGroups[1].modListIndex] or { })
+ controls.modSelectLabel = new("LabelControl"):LabelControl({"TOPRIGHT",nil,"TOPLEFT"}, {95, 70, 0, 16}, "^7Modifier:")
+ controls.modSelect = new("DropDownControl"):DropDownControl({"TOPLEFT",nil,"TOPLEFT"}, {100, 70, 600, 18}, sourceList[controls.source.selIndex].sourceId ~= "CUSTOM" and modList[modGroups[1].modListIndex] or { })
controls.modSelect.shown = function()
return sourceList[controls.source.selIndex].sourceId ~= "CUSTOM"
end
@@ -3692,11 +3697,11 @@ function ItemsTabClass:AddImplicitToDisplayItem()
self:AddModComparisonTooltip(tooltip, value.mod)
end
end
- controls.custom = new("EditControl", {"TOPLEFT",nil,"TOPLEFT"}, {100, 45, 440, 18})
+ controls.custom = new("EditControl"):EditControl({"TOPLEFT",nil,"TOPLEFT"}, {100, 45, 440, 18})
controls.custom.shown = function()
return sourceList[controls.source.selIndex].sourceId == "CUSTOM"
end
- controls.save = new("ButtonControl", nil, {-45, 100, 80, 20}, "Add", function()
+ controls.save = new("ButtonControl"):ButtonControl(nil, {-45, 100, 80, 20}, "Add", function()
self:SetDisplayItem(addModifier())
main:ClosePopup()
end)
@@ -3704,7 +3709,7 @@ function ItemsTabClass:AddImplicitToDisplayItem()
tooltip:Clear()
self:AddItemTooltip(tooltip, addModifier())
end
- controls.close = new("ButtonControl", nil, {45, 100, 80, 20}, "Cancel", function()
+ controls.close = new("ButtonControl"):ButtonControl(nil, {45, 100, 80, 20}, "Cancel", function()
main:ClosePopup()
end)
main:OpenPopup(710, 130, "Add Implicit to Item", controls, "save", sourceList[controls.source.selIndex].sourceId == "CUSTOM" and "custom")
diff --git a/src/Classes/LabelControl.lua b/src/Classes/LabelControl.lua
index 2f799ece2d6..afedc6fdf34 100644
--- a/src/Classes/LabelControl.lua
+++ b/src/Classes/LabelControl.lua
@@ -3,13 +3,20 @@
-- Class: Label Control
-- Simple text label.
--
-local LabelClass = newClass("LabelControl", "Control", function(self, anchor, rect, label)
- self.Control(anchor, rect)
+---@class LabelControl: Control
+local LabelClass = newClass("LabelControl", "Control")
+
+---@param anchor? ControlAnchor
+---@param rect? ControlRect
+---@param label string
+function LabelClass:LabelControl(anchor, rect, label)
+ self:Control(anchor, rect)
self.label = label
self.width = function()
return DrawStringWidth(self:GetProperty("height"), "VAR", self:GetProperty("label"))
end
-end)
+ return self
+end
function LabelClass:Draw()
local x, y = self:GetPos()
diff --git a/src/Classes/ListControl.lua b/src/Classes/ListControl.lua
index 34dd0e7f413..7527b4cd96d 100644
--- a/src/Classes/ListControl.lua
+++ b/src/Classes/ListControl.lua
@@ -30,16 +30,19 @@ local m_min = math.min
local m_max = math.max
local m_floor = math.floor
-local ListClass = newClass("ListControl", "Control", "ControlHost", function(self, anchor, rect, rowHeight, scroll, isMutable, list, forceTooltip)
- self.Control(anchor, rect)
- self.ControlHost()
+---@class ListControl: Control, ControlHost
+local ListClass = newClass("ListControl", "Control", "ControlHost")
+
+function ListClass:ListControl(anchor, rect, rowHeight, scroll, isMutable, list, forceTooltip)
+ self:Control(anchor, rect)
+ self:ControlHost()
self.rowHeight = rowHeight
self.scroll = scroll
self.isMutable = isMutable
self.list = list or { }
self.forceTooltip = forceTooltip
self.colList = { { } }
- self.tooltip = new("Tooltip")
+ self.tooltip = new("Tooltip"):Tooltip()
self.font = "VAR"
if self.scroll then
if self.scroll == "HORIZONTAL" then
@@ -48,7 +51,7 @@ local ListClass = newClass("ListControl", "Control", "ControlHost", function(sel
self.scrollH = false
end
end
- self.controls.scrollBarH = new("ScrollBarControl", {"BOTTOM",self,"BOTTOM"}, {-8, -1, 0, self.scroll and 16 or 0}, rowHeight * 2, "HORIZONTAL") {
+ self.controls.scrollBarH = new("ScrollBarControl"):ScrollBarControl({"BOTTOM",self,"BOTTOM"}, {-8, -1, 0, self.scroll and 16 or 0}, rowHeight * 2, "HORIZONTAL") {
shown = function()
return self.scrollH
end,
@@ -57,7 +60,7 @@ local ListClass = newClass("ListControl", "Control", "ControlHost", function(sel
return width - 18
end
}
- self.controls.scrollBarV = new("ScrollBarControl", {"RIGHT",self,"RIGHT"}, {-1, 0, self.scroll and 16 or 0, 0}, rowHeight * 2, "VERTICAL") {
+ self.controls.scrollBarV = new("ScrollBarControl"):ScrollBarControl({"RIGHT",self,"RIGHT"}, {-1, 0, self.scroll and 16 or 0, 0}, rowHeight * 2, "VERTICAL") {
y = function()
return (self.scrollH and -8 or 0)
end,
@@ -71,7 +74,9 @@ local ListClass = newClass("ListControl", "Control", "ControlHost", function(sel
self.controls.scrollBarV.shown = false
end
self.labelPositionOffset = {0, 0}
-end)
+ return self
+end
+
function ListClass:SelectIndex(index)
self.selValue = self.list[index]
diff --git a/src/Classes/MinionListControl.lua b/src/Classes/MinionListControl.lua
index 1bd119853cd..2c153fdbaa1 100644
--- a/src/Classes/MinionListControl.lua
+++ b/src/Classes/MinionListControl.lua
@@ -8,14 +8,17 @@ local t_insert = table.insert
local t_remove = table.remove
local s_format = string.format
-local MinionListClass = newClass("MinionListControl", "ListControl", function(self, anchor, rect, data, list, dest)
- self.ListControl(anchor, rect, 16, "VERTICAL", not dest, list)
+---@class MinionListControl: ListControl
+local MinionListClass = newClass("MinionListControl", "ListControl")
+
+function MinionListClass:MinionListControl(anchor, rect, data, list, dest)
+ self:ListControl(anchor, rect, 16, "VERTICAL", not dest, list)
self.data = data
self.dest = dest
if dest then
self.dragTargetList = { dest }
self.label = "^7Available Spectres:"
- self.controls.add = new("ButtonControl", {"BOTTOMRIGHT",self,"TOPRIGHT"}, {0, -2, 60, 18}, "Add", function()
+ self.controls.add = new("ButtonControl"):ButtonControl({"BOTTOMRIGHT",self,"TOPRIGHT"}, {0, -2, 60, 18}, "Add", function()
self:AddSel()
end)
self.controls.add.enabled = function()
@@ -23,14 +26,15 @@ local MinionListClass = newClass("MinionListControl", "ListControl", function(se
end
else
self.label = "^7Spectres in Build:"
- self.controls.delete = new("ButtonControl", {"BOTTOMRIGHT",self,"TOPRIGHT"}, {0, -2, 60, 18}, "Remove", function()
+ self.controls.delete = new("ButtonControl"):ButtonControl({"BOTTOMRIGHT",self,"TOPRIGHT"}, {0, -2, 60, 18}, "Remove", function()
self:OnSelDelete(self.selIndex, self.selValue)
end)
self.controls.delete.enabled = function()
return self.selValue ~= nil
end
end
-end)
+ return self
+end
function MinionListClass:AddSel()
if self.dest and not isValueInArray(self.dest.list, self.selValue) then
diff --git a/src/Classes/MinionSearchListControl.lua b/src/Classes/MinionSearchListControl.lua
index 699e739681f..43773259d98 100644
--- a/src/Classes/MinionSearchListControl.lua
+++ b/src/Classes/MinionSearchListControl.lua
@@ -8,16 +8,19 @@ local t_insert = table.insert
local t_remove = table.remove
local s_format = string.format
-local MinionSearchListClass = newClass("MinionSearchListControl", "MinionListControl", function(self, anchor, rect, data, list, dest)
- self.MinionListControl(anchor, rect, data, list, dest)
+---@class MinionSearchListControl: MinionListControl
+local MinionSearchListClass = newClass("MinionSearchListControl", "MinionListControl")
+
+function MinionSearchListClass:MinionSearchListControl(anchor, rect, data, list, dest)
+ self:MinionListControl(anchor, rect, data, list, dest)
self.unfilteredList = copyTable(list)
self.isMutable = false
- self.controls.searchText = new("EditControl", {"BOTTOMLEFT",self,"TOPLEFT"}, {0, -2, 203, 18}, "", "Search", "%c", 100, function(buf)
+ self.controls.searchText = new("EditControl"):EditControl({"BOTTOMLEFT",self,"TOPLEFT"}, {0, -2, 203, 18}, "", "Search", "%c", 100, function(buf)
self:ListFilterChanged(buf, self.controls.searchModeDropDown.selIndex)
end, nil, nil, true)
- self.controls.searchModeDropDown = new("DropDownControl", {"LEFT",self.controls.searchText,"RIGHT"}, {2, 0, 60, 18}, { "Names", "Skills", "Both"}, function(index, value)
+ self.controls.searchModeDropDown = new("DropDownControl"):DropDownControl({"LEFT",self.controls.searchText,"RIGHT"}, {2, 0, 60, 18}, { "Names", "Skills", "Both"}, function(index, value)
self:ListFilterChanged(self.controls.searchText.buf, index)
end)
@@ -28,7 +31,8 @@ local MinionSearchListClass = newClass("MinionSearchListControl", "MinionListCon
self.controls.delete.y = self.controls.add.y - 20
end
-end)
+ return self
+end
function MinionSearchListClass:DoesEntryMatchFilters(searchStr, minionId, filterMode)
if filterMode == 1 or filterMode == 3 then
diff --git a/src/Classes/ModDB.lua b/src/Classes/ModDB.lua
index 3b7ae609220..c71599b5a02 100644
--- a/src/Classes/ModDB.lua
+++ b/src/Classes/ModDB.lua
@@ -17,10 +17,14 @@ local bor = bit.bor
local mod_createMod = modLib.createMod
-local ModDBClass = newClass("ModDB", "ModStore", function(self, parent)
- self.ModStore(parent)
+---@class ModDB: ModStore
+local ModDBClass = newClass("ModDB", "ModStore")
+
+function ModDBClass:ModDB(parent)
+ self:ModStore(parent)
self.mods = { }
-end)
+ return self
+end
function ModDBClass:AddMod(mod)
local name = mod.name
diff --git a/src/Classes/ModList.lua b/src/Classes/ModList.lua
index 7bb6e2aba8b..ec686674d77 100644
--- a/src/Classes/ModList.lua
+++ b/src/Classes/ModList.lua
@@ -16,9 +16,13 @@ local bor = bit.bor
local mod_createMod = modLib.createMod
-local ModListClass = newClass("ModList", "ModStore", function(self, parent)
- self.ModStore(parent)
-end)
+---@class ModList: ModStore
+local ModListClass = newClass("ModList", "ModStore")
+
+function ModListClass:ModList(parent)
+ self:ModStore(parent)
+ return self
+end
function ModListClass:AddMod(mod)
t_insert(self, mod)
diff --git a/src/Classes/ModStore.lua b/src/Classes/ModStore.lua
index 92603eb3235..cc5cc832514 100644
--- a/src/Classes/ModStore.lua
+++ b/src/Classes/ModStore.lua
@@ -27,12 +27,16 @@ local conditionName = setmetatable({ }, { __index = function(t, var)
return t[var]
end })
-local ModStoreClass = newClass("ModStore", function(self, parent)
+---@class ModStore
+local ModStoreClass = newClass("ModStore")
+
+function ModStoreClass:ModStore(parent)
self.parent = parent or false
self.actor = parent and parent.actor or { }
self.multipliers = { }
self.conditions = { }
-end)
+ return self
+end
function ModStoreClass:ScaleAddMod(mod, scale, replace)
local unscalable = false
diff --git a/src/Classes/NotableDBControl.lua b/src/Classes/NotableDBControl.lua
index d08ec4080c9..4255e933f50 100644
--- a/src/Classes/NotableDBControl.lua
+++ b/src/Classes/NotableDBControl.lua
@@ -19,8 +19,10 @@ local function IsAnointableNode(node)
end
---@class NotableDBControl : ListControl
-local NotableDBClass = newClass("NotableDBControl", "ListControl", function(self, anchor, rect, itemsTab, db, dbType)
- self.ListControl(anchor, rect, 16, "VERTICAL", false)
+local NotableDBClass = newClass("NotableDBControl", "ListControl")
+
+function NotableDBClass:NotableDBControl(anchor, rect, itemsTab, db, dbType)
+ self:ListControl(anchor, rect, 16, "VERTICAL", false)
self.itemsTab = itemsTab
self.db = db
self.dbType = dbType
@@ -32,18 +34,19 @@ local NotableDBClass = newClass("NotableDBControl", "ListControl", function(self
self.sortDropList = { }
self.sortOrder = { }
self.sortMode = "NAME"
- self.controls.sort = new("DropDownControl", {"BOTTOMLEFT",self,"TOPLEFT"}, {0, -22, 360, 18}, self.sortDropList, function(index, value)
+ self.controls.sort = new("DropDownControl"):DropDownControl({"BOTTOMLEFT",self,"TOPLEFT"}, {0, -22, 360, 18}, self.sortDropList, function(index, value)
self:SetSortMode(value.sortMode)
end)
- self.controls.search = new("EditControl", {"BOTTOMLEFT",self,"TOPLEFT"}, {0, -2, 258, 18}, "", "Search", "%c", 100, function()
+ self.controls.search = new("EditControl"):EditControl({"BOTTOMLEFT",self,"TOPLEFT"}, {0, -2, 258, 18}, "", "Search", "%c", 100, function()
self.listBuildFlag = true
end, nil, nil, true)
- self.controls.searchMode = new("DropDownControl", {"LEFT",self.controls.search,"RIGHT"}, {2, 0, 100, 18}, { "Anywhere", "Names", "Modifiers" }, function(index, value)
+ self.controls.searchMode = new("DropDownControl"):DropDownControl({"LEFT",self.controls.search,"RIGHT"}, {2, 0, 100, 18}, { "Anywhere", "Names", "Modifiers" }, function(index, value)
self.listBuildFlag = true
end)
self:BuildSortOrder()
self.listBuildFlag = true
-end)
+ return self
+end
---@param node table @The notable node to check
---@return boolean @Whether the notable matches the type and search filters.
diff --git a/src/Classes/NotesTab.lua b/src/Classes/NotesTab.lua
index f78ea2eb41a..8bfc7c7772d 100644
--- a/src/Classes/NotesTab.lua
+++ b/src/Classes/NotesTab.lua
@@ -5,9 +5,13 @@
--
local t_insert = table.insert
-local NotesTabClass = newClass("NotesTab", "ControlHost", "Control", function(self, build)
- self.ControlHost()
- self.Control()
+---@class NotesTab: ControlHost, Control
+local NotesTabClass = newClass("NotesTab", "ControlHost", "Control")
+
+---@param build Build
+function NotesTabClass:NotesTab(build)
+ self:ControlHost()
+ self:Control()
self.build = build
@@ -17,33 +21,34 @@ local NotesTabClass = newClass("NotesTab", "ControlHost", "Control", function(se
local notesDesc = [[^7You can use Ctrl +/- (or Ctrl+Scroll) to zoom in and out and Ctrl+0 to reset.
This field also supports different colors. Using the caret symbol (^) followed by a Hex code or a number (0-9) will set the color.
Below are some common color codes PoB uses: ]]
- self.controls.notesDesc = new("LabelControl", {"TOPLEFT",self,"TOPLEFT"}, {8, 8, 150, 16}, notesDesc)
- self.controls.normal = new("ButtonControl", {"TOPLEFT",self.controls.notesDesc,"TOPLEFT"}, {0, 48, 100, 18}, colorCodes.NORMAL.."NORMAL", function() self:SetColor(colorCodes.NORMAL) end)
- self.controls.magic = new("ButtonControl", {"TOPLEFT",self.controls.normal,"TOPLEFT"}, {120, 0, 100, 18}, colorCodes.MAGIC.."MAGIC", function() self:SetColor(colorCodes.MAGIC) end)
- self.controls.rare = new("ButtonControl", {"TOPLEFT",self.controls.magic,"TOPLEFT"}, {120, 0, 100, 18}, colorCodes.RARE.."RARE", function() self:SetColor(colorCodes.RARE) end)
- self.controls.unique = new("ButtonControl", {"TOPLEFT",self.controls.rare,"TOPLEFT"}, {120, 0, 100, 18}, colorCodes.UNIQUE.."UNIQUE", function() self:SetColor(colorCodes.UNIQUE) end)
- self.controls.fire = new("ButtonControl", {"TOPLEFT",self.controls.normal,"TOPLEFT"}, {0, 18, 100, 18}, colorCodes.FIRE.."FIRE", function() self:SetColor(colorCodes.FIRE) end)
- self.controls.cold = new("ButtonControl", {"TOPLEFT",self.controls.fire,"TOPLEFT"}, {120, 0, 100, 18}, colorCodes.COLD.."COLD", function() self:SetColor(colorCodes.COLD) end)
- self.controls.lightning = new("ButtonControl", {"TOPLEFT",self.controls.cold,"TOPLEFT"}, {120, 0, 100, 18}, colorCodes.LIGHTNING.."LIGHTNING", function() self:SetColor(colorCodes.LIGHTNING) end)
- self.controls.chaos = new("ButtonControl", {"TOPLEFT",self.controls.lightning,"TOPLEFT"}, {120, 0, 100, 18}, colorCodes.CHAOS.."CHAOS", function() self:SetColor(colorCodes.CHAOS) end)
- self.controls.strength = new("ButtonControl", {"TOPLEFT",self.controls.fire,"TOPLEFT"}, {0, 18, 100, 18}, colorCodes.STRENGTH.."STRENGTH", function() self:SetColor(colorCodes.STRENGTH) end)
- self.controls.dexterity = new("ButtonControl", {"TOPLEFT",self.controls.strength,"TOPLEFT"}, {120, 0, 100, 18}, colorCodes.DEXTERITY.."DEXTERITY", function() self:SetColor(colorCodes.DEXTERITY) end)
- self.controls.intelligence = new("ButtonControl", {"TOPLEFT",self.controls.dexterity,"TOPLEFT"}, {120, 0, 100, 18}, colorCodes.INTELLIGENCE.."INTELLIGENCE", function() self:SetColor(colorCodes.INTELLIGENCE) end)
- self.controls.default = new("ButtonControl", {"TOPLEFT",self.controls.intelligence,"TOPLEFT"}, {120, 0, 100, 18}, "^7DEFAULT", function() self:SetColor("^7") end)
+ self.controls.notesDesc = new("LabelControl"):LabelControl({"TOPLEFT",self,"TOPLEFT"}, {8, 8, 150, 16}, notesDesc)
+ self.controls.normal = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.notesDesc,"TOPLEFT"}, {0, 48, 100, 18}, colorCodes.NORMAL.."NORMAL", function() self:SetColor(colorCodes.NORMAL) end)
+ self.controls.magic = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.normal,"TOPLEFT"}, {120, 0, 100, 18}, colorCodes.MAGIC.."MAGIC", function() self:SetColor(colorCodes.MAGIC) end)
+ self.controls.rare = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.magic,"TOPLEFT"}, {120, 0, 100, 18}, colorCodes.RARE.."RARE", function() self:SetColor(colorCodes.RARE) end)
+ self.controls.unique = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.rare,"TOPLEFT"}, {120, 0, 100, 18}, colorCodes.UNIQUE.."UNIQUE", function() self:SetColor(colorCodes.UNIQUE) end)
+ self.controls.fire = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.normal,"TOPLEFT"}, {0, 18, 100, 18}, colorCodes.FIRE.."FIRE", function() self:SetColor(colorCodes.FIRE) end)
+ self.controls.cold = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.fire,"TOPLEFT"}, {120, 0, 100, 18}, colorCodes.COLD.."COLD", function() self:SetColor(colorCodes.COLD) end)
+ self.controls.lightning = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.cold,"TOPLEFT"}, {120, 0, 100, 18}, colorCodes.LIGHTNING.."LIGHTNING", function() self:SetColor(colorCodes.LIGHTNING) end)
+ self.controls.chaos = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.lightning,"TOPLEFT"}, {120, 0, 100, 18}, colorCodes.CHAOS.."CHAOS", function() self:SetColor(colorCodes.CHAOS) end)
+ self.controls.strength = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.fire,"TOPLEFT"}, {0, 18, 100, 18}, colorCodes.STRENGTH.."STRENGTH", function() self:SetColor(colorCodes.STRENGTH) end)
+ self.controls.dexterity = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.strength,"TOPLEFT"}, {120, 0, 100, 18}, colorCodes.DEXTERITY.."DEXTERITY", function() self:SetColor(colorCodes.DEXTERITY) end)
+ self.controls.intelligence = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.dexterity,"TOPLEFT"}, {120, 0, 100, 18}, colorCodes.INTELLIGENCE.."INTELLIGENCE", function() self:SetColor(colorCodes.INTELLIGENCE) end)
+ self.controls.default = new("ButtonControl"):ButtonControl({"TOPLEFT",self.controls.intelligence,"TOPLEFT"}, {120, 0, 100, 18}, "^7DEFAULT", function() self:SetColor("^7") end)
- self.controls.edit = new("EditControl", {"TOPLEFT",self.controls.fire,"TOPLEFT"}, {0, 48, 0, 0}, "", nil, "^%C\t\n", nil, nil, 16, true)
+ self.controls.edit = new("EditControl"):EditControl({"TOPLEFT",self.controls.fire,"TOPLEFT"}, {0, 48, 0, 0}, "", nil, "^%C\t\n", nil, nil, 16, true)
self.controls.edit.width = function()
return self.width - 16
end
self.controls.edit.height = function()
return self.height - 128
end
- self.controls.toggleColorCodes = new("ButtonControl", {"TOPRIGHT",self,"TOPRIGHT"}, {-10, 70, 160, 20}, "Show Color Codes", function()
+ self.controls.toggleColorCodes = new("ButtonControl"):ButtonControl({"TOPRIGHT",self,"TOPRIGHT"}, {-10, 70, 160, 20}, "Show Color Codes", function()
self.showColorCodes = not self.showColorCodes
self:SetShowColorCodes(self.showColorCodes)
end)
self:SelectControl(self.controls.edit)
-end)
+ return self
+end
function NotesTabClass:SetShowColorCodes(setting)
self.showColorCodes = setting
diff --git a/src/Classes/PartyTab.lua b/src/Classes/PartyTab.lua
index 61b01403682..02f2ad0b4a9 100644
--- a/src/Classes/PartyTab.lua
+++ b/src/Classes/PartyTab.lua
@@ -9,15 +9,19 @@ local s_format = string.format
local t_insert = table.insert
local m_max = math.max
-local PartyTabClass = newClass("PartyTab", "ControlHost", "Control", function(self, build)
- self.ControlHost()
- self.Control()
+---@class PartyTab: ControlHost, Control
+local PartyTabClass = newClass("PartyTab", "ControlHost", "Control")
+
+---@param build Build
+function PartyTabClass:PartyTab(build)
+ self:ControlHost()
+ self:Control()
self.build = build
- self.actor = { Aura = { }, Curse = { }, Warcry = { }, Link = { }, modDB = new("ModDB"), output = { } }
+ self.actor = { Aura = { }, Curse = { }, Warcry = { }, Link = { }, modDB = new("ModDB"):ModDB(), output = { } }
self.actor.modDB.actor = self.actor
- self.enemyModList = new("ModList")
+ self.enemyModList = new("ModList"):ModList()
self.buffExports = { }
self.enableExportBuffs = false
@@ -61,7 +65,7 @@ local PartyTabClass = newClass("PartyTab", "ControlHost", "Control", function(se
All of these effects can be found in the Calcs tab]]
- self.controls.notesDesc = new("LabelControl", {"TOPLEFT",self,"TOPLEFT"}, {8, 8, 150, theme.stringHeight}, notesDesc)
+ self.controls.notesDesc = new("LabelControl"):LabelControl({"TOPLEFT",self,"TOPLEFT"}, {8, 8, 150, theme.stringHeight}, notesDesc)
self.controls.notesDesc.width = function()
local width = self.width / 2 - 16
if width ~= self.controls.notesDesc.lastWidth then
@@ -70,7 +74,7 @@ local PartyTabClass = newClass("PartyTab", "ControlHost", "Control", function(se
end
return width
end
- self.controls.importCodeHeader = new("LabelControl", {"TOPLEFT",self.controls.notesDesc,"BOTTOMLEFT"}, {0, 32, 0, theme.stringHeight}, "^7Enter a build code/URL below:")
+ self.controls.importCodeHeader = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.notesDesc,"BOTTOMLEFT"}, {0, 32, 0, theme.stringHeight}, "^7Enter a build code/URL below:")
self.controls.importCodeHeader.y = function()
return theme.lineCounter(self.controls.notesDesc.label) + 4
end
@@ -270,7 +274,7 @@ local PartyTabClass = newClass("PartyTab", "ControlHost", "Control", function(se
end
if partyDestinations[self.controls.importCodeDestination.selIndex] == "All" or partyDestinations[self.controls.importCodeDestination.selIndex] == "EnemyConditions" or partyDestinations[self.controls.importCodeDestination.selIndex] == "EnemyMods" then
wipeTable(self.enemyModList)
- self.enemyModList = new("ModList")
+ self.enemyModList = new("ModList"):ModList()
self:ParseBuffs(self.enemyModList, self.controls.enemyCond.buf, "EnemyConditions")
self:ParseBuffs(self.enemyModList, self.controls.enemyMods.buf, "EnemyMods", self.controls.simpleEnemyMods)
end
@@ -280,7 +284,7 @@ local PartyTabClass = newClass("PartyTab", "ControlHost", "Control", function(se
end
end
- self.controls.importCodeIn = new("EditControl", {"TOPLEFT",self.controls.importCodeHeader,"BOTTOMLEFT"}, {0, 4, 328, theme.buttonHeight}, "", nil, nil, nil, importCodeHandle)
+ self.controls.importCodeIn = new("EditControl"):EditControl({"TOPLEFT",self.controls.importCodeHeader,"BOTTOMLEFT"}, {0, 4, 328, theme.buttonHeight}, "", nil, nil, nil, importCodeHandle)
self.controls.importCodeIn.width = function()
return (self.width > 880) and 328 or (self.width / 2 - 100)
end
@@ -289,13 +293,13 @@ local PartyTabClass = newClass("PartyTab", "ControlHost", "Control", function(se
self.controls.importCodeGo.onClick()
end
end
- self.controls.importCodeState = new("LabelControl", {"LEFT",self.controls.importCodeIn,"RIGHT"}, {8, 0, 0, theme.stringHeight})
+ self.controls.importCodeState = new("LabelControl"):LabelControl({"LEFT",self.controls.importCodeIn,"RIGHT"}, {8, 0, 0, theme.stringHeight})
self.controls.importCodeState.label = function()
return self.importCodeDetail or ""
end
- self.controls.importCodeDestination = new("DropDownControl", {"TOPLEFT",self.controls.importCodeIn,"BOTTOMLEFT"}, {0, 4, 160, theme.buttonHeight}, partyDestinations)
+ self.controls.importCodeDestination = new("DropDownControl"):DropDownControl({"TOPLEFT",self.controls.importCodeIn,"BOTTOMLEFT"}, {0, 4, 160, theme.buttonHeight}, partyDestinations)
self.controls.importCodeDestination.tooltipText = "Destination for Import/clear\nCurrently Links Skills do not export"
- self.controls.importCodeGo = new("ButtonControl", {"LEFT",self.controls.importCodeDestination,"RIGHT"}, {8, 0, 160, theme.buttonHeight}, "Import", function()
+ self.controls.importCodeGo = new("ButtonControl"):ButtonControl({"LEFT",self.controls.importCodeDestination,"RIGHT"}, {8, 0, 160, theme.buttonHeight}, "Import", function()
local importCodeFetching = false
if self.importCodeSite and not self.importCodeXML then
self.importCodeFetching = true
@@ -323,7 +327,7 @@ local PartyTabClass = newClass("PartyTab", "ControlHost", "Control", function(se
self.controls.importCodeGo.onClick()
end
end
- self.controls.appendNotReplace = new("CheckBoxControl", {"LEFT",self.controls.importCodeGo,"RIGHT"}, {60, 0, theme.buttonHeight}, "Append", function(state)
+ self.controls.appendNotReplace = new("CheckBoxControl"):CheckBoxControl({"LEFT",self.controls.importCodeGo,"RIGHT"}, {60, 0, theme.buttonHeight}, "Append", function(state)
end, "This sets the import button to append to the current party lists instead of replacing them (curses will still replace)", false)
self.controls.appendNotReplace.x = function()
return (self.width > theme.widthThreshold1) and 60 or (-276)
@@ -332,36 +336,36 @@ local PartyTabClass = newClass("PartyTab", "ControlHost", "Control", function(se
return (self.width > theme.widthThreshold1) and 0 or 24
end
- self.controls.clear = new("ButtonControl", {"LEFT",self.controls.appendNotReplace,"RIGHT"}, {8, 0, 160, theme.buttonHeight}, "Clear", function()
+ self.controls.clear = new("ButtonControl"):ButtonControl({"LEFT",self.controls.appendNotReplace,"RIGHT"}, {8, 0, 160, theme.buttonHeight}, "Clear", function()
clearInputText()
wipeTable(self.enemyModList)
- self.enemyModList = new("ModList")
+ self.enemyModList = new("ModList"):ModList()
self.build.buildFlag = true
end)
self.controls.clear.tooltipText = "^7Clears all the party tab imported data"
- self.controls.ShowAdvanceTools = new("CheckBoxControl", {"TOPLEFT",self.controls.importCodeDestination,"BOTTOMLEFT"}, {140, 4, theme.buttonHeight}, "^7Show Advanced Info", function(state)
+ self.controls.ShowAdvanceTools = new("CheckBoxControl"):CheckBoxControl({"TOPLEFT",self.controls.importCodeDestination,"BOTTOMLEFT"}, {140, 4, theme.buttonHeight}, "^7Show Advanced Info", function(state)
end, "This shows the advanced info like what stats each aura/curse etc are adding, as well as enables the ability to edit them without a re-export\nDo not edit any boxes unless you know what you are doing, use copy/paste or import instead", false)
self.controls.ShowAdvanceTools.y = function()
return (self.width > theme.widthThreshold1) and 4 or 28
end
- self.controls.removeEffects = new("ButtonControl", {"LEFT",self.controls.ShowAdvanceTools,"RIGHT"}, {8, 0, 160, theme.buttonHeight}, "Disable Party Effects", function()
+ self.controls.removeEffects = new("ButtonControl"):ButtonControl({"LEFT",self.controls.ShowAdvanceTools,"RIGHT"}, {8, 0, 160, theme.buttonHeight}, "Disable Party Effects", function()
wipeTable(self.actor)
wipeTable(self.enemyModList)
- self.actor = { Aura = {}, Curse = {}, Warcry = { }, Link = {}, modDB = new("ModDB"), output = { } }
+ self.actor = { Aura = {}, Curse = {}, Warcry = { }, Link = {}, modDB = new("ModDB"):ModDB(), output = { } }
self.actor.modDB.actor = self.actor
- self.enemyModList = new("ModList")
+ self.enemyModList = new("ModList"):ModList()
self.build.buildFlag = true
end)
self.controls.removeEffects.tooltipText = "^7Removes the effects of the supports, without removing the data\nUse \"rebuild all\" to apply the effects again"
- self.controls.rebuild = new("ButtonControl", {"LEFT",self.controls.removeEffects,"RIGHT"}, {8, 0, 160, theme.buttonHeight}, "^7Rebuild All", function()
+ self.controls.rebuild = new("ButtonControl"):ButtonControl({"LEFT",self.controls.removeEffects,"RIGHT"}, {8, 0, 160, theme.buttonHeight}, "^7Rebuild All", function()
wipeTable(self.actor)
wipeTable(self.enemyModList)
- self.actor = { Aura = {}, Curse = {}, Warcry = { }, Link = {}, modDB = new("ModDB"), output = { } }
+ self.actor = { Aura = {}, Curse = {}, Warcry = { }, Link = {}, modDB = new("ModDB"):ModDB(), output = { } }
self.actor.modDB.actor = self.actor
- self.enemyModList = new("ModList")
+ self.enemyModList = new("ModList"):ModList()
self:ParseBuffs(self.actor["modDB"], self.controls.editPartyMemberStats.buf, "PartyMemberStats", self.actor["output"])
self:ParseBuffs(self.actor["Aura"], self.controls.editAuras.buf, "Aura", self.controls.simpleAuras)
self:ParseBuffs(self.actor["Curse"], self.controls.editCurses.buf, "Curse", self.controls.simpleCurses)
@@ -379,11 +383,11 @@ local PartyTabClass = newClass("PartyTab", "ControlHost", "Control", function(se
return (self.width > theme.widthThreshold1) and 0 or 24
end
- self.controls.editAurasLabel = new("LabelControl", {"TOPLEFT",self.controls.ShowAdvanceTools,"TOPLEFT"}, {-140, 40, 0, theme.stringHeight}, "^7Auras")
+ self.controls.editAurasLabel = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.ShowAdvanceTools,"TOPLEFT"}, {-140, 40, 0, theme.stringHeight}, "^7Auras")
self.controls.editAurasLabel.y = function()
return 36 + ((self.width <= theme.widthThreshold1) and 24 or 0)
end
- self.controls.editAuras = new("EditControl", {"TOPLEFT",self.controls.editAurasLabel,"TOPLEFT"}, {0, 18, 0, 0}, "", nil, "^%C\t\n", nil, nil, 14, true)
+ self.controls.editAuras = new("EditControl"):EditControl({"TOPLEFT",self.controls.editAurasLabel,"TOPLEFT"}, {0, 18, 0, 0}, "", nil, "^%C\t\n", nil, nil, 14, true)
self.controls.editAuras.width = function()
return self.width / 2 - 16
end
@@ -394,16 +398,16 @@ local PartyTabClass = newClass("PartyTab", "ControlHost", "Control", function(se
self.controls.editAuras.shown = function()
return self.controls.ShowAdvanceTools.state
end
- self.controls.simpleAuras = new("LabelControl", {"TOPLEFT",self.controls.editAurasLabel,"TOPLEFT"}, {0, 18, 0, theme.stringHeight}, "")
+ self.controls.simpleAuras = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.editAurasLabel,"TOPLEFT"}, {0, 18, 0, theme.stringHeight}, "")
self.controls.simpleAuras.shown = function()
return not self.controls.ShowAdvanceTools.state
end
- self.controls.editWarcriesLabel = new("LabelControl", {"TOPLEFT",self.controls.editAurasLabel,"BOTTOMLEFT"}, {0, 8, 0, theme.stringHeight}, "^7Warcry Skills")
+ self.controls.editWarcriesLabel = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.editAurasLabel,"BOTTOMLEFT"}, {0, 8, 0, theme.stringHeight}, "^7Warcry Skills")
self.controls.editWarcriesLabel.y = function()
return self.controls.ShowAdvanceTools.state and (self.controls.editAuras.height() + 8) or (theme.lineCounter(self.controls.simpleAuras.label) + 4)
end
- self.controls.editWarcries = new("EditControl", {"TOPLEFT",self.controls.editWarcriesLabel,"TOPLEFT"}, {0, 18, 0, 0}, "", nil, "^%C\t\n", nil, nil, 14, true)
+ self.controls.editWarcries = new("EditControl"):EditControl({"TOPLEFT",self.controls.editWarcriesLabel,"TOPLEFT"}, {0, 18, 0, 0}, "", nil, "^%C\t\n", nil, nil, 14, true)
self.controls.editWarcries.width = function()
return self.width / 2 - 16
end
@@ -413,16 +417,16 @@ local PartyTabClass = newClass("PartyTab", "ControlHost", "Control", function(se
self.controls.editWarcries.shown = function()
return self.controls.ShowAdvanceTools.state
end
- self.controls.simpleWarcries = new("LabelControl", {"TOPLEFT",self.controls.editWarcriesLabel,"TOPLEFT"}, {0, 18, 0, theme.stringHeight}, "")
+ self.controls.simpleWarcries = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.editWarcriesLabel,"TOPLEFT"}, {0, 18, 0, theme.stringHeight}, "")
self.controls.simpleWarcries.shown = function()
return not self.controls.ShowAdvanceTools.state
end
- self.controls.editLinksLabel = new("LabelControl", {"TOPLEFT",self.controls.editWarcriesLabel,"BOTTOMLEFT"}, {0, 8, 0, theme.stringHeight}, "^7Link Skills")
+ self.controls.editLinksLabel = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.editWarcriesLabel,"BOTTOMLEFT"}, {0, 8, 0, theme.stringHeight}, "^7Link Skills")
self.controls.editLinksLabel.y = function()
return self.controls.ShowAdvanceTools.state and (self.controls.editWarcries.height() + 8) or (theme.lineCounter(self.controls.simpleWarcries.label) + 4)
end
- self.controls.editLinks = new("EditControl", {"TOPLEFT",self.controls.editLinksLabel,"TOPLEFT"}, {0, 18, 0, 0}, "", nil, "^%C\t\n", nil, nil, 14, true)
+ self.controls.editLinks = new("EditControl"):EditControl({"TOPLEFT",self.controls.editLinksLabel,"TOPLEFT"}, {0, 18, 0, 0}, "", nil, "^%C\t\n", nil, nil, 14, true)
self.controls.editLinks.width = function()
return self.width / 2 - 16
end
@@ -432,13 +436,13 @@ local PartyTabClass = newClass("PartyTab", "ControlHost", "Control", function(se
self.controls.editLinks.shown = function()
return self.controls.ShowAdvanceTools.state
end
- self.controls.simpleLinks = new("LabelControl", {"TOPLEFT",self.controls.editLinksLabel,"TOPLEFT"}, {0, 18, 0, theme.stringHeight}, "")
+ self.controls.simpleLinks = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.editLinksLabel,"TOPLEFT"}, {0, 18, 0, theme.stringHeight}, "")
self.controls.simpleLinks.shown = function()
return not self.controls.ShowAdvanceTools.state
end
- self.controls.editPartyMemberStatsLabel = new("LabelControl", {"TOPLEFT",self.controls.notesDesc,"TOPRIGHT"}, {8, 0, 0, theme.stringHeight}, "^7Party Member Stats")
- self.controls.editPartyMemberStats = new("EditControl", {"TOPLEFT",self.controls.editPartyMemberStatsLabel,"BOTTOMLEFT"}, {0, 2, 0, 0}, "", nil, "^%C\t\n", nil, nil, 14, true)
+ self.controls.editPartyMemberStatsLabel = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.notesDesc,"TOPRIGHT"}, {8, 0, 0, theme.stringHeight}, "^7Party Member Stats")
+ self.controls.editPartyMemberStats = new("EditControl"):EditControl({"TOPLEFT",self.controls.editPartyMemberStatsLabel,"BOTTOMLEFT"}, {0, 2, 0, 0}, "", nil, "^%C\t\n", nil, nil, 14, true)
self.controls.editPartyMemberStats.width = function()
return self.width / 2 - 16
end
@@ -449,11 +453,11 @@ local PartyTabClass = newClass("PartyTab", "ControlHost", "Control", function(se
return self.controls.ShowAdvanceTools.state
end
- self.controls.enemyCondLabel = new("LabelControl", {"TOPLEFT",self.controls.editPartyMemberStatsLabel,"BOTTOMLEFT"}, {0, 8, 0, theme.stringHeight}, "^7Enemy Conditions")
+ self.controls.enemyCondLabel = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.editPartyMemberStatsLabel,"BOTTOMLEFT"}, {0, 8, 0, theme.stringHeight}, "^7Enemy Conditions")
self.controls.enemyCondLabel.y = function()
return self.controls.ShowAdvanceTools.state and (self.controls.editPartyMemberStats.height() + 8) or 4
end
- self.controls.enemyCond = new("EditControl", {"TOPLEFT",self.controls.enemyCondLabel,"BOTTOMLEFT"}, {0, 2, 0, 0}, "", nil, "^%C\t\n", nil, nil, 14, true)
+ self.controls.enemyCond = new("EditControl"):EditControl({"TOPLEFT",self.controls.enemyCondLabel,"BOTTOMLEFT"}, {0, 2, 0, 0}, "", nil, "^%C\t\n", nil, nil, 14, true)
self.controls.enemyCond.width = function()
return self.width / 2 - 16
end
@@ -463,16 +467,16 @@ local PartyTabClass = newClass("PartyTab", "ControlHost", "Control", function(se
self.controls.enemyCond.shown = function()
return self.controls.ShowAdvanceTools.state
end
- self.controls.simpleEnemyCond = new("LabelControl", {"TOPLEFT",self.controls.enemyCondLabel,"TOPLEFT"}, {0, 18, 0, theme.stringHeight}, "^7---------------------------\n")
+ self.controls.simpleEnemyCond = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.enemyCondLabel,"TOPLEFT"}, {0, 18, 0, theme.stringHeight}, "^7---------------------------\n")
self.controls.simpleEnemyCond.shown = function()
return not self.controls.ShowAdvanceTools.state
end
- self.controls.enemyModsLabel = new("LabelControl", {"TOPLEFT",self.controls.enemyCondLabel,"BOTTOMLEFT"}, {0, 8, 0, theme.stringHeight}, "^7Enemy Modifiers")
+ self.controls.enemyModsLabel = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.enemyCondLabel,"BOTTOMLEFT"}, {0, 8, 0, theme.stringHeight}, "^7Enemy Modifiers")
self.controls.enemyModsLabel.y = function()
return self.controls.ShowAdvanceTools.state and (self.controls.enemyCond.height() + 8) or (theme.lineCounter(self.controls.simpleEnemyCond.label) + 4)
end
- self.controls.enemyMods = new("EditControl", {"TOPLEFT",self.controls.enemyModsLabel,"BOTTOMLEFT"}, {0, 2, 0, 0}, "", nil, "^%C\t\n", nil, nil, 14, true)
+ self.controls.enemyMods = new("EditControl"):EditControl({"TOPLEFT",self.controls.enemyModsLabel,"BOTTOMLEFT"}, {0, 2, 0, 0}, "", nil, "^%C\t\n", nil, nil, 14, true)
self.controls.enemyMods.width = function()
return self.width / 2 - 16
end
@@ -482,16 +486,16 @@ local PartyTabClass = newClass("PartyTab", "ControlHost", "Control", function(se
self.controls.enemyMods.shown = function()
return self.controls.ShowAdvanceTools.state
end
- self.controls.simpleEnemyMods = new("LabelControl", {"TOPLEFT",self.controls.enemyModsLabel,"TOPLEFT"}, {0, 18, 0, theme.stringHeight}, "\n")
+ self.controls.simpleEnemyMods = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.enemyModsLabel,"TOPLEFT"}, {0, 18, 0, theme.stringHeight}, "\n")
self.controls.simpleEnemyMods.shown = function()
return not self.controls.ShowAdvanceTools.state
end
- self.controls.editCursesLabel = new("LabelControl", {"TOPLEFT",self.controls.enemyModsLabel,"BOTTOMLEFT"}, {0, 8, 0, theme.stringHeight}, "^7Curses")
+ self.controls.editCursesLabel = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.enemyModsLabel,"BOTTOMLEFT"}, {0, 8, 0, theme.stringHeight}, "^7Curses")
self.controls.editCursesLabel.y = function()
return self.controls.ShowAdvanceTools.state and (self.controls.enemyMods.height() + 8) or (theme.lineCounter(self.controls.simpleEnemyMods.label) + 4)
end
- self.controls.editCurses = new("EditControl", {"TOPLEFT",self.controls.editCursesLabel,"BOTTOMLEFT"}, {0, 2, 0, 0}, "", nil, "^%C\t\n", nil, nil, 14, true)
+ self.controls.editCurses = new("EditControl"):EditControl({"TOPLEFT",self.controls.editCursesLabel,"BOTTOMLEFT"}, {0, 2, 0, 0}, "", nil, "^%C\t\n", nil, nil, 14, true)
self.controls.editCurses.width = function()
return self.width / 2 - 16
end
@@ -501,12 +505,13 @@ local PartyTabClass = newClass("PartyTab", "ControlHost", "Control", function(se
self.controls.editCurses.shown = function()
return self.controls.ShowAdvanceTools.state
end
- self.controls.simpleCurses = new("LabelControl", {"TOPLEFT",self.controls.editCursesLabel,"TOPLEFT"}, {0, 18, 0, theme.stringHeight}, "")
+ self.controls.simpleCurses = new("LabelControl"):LabelControl({"TOPLEFT",self.controls.editCursesLabel,"TOPLEFT"}, {0, 18, 0, theme.stringHeight}, "")
self.controls.simpleCurses.shown = function()
return not self.controls.ShowAdvanceTools.state
end
self:SelectControl(self.controls.editAuras)
-end)
+ return self
+end
function PartyTabClass:Load(xml, fileName)
for _, node in ipairs(xml) do
@@ -839,7 +844,7 @@ function PartyTabClass:ParseBuffs(list, buf, buffType, label)
end
if not listElement[currentName] then
listElement[currentName] = {
- modList = new("ModList"),
+ modList = new("ModList"):ModList(),
effectMult = currentEffect
}
if isMark then
@@ -848,7 +853,7 @@ function PartyTabClass:ParseBuffs(list, buf, buffType, label)
elseif listElement[currentName].effectMult ~= currentEffect then
if listElement[currentName].effectMult < currentEffect then
listElement[currentName] = {
- modList = new("ModList"),
+ modList = new("ModList"):ModList(),
effectMult = currentEffect
}
else
diff --git a/src/Classes/PassiveMasteryControl.lua b/src/Classes/PassiveMasteryControl.lua
index 6cf35b182cc..87242b0cb5c 100644
--- a/src/Classes/PassiveMasteryControl.lua
+++ b/src/Classes/PassiveMasteryControl.lua
@@ -9,20 +9,23 @@ local m_min = math.min
local m_max = math.max
local m_floor = math.floor
---constructor
-local PassiveMasteryControlClass = newClass("PassiveMasteryControl", "ListControl", function(self, anchor, rect, list, treeTab, node, saveButton)
+---@class PassiveMasteryControl: ListControl
+local PassiveMasteryControlClass = newClass("PassiveMasteryControl", "ListControl")
+
+function PassiveMasteryControlClass:PassiveMasteryControl(anchor, rect, list, treeTab, node, saveButton)
self.list = list or { }
-- automagical width
for j=1,#list do
rect[3] = m_max(rect[3], DrawStringWidth(16, "VAR", list[j].label) + 5)
end
- self.ListControl(anchor, rect, 16, false, false, self.list)
+ self:ListControl(anchor, rect, 16, false, false, self.list)
self.treeTab = treeTab
self.treeView = treeTab.viewer
self.node = node
self.selIndex = nil
self.saveButton = saveButton
-end)
+ return self
+end
function PassiveMasteryControlClass:Draw(viewPort)
self.ListControl.Draw(self, viewPort)
diff --git a/src/Classes/PassiveSpec.lua b/src/Classes/PassiveSpec.lua
index e28e74a86b8..c869014dce1 100644
--- a/src/Classes/PassiveSpec.lua
+++ b/src/Classes/PassiveSpec.lua
@@ -16,8 +16,11 @@ local b_rshift = bit.rshift
local band = bit.band
local bor = bit.bor
-local PassiveSpecClass = newClass("PassiveSpec", "UndoHandler", function(self, build, treeVersion, convert)
- self.UndoHandler()
+---@class PassiveSpec: UndoHandler
+local PassiveSpecClass = newClass("PassiveSpec", "UndoHandler")
+
+function PassiveSpecClass:PassiveSpec(build, treeVersion, convert)
+ self:UndoHandler()
self.build = build
@@ -25,7 +28,8 @@ local PassiveSpecClass = newClass("PassiveSpec", "UndoHandler", function(self, b
self:Init(treeVersion, convert)
self:SelectClass(0)
-end)
+ return self
+end
function PassiveSpecClass:Init(treeVersion, convert)
self.treeVersion = treeVersion
@@ -1574,7 +1578,7 @@ function PassiveSpecClass:ReplaceNode(old, newNode)
old.name = newNode.name
old.mods = newNode.mods
old.modKey = newNode.modKey
- old.modList = new("ModList")
+ old.modList = new("ModList"):ModList()
old.modList:AddList(newNode.modList)
old.sprites = newNode.sprites
old.effectSprites = newNode.effectSprites
@@ -2263,12 +2267,12 @@ end
--- Adds a line to or replaces a node given a line to add/replace with
--- @param node table The node to replace/add to
--- @param sd string The line being parsed and added
---- @param replacement boolean true to replace the node with the new mod, false to simply add it
+--- @param replacement? boolean true to replace the node with the new mod, false to simply add it
function PassiveSpecClass:NodeAdditionOrReplacementFromString(node,sd,replacement)
local addition = {}
addition.sd = {sd}
addition.mods = { }
- addition.modList = new("ModList")
+ addition.modList = new("ModList"):ModList()
addition.modKey = ""
local i = 1
while addition.sd[i] do
@@ -2339,7 +2343,7 @@ function PassiveSpecClass:NodeAdditionOrReplacementFromString(node,sd,replacemen
node.mods = tableConcat(node.mods, addition.mods)
node.modKey = node.modKey .. addition.modKey
end
- local modList = new("ModList")
+ local modList = new("ModList"):ModList()
modList:AddList(addition.modList)
if not replacement then
modList:AddList(node.modList)
diff --git a/src/Classes/PassiveSpecListControl.lua b/src/Classes/PassiveSpecListControl.lua
index f227764d8f4..7f760ed3f03 100644
--- a/src/Classes/PassiveSpecListControl.lua
+++ b/src/Classes/PassiveSpecListControl.lua
@@ -7,11 +7,14 @@ local t_insert = table.insert
local t_remove = table.remove
local m_max = math.max
-local PassiveSpecListClass = newClass("PassiveSpecListControl", "ListControl", function(self, anchor, rect, treeTab)
- self.ListControl(anchor, rect, 16, "VERTICAL", true, treeTab.specList)
+---@class PassiveSpecListControl: ListControl
+local PassiveSpecListClass = newClass("PassiveSpecListControl", "ListControl")
+
+function PassiveSpecListClass:PassiveSpecListControl(anchor, rect, treeTab)
+ self:ListControl(anchor, rect, 16, "VERTICAL", true, treeTab.specList)
self.treeTab = treeTab
- self.controls.copy = new("ButtonControl", {"BOTTOMLEFT",self,"TOP"}, {2, -4, 60, 18}, "Copy", function()
- local newSpec = new("PassiveSpec", treeTab.build, self.selValue.treeVersion)
+ self.controls.copy = new("ButtonControl"):ButtonControl({"BOTTOMLEFT",self,"TOP"}, {2, -4, 60, 18}, "Copy", function()
+ local newSpec = new("PassiveSpec"):PassiveSpec(treeTab.build, self.selValue.treeVersion)
newSpec.title = self.selValue.title
newSpec.jewels = copyTable(self.selValue.jewels)
newSpec:RestoreUndoState(self.selValue:CreateUndoState())
@@ -21,35 +24,36 @@ local PassiveSpecListClass = newClass("PassiveSpecListControl", "ListControl", f
self.controls.copy.enabled = function()
return self.selValue ~= nil
end
- self.controls.delete = new("ButtonControl", {"LEFT",self.controls.copy,"RIGHT"}, {4, 0, 60, 18}, "Delete", function()
+ self.controls.delete = new("ButtonControl"):ButtonControl({"LEFT",self.controls.copy,"RIGHT"}, {4, 0, 60, 18}, "Delete", function()
self:OnSelDelete(self.selIndex, self.selValue)
end)
self.controls.delete.enabled = function()
return self.selValue ~= nil and #self.list > 1
end
- self.controls.rename = new("ButtonControl", {"BOTTOMRIGHT",self,"TOP"}, {-2, -4, 60, 18}, "Rename", function()
+ self.controls.rename = new("ButtonControl"):ButtonControl({"BOTTOMRIGHT",self,"TOP"}, {-2, -4, 60, 18}, "Rename", function()
self:RenameSpec(self.selValue, "Rename Tree")
end)
self.controls.rename.enabled = function()
return self.selValue ~= nil
end
- self.controls.new = new("ButtonControl", {"RIGHT",self.controls.rename,"LEFT"}, {-4, 0, 60, 18}, "New", function()
- local newSpec = new("PassiveSpec", treeTab.build, latestTreeVersion)
+ self.controls.new = new("ButtonControl"):ButtonControl({"RIGHT",self.controls.rename,"LEFT"}, {-4, 0, 60, 18}, "New", function()
+ local newSpec = new("PassiveSpec"):PassiveSpec(treeTab.build, latestTreeVersion)
newSpec:SelectClass(treeTab.build.spec.curClassId)
newSpec:SelectAscendClass(treeTab.build.spec.curAscendClassId)
newSpec:SelectSecondaryAscendClass(treeTab.build.spec.curSecondaryAscendClassId)
self:RenameSpec(newSpec, "New Tree", true)
end)
self:UpdateItemsTabPassiveTreeDropdown()
-end)
+ return self
+end
function PassiveSpecListClass:RenameSpec(spec, title, addOnName)
local controls = { }
- controls.label = new("LabelControl", nil, {0, 20, 0, 16}, "^7Enter name for this passive tree:")
- controls.edit = new("EditControl", nil, {0, 40, 350, 20}, spec.title, nil, nil, 100, function(buf)
+ controls.label = new("LabelControl"):LabelControl(nil, {0, 20, 0, 16}, "^7Enter name for this passive tree:")
+ controls.edit = new("EditControl"):EditControl(nil, {0, 40, 350, 20}, spec.title, nil, nil, 100, function(buf)
controls.save.enabled = buf:match("%S")
end)
- controls.save = new("ButtonControl", nil, {-45, 70, 80, 20}, "Save", function()
+ controls.save = new("ButtonControl"):ButtonControl(nil, {-45, 70, 80, 20}, "Save", function()
spec.title = controls.edit.buf
self.treeTab.modFlag = true
if addOnName then
@@ -62,7 +66,7 @@ function PassiveSpecListClass:RenameSpec(spec, title, addOnName)
main:ClosePopup()
end)
controls.save.enabled = false
- controls.cancel = new("ButtonControl", nil, {45, 70, 80, 20}, "Cancel", function()
+ controls.cancel = new("ButtonControl"):ButtonControl(nil, {45, 70, 80, 20}, "Cancel", function()
main:ClosePopup()
end)
-- main:OpenPopup(370, 100, spec.title and "Rename" or "Set Name", controls, "save", "edit")
diff --git a/src/Classes/PassiveTree.lua b/src/Classes/PassiveTree.lua
index 6ea7da09a03..c0a9ae16273 100644
--- a/src/Classes/PassiveTree.lua
+++ b/src/Classes/PassiveTree.lua
@@ -49,12 +49,15 @@ local function getFile(URL)
return #page > 0 and page
end
-local PassiveTreeClass = newClass("PassiveTree", function(self, treeVersion)
+---@class PassiveTree
+local PassiveTreeClass = newClass("PassiveTree")
+
+function PassiveTreeClass:PassiveTree(treeVersion)
self.treeVersion = treeVersion
local versionNum = treeVersions[treeVersion].num
- self.legion = LoadModule("Data/TimelessJewelData/LegionPassives")
- self.tattoo = LoadModule("Data/TattooPassives")
+ self.legion = require("Data.TimelessJewelData.LegionPassives")
+ self.tattoo = require("Data.TattooPassives")
MakeDir("TreeData")
@@ -197,7 +200,7 @@ local PassiveTreeClass = newClass("PassiveTree", function(self, treeVersion)
end
if not self.assets then
- self.assets = LoadModule("TreeData/3_19/Assets.lua")
+ self.assets = require("TreeData.3_19.Assets")
self.assets = self.assets.assets
if self.alternate_ascendancies then
-- backgrounds
@@ -348,7 +351,7 @@ local PassiveTreeClass = newClass("PassiveTree", function(self, treeVersion)
end
-- Load legion sprite sheets and build sprite map
- local legionSprites = LoadModule("TreeData/legion/tree-legion.lua")
+ local legionSprites = require("TreeData.legion.tree-legion")
for type, data in pairs(legionSprites) do
local maxZoom = data[#data]
local sheet = spriteSheets[maxZoom.filename]
@@ -720,14 +723,15 @@ local PassiveTreeClass = newClass("PassiveTree", function(self, treeVersion)
if treeVersion == latestTreeVersion then
buildTreeDependentUniques(self)
end
-end)
+ return self
+end
function PassiveTreeClass:ProcessStats(node, startIndex)
startIndex = startIndex or 1
if startIndex == 1 then
node.modKey = ""
node.mods = { }
- node.modList = new("ModList")
+ node.modList = new("ModList"):ModList()
end
if not node.sd then
diff --git a/src/Classes/PassiveTreeView.lua b/src/Classes/PassiveTreeView.lua
index f774737424e..e0965d346a5 100644
--- a/src/Classes/PassiveTreeView.lua
+++ b/src/Classes/PassiveTreeView.lua
@@ -14,7 +14,10 @@ local m_floor = math.floor
local band = bit.band
local b_rshift = bit.rshift
-local PassiveTreeViewClass = newClass("PassiveTreeView", function(self)
+---@class PassiveTreeView
+local PassiveTreeViewClass = newClass("PassiveTreeView")
+
+function PassiveTreeViewClass:PassiveTreeView()
self.ring = NewImageHandle()
self.ring:Load("Assets/ring.png", "CLAMP")
self.highlightRing = NewImageHandle()
@@ -53,7 +56,7 @@ local PassiveTreeViewClass = newClass("PassiveTreeView", function(self)
self.kalguur2 = NewImageHandle()
self.kalguur2:Load("TreeData/PassiveSkillScreenKalguuranJewelCircle2.png", "CLAMP")
- self.tooltip = new("Tooltip")
+ self.tooltip = new("Tooltip"):Tooltip()
self.zoomLevel = 3
self.zoom = 1.2 ^ self.zoomLevel
@@ -66,7 +69,8 @@ local PassiveTreeViewClass = newClass("PassiveTreeView", function(self)
self.searchStrResults = {}
self.showStatDifferences = true
self.hoverNode = nil
-end)
+ return self
+end
function PassiveTreeViewClass:Load(xml, fileName)
if xml.attrib.zoomLevel then
diff --git a/src/Classes/PathControl.lua b/src/Classes/PathControl.lua
index 4d62bef272a..af32ccbbb5d 100644
--- a/src/Classes/PathControl.lua
+++ b/src/Classes/PathControl.lua
@@ -6,16 +6,20 @@
local ipairs = ipairs
local t_insert = table.insert
-local PathClass = newClass("PathControl", "Control", "ControlHost", "UndoHandler", function(self, anchor, rect, basePath, subPath, onChange)
- self.Control(anchor, rect)
- self.ControlHost()
- self.UndoHandler()
+---@class PathControl
+local PathClass = newClass("PathControl", "Control", "ControlHost", "UndoHandler")
+
+function PathClass:PathControl(anchor, rect, basePath, subPath, onChange)
+ self:Control(anchor, rect)
+ self:ControlHost()
+ self:UndoHandler()
self.basePath = basePath
self.baseName = basePath:match("([^/]+)/$") or "Base"
self:SetSubPath(subPath or "")
self:ResetUndo()
self.onChange = onChange
-end)
+ return self
+end
function PathClass:SetSubPath(subPath, noUndo)
if subPath == self.subPath then
@@ -33,7 +37,7 @@ function PathClass:SetSubPath(subPath, noUndo)
for index, folder in ipairs(self.folderList) do
local button = self.controls["folder"..i]
if not button then
- button = new("ButtonControl", {"LEFT",self,"LEFT"}, {0, 0, 0, self.height - 4})
+ button = new("ButtonControl"):ButtonControl({"LEFT",self,"LEFT"}, {0, 0, 0, self.height - 4})
self.controls["folder"..i] = button
end
button.shown = true
diff --git a/src/Classes/PoBArchivesProvider.lua b/src/Classes/PoBArchivesProvider.lua
index c2b6ab2a527..d2d694b7746 100644
--- a/src/Classes/PoBArchivesProvider.lua
+++ b/src/Classes/PoBArchivesProvider.lua
@@ -9,17 +9,19 @@ local dkjson = require "dkjson"
local archivesUrl = 'https://pobarchives.com'
-local PoBArchivesProviderClass = newClass("PoBArchivesProvider", "ExtBuildListProvider",
- function(self, mode)
- if mode == "builds" then
- self.ExtBuildListProvider({"Trending", "Latest"})
- else
- self.ExtBuildListProvider({"Similar Builds"})
- end
- self.buildList = {}
- self.mode = mode
+---@class PoBArchivesProvider: ExtBuildListProvider
+local PoBArchivesProviderClass = newClass("PoBArchivesProvider", "ExtBuildListProvider")
+
+function PoBArchivesProviderClass:PoBArchivesProvider(mode)
+ if mode == "builds" then
+ self:ExtBuildListProvider({"Trending", "Latest"})
+ else
+ self:ExtBuildListProvider({"Similar Builds"})
end
-)
+ self.buildList = {}
+ self.mode = mode
+ return self
+end
function PoBArchivesProviderClass:GetApiUrl()
if self.importCode then
diff --git a/src/Classes/PopupDialog.lua b/src/Classes/PopupDialog.lua
index 223059def95..1e54e8c695b 100644
--- a/src/Classes/PopupDialog.lua
+++ b/src/Classes/PopupDialog.lua
@@ -5,10 +5,13 @@
--
local m_floor = math.floor
-local PopupDialogClass = newClass("PopupDialog", "ControlHost", "Control", function(self, width, height, title, controls, enterControl, defaultControl,
+---@class PopupDialog: ControlHost, Control
+local PopupDialogClass = newClass("PopupDialog", "ControlHost", "Control")
+
+function PopupDialogClass:PopupDialog(width, height, title, controls, enterControl, defaultControl,
escapeControl, scrollBarFunc, resizeFunc)
- self.ControlHost()
- self.Control(nil, {0, 0, width, height})
+ self:ControlHost()
+ self:Control(nil, {0, 0, width, height})
self.x = function()
return m_floor((main.screenW - width) / 2)
end
@@ -35,7 +38,8 @@ local PopupDialogClass = newClass("PopupDialog", "ControlHost", "Control", funct
self.scrollBarFunc = scrollBarFunc
-- allow resizing of popup
self.resizeFunc = resizeFunc
-end)
+ return self
+end
function PopupDialogClass:Draw(viewPort)
local x, y = self:GetPos()
diff --git a/src/Classes/PowerReportListControl.lua b/src/Classes/PowerReportListControl.lua
index bd2c1d2cd3c..69738aac11f 100644
--- a/src/Classes/PowerReportListControl.lua
+++ b/src/Classes/PowerReportListControl.lua
@@ -8,8 +8,11 @@ local t_insert = table.insert
local t_remove = table.remove
local t_sort = table.sort
-local PowerReportListClass = newClass("PowerReportListControl", "ListControl", function(self, anchor, rect, nodeSelectCallback)
- self.ListControl(anchor, rect, 16, "VERTICAL", false)
+---@class PowerReportListControl: ListControl
+local PowerReportListClass = newClass("PowerReportListControl", "ListControl")
+
+function PowerReportListClass:PowerReportListControl(anchor, rect, nodeSelectCallback)
+ self:ListControl(anchor, rect, 16, "VERTICAL", false)
local width = rect[3]
self.powerColumn = { width = width * 0.16, label = "", sortable = true }
@@ -27,7 +30,7 @@ local PowerReportListClass = newClass("PowerReportListControl", "ListControl", f
self.allocated = false
self.label = "Building Tree..."
- self.controls.filterSelect = new("DropDownControl", {"BOTTOMRIGHT", self, "TOPRIGHT"}, {0, -2, 200, 20},
+ self.controls.filterSelect = new("DropDownControl"):DropDownControl({"BOTTOMRIGHT", self, "TOPRIGHT"}, {0, -2, 200, 20},
{ "Show Unallocated", "Show Unallocated & Clusters", "Show Allocated" },
function(index, value)
self.showClusters = index == 2
@@ -35,12 +38,13 @@ local PowerReportListClass = newClass("PowerReportListControl", "ListControl", f
self:ReList()
self:ReSort(3) -- Sort by power
end)
- self.controls.masteryCheck = new("CheckBoxControl", {"RIGHT", self.controls.filterSelect, "LEFT"}, {-120, 0, 18}, "Show Masteries:", function(state)
+ self.controls.masteryCheck = new("CheckBoxControl"):CheckBoxControl({"RIGHT", self.controls.filterSelect, "LEFT"}, {-120, 0, 18}, "Show Masteries:", function(state)
self.showMasteries = state
self:ReList()
self:ReSort(3) -- Sort by power
end, nil, true)
-end)
+ return self
+end
function PowerReportListClass:SetReport(stat, report)
self.powerColumn.label = stat and stat.label or ""
diff --git a/src/Classes/RectangleOutlineControl.lua b/src/Classes/RectangleOutlineControl.lua
index 8b8b0b9d47c..d01a58d8147 100644
--- a/src/Classes/RectangleOutlineControl.lua
+++ b/src/Classes/RectangleOutlineControl.lua
@@ -3,11 +3,15 @@
-- Class: RectangleOutline Control
-- Simple Outline Only Rectangle control
--
-local RectangleOutlineClass = newClass("RectangleOutlineControl", "Control", function(self, anchor, rect, colors, stroke)
- self.Control(anchor, rect)
+---@class RectangleOutlineControl: Control
+local RectangleOutlineClass = newClass("RectangleOutlineControl", "Control")
+
+function RectangleOutlineClass:RectangleOutlineControl(anchor, rect, colors, stroke)
+ self:Control(anchor, rect)
self.stroke = stroke or 1
self.colors = colors or { 1, 1, 1 }
-end)
+ return self
+end
function RectangleOutlineClass:Draw()
local x, y = self:GetPos()
diff --git a/src/Classes/ResizableEditControl.lua b/src/Classes/ResizableEditControl.lua
index 66a0402e3f3..4f5145fc3bb 100644
--- a/src/Classes/ResizableEditControl.lua
+++ b/src/Classes/ResizableEditControl.lua
@@ -6,14 +6,17 @@
local m_max = math.max
local m_min = math.min
-local ResizableEditClass = newClass("ResizableEditControl", "EditControl", function(self, anchor, rect, init, prompt, filter, limit, changeFunc, lineHeight, allowZoom, clearable)
- self.EditControl(anchor, rect, init, prompt, filter, limit, changeFunc, lineHeight, allowZoom, clearable)
+---@class ResizableEditControl: EditControl
+local ResizableEditClass = newClass("ResizableEditControl", "EditControl")
+
+function ResizableEditClass:ResizableEditControl(anchor, rect, init, prompt, filter, limit, changeFunc, lineHeight, allowZoom, clearable)
+ self:EditControl(anchor, rect, init, prompt, filter, limit, changeFunc, lineHeight, allowZoom, clearable)
local x, y, width, height, minWidth, minHeight, maxWidth, maxHeight = unpack(rect)
self.minHeight = minHeight or height
self.maxHeight = maxHeight or height
self.minWidth = minWidth or width
self.maxWidth = maxWidth or width
- self.controls.draggerHeight = new("DraggerControl", {"BOTTOMRIGHT", self, "BOTTOMRIGHT"}, {7, 7, 14, 14}, "//", nil, nil, function (position)
+ self.controls.draggerHeight = new("DraggerControl"):DraggerControl({"BOTTOMRIGHT", self, "BOTTOMRIGHT"}, {7, 7, 14, 14}, "//", nil, nil, function (position)
-- onRightClick
if (self.height ~= self.minHeight) or (self.width ~= self.minWidth) then
self:SetWidth(self.minWidth)
@@ -24,7 +27,9 @@ local ResizableEditClass = newClass("ResizableEditControl", "EditControl", funct
end
end)
self.protected = false
-end)
+ return self
+end
+
function ResizableEditClass:Draw(viewPort, noTooltip)
self:SetBoundedDrag(self)
self.EditControl:Draw(viewPort, noTooltip)
diff --git a/src/Classes/ScrollBarControl.lua b/src/Classes/ScrollBarControl.lua
index 7dfc416e9eb..145fb94bfdf 100644
--- a/src/Classes/ScrollBarControl.lua
+++ b/src/Classes/ScrollBarControl.lua
@@ -8,8 +8,11 @@ local m_max = math.max
local m_ceil = math.ceil
local m_floor = math.floor
-local ScrollBarClass = newClass("ScrollBarControl", "Control", function(self, anchor, rect, step, dir, autoHide)
- self.Control(anchor, rect)
+---@class ScrollBarControl: Control
+local ScrollBarClass = newClass("ScrollBarControl", "Control")
+
+function ScrollBarClass:ScrollBarControl(anchor, rect, step, dir, autoHide)
+ self:Control(anchor, rect)
self.step = step or self.width * 2
self.dir = dir or "VERTICAL"
self.offset = 0
@@ -19,7 +22,8 @@ local ScrollBarClass = newClass("ScrollBarControl", "Control", function(self, an
return self.enabled
end
end
-end)
+ return self
+end
function ScrollBarClass:SetContentDimension(conDim, viewDim)
self.conDim = conDim
diff --git a/src/Classes/SearchHost.lua b/src/Classes/SearchHost.lua
index 60a65e64088..ceac2b6fe4e 100644
--- a/src/Classes/SearchHost.lua
+++ b/src/Classes/SearchHost.lua
@@ -4,12 +4,16 @@
-- Search host
--
-local SearchHostClass = newClass("SearchHost", function(self, listAccessor, valueAccessor)
+---@class SearchHost
+local SearchHostClass = newClass("SearchHost")
+
+function SearchHostClass:SearchHost(listAccessor, valueAccessor)
self.searchListAccessor = listAccessor
self.valueAccessor = valueAccessor
self.searchTerm = ""
self.searchInfos = {}
-end)
+ return self
+end
local function splitWords(s)
local words = {}
diff --git a/src/Classes/SectionControl.lua b/src/Classes/SectionControl.lua
index 45e1498d2ea..e0acb6fd213 100644
--- a/src/Classes/SectionControl.lua
+++ b/src/Classes/SectionControl.lua
@@ -4,10 +4,14 @@
-- Section box with label
--
-local SectionClass = newClass("SectionControl", "Control", function(self, anchor, rect, label)
- self.Control(anchor, rect)
+---@class SectionControl: Control
+local SectionClass = newClass("SectionControl", "Control")
+
+function SectionClass:SectionControl(anchor, rect, label)
+ self:Control(anchor, rect)
self.label = label
-end)
+ return self
+end
function SectionClass:Draw()
local x, y = self:GetPos()
diff --git a/src/Classes/SharedItemListControl.lua b/src/Classes/SharedItemListControl.lua
index b7605b61dc4..a4891b368ff 100644
--- a/src/Classes/SharedItemListControl.lua
+++ b/src/Classes/SharedItemListControl.lua
@@ -7,19 +7,23 @@ local pairs = pairs
local t_insert = table.insert
local t_remove = table.remove
-local SharedItemListClass = newClass("SharedItemListControl", "ListControl", function(self, anchor, rect, itemsTab, forceTooltip)
- self.ListControl(anchor, rect, 16, "VERTICAL", true, main.sharedItemList, forceTooltip)
+---@class SharedItemListControl: ListControl
+local SharedItemListClass = newClass("SharedItemListControl", "ListControl")
+
+function SharedItemListClass:SharedItemListControl(anchor, rect, itemsTab, forceTooltip)
+ self:ListControl(anchor, rect, 16, "VERTICAL", true, main.sharedItemList, forceTooltip)
self.itemsTab = itemsTab
self.label = "^7Shared items:"
self.defaultText = "^x7F7F7FThis is a list of items that will be shared between all of\nyour builds.\nYou can add items to this list by dragging them from\none of the other lists."
self.dragTargetList = { }
- self.controls.delete = new("ButtonControl", {"BOTTOMRIGHT",self,"TOPRIGHT"}, {0, -2, 60, 18}, "Delete", function()
+ self.controls.delete = new("ButtonControl"):ButtonControl({"BOTTOMRIGHT",self,"TOPRIGHT"}, {0, -2, 60, 18}, "Delete", function()
self:OnSelDelete(self.selIndex, self.selValue)
end)
self.controls.delete.enabled = function()
return self.selValue ~= nil
end
-end)
+ return self
+end
function SharedItemListClass:GetRowValue(column, index, item)
if column == 1 then
@@ -44,7 +48,7 @@ end
function SharedItemListClass:ReceiveDrag(type, value, source)
if type == "Item" then
local rawItem = { raw = value:BuildRaw() }
- local newItem = new("Item", rawItem.raw)
+ local newItem = new("Item"):Item(rawItem.raw)
if not value.id then
newItem:NormaliseQuality()
end
diff --git a/src/Classes/SharedItemSetListControl.lua b/src/Classes/SharedItemSetListControl.lua
index c24932a705e..ba604874c77 100644
--- a/src/Classes/SharedItemSetListControl.lua
+++ b/src/Classes/SharedItemSetListControl.lua
@@ -8,37 +8,41 @@ local t_remove = table.remove
local m_max = math.max
local s_format = string.format
-local SharedItemSetListClass = newClass("SharedItemSetListControl", "ListControl", function(self, anchor, rect, itemsTab)
- self.ListControl(anchor, rect, 16, "VERTICAL", true, main.sharedItemSetList)
+---@class SharedItemSetListControl: ListControl
+local SharedItemSetListClass = newClass("SharedItemSetListControl", "ListControl")
+
+function SharedItemSetListClass:SharedItemSetListControl(anchor, rect, itemsTab)
+ self:ListControl(anchor, rect, 16, "VERTICAL", true, main.sharedItemSetList)
self.itemsTab = itemsTab
self.defaultText = "^x7F7F7FThis is a list of item sets that will be shared\nbetween all of your builds.\nYou can add sets to this list by dragging them\nfrom the build's set list."
- self.controls.delete = new("ButtonControl", {"BOTTOMLEFT",self,"TOP"}, {2, -4, 60, 18}, "Delete", function()
+ self.controls.delete = new("ButtonControl"):ButtonControl({"BOTTOMLEFT",self,"TOP"}, {2, -4, 60, 18}, "Delete", function()
self:OnSelDelete(self.selIndex, self.selValue)
end)
self.controls.delete.enabled = function()
return self.selValue ~= nil
end
- self.controls.rename = new("ButtonControl", {"BOTTOMRIGHT",self,"TOP"}, {-2, -4, 60, 18}, "Rename", function()
+ self.controls.rename = new("ButtonControl"):ButtonControl({"BOTTOMRIGHT",self,"TOP"}, {-2, -4, 60, 18}, "Rename", function()
self:RenameSet(self.selValue)
end)
self.controls.rename.enabled = function()
return self.selValue ~= nil
end
-end)
+ return self
+end
function SharedItemSetListClass:RenameSet(sharedItemSet)
local controls = { }
- controls.label = new("LabelControl", nil, {0, 20, 0, 16}, "^7Enter name for this item set:")
- controls.edit = new("EditControl", nil, {0, 40, 350, 20}, sharedItemSet.title, nil, nil, 100, function(buf)
+ controls.label = new("LabelControl"):LabelControl(nil, {0, 20, 0, 16}, "^7Enter name for this item set:")
+ controls.edit = new("EditControl"):EditControl(nil, {0, 40, 350, 20}, sharedItemSet.title, nil, nil, 100, function(buf)
controls.save.enabled = buf:match("%S")
end)
- controls.save = new("ButtonControl", nil, {-45, 70, 80, 20}, "Save", function()
+ controls.save = new("ButtonControl"):ButtonControl(nil, {-45, 70, 80, 20}, "Save", function()
sharedItemSet.title = controls.edit.buf
self.itemsTab.modFlag = true
main:ClosePopup()
end)
controls.save.enabled = false
- controls.cancel = new("ButtonControl", nil, {45, 70, 80, 20}, "Cancel", function()
+ controls.cancel = new("ButtonControl"):ButtonControl(nil, {45, 70, 80, 20}, "Cancel", function()
main:ClosePopup()
end)
main:OpenPopup(370, 100, sharedItemSet.title and "Rename" or "Set Name", controls, "save", "edit")
@@ -82,7 +86,7 @@ function SharedItemSetListClass:ReceiveDrag(type, value, source)
if slot.selItemId ~= 0 then
local item = self.itemsTab.items[slot.selItemId]
local rawItem = { raw = item:BuildRaw() }
- local newItem = new("Item", rawItem.raw)
+ local newItem = new("Item"):Item(rawItem.raw)
if not value.id then
newItem:NormaliseQuality()
end
diff --git a/src/Classes/SkillListControl.lua b/src/Classes/SkillListControl.lua
index c820ce6cd69..13237af9bd4 100644
--- a/src/Classes/SkillListControl.lua
+++ b/src/Classes/SkillListControl.lua
@@ -26,17 +26,20 @@ local slot_map = {
["Belt"] = { icon = NewImageHandle(), path = "Assets/icon_belt.png" },
}
-local SkillListClass = newClass("SkillListControl", "ListControl", function(self, anchor, rect, skillsTab)
- self.ListControl(anchor, rect, 16, "VERTICAL", true, skillsTab.socketGroupList)
+---@class SkillListControl: ListControl
+local SkillListClass = newClass("SkillListControl", "ListControl")
+
+function SkillListClass:SkillListControl(anchor, rect, skillsTab)
+ self:ListControl(anchor, rect, 16, "VERTICAL", true, skillsTab.socketGroupList)
self.skillsTab = skillsTab
self.label = "^7Socket Groups:"
- self.controls.delete = new("ButtonControl", {"BOTTOMRIGHT",self,"TOPRIGHT"}, {0, -2, 60, 18}, "Delete", function()
+ self.controls.delete = new("ButtonControl"):ButtonControl({"BOTTOMRIGHT",self,"TOPRIGHT"}, {0, -2, 60, 18}, "Delete", function()
self:OnSelDelete(self.selIndex, self.selValue)
end)
self.controls.delete.enabled = function()
return self.selValue ~= nil and self.selValue.source == nil
end
- self.controls.deleteAll = new("ButtonControl", {"RIGHT",self.controls.delete,"LEFT"}, {-4, 0, 70, 18}, "Delete All", function()
+ self.controls.deleteAll = new("ButtonControl"):ButtonControl({"RIGHT",self.controls.delete,"LEFT"}, {-4, 0, 70, 18}, "Delete All", function()
main:OpenConfirmPopup("Delete All", "Are you sure you want to delete all socket groups in this build?", "Delete", function()
wipeTable(self.list)
skillsTab:RebuildImbuedSupportBySlot()
@@ -50,11 +53,11 @@ local SkillListClass = newClass("SkillListControl", "ListControl", function(self
self.controls.deleteAll.enabled = function()
return #self.list > 0
end
- self.controls.new = new("ButtonControl", {"RIGHT",self.controls.deleteAll,"LEFT"}, {-4, 0, 60, 18}, "New", function()
- local newGroup = {
- label = "",
- enabled = true,
- gemList = { }
+ self.controls.new = new("ButtonControl"):ButtonControl({"RIGHT",self.controls.deleteAll,"LEFT"}, {-4, 0, 60, 18}, "New", function()
+ local newGroup = {
+ label = "",
+ enabled = true,
+ gemList = { }
}
t_insert(self.list, newGroup)
self.selIndex = #self.list
@@ -67,7 +70,8 @@ local SkillListClass = newClass("SkillListControl", "ListControl", function(self
for k, x in pairs(slot_map) do
x.icon:Load(x.path)
end
-end)
+ return self
+end
function SkillListClass:GetRowValue(column, index, socketGroup)
if column == 1 then
diff --git a/src/Classes/SkillSetListControl.lua b/src/Classes/SkillSetListControl.lua
index c8208c476db..a9d181aa60f 100644
--- a/src/Classes/SkillSetListControl.lua
+++ b/src/Classes/SkillSetListControl.lua
@@ -8,10 +8,13 @@ local t_remove = table.remove
local m_max = math.max
local s_format = string.format
-local SkillSetListClass = newClass("SkillSetListControl", "ListControl", function(self, anchor, rect, skillsTab)
- self.ListControl(anchor, rect, 16, "VERTICAL", true, skillsTab.skillSetOrderList)
+---@class SkillSetListControl: ListControl
+local SkillSetListClass = newClass("SkillSetListControl", "ListControl")
+
+function SkillSetListClass:SkillSetListControl(anchor, rect, skillsTab)
+ self:ListControl(anchor, rect, 16, "VERTICAL", true, skillsTab.skillSetOrderList)
self.skillsTab = skillsTab
- self.controls.copy = new("ButtonControl", {"BOTTOMLEFT",self,"TOP"}, {2, -4, 60, 18}, "Copy", function()
+ self.controls.copy = new("ButtonControl"):ButtonControl({"BOTTOMLEFT",self,"TOP"}, {2, -4, 60, 18}, "Copy", function()
local skillSet = skillsTab.skillSets[self.selValue]
local newSkillSet = copyTable(skillSet, true)
newSkillSet.socketGroupList = { }
@@ -33,30 +36,31 @@ local SkillSetListClass = newClass("SkillSetListControl", "ListControl", functio
self.controls.copy.enabled = function()
return self.selValue ~= nil
end
- self.controls.delete = new("ButtonControl", {"LEFT",self.controls.copy,"RIGHT"}, {4, 0, 60, 18}, "Delete", function()
+ self.controls.delete = new("ButtonControl"):ButtonControl({"LEFT",self.controls.copy,"RIGHT"}, {4, 0, 60, 18}, "Delete", function()
self:OnSelDelete(self.selIndex, self.selValue)
end)
self.controls.delete.enabled = function()
return self.selValue ~= nil and #self.list > 1
end
- self.controls.rename = new("ButtonControl", {"BOTTOMRIGHT",self,"TOP"}, {-2, -4, 60, 18}, "Rename", function()
+ self.controls.rename = new("ButtonControl"):ButtonControl({"BOTTOMRIGHT",self,"TOP"}, {-2, -4, 60, 18}, "Rename", function()
self:RenameSet(skillsTab.skillSets[self.selValue])
end)
self.controls.rename.enabled = function()
return self.selValue ~= nil
end
- self.controls.new = new("ButtonControl", {"RIGHT",self.controls.rename,"LEFT"}, {-4, 0, 60, 18}, "New", function()
+ self.controls.new = new("ButtonControl"):ButtonControl({"RIGHT",self.controls.rename,"LEFT"}, {-4, 0, 60, 18}, "New", function()
self:RenameSet(skillsTab:NewSkillSet(), true)
end)
-end)
+ return self
+end
function SkillSetListClass:RenameSet(skillSet, addOnName)
local controls = { }
- controls.label = new("LabelControl", nil, {0, 20, 0, 16}, "^7Enter name for this skill set:")
- controls.edit = new("EditControl", nil, {0, 40, 350, 20}, skillSet.title, nil, nil, 100, function(buf)
+ controls.label = new("LabelControl"):LabelControl(nil, {0, 20, 0, 16}, "^7Enter name for this skill set:")
+ controls.edit = new("EditControl"):EditControl(nil, {0, 40, 350, 20}, skillSet.title, nil, nil, 100, function(buf)
controls.save.enabled = buf:match("%S")
end)
- controls.save = new("ButtonControl", nil, {-45, 70, 80, 20}, "Save", function()
+ controls.save = new("ButtonControl"):ButtonControl(nil, {-45, 70, 80, 20}, "Save", function()
skillSet.title = controls.edit.buf
self.skillsTab.modFlag = true
if addOnName then
@@ -69,7 +73,7 @@ function SkillSetListClass:RenameSet(skillSet, addOnName)
main:ClosePopup()
end)
controls.save.enabled = false
- controls.cancel = new("ButtonControl", nil, {45, 70, 80, 20}, "Cancel", function()
+ controls.cancel = new("ButtonControl"):ButtonControl(nil, {45, 70, 80, 20}, "Cancel", function()
if addOnName then
self.skillsTab.skillSets[skillSet.id] = nil
end
diff --git a/src/Classes/SkillsTab.lua b/src/Classes/SkillsTab.lua
index 8c4644c701e..a5be11fe509 100644
--- a/src/Classes/SkillsTab.lua
+++ b/src/Classes/SkillsTab.lua
@@ -75,10 +75,14 @@ local sortGemTypeList = {
{ label = "Effective Hit Pool", type = "TotalEHP" },
}
-local SkillsTabClass = newClass("SkillsTab", "UndoHandler", "ControlHost", "Control", function(self, build)
- self.UndoHandler()
- self.ControlHost()
- self.Control()
+---@class SkillsTab: UndoHandler, ControlHost, Control
+local SkillsTabClass = newClass("SkillsTab", "UndoHandler", "ControlHost", "Control")
+
+---@param build Build
+function SkillsTabClass:SkillsTab(build)
+ self:UndoHandler()
+ self:ControlHost()
+ self:Control()
self.build = build
@@ -92,7 +96,7 @@ local SkillsTabClass = newClass("SkillsTab", "UndoHandler", "ControlHost", "Cont
self.defaultGemQuality = main.defaultGemQuality
-- Set selector
- self.controls.setSelect = new("DropDownControl", { "TOPLEFT", self, "TOPLEFT" }, { 76, 8, 210, 20 }, nil, function(index, value)
+ self.controls.setSelect = new("DropDownControl"):DropDownControl({ "TOPLEFT", self, "TOPLEFT" }, { 76, 8, 210, 20 }, nil, function(index, value)
self:SetActiveSkillSet(self.skillSetOrderList[index])
self:AddUndoState()
end)
@@ -100,14 +104,14 @@ local SkillsTabClass = newClass("SkillsTab", "UndoHandler", "ControlHost", "Cont
self.controls.setSelect.enabled = function()
return #self.skillSetOrderList > 1
end
- self.controls.setLabel = new("LabelControl", { "RIGHT", self.controls.setSelect, "LEFT" }, { -2, 0, 0, 16 }, "^7Skill set:")
- self.controls.setManage = new("ButtonControl", { "LEFT", self.controls.setSelect, "RIGHT" }, { 4, 0, 90, 20 }, "Manage...", function()
+ self.controls.setLabel = new("LabelControl"):LabelControl({ "RIGHT", self.controls.setSelect, "LEFT" }, { -2, 0, 0, 16 }, "^7Skill set:")
+ self.controls.setManage = new("ButtonControl"):ButtonControl({ "LEFT", self.controls.setSelect, "RIGHT" }, { 4, 0, 90, 20 }, "Manage...", function()
self:OpenSkillSetManagePopup()
end)
-- Socket group list
- self.controls.groupList = new("SkillListControl", { "TOPLEFT", self, "TOPLEFT" }, { 20, 54, 360, 300 }, self)
- self.controls.groupTip = new("LabelControl", { "TOPLEFT", self.controls.groupList, "BOTTOMLEFT" }, { 0, 8, 0, 14 },
+ self.controls.groupList = new("SkillListControl"):SkillListControl({ "TOPLEFT", self, "TOPLEFT" }, { 20, 54, 360, 300 }, self)
+ self.controls.groupTip = new("LabelControl"):LabelControl({ "TOPLEFT", self.controls.groupList, "BOTTOMLEFT" }, { 0, 8, 0, 14 },
[[
^7Usage Tips:
- You can copy/paste socket groups using Ctrl+C and Ctrl+V.
@@ -120,14 +124,14 @@ local SkillsTabClass = newClass("SkillsTab", "UndoHandler", "ControlHost", "Cont
-- Gem options
local optionInputsX = 170
local optionInputsY = 45
- self.controls.optionSection = new("SectionControl", { "TOPLEFT", self.controls.groupList, "BOTTOMLEFT" }, { 0, optionInputsY + 50, 360, 156 }, "Gem Options")
- self.controls.sortGemsByDPS = new("CheckBoxControl", { "TOPLEFT", self.controls.groupList, "BOTTOMLEFT" }, { optionInputsX, optionInputsY + 70, 20 }, "Sort gems by DPS:", function(state)
+ self.controls.optionSection = new("SectionControl"):SectionControl({ "TOPLEFT", self.controls.groupList, "BOTTOMLEFT" }, { 0, optionInputsY + 50, 360, 156 }, "Gem Options")
+ self.controls.sortGemsByDPS = new("CheckBoxControl"):CheckBoxControl({ "TOPLEFT", self.controls.groupList, "BOTTOMLEFT" }, { optionInputsX, optionInputsY + 70, 20 }, "Sort gems by DPS:", function(state)
self.sortGemsByDPS = state
end, nil, true)
- self.controls.sortGemsByDPSFieldControl = new("DropDownControl", { "LEFT", self.controls.sortGemsByDPS, "RIGHT" }, { 10, 0, 140, 20 }, sortGemTypeList, function(index, value)
+ self.controls.sortGemsByDPSFieldControl = new("DropDownControl"):DropDownControl({ "LEFT", self.controls.sortGemsByDPS, "RIGHT" }, { 10, 0, 140, 20 }, sortGemTypeList, function(index, value)
self.sortGemsByDPSField = value.type
end)
- self.controls.defaultLevel = new("DropDownControl", { "TOPLEFT", self.controls.groupList, "BOTTOMLEFT" }, { optionInputsX, optionInputsY + 94, 170, 20 }, defaultGemLevelList, function(index, value)
+ self.controls.defaultLevel = new("DropDownControl"):DropDownControl({ "TOPLEFT", self.controls.groupList, "BOTTOMLEFT" }, { optionInputsX, optionInputsY + 94, 170, 20 }, defaultGemLevelList, function(index, value)
self.defaultGemLevel = value.gemLevel
end)
self.controls.defaultLevel.tooltipFunc = function(tooltip, mode, index, value)
@@ -136,36 +140,36 @@ local SkillsTabClass = newClass("SkillsTab", "UndoHandler", "ControlHost", "Cont
tooltip:AddLine(16, "^7" .. value.description)
end
end
- self.controls.defaultLevelLabel = new("LabelControl", { "RIGHT", self.controls.defaultLevel, "LEFT" }, { -4, 0, 0, 16 }, "^7Default gem level:")
- self.controls.defaultQuality = new("EditControl", { "TOPLEFT", self.controls.groupList, "BOTTOMLEFT" }, { optionInputsX, optionInputsY + 118, 60, 20 }, nil, nil, "%D", 2, function(buf)
+ self.controls.defaultLevelLabel = new("LabelControl"):LabelControl({ "RIGHT", self.controls.defaultLevel, "LEFT" }, { -4, 0, 0, 16 }, "^7Default gem level:")
+ self.controls.defaultQuality = new("EditControl"):EditControl({ "TOPLEFT", self.controls.groupList, "BOTTOMLEFT" }, { optionInputsX, optionInputsY + 118, 60, 20 }, nil, nil, "%D", 2, function(buf)
self.defaultGemQuality = m_min(tonumber(buf) or 0, 23)
end)
- self.controls.defaultQualityLabel = new("LabelControl", { "RIGHT", self.controls.defaultQuality, "LEFT" }, { -4, 0, 0, 16 }, "^7Default gem quality:")
- self.controls.showSupportGemTypes = new("DropDownControl", { "TOPLEFT", self.controls.groupList, "BOTTOMLEFT" }, { optionInputsX, optionInputsY + 142, 170, 20 }, showSupportGemTypeList, function(index, value)
+ self.controls.defaultQualityLabel = new("LabelControl"):LabelControl({ "RIGHT", self.controls.defaultQuality, "LEFT" }, { -4, 0, 0, 16 }, "^7Default gem quality:")
+ self.controls.showSupportGemTypes = new("DropDownControl"):DropDownControl({ "TOPLEFT", self.controls.groupList, "BOTTOMLEFT" }, { optionInputsX, optionInputsY + 142, 170, 20 }, showSupportGemTypeList, function(index, value)
self.showSupportGemTypes = value.show
end)
- self.controls.showSupportGemTypesLabel = new("LabelControl", { "RIGHT", self.controls.showSupportGemTypes, "LEFT" }, { -4, 0, 0, 16 }, "^7Show support gems:")
- self.controls.showLegacyGems = new("CheckBoxControl", { "TOPLEFT", self.controls.groupList, "BOTTOMLEFT" }, { optionInputsX, optionInputsY + 166, 20 }, "^7Show legacy gems:", function(state)
+ self.controls.showSupportGemTypesLabel = new("LabelControl"):LabelControl({ "RIGHT", self.controls.showSupportGemTypes, "LEFT" }, { -4, 0, 0, 16 }, "^7Show support gems:")
+ self.controls.showLegacyGems = new("CheckBoxControl"):CheckBoxControl({ "TOPLEFT", self.controls.groupList, "BOTTOMLEFT" }, { optionInputsX, optionInputsY + 166, 20 }, "^7Show legacy gems:", function(state)
self.showLegacyGems = state
end)
-- Socket group details
if main.portraitMode then
- self.anchorGroupDetail = new("Control", { "TOPLEFT", self.controls.optionSection, "BOTTOMLEFT" }, { 0, 20, 0, 0 })
+ self.anchorGroupDetail = new("Control"):Control({ "TOPLEFT", self.controls.optionSection, "BOTTOMLEFT" }, { 0, 20, 0, 0 })
else
- self.anchorGroupDetail = new("Control", { "TOPLEFT", self.controls.groupList, "TOPRIGHT" }, { 20, 0, 0, 0 })
+ self.anchorGroupDetail = new("Control"):Control({ "TOPLEFT", self.controls.groupList, "TOPRIGHT" }, { 20, 0, 0, 0 })
end
self.anchorGroupDetail.shown = function()
return self.displayGroup ~= nil
end
- self.controls.groupLabel = new("EditControl", { "TOPLEFT", self.anchorGroupDetail, "TOPLEFT" }, { 0, 0, 380, 20 }, nil, "Label", "%c", 50, function(buf)
+ self.controls.groupLabel = new("EditControl"):EditControl({ "TOPLEFT", self.anchorGroupDetail, "TOPLEFT" }, { 0, 0, 380, 20 }, nil, "Label", "%c", 50, function(buf)
self.displayGroup.label = buf
self:ProcessSocketGroup(self.displayGroup)
self:AddUndoState()
self.build.buildFlag = true
end)
- self.controls.groupSlotLabel = new("LabelControl", { "TOPLEFT", self.anchorGroupDetail, "TOPLEFT" }, { 0, 30, 0, 16 }, "^7Socketed in:")
- self.controls.groupSlot = new("DropDownControl", { "TOPLEFT", self.anchorGroupDetail, "TOPLEFT" }, { 85, 28, 130, 20 }, groupSlotDropList, function(index, value)
+ self.controls.groupSlotLabel = new("LabelControl"):LabelControl({ "TOPLEFT", self.anchorGroupDetail, "TOPLEFT" }, { 0, 30, 0, 16 }, "^7Socketed in:")
+ self.controls.groupSlot = new("DropDownControl"):DropDownControl({ "TOPLEFT", self.anchorGroupDetail, "TOPLEFT" }, { 85, 28, 130, 20 }, groupSlotDropList, function(index, value)
-- maintain imbued support to new slot
if self.imbuedSupportBySlot[self.displayGroup.slot] and self.displayGroup.imbuedSupport then
if value.slotName and not self.imbuedSupportBySlot[value.slotName] then
@@ -200,12 +204,12 @@ local SkillsTabClass = newClass("SkillsTab", "UndoHandler", "ControlHost", "Cont
self.controls.groupSlot.enabled = function()
return self.displayGroup.source == nil
end
- self.controls.groupEnabled = new("CheckBoxControl", { "LEFT", self.controls.groupSlot, "RIGHT" }, { 70, 0, 20 }, "Enabled:", function(state)
+ self.controls.groupEnabled = new("CheckBoxControl"):CheckBoxControl({ "LEFT", self.controls.groupSlot, "RIGHT" }, { 70, 0, 20 }, "Enabled:", function(state)
self.displayGroup.enabled = state
self:AddUndoState()
self.build.buildFlag = true
end)
- self.controls.includeInFullDPS = new("CheckBoxControl", { "LEFT", self.controls.groupEnabled, "RIGHT" }, { 145, 0, 20 }, "Include in Full DPS:", function(state)
+ self.controls.includeInFullDPS = new("CheckBoxControl"):CheckBoxControl({ "LEFT", self.controls.groupEnabled, "RIGHT" }, { 145, 0, 20 }, "Include in Full DPS:", function(state)
self.displayGroup.includeInFullDPS = state
self:AddUndoState()
self.build.buildFlag = true
@@ -217,8 +221,8 @@ local SkillsTabClass = newClass("SkillsTab", "UndoHandler", "ControlHost", "Cont
-- buildFlag to true triggers the reload/run the CalcSetup to add on the support
-- the last var in the GemSelectControl init, the true, sets imbuedSelect to true which sets the level to 1 and support filtering
self.imbuedSupportBySlot = { }
- self.controls.imbuedSupportLabel = new("LabelControl", { "LEFT", self.controls.groupSlotLabel, "LEFT" }, { 86, 28, 0, 16 }, colorCodes.CRAFTED.."Imbued Support:")
- self.controls.imbuedSupport = new("GemSelectControl", { "LEFT", self.controls.imbuedSupportLabel, "RIGHT" }, { 8, 0, 250, 20 }, self, 1, function(gemData, _, _, gemMatch, slotName)
+ self.controls.imbuedSupportLabel = new("LabelControl"):LabelControl({ "LEFT", self.controls.groupSlotLabel, "LEFT" }, { 86, 28, 0, 16 }, colorCodes.CRAFTED.."Imbued Support:")
+ self.controls.imbuedSupport = new("GemSelectControl"):GemSelectControl({ "LEFT", self.controls.imbuedSupportLabel, "RIGHT" }, { 8, 0, 250, 20 }, self, 1, function(gemData, _, _, gemMatch, slotName)
local targetSlot = slotName or (self.displayGroup and self.displayGroup.slot)
if not targetSlot then
return
@@ -256,7 +260,7 @@ local SkillsTabClass = newClass("SkillsTab", "UndoHandler", "ControlHost", "Cont
self.controls.imbuedSupportLabel.shown = function() -- don't show imbued for skills from items
return not self.displayGroup.source
end
- self.controls.imbuedSupportClear = new("ButtonControl", { "LEFT", self.controls.imbuedSupportLabel, "RIGHT" }, { 260, 0, 20, 20}, "x", function()
+ self.controls.imbuedSupportClear = new("ButtonControl"):ButtonControl({ "LEFT", self.controls.imbuedSupportLabel, "RIGHT" }, { 260, 0, 20, 20}, "x", function()
self.controls.imbuedSupport.gemId = nil
self.controls.imbuedSupport:SetText("")
self.controls.imbuedSupport:gemChangeFunc(nil)
@@ -266,11 +270,11 @@ local SkillsTabClass = newClass("SkillsTab", "UndoHandler", "ControlHost", "Cont
end
self.controls.imbuedSupportClear.tooltipText = "Remove this imbued support."
- self.controls.groupCountLabel = new("LabelControl", { "LEFT", self.controls.includeInFullDPS, "RIGHT" }, { 16, 0, 0, 16 }, "Count:")
+ self.controls.groupCountLabel = new("LabelControl"):LabelControl({ "LEFT", self.controls.includeInFullDPS, "RIGHT" }, { 16, 0, 0, 16 }, "Count:")
self.controls.groupCountLabel.shown = function()
return self.displayGroup.source ~= nil
end
- self.controls.groupCount = new("EditControl", { "LEFT", self.controls.groupCountLabel, "RIGHT" }, { 4, 0, 60, 20 }, nil, nil, "%D", 2, function(buf)
+ self.controls.groupCount = new("EditControl"):EditControl({ "LEFT", self.controls.groupCountLabel, "RIGHT" }, { 4, 0, 60, 20 }, nil, nil, "%D", 2, function(buf)
self.displayGroup.groupCount = tonumber(buf) or 1
self:AddUndoState()
self.build.buildFlag = true
@@ -278,7 +282,7 @@ local SkillsTabClass = newClass("SkillsTab", "UndoHandler", "ControlHost", "Cont
self.controls.groupCount.shown = function()
return self.displayGroup.source ~= nil
end
- self.controls.sourceNote = new("LabelControl", { "TOPLEFT", self.controls.groupSlotLabel, "TOPLEFT" }, { 0, 30, 0, 16 })
+ self.controls.sourceNote = new("LabelControl"):LabelControl({ "TOPLEFT", self.controls.groupSlotLabel, "TOPLEFT" }, { 0, 30, 0, 16 })
self.controls.sourceNote.shown = function()
return self.displayGroup.source ~= nil
end
@@ -315,7 +319,7 @@ will automatically apply to the skill.]]
end
-- Scroll bar
- self.controls.scrollBarH = new("ScrollBarControl", nil, {0, 0, 0, 18}, 100, "HORIZONTAL", true)
+ self.controls.scrollBarH = new("ScrollBarControl"):ScrollBarControl(nil, {0, 0, 0, 18}, 100, "HORIZONTAL", true)
-- Initialise skill sets
self.skillSets = { }
@@ -324,15 +328,16 @@ will automatically apply to the skill.]]
self:SetActiveSkillSet(1)
-- Skill gem slots
- self.anchorGemSlots = new("Control", {"TOPLEFT",self.anchorGroupDetail,"TOPLEFT"}, {0, 28 + 28 + 16 + 28, 0, 0})
+ self.anchorGemSlots = new("Control"):Control({"TOPLEFT",self.anchorGroupDetail,"TOPLEFT"}, {0, 28 + 28 + 16 + 28, 0, 0})
self.gemSlots = { }
self:CreateGemSlot(1)
- self.controls.gemNameHeader = new("LabelControl", {"BOTTOMLEFT", self.gemSlots[1].nameSpec, "TOPLEFT"}, {0, -2, 0, 16}, "^7Gem name:")
- self.controls.gemLevelHeader = new("LabelControl", {"BOTTOMLEFT", self.gemSlots[1].level, "TOPLEFT"}, {0, -2, 0, 16}, "^7Level:")
- self.controls.gemQualityHeader = new("LabelControl", {"BOTTOMLEFT", self.gemSlots[1].quality, "TOPLEFT"}, {0, -2, 0, 16}, "^7Quality:")
- self.controls.gemEnableHeader = new("LabelControl", {"BOTTOMLEFT", self.gemSlots[1].enabled, "TOPLEFT"}, {-16, -2, 0, 16}, "^7Enabled:")
- self.controls.gemCountHeader = new("LabelControl", {"BOTTOMLEFT", self.gemSlots[1].count, "TOPLEFT"}, {8, -2, 0, 16}, "^7Count:")
-end)
+ self.controls.gemNameHeader = new("LabelControl"):LabelControl({"BOTTOMLEFT", self.gemSlots[1].nameSpec, "TOPLEFT"}, {0, -2, 0, 16}, "^7Gem name:")
+ self.controls.gemLevelHeader = new("LabelControl"):LabelControl({"BOTTOMLEFT", self.gemSlots[1].level, "TOPLEFT"}, {0, -2, 0, 16}, "^7Level:")
+ self.controls.gemQualityHeader = new("LabelControl"):LabelControl({"BOTTOMLEFT", self.gemSlots[1].quality, "TOPLEFT"}, {0, -2, 0, 16}, "^7Quality:")
+ self.controls.gemEnableHeader = new("LabelControl"):LabelControl({"BOTTOMLEFT", self.gemSlots[1].enabled, "TOPLEFT"}, {-16, -2, 0, 16}, "^7Enabled:")
+ self.controls.gemCountHeader = new("LabelControl"):LabelControl({"BOTTOMLEFT", self.gemSlots[1].count, "TOPLEFT"}, {8, -2, 0, 16}, "^7Count:")
+ return self
+end
function SkillsTabClass:LoadSkill(node, skillSetId)
@@ -658,7 +663,7 @@ function SkillsTabClass:CreateGemSlot(index)
self.build.buildFlag = true
end
-- Delete gem
- slot.delete = new("ButtonControl", nil, {0, 0, 20, 20}, "x", function()
+ slot.delete = new("ButtonControl"):ButtonControl(nil, {0, 0, 20, 20}, "x", function()
return deleteGem()
end)
if index == 1 then
@@ -679,7 +684,7 @@ function SkillsTabClass:CreateGemSlot(index)
self.controls["gemSlot"..index.."Delete"] = slot.delete
-- Gem name specification
- slot.nameSpec = new("GemSelectControl", { "LEFT", slot.delete, "RIGHT" }, { 2, 0, 300, 20 }, self, index, function(gemId, addUndo, focusLost, bufMatchesGem)
+ slot.nameSpec = new("GemSelectControl"):GemSelectControl({ "LEFT", slot.delete, "RIGHT" }, { 2, 0, 300, 20 }, self, index, function(gemId, addUndo, focusLost, bufMatchesGem)
if not self.displayGroup then
return
end
@@ -735,7 +740,7 @@ function SkillsTabClass:CreateGemSlot(index)
self.controls["gemSlot"..index.."Name"] = slot.nameSpec
-- Gem level
- slot.level = new("EditControl", { "LEFT", slot.nameSpec, "RIGHT" }, { 2, 0, 60, 20 }, nil, nil, "%D", 2, function(buf)
+ slot.level = new("EditControl"):EditControl({ "LEFT", slot.nameSpec, "RIGHT" }, { 2, 0, 60, 20 }, nil, nil, "%D", 2, function(buf)
local gemInstance = self.displayGroup.gemList[index]
if not gemInstance then
gemInstance = { nameSpec = "", level = self.defaultGemLevel or 20, quality = self.defaultGemQuality or 0, enabled = true, enableGlobal1 = true, enableGlobal2 = true, count = 1, new = true }
@@ -757,7 +762,7 @@ function SkillsTabClass:CreateGemSlot(index)
self.controls["gemSlot"..index.."Level"] = slot.level
-- Gem quality
- slot.quality = new("EditControl", {"LEFT",slot.level,"RIGHT"}, {2, 0, 60, 20}, nil, nil, "%D", 2, function(buf)
+ slot.quality = new("EditControl"):EditControl({"LEFT",slot.level,"RIGHT"}, {2, 0, 60, 20}, nil, nil, "%D", 2, function(buf)
local gemInstance = self.displayGroup.gemList[index]
if not gemInstance then
gemInstance = { nameSpec = "", level = self.defaultGemLevel or 20, quality = self.defaultGemQuality or 0, enabled = true, enableGlobal1 = true, enableGlobal2 = true, count = 1, new = true }
@@ -839,7 +844,7 @@ function SkillsTabClass:CreateGemSlot(index)
self.controls["gemSlot"..index.."Quality"] = slot.quality
-- Enable gem
- slot.enabled = new("CheckBoxControl", {"LEFT",slot.quality,"RIGHT"}, {18, 0, 20}, nil, function(state)
+ slot.enabled = new("CheckBoxControl"):CheckBoxControl({"LEFT",slot.quality,"RIGHT"}, {18, 0, 20}, nil, function(state)
local gemInstance = self.displayGroup.gemList[index]
if not gemInstance then
gemInstance = { nameSpec = "", level = self.defaultGemLevel or 20, quality = self.defaultGemQuality or 0, enabled = true, enableGlobal1 = true, enableGlobal2 = true, count = 1, new = true }
@@ -878,7 +883,7 @@ function SkillsTabClass:CreateGemSlot(index)
self.controls["gemSlot"..index.."Enable"] = slot.enabled
-- Count gem
- slot.count = new("EditControl", {"LEFT",slot.enabled,"RIGHT"}, {18, 0, 60, 20}, nil, nil, "%D", 2, function(buf)
+ slot.count = new("EditControl"):EditControl({"LEFT",slot.enabled,"RIGHT"}, {18, 0, 60, 20}, nil, nil, "%D", 2, function(buf)
local gemInstance = self.displayGroup.gemList[index]
if not gemInstance then
gemInstance = { nameSpec = "", level = self.defaultGemLevel or 20, quality = self.defaultGemQuality or 0, enabled = true, enableGlobal1 = true, count = 1, new = true }
@@ -919,14 +924,14 @@ function SkillsTabClass:CreateGemSlot(index)
self.controls["gemSlot"..index.."Count"] = slot.count
-- Parser/calculator error message
- slot.errMsg = new("LabelControl", {"LEFT",slot.count,"RIGHT"}, {2, 2, 0, 16}, function()
+ slot.errMsg = new("LabelControl"):LabelControl({"LEFT",slot.count,"RIGHT"}, {2, 2, 0, 16}, function()
local gemInstance = self.displayGroup and self.displayGroup.gemList[index]
return "^1"..(gemInstance and gemInstance.errMsg or "")
end)
self.controls["gemSlot"..index.."ErrMsg"] = slot.errMsg
-- Enable global-effect skill 1
- slot.enableGlobal1 = new("CheckBoxControl", {"TOPLEFT",slot.delete,"BOTTOMLEFT"}, {0, 2, 20}, "", function(state)
+ slot.enableGlobal1 = new("CheckBoxControl"):CheckBoxControl({"TOPLEFT",slot.delete,"BOTTOMLEFT"}, {0, 2, 20}, "", function(state)
local gemInstance = self.displayGroup.gemList[index]
gemInstance.enableGlobal1 = state
self:AddUndoState()
@@ -945,7 +950,7 @@ function SkillsTabClass:CreateGemSlot(index)
self.controls["gemSlot"..index.."EnableGlobal1"] = slot.enableGlobal1
-- Enable global-effect skill 2
- slot.enableGlobal2 = new("CheckBoxControl", {"LEFT",slot.enableGlobal1,"RIGHT",true}, {0, 0, 20}, "", function(state)
+ slot.enableGlobal2 = new("CheckBoxControl"):CheckBoxControl({"LEFT",slot.enableGlobal1,"RIGHT",true}, {0, 0, 20}, "", function(state)
local gemInstance = self.displayGroup.gemList[index]
gemInstance.enableGlobal2 = state
self:AddUndoState()
@@ -1289,8 +1294,8 @@ end
-- Opens the skill set manager
function SkillsTabClass:OpenSkillSetManagePopup()
main:OpenPopup(370, 290, "Manage Skill Sets", {
- new("SkillSetListControl", nil, {0, 50, 350, 200}, self),
- new("ButtonControl", nil, {0, 260, 90, 20}, "Done", function()
+ new("SkillSetListControl"):SkillSetListControl(nil, {0, 50, 350, 200}, self),
+ new("ButtonControl"):ButtonControl(nil, {0, 260, 90, 20}, "Done", function()
main:ClosePopup()
end),
})
diff --git a/src/Classes/SliderControl.lua b/src/Classes/SliderControl.lua
index 2c3048de480..89dba3e1fc0 100644
--- a/src/Classes/SliderControl.lua
+++ b/src/Classes/SliderControl.lua
@@ -7,14 +7,18 @@ local m_min = math.min
local m_max = math.max
local m_ceil = math.ceil
-local SliderClass = newClass("SliderControl", "Control", "TooltipHost", function(self, anchor, rect, changeFunc, scrollWheelSpeedTbl)
- self.Control(anchor, rect)
- self.TooltipHost()
+---@class SliderControl: Control, TooltipHost
+local SliderClass = newClass("SliderControl", "Control", "TooltipHost")
+
+function SliderClass:SliderControl(anchor, rect, changeFunc, scrollWheelSpeedTbl)
+ self:Control(anchor, rect)
+ self:TooltipHost()
self.knobSize = self.height - 2
self.val = 0
self.changeFunc = changeFunc
self.scrollWheelSpeedTbl = scrollWheelSpeedTbl or { ["SHIFT"] = 0.25, ["CTRL"] = 0.01, ["DEFAULT"] = 0.05 }
-end)
+ return self
+end
function SliderClass:IsMouseOver()
if not self:IsShown() then
diff --git a/src/Classes/TextListControl.lua b/src/Classes/TextListControl.lua
index 7302a153b97..b9c7f726d55 100644
--- a/src/Classes/TextListControl.lua
+++ b/src/Classes/TextListControl.lua
@@ -3,10 +3,13 @@
-- Class: Text List
-- Simple list control for displaying a block of text
--
-local TextListClass = newClass("TextListControl", "Control", "ControlHost", function(self, anchor, rect, columns, list, sectionHeights)
- self.Control(anchor, rect)
- self.ControlHost()
- self.controls.scrollBar = new("ScrollBarControl", {"RIGHT",self,"RIGHT"}, {-1, 0, 18, 0}, 40)
+---@class TextListControl: Control, ControlHost
+local TextListClass = newClass("TextListControl", "Control", "ControlHost")
+
+function TextListClass:TextListControl(anchor, rect, columns, list, sectionHeights)
+ self:Control(anchor, rect)
+ self:ControlHost()
+ self.controls.scrollBar = new("ScrollBarControl"):ScrollBarControl({"RIGHT",self,"RIGHT"}, {-1, 0, 18, 0}, 40)
self.controls.scrollBar.height = function()
local width, height = self:GetSize()
return height - 2
@@ -14,7 +17,8 @@ local TextListClass = newClass("TextListControl", "Control", "ControlHost", func
self.columns = columns or { { x = 0, align = "LEFT" } }
self.list = list or { }
self.sectionHeights = sectionHeights
-end)
+ return self
+end
function TextListClass:IsMouseOver()
if not self:IsShown() then
diff --git a/src/Classes/TimelessJewelListControl.lua b/src/Classes/TimelessJewelListControl.lua
index c1a25a720fd..8378525b98e 100644
--- a/src/Classes/TimelessJewelListControl.lua
+++ b/src/Classes/TimelessJewelListControl.lua
@@ -9,13 +9,17 @@ local m_min = math.min
local m_max = math.max
local t_concat = table.concat
-local TimelessJewelListControlClass = newClass("TimelessJewelListControl", "ListControl", function(self, anchor, rect, build)
+---@class TimelessJewelListControl: ListControl
+local TimelessJewelListControlClass = newClass("TimelessJewelListControl", "ListControl")
+
+function TimelessJewelListControlClass:TimelessJewelListControl(anchor, rect, build)
self.build = build
self.sharedList = self.build.timelessData.sharedResults or { }
self.list = self.build.timelessData.searchResults or { }
- self.ListControl(anchor, rect, 16, true, false, self.list)
+ self:ListControl(anchor, rect, 16, true, false, self.list)
self.selIndex = nil
-end)
+ return self
+end
function TimelessJewelListControlClass:Draw(viewPort, noTooltip)
self.noTooltip = noTooltip
@@ -247,7 +251,7 @@ Passives in radius are Conquered by the Eternal Empire
Historic
]]
end
- local item = new("Item", itemData)
+ local item = new("Item"):Item(itemData)
self.build.itemsTab:AddItem(item, true)
self.build.itemsTab:PopulateSlots()
self.list[index].label = "^xB2B2B2" .. self.list[index].label
diff --git a/src/Classes/TimelessJewelSocketControl.lua b/src/Classes/TimelessJewelSocketControl.lua
index b6e8527be13..28494df3c21 100644
--- a/src/Classes/TimelessJewelSocketControl.lua
+++ b/src/Classes/TimelessJewelSocketControl.lua
@@ -6,11 +6,15 @@
local m_min = math.min
-local TimelessJewelSocketClass = newClass("TimelessJewelSocketControl", "DropDownControl", function(self, anchor, rect, list, selFunc, build, socketViewer)
- self.DropDownControl(anchor, rect, list, selFunc)
+---@class TimelessJewelSocketControl: DropDownControl
+local TimelessJewelSocketClass = newClass("TimelessJewelSocketControl", "DropDownControl")
+
+function TimelessJewelSocketClass:TimelessJewelSocketControl(anchor, rect, list, selFunc, build, socketViewer)
+ self:DropDownControl(anchor, rect, list, selFunc)
self.build = build
self.socketViewer = socketViewer
-end)
+ return self
+end
function TimelessJewelSocketClass:Draw(viewPort, noTooltip)
local x, y = self:GetPos()
diff --git a/src/Classes/Tooltip.lua b/src/Classes/Tooltip.lua
index 26f47c87e4f..65f0f0d0386 100644
--- a/src/Classes/Tooltip.lua
+++ b/src/Classes/Tooltip.lua
@@ -40,11 +40,15 @@ for _, recipeName in pairs(recipeNames) do
recipeImages[recipeName]:Load("TreeData/" .. recipeName .. ".png", "CLAMP")
end
-local TooltipClass = newClass("Tooltip", function(self)
+---@class Tooltip
+local TooltipClass = newClass("Tooltip")
+
+function TooltipClass:Tooltip()
self.lines = { }
self.blocks = { }
self:Clear()
-end)
+ return self
+end
function TooltipClass:Clear(clearUpdateParams)
wipeTable(self.lines)
diff --git a/src/Classes/TooltipHost.lua b/src/Classes/TooltipHost.lua
index bd8db5231d2..42a9c3e0e90 100644
--- a/src/Classes/TooltipHost.lua
+++ b/src/Classes/TooltipHost.lua
@@ -3,10 +3,14 @@
-- Class: Tooltip Host
-- Tooltip host
--
-local TooltipHostClass = newClass("TooltipHost", function(self, tooltipText)
- self.tooltip = new("Tooltip")
+---@class TooltipHost
+local TooltipHostClass = newClass("TooltipHost")
+
+function TooltipHostClass:TooltipHost(tooltipText)
+ self.tooltip = new("Tooltip"):Tooltip()
self.tooltipText = tooltipText
-end)
+ return self
+end
function TooltipHostClass:DrawTooltip(x, y, width, height, viewPort, ...)
if self.tooltipFunc then
diff --git a/src/Classes/TradeQuery.lua b/src/Classes/TradeQuery.lua
index 9e1308bfb9e..3d9a71fcc61 100644
--- a/src/Classes/TradeQuery.lua
+++ b/src/Classes/TradeQuery.lua
@@ -18,7 +18,10 @@ local s_format = string.format
local baseSlots = { "Weapon 1", "Weapon 2", "Weapon 1 Swap", "Weapon 2 Swap", "Helmet", "Body Armour", "Gloves", "Boots", "Amulet", "Ring 1", "Ring 2", "Ring 3", "Belt", "Flask 1", "Flask 2", "Flask 3", "Flask 4", "Flask 5" }
-local TradeQueryClass = newClass("TradeQuery", function(self, itemsTab)
+---@class TradeQuery
+local TradeQueryClass = newClass("TradeQuery")
+
+function TradeQueryClass:TradeQuery(itemsTab)
self.itemsTab = itemsTab
self.itemsTab.leagueDropList = { }
self.totalPrice = { }
@@ -49,14 +52,15 @@ local TradeQueryClass = newClass("TradeQuery", function(self, itemsTab)
-- last query for each row
self.lastQueries = {}
- self.tradeQueryRequests = new("TradeQueryRequests")
+ self.tradeQueryRequests = new("TradeQueryRequests"):TradeQueryRequests()
main.onFrameFuncs["TradeQueryRequests"] = function()
self.tradeQueryRequests:ProcessQueue()
end
-- set
self.hostName = "https://www.pathofexile.com/"
-end)
+ return self
+end
---Fetch currency short-names from Poe API (used for PoeNinja price pairing)
---@param callback fun()
@@ -224,7 +228,7 @@ end
-- Opens the item pricing popup
function TradeQueryClass:PriceItem()
- self.tradeQueryGenerator = new("TradeQueryGenerator", self)
+ self.tradeQueryGenerator = new("TradeQueryGenerator"):TradeQueryGenerator(self)
main.onFrameFuncs["TradeQueryGenerator"] = function()
self.tradeQueryGenerator:OnFrame()
end
@@ -241,7 +245,7 @@ function TradeQueryClass:PriceItem()
local itemSet = self.itemsTab.itemSets[itemSetId]
t_insert(newItemList, itemSet.title or "Default")
end
- self.controls.setSelect = new("DropDownControl", {"TOPLEFT", nil, "TOPLEFT"}, {pane_margins_horizontal, pane_margins_vertical, 188, row_height}, newItemList, function(index, value)
+ self.controls.setSelect = new("DropDownControl"):DropDownControl({"TOPLEFT", nil, "TOPLEFT"}, {pane_margins_horizontal, pane_margins_vertical, 188, row_height}, newItemList, function(index, value)
self.itemsTab:SetActiveItemSet(self.itemsTab.itemSetOrderList[index])
self.itemsTab:AddUndoState()
end)
@@ -250,20 +254,20 @@ function TradeQueryClass:PriceItem()
return #self.itemsTab.itemSetOrderList > 1
end
- self.controls.poesessidButton = new("ButtonControl", {"TOPLEFT", self.controls.setSelect, "TOPLEFT"}, {0, row_height + row_vertical_padding, 188, row_height}, function() return main.POESESSID ~= "" and "^2Session Mode" or colorCodes.WARNING.."No Session Mode" end, function()
+ self.controls.poesessidButton = new("ButtonControl"):ButtonControl({"TOPLEFT", self.controls.setSelect, "TOPLEFT"}, {0, row_height + row_vertical_padding, 188, row_height}, function() return main.POESESSID ~= "" and "^2Session Mode" or colorCodes.WARNING.."No Session Mode" end, function()
local poesessid_controls = {}
- poesessid_controls.sessionInput = new("EditControl", nil, {0, 18, 350, 18}, main.POESESSID, nil, "%X", 32)
+ poesessid_controls.sessionInput = new("EditControl"):EditControl(nil, {0, 18, 350, 18}, main.POESESSID, nil, "%X", 32)
poesessid_controls.sessionInput:SetProtected(true)
poesessid_controls.sessionInput.placeholder = "Enter your session ID here"
poesessid_controls.sessionInput.tooltipText = "You can get this from your web browser's cookies while logged into the Path of Exile website."
- poesessid_controls.save = new("ButtonControl", {"TOPRIGHT", poesessid_controls.sessionInput, "TOP"}, {-8, 24, 90, row_height}, "Save", function()
+ poesessid_controls.save = new("ButtonControl"):ButtonControl({"TOPRIGHT", poesessid_controls.sessionInput, "TOP"}, {-8, 24, 90, row_height}, "Save", function()
main.POESESSID = poesessid_controls.sessionInput.buf
main:ClosePopup()
main:SaveSettings()
self:UpdateRealms()
end)
poesessid_controls.save.enabled = function() return #poesessid_controls.sessionInput.buf == 32 or poesessid_controls.sessionInput.buf == "" end
- poesessid_controls.cancel = new("ButtonControl", {"TOPLEFT", poesessid_controls.sessionInput, "TOP"}, {8, 24, 90, row_height}, "Cancel", function()
+ poesessid_controls.cancel = new("ButtonControl"):ButtonControl({"TOPLEFT", poesessid_controls.sessionInput, "TOP"}, {8, 24, 90, row_height}, "Cancel", function()
main:ClosePopup()
end)
main:OpenPopup(364, 72, "Change session ID", poesessid_controls)
@@ -293,7 +297,7 @@ on trade site to work on other leagues and realms)]]
"Any (includes offline)"
}
- self.controls.tradeTypeSelection = new("DropDownControl", { "TOPLEFT", self.controls.poesessidButton, "BOTTOMLEFT" },
+ self.controls.tradeTypeSelection = new("DropDownControl"):DropDownControl({ "TOPLEFT", self.controls.poesessidButton, "BOTTOMLEFT" },
{ 0, row_vertical_padding, 188, row_height }, self.tradeTypes, function(index, value)
self.tradeTypeIndex = index
end)
@@ -302,7 +306,7 @@ on trade site to work on other leagues and realms)]]
-- Fetches Box
self.maxFetchPerSearchDefault = 2
- self.controls.fetchCountEdit = new("EditControl", {"TOPRIGHT", nil, "TOPRIGHT"}, {-12, 19, 154, row_height}, "", "Fetch Pages", "%D", 3, function(buf)
+ self.controls.fetchCountEdit = new("EditControl"):EditControl({"TOPRIGHT", nil, "TOPRIGHT"}, {-12, 19, 154, row_height}, "", "Fetch Pages", "%D", 3, function(buf)
self.maxFetchPages = m_min(m_max(tonumber(buf) or self.maxFetchPerSearchDefault, 1), 10)
self.tradeQueryRequests.maxFetchPerSearch = 10 * self.maxFetchPages
self.controls.fetchCountEdit.focusValue = self.maxFetchPages
@@ -326,7 +330,7 @@ on trade site to work on other leagues and realms)]]
self.statSortSelectionList = { }
initStatSortSelectionList(self.statSortSelectionList)
end
- self.controls.StatWeightMultipliersButton = new("ButtonControl", {"TOPRIGHT", self.controls.fetchCountEdit, "BOTTOMRIGHT"}, {0, row_vertical_padding, 150, row_height}, "^7Adjust search weights", function()
+ self.controls.StatWeightMultipliersButton = new("ButtonControl"):ButtonControl({"TOPRIGHT", self.controls.fetchCountEdit, "BOTTOMRIGHT"}, {0, row_vertical_padding, 150, row_height}, "^7Adjust search weights", function()
self.itemsTab.modFlag = true
self:SetStatWeights()
end)
@@ -351,7 +355,7 @@ on trade site to work on other leagues and realms)]]
self.sortModes.Price,
self.sortModes.Weight,
}
- self.controls.itemSortSelection = new("DropDownControl", {"TOPRIGHT", self.controls.StatWeightMultipliersButton, "TOPLEFT"}, {-8, 0, 170, row_height}, self.itemSortSelectionList, function(index, value)
+ self.controls.itemSortSelection = new("DropDownControl"):DropDownControl({"TOPRIGHT", self.controls.StatWeightMultipliersButton, "TOPLEFT"}, {-8, 0, 170, row_height}, self.itemSortSelectionList, function(index, value)
self.pbItemSortSelectionIndex = index
for row_idx, _ in pairs(self.resultTbl) do
self:UpdateControlsWithItems(row_idx)
@@ -366,11 +370,11 @@ Lowest Price - Sorts from lowest to highest price of retrieved items
Highest Weight - Displays the order retrieved from trade]]
-- avoid calling selFunc to avoid updating controls before they are initialised
self.controls.itemSortSelection:SetSel(self.pbItemSortSelectionIndex, true)
- self.controls.itemSortSelectionLabel = new("LabelControl", {"TOPRIGHT", self.controls.itemSortSelection, "TOPLEFT"}, {-4, 0, 56, 16}, "^7Sort By:")
+ self.controls.itemSortSelectionLabel = new("LabelControl"):LabelControl({"TOPRIGHT", self.controls.itemSortSelection, "TOPLEFT"}, {-4, 0, 56, 16}, "^7Sort By:")
-- Realm selection
- self.controls.realmLabel = new("LabelControl", {"LEFT", self.controls.setSelect, "RIGHT"}, {18, 0, 20, row_height - 4}, "^7Realm:")
- self.controls.realm = new("DropDownControl", {"LEFT", self.controls.realmLabel, "RIGHT"}, {6, 0, 150, row_height}, self.realmDropList, function(index, value)
+ self.controls.realmLabel = new("LabelControl"):LabelControl({"LEFT", self.controls.setSelect, "RIGHT"}, {18, 0, 20, row_height - 4}, "^7Realm:")
+ self.controls.realm = new("DropDownControl"):DropDownControl({"LEFT", self.controls.realmLabel, "RIGHT"}, {6, 0, 150, row_height}, self.realmDropList, function(index, value)
self.pbRealmIndex = index
self.pbRealm = self.realmIds[value]
local function setLeagueDropList()
@@ -410,8 +414,8 @@ Highest Weight - Displays the order retrieved from trade]]
end
-- League selection
- self.controls.leagueLabel = new("LabelControl", {"TOPRIGHT", self.controls.realmLabel, "TOPRIGHT"}, {0, row_height + row_vertical_padding, 20, row_height - 4}, "^7League:")
- self.controls.league = new("DropDownControl", {"LEFT", self.controls.leagueLabel, "RIGHT"}, {6, 0, 150, row_height}, self.itemsTab.leagueDropList, function(index, value)
+ self.controls.leagueLabel = new("LabelControl"):LabelControl({"TOPRIGHT", self.controls.realmLabel, "TOPRIGHT"}, {0, row_height + row_vertical_padding, 20, row_height - 4}, "^7League:")
+ self.controls.league = new("DropDownControl"):DropDownControl({"LEFT", self.controls.leagueLabel, "RIGHT"}, {6, 0, 150, row_height}, self.itemsTab.leagueDropList, function(index, value)
self.pbLeagueIndex = index
self.pbLeague = value
self:SetCurrencyConversionButton()
@@ -464,7 +468,7 @@ Highest Weight - Displays the order retrieved from trade]]
t_insert(slotTables, { slotName = self.itemsTab.sockets[nodeId].label, nodeId = nodeId })
end
- self.controls.sectionAnchor = new("LabelControl", {"LEFT", self.controls.tradeTypeSelection, "LEFT"}, {0, row_vertical_padding + row_height, 0, 0}, "")
+ self.controls.sectionAnchor = new("LabelControl"):LabelControl({"LEFT", self.controls.tradeTypeSelection, "LEFT"}, {0, row_vertical_padding + row_height, 0, 0}, "")
top_pane_alignment_ref = {"TOPLEFT", self.controls.sectionAnchor, "TOPLEFT"}
local scrollBarShown = #slotTables > 21 -- clipping starts beyond this
-- dynamically hide rows that are above or below the scrollBar
@@ -489,7 +493,7 @@ Highest Weight - Displays the order retrieved from trade]]
end
end
- self.controls.otherTradesLabel = new("LabelControl", top_pane_alignment_ref, {0, (#slotTables+1)*(row_height + row_vertical_padding), 100, 16}, "^8Other trades:")
+ self.controls.otherTradesLabel = new("LabelControl"):LabelControl(top_pane_alignment_ref, {0, (#slotTables+1)*(row_height + row_vertical_padding), 100, 16}, "^8Other trades:")
self.controls.otherTradesLabel.shown = function()
return hideRowFunc(self, #slotTables+1)
end
@@ -515,7 +519,7 @@ Highest Weight - Displays the order retrieved from trade]]
self.pane_height = (row_height + row_vertical_padding) * effective_row_count + 3 * pane_margins_vertical + row_height / 2
local pane_width = 850 + (scrollBarShown and 25 or 0)
- self.controls.scrollBar = new("ScrollBarControl", {"TOPRIGHT", self.controls["StatWeightMultipliersButton"],"TOPRIGHT"}, {0, 25, 18, 0}, 50, "VERTICAL", false)
+ self.controls.scrollBar = new("ScrollBarControl"):ScrollBarControl({"TOPRIGHT", self.controls["StatWeightMultipliersButton"],"TOPRIGHT"}, {0, 25, 18, 0}, 50, "VERTICAL", false)
self.controls.scrollBar.shown = function() return scrollBarShown end
local function wipeItemControls()
@@ -525,18 +529,18 @@ Highest Weight - Displays the order retrieved from trade]]
end
end
end
- self.controls.fullPrice = new("LabelControl", {"BOTTOM", nil, "BOTTOM"}, {0, -row_height - pane_margins_vertical - row_vertical_padding, pane_width - 2 * pane_margins_horizontal, row_height}, "")
- self.controls.close = new("ButtonControl", {"BOTTOM", nil, "BOTTOM"}, {0, -pane_margins_vertical, 90, row_height}, "Done", function()
+ self.controls.fullPrice = new("LabelControl"):LabelControl({"BOTTOM", nil, "BOTTOM"}, {0, -row_height - pane_margins_vertical - row_vertical_padding, pane_width - 2 * pane_margins_horizontal, row_height}, "")
+ self.controls.close = new("ButtonControl"):ButtonControl({"BOTTOM", nil, "BOTTOM"}, {0, -pane_margins_vertical, 90, row_height}, "Done", function()
main:ClosePopup()
-- there's a case where if you have a socket(s) allocated, open TradeQuery, close it, dealloc, then open TradeQuery again
-- the deallocated socket controls were still showing, so this will remove all dynamically created controls from items
wipeItemControls()
end)
- self.controls.updateCurrencyConversion = new("ButtonControl", {"BOTTOMLEFT", nil, "BOTTOMLEFT"}, {pane_margins_horizontal, -pane_margins_vertical, 240, row_height}, "Get Currency Conversion Rates", function()
+ self.controls.updateCurrencyConversion = new("ButtonControl"):ButtonControl({"BOTTOMLEFT", nil, "BOTTOMLEFT"}, {pane_margins_horizontal, -pane_margins_vertical, 240, row_height}, "Get Currency Conversion Rates", function()
self:PullPoENinjaCurrencyConversion(self.pbLeague)
end)
- self.controls.pbNotice = new("LabelControl", {"BOTTOMRIGHT", nil, "BOTTOMRIGHT"}, {-row_height - pane_margins_vertical - row_vertical_padding, -pane_margins_vertical, 300, row_height}, "")
+ self.controls.pbNotice = new("LabelControl"):LabelControl( {"BOTTOMRIGHT", nil, "BOTTOMRIGHT"}, {-row_height - pane_margins_vertical - row_vertical_padding, -pane_margins_vertical, 300, row_height}, "")
-- used in PopupDialog:Draw()
local function scrollBarFunc()
@@ -555,7 +559,7 @@ function TradeQueryClass:SetStatWeights(previousSelectionList)
local sliderController = { index = 1 }
local popupHeight = 285
- controls.ListControl = new("TradeStatWeightMultiplierListControl", {"TOPLEFT", nil, "TOPRIGHT"}, {-410, 45, 400, 200}, statList, sliderController)
+ controls.ListControl = new("TradeStatWeightMultiplierListControl"):TradeStatWeightMultiplierListControl({"TOPLEFT", nil, "TOPRIGHT"}, {-410, 45, 400, 200}, statList, sliderController)
for id, stat in pairs(data.powerStatList) do
if not stat.ignoreForItems and stat.label ~= "Name" then
@@ -571,8 +575,8 @@ function TradeQueryClass:SetStatWeights(previousSelectionList)
end
end
- controls.SliderLabel = new("LabelControl", { "TOPLEFT", nil, "TOPRIGHT" }, {-410, 20, 0, 16}, "^7"..statList[1].stat.label..":")
- controls.Slider = new("SliderControl", { "TOPLEFT", controls.SliderLabel, "TOPRIGHT" }, {20, 0, 150, 16}, function(value)
+ controls.SliderLabel = new("LabelControl"):LabelControl({ "TOPLEFT", nil, "TOPRIGHT" }, {-410, 20, 0, 16}, "^7"..statList[1].stat.label..":")
+ controls.Slider = new("SliderControl"):SliderControl({ "TOPLEFT", controls.SliderLabel, "TOPRIGHT" }, {20, 0, 150, 16}, function(value)
if value == 0 then
controls.SliderValue.label = "^7Disabled"
statList[sliderController.index].stat.weightMult = 0
@@ -583,7 +587,7 @@ function TradeQueryClass:SetStatWeights(previousSelectionList)
statList[sliderController.index].label = s_format("%.2f : ", 0.01 + value * 0.99)..statList[sliderController.index].stat.label
end
end)
- controls.SliderValue = new("LabelControl", { "TOPLEFT", controls.Slider, "TOPRIGHT" }, {20, 0, 0, 16}, "^7Disabled")
+ controls.SliderValue = new("LabelControl"):LabelControl({ "TOPLEFT", controls.Slider, "TOPRIGHT" }, {20, 0, 0, 16}, "^7Disabled")
controls.Slider.tooltip.realDraw = controls.Slider.tooltip.Draw
controls.Slider.tooltip.Draw = function(self, x, y, width, height, viewPort)
local sliderOffsetX = round(184 * (1 - controls.Slider.val))
@@ -609,7 +613,7 @@ function TradeQueryClass:SetStatWeights(previousSelectionList)
end
end
- controls.finalise = new("ButtonControl", { "BOTTOM", nil, "BOTTOM" }, {-90, -10, 80, 20}, "Save", function()
+ controls.finalise = new("ButtonControl"):ButtonControl({ "BOTTOM", nil, "BOTTOM" }, {-90, -10, 80, 20}, "Save", function()
main:ClosePopup()
-- used in ItemsTab to save to xml under TradeSearchWeights node
@@ -627,13 +631,13 @@ function TradeQueryClass:SetStatWeights(previousSelectionList)
self:UpdateControlsWithItems(row_idx)
end
end)
- controls.cancel = new("ButtonControl", { "BOTTOM", nil, "BOTTOM" }, { 0, -10, 80, 20 }, "Cancel", function()
+ controls.cancel = new("ButtonControl"):ButtonControl({ "BOTTOM", nil, "BOTTOM" }, { 0, -10, 80, 20 }, "Cancel", function()
if previousSelectionList and #previousSelectionList > 0 then
self.statSortSelectionList = copyTable(previousSelectionList, true)
end
main:ClosePopup()
end)
- controls.reset = new("ButtonControl", { "BOTTOM", nil, "BOTTOM" }, { 90, -10, 80, 20 }, "Reset", function()
+ controls.reset = new("ButtonControl"):ButtonControl({ "BOTTOM", nil, "BOTTOM" }, { 90, -10, 80, 20 }, "Reset", function()
local previousSelection = { }
if isSameAsDefaultList(self.statSortSelectionList) then
previousSelection = copyTable(previousSelectionList, true)
@@ -761,7 +765,7 @@ function TradeQueryClass:GetResultEvaluation(row_idx, result_index, calcFunc, ba
}
table.sort(result.evaluation, function(a, b) return a.weight > b.weight end)
else
- local item = new("Item", result.item_string)
+ local item = new("Item"):Item(result.item_string)
local output = self:ReduceOutput(calcFunc({ repSlotName = slotName, repItem = item }))
local weight = self.tradeQueryGenerator.WeightedRatioOutputs(baseOutput, output, self.statSortSelectionList)
@@ -781,7 +785,7 @@ function TradeQueryClass:UpdateDropdownList(row_idx)
local pb_index = self.sortedResultTbl[row_idx][result_index].index
local result = self.resultTbl[row_idx][pb_index]
local price = string.format(" %s(%d %s)", colorCodes["CURRENCY"], result.amount, result.currency)
- local item = new("Item", result.item_string)
+ local item = new("Item"):Item(result.item_string)
table.insert(dropdownLabels, colorCodes[item.rarity] .. item.name .. price)
end
self.controls["resultDropdown".. row_idx].selIndex = 1
@@ -925,7 +929,7 @@ function TradeQueryClass:findValidSlotForWatchersEye()
local tmpWE=nil
for _,v in ipairs(data.uniques.generated) do
if v:find("Watcher's Eye") then
- tmpWE= new("Item",v)
+ tmpWE= new("Item"):Item(v)
break
end
end
@@ -946,8 +950,8 @@ function TradeQueryClass:PriceItemRowDisplay(row_idx, top_pane_alignment_ref, ro
slotTbl.slotName == "Watcher's Eye" and self:findValidSlotForWatchersEye() or
slotTbl.fullName and self.itemsTab.slots[slotTbl.fullName]) -- fullName for Abyssal Sockets
local nameColor = slotTbl.unique and colorCodes.UNIQUE or "^7"
- controls["name"..row_idx] = new("LabelControl", top_pane_alignment_ref, {0, row_idx*(row_height + row_vertical_padding), 100, row_height - 4}, nameColor..slotTbl.slotName)
- controls["bestButton"..row_idx] = new("ButtonControl", { "LEFT", controls["name"..row_idx], "LEFT"}, {100 + 8, 0, 80, row_height}, "Find best", function()
+ controls["name"..row_idx] = new("LabelControl"):LabelControl(top_pane_alignment_ref, {0, row_idx*(row_height + row_vertical_padding), 100, row_height - 4}, nameColor..slotTbl.slotName)
+ controls["bestButton"..row_idx] = new("ButtonControl"):ButtonControl({ "LEFT", controls["name"..row_idx], "LEFT"}, {100 + 8, 0, 80, row_height}, "Find best", function()
self.tradeQueryGenerator:RequestQuery(activeSlot, { slotTbl = slotTbl, controls = controls, row_idx = row_idx }, self.statSortSelectionList, function(context, query, errMsg)
if errMsg then
self:SetNotice(context.controls.pbNotice, colorCodes.NEGATIVE .. errMsg)
@@ -978,13 +982,13 @@ function TradeQueryClass:PriceItemRowDisplay(row_idx, top_pane_alignment_ref, ro
if self.tradeQueryGenerator.lastCopyEldritch or
self.tradeQueryGenerator.lastCopyEnchantMode == "Copy Current" then
for i, _ in ipairs(items) do
- local item = new("Item", items[i].item_string)
+ local item = new("Item"):Item(items[i].item_string)
self.itemsTab:CopyAnointsAndEldritchImplicits(item, true, true, context.slotTbl.slotName)
items[i].item_string = item:BuildRaw()
end
elseif self.tradeQueryGenerator.lastCopyEnchantMode == "Remove" then
for i, _ in ipairs(items) do
- local item = new("Item", items[i].item_string)
+ local item = new("Item"):Item(items[i].item_string)
item.enchantModLines = {}
items[i].item_string = item:BuildRaw()
end
@@ -1008,7 +1012,7 @@ function TradeQueryClass:PriceItemRowDisplay(row_idx, top_pane_alignment_ref, ro
controls["bestButton"..row_idx].enabled = function() return self.pbLeague end
controls["bestButton"..row_idx].tooltipText = "Creates a weighted search to find the highest Stat Value items for this slot."
local pbURL
- controls["uri"..row_idx] = new("EditControl", { "TOPLEFT", controls["bestButton"..row_idx], "TOPRIGHT"}, {8, 0, 514, row_height}, nil, nil, "^%C\t\n", nil, function(buf)
+ controls["uri"..row_idx] = new("EditControl"):EditControl({ "TOPLEFT", controls["bestButton"..row_idx], "TOPRIGHT"}, {8, 0, 514, row_height}, nil, nil, "^%C\t\n", nil, function(buf)
local subpath = buf:match(self.hostName .. "trade/search/(.+)$") or ""
local paths = {}
for path in subpath:gmatch("[^/]+") do
@@ -1035,7 +1039,7 @@ function TradeQueryClass:PriceItemRowDisplay(row_idx, top_pane_alignment_ref, ro
tooltip:AddLine(16, "Control + click to open in web-browser")
end
end
- controls["priceButton"..row_idx] = new("ButtonControl", { "TOPLEFT", controls["uri"..row_idx], "TOPRIGHT"}, {8, 0, 100, row_height}, "Price Item",
+ controls["priceButton"..row_idx] = new("ButtonControl"):ButtonControl({ "TOPLEFT", controls["uri"..row_idx], "TOPRIGHT"}, {8, 0, 100, row_height}, "Price Item",
function()
controls["priceButton"..row_idx].label = "Searching..."
self.tradeQueryRequests:SearchWithURL(controls["uri"..row_idx].buf, function(items, errMsg, query)
@@ -1067,7 +1071,7 @@ function TradeQueryClass:PriceItemRowDisplay(row_idx, top_pane_alignment_ref, ro
local clampItemIndex = function(index)
return m_min(m_max(index or 1, 1), self.sortedResultTbl[row_idx] and #self.sortedResultTbl[row_idx] or 1)
end
- controls["changeButton"..row_idx] = new("ButtonControl", { "LEFT", controls["name"..row_idx], "LEFT"}, {100 + 8, 0, 80, row_height}, "<< Search", function()
+ controls["changeButton"..row_idx] = new("ButtonControl"):ButtonControl({ "LEFT", controls["name"..row_idx], "LEFT"}, {100 + 8, 0, 80, row_height}, "<< Search", function()
self.itemIndexTbl[row_idx] = nil
self.sortedResultTbl[row_idx] = nil
self.resultTbl[row_idx] = nil
@@ -1075,7 +1079,7 @@ function TradeQueryClass:PriceItemRowDisplay(row_idx, top_pane_alignment_ref, ro
self.controls.fullPrice.label = "Total Price: " .. self:GetTotalPriceString()
end)
controls["changeButton"..row_idx].shown = function() return self.resultTbl[row_idx] end
- controls["resultDropdown"..row_idx] = new("DropDownControl", { "TOPLEFT", controls["changeButton"..row_idx], "TOPRIGHT"}, {8, 0, 325, row_height}, {}, function(index)
+ controls["resultDropdown"..row_idx] = new("DropDownControl"):DropDownControl({ "TOPLEFT", controls["changeButton"..row_idx], "TOPRIGHT"}, {8, 0, 325, row_height}, {}, function(index)
self.itemIndexTbl[row_idx] = self.sortedResultTbl[row_idx][index].index
self:SetFetchResultReturn(row_idx, self.itemIndexTbl[row_idx])
end)
@@ -1104,7 +1108,7 @@ function TradeQueryClass:PriceItemRowDisplay(row_idx, top_pane_alignment_ref, ro
if not result then
return
end
- local item = new("Item", result.item_string)
+ local item = new("Item"):Item(result.item_string)
tooltip:Clear()
if slotTbl.slotName == "Watcher's Eye" then
-- for watcher's eye we don't have a target slot. this will also
@@ -1117,7 +1121,7 @@ function TradeQueryClass:PriceItemRowDisplay(row_idx, top_pane_alignment_ref, ro
tooltip:AddSeparator(10)
tooltip:AddLine(16, string.format("^7Price: %s %s", result.amount, result.currency))
end
- controls["importButton"..row_idx] = new("ButtonControl", { "TOPLEFT", controls["resultDropdown"..row_idx], "TOPRIGHT"}, {8, 0, 100, row_height}, "Import Item", function()
+ controls["importButton"..row_idx] = new("ButtonControl"):ButtonControl({ "TOPLEFT", controls["resultDropdown"..row_idx], "TOPRIGHT"}, {8, 0, 100, row_height}, "Import Item", function()
self.itemsTab:CreateDisplayItemFromRaw(self.resultTbl[row_idx][self.itemIndexTbl[row_idx]].item_string)
local item = self.itemsTab.displayItem
-- pass "true" to not auto equip it as we will have our own logic
@@ -1139,7 +1143,7 @@ function TradeQueryClass:PriceItemRowDisplay(row_idx, top_pane_alignment_ref, ro
-- TODO: item parsing bug caught here.
-- item.baseName is nil and throws error in the following AddItemTooltip func
-- if the item is unidentified
- local item = new("Item", item_string)
+ local item = new("Item"):Item(item_string)
if slotTbl.slotName == "Watcher's Eye" then
-- we have no comparison slot for the watcher's eye
self.itemsTab:AddItemTooltip(tooltip, item, nil, true)
@@ -1153,7 +1157,7 @@ function TradeQueryClass:PriceItemRowDisplay(row_idx, top_pane_alignment_ref, ro
return self.itemIndexTbl[row_idx] and self.resultTbl[row_idx][self.itemIndexTbl[row_idx]].item_string ~= nil
end
-- Whisper so we can copy to clipboard
- controls["whisperButton" .. row_idx] = new("ButtonControl",
+ controls["whisperButton" .. row_idx] = new("ButtonControl"):ButtonControl(
{ "TOPLEFT", controls["importButton" .. row_idx], "TOPRIGHT" }, { 8, 0, 170, row_height }, function()
local itemResult = self.itemIndexTbl[row_idx] and self.resultTbl[row_idx][self.itemIndexTbl[row_idx]]
diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua
index eeb2fdeaab2..44c28febc80 100644
--- a/src/Classes/TradeQueryGenerator.lua
+++ b/src/Classes/TradeQueryGenerator.lua
@@ -9,7 +9,7 @@ local curl = require("lcurl.safe")
local m_max = math.max
local s_format = string.format
local t_insert = table.insert
-local tradeHelpers = LoadModule("Classes/CompareTradeHelpers")
+local tradeHelpers = require("Classes.CompareTradeHelpers")
-- TODO generate these from data files
local itemCategoryTags = {
@@ -106,7 +106,10 @@ local function logToFile(...)
ConPrintf(...)
end
-local TradeQueryGeneratorClass = newClass("TradeQueryGenerator", function(self, queryTab)
+---@class TradeQueryGenerator
+local TradeQueryGeneratorClass = newClass("TradeQueryGenerator")
+
+function TradeQueryGeneratorClass:TradeQueryGenerator(queryTab)
self:InitMods()
self.queryTab = queryTab
self.itemsTab = queryTab.itemsTab
@@ -114,7 +117,8 @@ local TradeQueryGeneratorClass = newClass("TradeQueryGenerator", function(self,
self.lastMaxPrice = nil
self.lastMaxPriceTypeIndex = nil
self.lastMaxLevel = nil
-end)
+ return self
+end
local function fetchStats()
local tradeStats = ""
@@ -390,12 +394,11 @@ function TradeQueryGeneratorClass:GenerateModData(mods, tradeQueryStatsParsed, i
end
function TradeQueryGeneratorClass:InitMods()
- local queryModFilePath = "Data/QueryMods.lua"
- local file = io.open(queryModFilePath,"r")
+ local file = io.open("Data/QueryMods.lua", "r")
if file then
file:close()
- self.modData = LoadModule(queryModFilePath)
+ self.modData = require("Data.QueryMods")
return
end
@@ -786,7 +789,7 @@ function TradeQueryGeneratorClass:StartQuery(slot, options)
-- Create a temp item for the slot with no mods
local itemRawStr = "Rarity: RARE\nStat Tester\n" .. testItemType
- local testItem = new("Item", itemRawStr)
+ local testItem = new("Item"):Item(itemRawStr)
-- Apply any requests influences
if options.influence1 > 1 then
@@ -823,7 +826,7 @@ function TradeQueryGeneratorClass:StartQuery(slot, options)
-- Open progress tracking blocker popup
local controls = { }
- controls.progressText = new("LabelControl", {"TOP",nil,"TOP"}, {0, 30, 0, 16}, string.format("Calculating Mod Weights..."))
+ controls.progressText = new("LabelControl"):LabelControl({"TOP",nil,"TOP"}, {0, 30, 0, 16}, string.format("Calculating Mod Weights..."))
self.calcContext.popup = main:OpenPopup(280, 65, "Please Wait", controls)
end
@@ -1133,12 +1136,12 @@ function TradeQueryGeneratorClass:RequestQuery(slot, context, statWeights, callb
local isWeaponSlot = slot and (slot.slotName == "Weapon 1" or slot.slotName == "Weapon 2")
local isEldritchModSlot = slot and eldritchModSlots[slot.slotName] == true
- controls.includeCorrupted = new("CheckBoxControl", {"TOP",nil,"TOP"}, {-40, 30, 18}, "Corrupted Mods:", function(state) end, "Includes corruption implicit modifiers in the weighted sum.\nNote that there is a maximum search filter count which means this might cause other weights to not be included.")
+ controls.includeCorrupted = new("CheckBoxControl"):CheckBoxControl({"TOP",nil,"TOP"}, {-40, 30, 18}, "Corrupted Mods:", function(state) end, "Includes corruption implicit modifiers in the weighted sum.\nNote that there is a maximum search filter count which means this might cause other weights to not be included.")
controls.includeCorrupted.state = not context.slotTbl.alreadyCorrupted and (self.lastIncludeCorrupted == nil or self.lastIncludeCorrupted == true)
controls.includeCorrupted.enabled = not context.slotTbl.alreadyCorrupted
-- removing checkbox until synthesis mods are supported
- --controls.includeSynthesis = new("CheckBoxControl", {"TOPRIGHT",controls.includeEldritch,"BOTTOMRIGHT"}, {0, 5, 18}, "Synthesis Mods:", function(state) end)
+ --controls.includeSynthesis = new("CheckBoxControl"):CheckBoxControl({"TOPRIGHT",controls.includeEldritch,"BOTTOMRIGHT"}, {0, 5, 18}, "Synthesis Mods:", function(state) end)
--controls.includeSynthesis.state = (self.lastIncludeSynthesis == nil or self.lastIncludeSynthesis == true)
local lastItemAnchor = controls.includeCorrupted
@@ -1155,19 +1158,19 @@ function TradeQueryGeneratorClass:RequestQuery(slot, context, statWeights, callb
-- these unique items cannot be mirrored
if not context.slotTbl.unique then
- controls.includeMirrored = new("CheckBoxControl", {"TOPRIGHT",lastItemAnchor,"BOTTOMRIGHT"}, {0, 5, 18}, "Mirrored Items:", function(state) end)
+ controls.includeMirrored = new("CheckBoxControl"):CheckBoxControl({"TOPRIGHT",lastItemAnchor,"BOTTOMRIGHT"}, {0, 5, 18}, "Mirrored Items:", function(state) end)
controls.includeMirrored.state = (self.lastIncludeMirrored == nil or self.lastIncludeMirrored == true)
updateLastAnchor(controls.includeMirrored)
end
if not isJewelSlot and not isAbyssalJewelSlot and includeScourge then
- controls.includeScourge = new("CheckBoxControl", {"TOPRIGHT",lastItemAnchor,"BOTTOMRIGHT"}, {0, 5, 18}, "Scourge Mods:", function(state) end)
+ controls.includeScourge = new("CheckBoxControl"):CheckBoxControl({"TOPRIGHT",lastItemAnchor,"BOTTOMRIGHT"}, {0, 5, 18}, "Scourge Mods:", function(state) end)
controls.includeScourge.state = (self.lastIncludeScourge == nil or self.lastIncludeScourge == true)
updateLastAnchor(controls.includeScourge)
end
if isAmuletSlot then
- controls.includeTalisman = new("CheckBoxControl", {"TOPRIGHT",lastItemAnchor,"BOTTOMRIGHT"}, {0, 5, 18}, "Talisman Mods:", function(state) end)
+ controls.includeTalisman = new("CheckBoxControl"):CheckBoxControl({"TOPRIGHT",lastItemAnchor,"BOTTOMRIGHT"}, {0, 5, 18}, "Talisman Mods:", function(state) end)
controls.includeTalisman.state = (self.lastIncludeTalisman == nil or self.lastIncludeTalisman == true)
updateLastAnchor(controls.includeTalisman)
end
@@ -1180,16 +1183,16 @@ All: weights are generated for all eldritch implicit modifiers.
Omit while: weights are generated, but conditional "While unique/atlas boss" modifiers are skipped.
It is often not recommended to use "All" as this includes a lot of high power modifiers,
which will cause other useful modifiers to be left out in the weighted sum.]]
- controls.includeEldritch = new("DropDownControl", { "TOPLEFT", lastItemAnchor, "BOTTOMLEFT" }, { 0, 5, 92, 18 },
+ controls.includeEldritch = new("DropDownControl"):DropDownControl({ "TOPLEFT", lastItemAnchor, "BOTTOMLEFT" }, { 0, 5, 92, 18 },
{ "None", "All", "Omit While" }, function(_state) end, eldritchTooltip)
- controls.includeEldritchLabel = new("LabelControl", { "RIGHT", controls.includeEldritch, "LEFT" },
+ controls.includeEldritchLabel = new("LabelControl"):LabelControl({ "RIGHT", controls.includeEldritch, "LEFT" },
{ -4, 0, 80, 16 }, "Eldritch Mods:")
controls.includeEldritch:SetSel(self.lastIncludeEldritch or 1)
updateLastAnchor(controls.includeEldritch)
local eldritchTooltip = "Replaces the eldritch modifiers on search results with the eldritch modifiers from your currently equipped item."
local labelText = "Copy Current Implicits:"
- controls.copyEldritch = new("CheckBoxControl",
+ controls.copyEldritch = new("CheckBoxControl"):CheckBoxControl(
{ "TOPLEFT", lastItemAnchor, "BOTTOMLEFT" },
{ 0, 5, 18, 18 },
labelText, function(state) end, eldritchTooltip, false)
@@ -1202,20 +1205,20 @@ which will cause other useful modifiers to be left out in the weighted sum.]]
Copy Current: current %s will be applied to the search result items.
Remove: %s will be removed from the search results.]], term, term, term)
local copyEnchantList = { "Keep", "Copy Current", "Remove" }
- controls.copyEnchantMode = new("DropDownControl",
+ controls.copyEnchantMode = new("DropDownControl"):DropDownControl(
{ "TOPLEFT", lastItemAnchor, "BOTTOMLEFT" },
{ 0, 5, 120, 18 },
copyEnchantList, function(state) end, enchantTooltip)
controls.copyEnchantMode.state = self.lastCopyEnchantMode or false
local labelText = isWeaponSlot and "^7Enchant Behaviour:" or "^7Anoint Behaviour:"
- controls.copyEnchantModeLabel = new("LabelControl", { "RIGHT", controls.copyEnchantMode, "LEFT" },
+ controls.copyEnchantModeLabel = new("LabelControl"):LabelControl({ "RIGHT", controls.copyEnchantMode, "LEFT" },
{ -4, 0, 80, 16 }, labelText)
updateLastAnchor(controls.copyEnchantMode)
end
if isJewelSlot and context.slotTbl.slotName ~= "Watcher's Eye" then
- controls.jewelType = new("DropDownControl", {"TOPLEFT",lastItemAnchor,"BOTTOMLEFT"}, {0, 5, 100, 18}, { "Any", "Base", "Abyss" }, function(index, value) end)
+ controls.jewelType = new("DropDownControl"):DropDownControl({"TOPLEFT",lastItemAnchor,"BOTTOMLEFT"}, {0, 5, 100, 18}, { "Any", "Base", "Abyss" }, function(index, value) end)
controls.jewelType.selIndex = self.lastJewelType or 1
- controls.jewelTypeLabel = new("LabelControl", {"RIGHT",controls.jewelType,"LEFT"}, {-5, 0, 0, 16}, "Jewel Type:")
+ controls.jewelTypeLabel = new("LabelControl"):LabelControl({"RIGHT",controls.jewelType,"LEFT"}, {-5, 0, 0, 16}, "Jewel Type:")
updateLastAnchor(controls.jewelType)
elseif slot and not isAbyssalJewelSlot and context.slotTbl.slotName ~= "Watcher's Eye" then
local selFunc = function()
@@ -1226,22 +1229,22 @@ Remove: %s will be removed from the search results.]], term, term, term)
controls.copyEldritch.enabled = not hasInfluence1 and not hasInfluence2
end
end
- controls.influence1 = new("DropDownControl", { "TOPLEFT", lastItemAnchor, "BOTTOMLEFT" }, { 0, 5, 100, 18 },
+ controls.influence1 = new("DropDownControl"):DropDownControl({ "TOPLEFT", lastItemAnchor, "BOTTOMLEFT" }, { 0, 5, 100, 18 },
influenceDropdownNames, selFunc)
controls.influence1:SetSel(self.lastInfluence1 or 1)
- controls.influence1Label = new("LabelControl", {"RIGHT",controls.influence1,"LEFT"}, {-5, 0, 0, 16}, "^7Influence 1:")
+ controls.influence1Label = new("LabelControl"):LabelControl({"RIGHT",controls.influence1,"LEFT"}, {-5, 0, 0, 16}, "^7Influence 1:")
- controls.influence2 = new("DropDownControl", { "TOPLEFT", controls.influence1, "BOTTOMLEFT" }, { 0, 5, 100, 18 },
+ controls.influence2 = new("DropDownControl"):DropDownControl({ "TOPLEFT", controls.influence1, "BOTTOMLEFT" }, { 0, 5, 100, 18 },
influenceDropdownNames, selFunc)
controls.influence2:SetSel(self.lastInfluence2 or 1)
selFunc()
- controls.influence2Label = new("LabelControl", { "RIGHT", controls.influence2, "LEFT" }, { -5, 0, 0, 16 },
+ controls.influence2Label = new("LabelControl"):LabelControl({ "RIGHT", controls.influence2, "LEFT" }, { -5, 0, 0, 16 },
"^7Influence 2:")
updateLastAnchor(controls.influence2, 46)
elseif isAbyssalJewelSlot then
- controls.jewelType = new("DropDownControl", {"TOPLEFT",lastItemAnchor,"BOTTOMLEFT"}, {0, 5, 100, 18}, { "Abyss" }, nil)
+ controls.jewelType = new("DropDownControl"):DropDownControl({"TOPLEFT",lastItemAnchor,"BOTTOMLEFT"}, {0, 5, 100, 18}, { "Abyss" }, nil)
controls.jewelType.selIndex = 1
- controls.jewelTypeLabel = new("LabelControl", {"RIGHT",controls.jewelType,"LEFT"}, {-5, 0, 0, 16}, "Jewel Type:")
+ controls.jewelTypeLabel = new("LabelControl"):LabelControl({"RIGHT",controls.jewelType,"LEFT"}, {-5, 0, 0, 16}, "Jewel Type:")
updateLastAnchor(controls.jewelType)
end
-- Add max price limit selection dropbox
@@ -1249,38 +1252,38 @@ Remove: %s will be removed from the search results.]], term, term, term)
for _, currency in ipairs(currencyTable) do
t_insert(currencyDropdownNames, currency.name)
end
- controls.maxPrice = new("EditControl", {"TOPLEFT",lastItemAnchor,"BOTTOMLEFT"}, {0, 5, 70, 18}, nil, nil, "%D")
+ controls.maxPrice = new("EditControl"):EditControl({"TOPLEFT",lastItemAnchor,"BOTTOMLEFT"}, {0, 5, 70, 18}, nil, nil, "%D")
controls.maxPrice.buf = self.lastMaxPrice and tostring(self.lastMaxPrice) or ""
- controls.maxPriceType = new("DropDownControl", {"LEFT",controls.maxPrice,"RIGHT"}, {5, 0, 150, 18}, currencyDropdownNames, nil)
+ controls.maxPriceType = new("DropDownControl"):DropDownControl({"LEFT",controls.maxPrice,"RIGHT"}, {5, 0, 150, 18}, currencyDropdownNames, nil)
controls.maxPriceType.selIndex = self.lastMaxPriceTypeIndex or 1
- controls.maxPriceLabel = new("LabelControl", {"RIGHT",controls.maxPrice,"LEFT"}, {-5, 0, 0, 16}, "^7Max Price:")
+ controls.maxPriceLabel = new("LabelControl"):LabelControl({"RIGHT",controls.maxPrice,"LEFT"}, {-5, 0, 0, 16}, "^7Max Price:")
updateLastAnchor(controls.maxPrice)
- controls.maxLevel = new("EditControl", {"TOPLEFT",lastItemAnchor,"BOTTOMLEFT"}, {0, 5, 100, 18}, nil, nil, "%D")
+ controls.maxLevel = new("EditControl"):EditControl({"TOPLEFT",lastItemAnchor,"BOTTOMLEFT"}, {0, 5, 100, 18}, nil, nil, "%D")
controls.maxLevel.buf = self.lastMaxLevel and tostring(self.lastMaxLevel) or ""
- controls.maxLevelLabel = new("LabelControl", {"RIGHT",controls.maxLevel,"LEFT"}, {-5, 0, 0, 16}, "Max Level:")
+ controls.maxLevelLabel = new("LabelControl"):LabelControl({"RIGHT",controls.maxLevel,"LEFT"}, {-5, 0, 0, 16}, "Max Level:")
updateLastAnchor(controls.maxLevel)
-- basic filtering by slot for sockets and links, Megalomaniac does not have slot and Sockets use "Jewel nodeId"
if slot and not isJewelSlot and not isAbyssalJewelSlot and not slot.slotName:find("Flask") then
- controls.sockets = new("EditControl", {"TOPLEFT",lastItemAnchor,"BOTTOMLEFT"}, {0, 5, 70, 18}, nil, nil, "%D")
+ controls.sockets = new("EditControl"):EditControl({"TOPLEFT",lastItemAnchor,"BOTTOMLEFT"}, {0, 5, 70, 18}, nil, nil, "%D")
controls.sockets.buf = self.lastSockets and tostring(self.lastSockets) or ""
- controls.socketsLabel = new("LabelControl", {"RIGHT",controls.sockets,"LEFT"}, {-5, 0, 0, 16}, "^7# of Empty Sockets:")
+ controls.socketsLabel = new("LabelControl"):LabelControl({"RIGHT",controls.sockets,"LEFT"}, {-5, 0, 0, 16}, "^7# of Empty Sockets:")
updateLastAnchor(controls.sockets)
if not slot.slotName:find("Belt") and not slot.slotName:find("Ring") and not slot.slotName:find("Amulet") then
- controls.links = new("EditControl", {"TOPLEFT",lastItemAnchor,"BOTTOMLEFT"}, {0, 5, 70, 18}, nil, nil, "%D")
- controls.linksLabel = new("LabelControl", {"RIGHT",controls.links,"LEFT"}, {-5, 0, 0, 16}, "^7# of Links:")
+ controls.links = new("EditControl"):EditControl({"TOPLEFT",lastItemAnchor,"BOTTOMLEFT"}, {0, 5, 70, 18}, nil, nil, "%D")
+ controls.linksLabel = new("LabelControl"):LabelControl({"RIGHT",controls.links,"LEFT"}, {-5, 0, 0, 16}, "^7# of Links:")
updateLastAnchor(controls.links)
end
end
for i, stat in ipairs(statWeights) do
- controls["sortStatType"..tostring(i)] = new("LabelControl", {"TOPLEFT",lastItemAnchor,"BOTTOMLEFT"}, {0, i == 1 and 5 or 3, 70, 16}, i < (#statWeights < 6 and 10 or 5) and s_format("^7%.2f: %s", stat.weightMult, stat.label) or ("+ "..tostring(#statWeights - 4).." Additional Stats"))
+ controls["sortStatType"..tostring(i)] = new("LabelControl"):LabelControl({"TOPLEFT",lastItemAnchor,"BOTTOMLEFT"}, {0, i == 1 and 5 or 3, 70, 16}, i < (#statWeights < 6 and 10 or 5) and s_format("^7%.2f: %s", stat.weightMult, stat.label) or ("+ "..tostring(#statWeights - 4).." Additional Stats"))
lastItemAnchor = controls["sortStatType"..tostring(i)]
popupHeight = popupHeight + 19
if i == 1 then
- controls.sortStatLabel = new("LabelControl", {"RIGHT",lastItemAnchor,"LEFT"}, {-5, 0, 0, 16}, "^7Stat to Sort By:")
+ controls.sortStatLabel = new("LabelControl"):LabelControl({"RIGHT",lastItemAnchor,"LEFT"}, {-5, 0, 0, 16}, "^7Stat to Sort By:")
elseif i == 5 then
-- tooltips do not actually work for labels
lastItemAnchor.tooltipFunc = function(tooltip)
@@ -1299,13 +1302,13 @@ Remove: %s will be removed from the search results.]], term, term, term)
popupHeight = popupHeight + 4
if context.slotTbl.slotName == "Watcher's Eye" then
- controls.includeAllWEMods = new("CheckBoxControl", {"TOPRIGHT",lastItemAnchor,"BOTTOMRIGHT"}, {0, 5, 18}, "Include all Watcher's Eye mods:", function(state) end)
+ controls.includeAllWEMods = new("CheckBoxControl"):CheckBoxControl({"TOPRIGHT",lastItemAnchor,"BOTTOMRIGHT"}, {0, 5, 18}, "Include all Watcher's Eye mods:", function(state) end)
controls.includeAllWEMods.tooltipText = "Include mods that could not have a weight calculated for them at weight 0."
lastItemAnchor = controls.includeAllWEMods
popupHeight = popupHeight + 23
end
- controls.generateQuery = new("ButtonControl", { "BOTTOM", nil, "BOTTOM" }, {-45, -10, 80, 20}, "Execute", function()
+ controls.generateQuery = new("ButtonControl"):ButtonControl({ "BOTTOM", nil, "BOTTOM" }, {-45, -10, 80, 20}, "Execute", function()
main:ClosePopup()
self.tradeTypeIndex = context.controls.tradeTypeSelection.selIndex
@@ -1370,7 +1373,7 @@ Remove: %s will be removed from the search results.]], term, term, term)
self:StartQuery(slot, options)
end)
- controls.cancel = new("ButtonControl", { "BOTTOM", nil, "BOTTOM" }, {45, -10, 80, 20}, "Cancel", function()
+ controls.cancel = new("ButtonControl"):ButtonControl({ "BOTTOM", nil, "BOTTOM" }, {45, -10, 80, 20}, "Cancel", function()
main:ClosePopup()
end)
main:OpenPopup(400, popupHeight, "Query Options", controls)
diff --git a/src/Classes/TradeQueryRateLimiter.lua b/src/Classes/TradeQueryRateLimiter.lua
index 42573d0f3b8..4507d554c65 100644
--- a/src/Classes/TradeQueryRateLimiter.lua
+++ b/src/Classes/TradeQueryRateLimiter.lua
@@ -6,7 +6,9 @@
--
---@class TradeQueryRateLimiter
-local TradeQueryRateLimiterClass = newClass("TradeQueryRateLimiter", function(self)
+local TradeQueryRateLimiterClass = newClass("TradeQueryRateLimiter")
+
+function TradeQueryRateLimiterClass:TradeQueryRateLimiter()
-- policies_sample = {
-- -- label: policy
-- ["trade-search-request-limit"] = {
@@ -54,7 +56,8 @@ local TradeQueryRateLimiterClass = newClass("TradeQueryRateLimiter", function(se
["trade-search-request-limit"] = {},
["trade-fetch-request-limit"] = {}
}
-end)
+ return self
+end
function TradeQueryRateLimiterClass:GetPolicyName(key)
return self.policyNames[key]
diff --git a/src/Classes/TradeQueryRequests.lua b/src/Classes/TradeQueryRequests.lua
index 95f8b6a5ad4..3ad9f607303 100644
--- a/src/Classes/TradeQueryRequests.lua
+++ b/src/Classes/TradeQueryRequests.lua
@@ -7,16 +7,18 @@
local dkjson = require "dkjson"
---@class TradeQueryRequests
-local TradeQueryRequestsClass = newClass("TradeQueryRequests", function(self, rateLimiter)
+local TradeQueryRequestsClass = newClass("TradeQueryRequests")
+
+function TradeQueryRequestsClass:TradeQueryRequests(rateLimiter)
self.maxFetchPerSearch = 10
- self.tradeQuery = tradeQuery
- self.rateLimiter = rateLimiter or new("TradeQueryRateLimiter")
+ self.rateLimiter = rateLimiter or new("TradeQueryRateLimiter"):TradeQueryRateLimiter()
self.requestQueue = {
["search"] = {},
["fetch"] = {},
}
self.hostName = "https://www.pathofexile.com/"
-end)
+ return self
+end
---Main routine for processing request queue
function TradeQueryRequestsClass:ProcessQueue()
diff --git a/src/Classes/TradeStatWeightMultiplierListControl.lua b/src/Classes/TradeStatWeightMultiplierListControl.lua
index 0d528470f53..bde6c6a2bfa 100644
--- a/src/Classes/TradeStatWeightMultiplierListControl.lua
+++ b/src/Classes/TradeStatWeightMultiplierListControl.lua
@@ -4,12 +4,16 @@
-- Specialized UI element for listing and modifying Trade Stat Weight Multipliers.
--
-local TradeStatWeightMultiplierListControlClass = newClass("TradeStatWeightMultiplierListControl", "ListControl", function(self, anchor, rect, list, indexController)
+---@class TradeStatWeightMultiplierListControl: ListControl
+local TradeStatWeightMultiplierListControlClass = newClass("TradeStatWeightMultiplierListControl", "ListControl")
+
+function TradeStatWeightMultiplierListControlClass:TradeStatWeightMultiplierListControl(anchor, rect, list, indexController)
self.list = list
self.indexController = indexController
- self.ListControl(anchor, rect, 16, true, false, self.list)
+ self:ListControl(anchor, rect, 16, true, false, self.list)
self.selIndex = nil
-end)
+ return self
+end
function TradeStatWeightMultiplierListControlClass:Draw(viewPort, noTooltip)
self.noTooltip = noTooltip
diff --git a/src/Classes/TreeTab.lua b/src/Classes/TreeTab.lua
index 77bfe3ffdbf..d6bdc04cffd 100644
--- a/src/Classes/TreeTab.lua
+++ b/src/Classes/TreeTab.lua
@@ -19,24 +19,28 @@ local s_gsub = string.gsub
local s_byte = string.byte
local dkjson = require "dkjson"
-local TreeTabClass = newClass("TreeTab", "ControlHost", function(self, build)
- self.ControlHost()
+---@class TreeTab: ControlHost
+local TreeTabClass = newClass("TreeTab", "ControlHost")
+
+---@param build Build
+function TreeTabClass:TreeTab(build)
+ self:ControlHost()
self.build = build
self.isComparing = false;
self.isCustomMaxDepth = false;
- self.viewer = new("PassiveTreeView")
+ self.viewer = new("PassiveTreeView"):PassiveTreeView()
self.specList = { }
- self.specList[1] = new("PassiveSpec", build, latestTreeVersion)
+ self.specList[1] = new("PassiveSpec"):PassiveSpec(build, latestTreeVersion)
self:SetActiveSpec(1)
self:SetCompareSpec(1)
- self.anchorControls = new("Control", nil, {0, 0, 0, 20})
+ self.anchorControls = new("Control"):Control(nil, {0, 0, 0, 20})
-- Tree list dropdown
- self.controls.specSelect = new("DropDownControl", { "LEFT",self.anchorControls,"RIGHT" }, { 0, 0, 190, 20 }, nil, function(index, value)
+ self.controls.specSelect = new("DropDownControl"):DropDownControl({ "LEFT",self.anchorControls,"RIGHT" }, { 0, 0, 190, 20 }, nil, function(index, value)
if self.specList[index] then
self.build.modFlag = true
self:SetActiveSpec(index)
@@ -103,7 +107,7 @@ local TreeTabClass = newClass("TreeTab", "ControlHost", function(self, build)
end
-- Compare checkbox
- self.controls.compareCheck = new("CheckBoxControl", { "LEFT", self.controls.specSelect, "RIGHT" }, { 74, 0, 20 }, "Compare:", function(state)
+ self.controls.compareCheck = new("CheckBoxControl"):CheckBoxControl({ "LEFT", self.controls.specSelect, "RIGHT" }, { 74, 0, 20 }, "Compare:", function(state)
self.isComparing = state
self:SetCompareSpec(self.activeCompareSpec)
self.controls.compareSelect.shown = state
@@ -115,7 +119,7 @@ local TreeTabClass = newClass("TreeTab", "ControlHost", function(self, build)
end)
-- Compare tree dropdown
- self.controls.compareSelect = new("DropDownControl", { "LEFT", self.controls.compareCheck, "RIGHT" }, { 8, 0, 190, 20 }, nil, function(index, value)
+ self.controls.compareSelect = new("DropDownControl"):DropDownControl({ "LEFT", self.controls.compareCheck, "RIGHT" }, { 8, 0, 190, 20 }, nil, function(index, value)
if self.specList[index] then
self:SetCompareSpec(index)
else
@@ -126,18 +130,18 @@ local TreeTabClass = newClass("TreeTab", "ControlHost", function(self, build)
self.controls.compareSelect.maxDroppedWidth = 1000
self.controls.compareSelect.enableDroppedWidth = true
self.controls.compareSelect.enableChangeBoxWidth = true
- self.controls.reset = new("ButtonControl", { "LEFT", self.controls.compareCheck, "RIGHT" }, { 8, 0, 145, 20 }, "Reset Tree/Tattoos", function()
+ self.controls.reset = new("ButtonControl"):ButtonControl({ "LEFT", self.controls.compareCheck, "RIGHT" }, { 8, 0, 145, 20 }, "Reset Tree/Tattoos", function()
local controls = { }
local buttonY = 65
- controls.warningLabel = new("LabelControl", nil, { 0, 30, 0, 16 }, "^7Warning: resetting your passive tree or removing all tattoos cannot be undone.\n")
- controls.reset = new("ButtonControl", nil, { -130, buttonY, 100, 20 }, "Reset Tree", function()
+ controls.warningLabel = new("LabelControl"):LabelControl(nil, { 0, 30, 0, 16 }, "^7Warning: resetting your passive tree or removing all tattoos cannot be undone.\n")
+ controls.reset = new("ButtonControl"):ButtonControl(nil, { -130, buttonY, 100, 20 }, "Reset Tree", function()
self.build.spec:ResetNodes()
self.build.spec:BuildAllDependsAndPaths()
self.build.spec:AddUndoState()
self.build.buildFlag = true
main:ClosePopup()
end)
- controls.removeTattoo = new("ButtonControl", nil, { 0, buttonY, 144, 20 }, "Remove All Tattoos", function()
+ controls.removeTattoo = new("ButtonControl"):ButtonControl(nil, { 0, buttonY, 144, 20 }, "Remove All Tattoos", function()
for id, node in pairs(self.build.spec.hashOverrides) do --hashOverrides will contain only the nodes that have been tattoo-ed
if node.isTattoo then
self:RemoveTattooFromNode(self.build.spec.nodes[id])
@@ -147,7 +151,7 @@ local TreeTabClass = newClass("TreeTab", "ControlHost", function(self, build)
self.build.buildFlag = true
main:ClosePopup()
end)
- controls.cancel = new("ButtonControl", nil, { 130, buttonY, 100, 20 }, "Cancel", function()
+ controls.cancel = new("ButtonControl"):ButtonControl(nil, { 130, buttonY, 100, 20 }, "Cancel", function()
main:ClosePopup()
end)
main:OpenPopup(570, 100, "Reset Tree/Tattoos", controls, nil, "edit", "cancel")
@@ -162,8 +166,8 @@ local TreeTabClass = newClass("TreeTab", "ControlHost", function(self, build)
}
t_insert(self.treeVersions, value)
end
- self.controls.versionText = new("LabelControl", { "LEFT", self.controls.reset, "RIGHT" }, { 8, 0, 0, 16 }, "^7Version:")
- self.controls.versionSelect = new("DropDownControl", { "LEFT", self.controls.versionText, "RIGHT" }, { 8, 0, 100, 20 }, self.treeVersions, function(index, selected)
+ self.controls.versionText = new("LabelControl"):LabelControl({ "LEFT", self.controls.reset, "RIGHT" }, { 8, 0, 0, 16 }, "^7Version:")
+ self.controls.versionSelect = new("DropDownControl"):DropDownControl({ "LEFT", self.controls.versionText, "RIGHT" }, { 8, 0, 100, 20 }, self.treeVersions, function(index, selected)
if selected.value ~= self.build.spec.treeVersion then
self:OpenVersionConvertPopup(selected.value, true)
end
@@ -175,7 +179,7 @@ local TreeTabClass = newClass("TreeTab", "ControlHost", function(self, build)
self.controls.versionSelect.selIndex = #self.treeVersions
-- Tree Search Textbox
- self.controls.treeSearch = new("EditControl", { "LEFT", self.controls.versionSelect, "RIGHT" }, { 8, 0, main.portraitMode and 200 or 300, 20 }, "", "Search", "%c", 100, function(buf)
+ self.controls.treeSearch = new("EditControl"):EditControl({ "LEFT", self.controls.versionSelect, "RIGHT" }, { 8, 0, main.portraitMode and 200 or 300, 20 }, "", "Search", "%c", 100, function(buf)
self.viewer.searchStr = buf
self.searchFlag = buf ~= self.viewer.searchStrSaved
end, nil, nil, true)
@@ -184,7 +188,7 @@ local TreeTabClass = newClass("TreeTab", "ControlHost", function(self, build)
-- table holding all realm/league pairs. (allLeagues[realm] = [league.id,...])
self.tradeLeaguesList = {}
-- Find Timeless Jewel Button
- self.controls.findTimelessJewel = new("ButtonControl", { "LEFT", self.controls.treeSearch, "RIGHT" }, { 8, 0, 150, 20 }, "Find Timeless Jewel", function()
+ self.controls.findTimelessJewel = new("ButtonControl"):ButtonControl({ "LEFT", self.controls.treeSearch, "RIGHT" }, { 8, 0, 150, 20 }, "Find Timeless Jewel", function()
self:FindTimelessJewel()
end)
@@ -192,7 +196,7 @@ local TreeTabClass = newClass("TreeTab", "ControlHost", function(self, build)
self.defaultTattoo = { }
-- Show Node Power Checkbox
- self.controls.treeHeatMap = new("CheckBoxControl", { "LEFT", self.controls.findTimelessJewel, "RIGHT" }, { 130, 0, 20 }, "Show Node Power:", function(state)
+ self.controls.treeHeatMap = new("CheckBoxControl"):CheckBoxControl({ "LEFT", self.controls.findTimelessJewel, "RIGHT" }, { 130, 0, 20 }, "Show Node Power:", function(state)
self.viewer.showHeatMap = state
self.controls.treeHeatMapStatSelect.shown = state
@@ -205,7 +209,7 @@ local TreeTabClass = newClass("TreeTab", "ControlHost", function(self, build)
end)
-- Control for setting max node depth to limit calculation time of the heat map
- self.controls.nodePowerMaxDepthSelect = new("DropDownControl", { "LEFT", self.controls.treeHeatMap, "RIGHT" }, { 8, 0, 55, 20 }, { "All", 5, 10, 15, "Custom" }, function(index, value)
+ self.controls.nodePowerMaxDepthSelect = new("DropDownControl"):DropDownControl({ "LEFT", self.controls.treeHeatMap, "RIGHT" }, { 8, 0, 55, 20 }, { "All", 5, 10, 15, "Custom" }, function(index, value)
-- Show custom value control and resize/move elements
self.isCustomMaxDepth = value == "Custom"
if self.isCustomMaxDepth then
@@ -238,7 +242,7 @@ local TreeTabClass = newClass("TreeTab", "ControlHost", function(self, build)
self.controls.nodePowerMaxDepthSelect.tooltipText = "Limit of Node distance to search (lower = faster)"
-- Control for setting max node depth by custom value
- self.controls.nodePowerMaxDepthCustom = new("EditControl", { "LEFT", self.controls.nodePowerMaxDepthSelect, "RIGHT" }, { 8, 0, 70, 20 }, "0", nil, "%D", nil, function(value)
+ self.controls.nodePowerMaxDepthCustom = new("EditControl"):EditControl({ "LEFT", self.controls.nodePowerMaxDepthSelect, "RIGHT" }, { 8, 0, 70, 20 }, "0", nil, "%D", nil, function(value)
self.build.calcsTab.nodePowerMaxDepth = tonumber(value)
-- If the heat map is shown, recalculate it with new value
@@ -249,7 +253,7 @@ local TreeTabClass = newClass("TreeTab", "ControlHost", function(self, build)
self.controls.nodePowerMaxDepthCustom.shown = false
-- Control for selecting the power stat to sort by (Defense, DPS, etc)
- self.controls.treeHeatMapStatSelect = new("DropDownControl", { "LEFT", self.controls.nodePowerMaxDepthSelect, "RIGHT" }, { 8, 0, 150, 20 }, nil, function(index, value)
+ self.controls.treeHeatMapStatSelect = new("DropDownControl"):DropDownControl({ "LEFT", self.controls.nodePowerMaxDepthSelect, "RIGHT" }, { 8, 0, 150, 20 }, nil, function(index, value)
self:SetPowerCalc(value)
end)
self.controls.treeHeatMap.tooltipText = function()
@@ -265,14 +269,14 @@ local TreeTabClass = newClass("TreeTab", "ControlHost", function(self, build)
end
-- Show/Hide Power Report Button
- self.controls.powerReport = new("ButtonControl", { "LEFT", self.controls.treeHeatMapStatSelect, "RIGHT" }, { 8, 0, 150, 20 },
+ self.controls.powerReport = new("ButtonControl"):ButtonControl({ "LEFT", self.controls.treeHeatMapStatSelect, "RIGHT" }, { 8, 0, 150, 20 },
function() return self.controls.powerReportList.shown and "Hide Power Report" or "Show Power Report" end, function()
self.controls.powerReportList.shown = not self.controls.powerReportList.shown
end)
-- Power Report List
local yPos = self.controls.treeHeatMap.y == 0 and self.controls.specSelect.height + 4 or self.controls.specSelect.height * 2 + 8
- self.controls.powerReportList = new("PowerReportListControl", { "TOPLEFT", self.controls.specSelect, "BOTTOMLEFT" }, { 0, yPos, 700, 170 }, function(selectedNode)
+ self.controls.powerReportList = new("PowerReportListControl"):PowerReportListControl({ "TOPLEFT", self.controls.specSelect, "BOTTOMLEFT" }, { 0, yPos, 700, 170 }, function(selectedNode)
-- this code is called by the list control when the user "selects" one of the passives in the list.
-- we use this to set a flag which causes the next Draw() to recenter the passive tree on the desired node.
if selectedNode.x then
@@ -319,7 +323,7 @@ local TreeTabClass = newClass("TreeTab", "ControlHost", function(self, build)
end
end
- self.controls.specConvertText = new("LabelControl", { "BOTTOMLEFT", self.controls.specSelect, "TOPLEFT" }, { 0, -14, 0, 16 }, "^7This is an older tree version, which may not be fully compatible with the current game version.")
+ self.controls.specConvertText = new("LabelControl"):LabelControl({ "BOTTOMLEFT", self.controls.specSelect, "TOPLEFT" }, { 0, -14, 0, 16 }, "^7This is an older tree version, which may not be fully compatible with the current game version.")
self.controls.specConvertText.shown = function()
return self.showConvert
end
@@ -332,16 +336,17 @@ local TreeTabClass = newClass("TreeTab", "ControlHost", function(self, build)
local function buildConvertAllButtonLabel()
return colorCodes.POSITIVE.."Convert all trees to "..treeVersions[getLatestTreeVersion()].display
end
- self.controls.specConvert = new("ButtonControl", { "LEFT", self.controls.specConvertText, "RIGHT" }, { 8, 0, function() return DrawStringWidth(16, "VAR", buildConvertButtonLabel()) + 20 end, 20 }, buildConvertButtonLabel, function()
+ self.controls.specConvert = new("ButtonControl"):ButtonControl({ "LEFT", self.controls.specConvertText, "RIGHT" }, { 8, 0, function() return DrawStringWidth(16, "VAR", buildConvertButtonLabel()) + 20 end, 20 }, buildConvertButtonLabel, function()
self:ConvertToVersion(getLatestTreeVersion(), false, true)
end)
- self.controls.specConvertAll = new("ButtonControl", { "LEFT", self.controls.specConvert, "RIGHT" }, { 8, 0, function() return DrawStringWidth(16, "VAR", buildConvertAllButtonLabel()) + 20 end, 20 }, buildConvertAllButtonLabel, function()
+ self.controls.specConvertAll = new("ButtonControl"):ButtonControl({ "LEFT", self.controls.specConvert, "RIGHT" }, { 8, 0, function() return DrawStringWidth(16, "VAR", buildConvertAllButtonLabel()) + 20 end, 20 }, buildConvertAllButtonLabel, function()
self:OpenVersionConvertAllPopup(getLatestTreeVersion())
end)
self.jumpToNode = false
self.jumpToX = 0
self.jumpToY = 0
-end)
+ return self
+end
function TreeTabClass:RemoveTattooFromNode(node)
self.build.spec.tree.nodes[node.id].isTattoo = false
@@ -495,7 +500,7 @@ function TreeTabClass:Load(xml, dbFileName)
self.specList = { }
if xml.elem == "Spec" then
-- Import single spec from old build
- self.specList[1] = new("PassiveSpec", self.build, defaultTreeVersion)
+ self.specList[1] = new("PassiveSpec"):PassiveSpec(self.build, defaultTreeVersion)
self.specList[1]:Load(xml, dbFileName)
self.activeSpec = 1
self.build.spec = self.specList[1]
@@ -508,14 +513,14 @@ function TreeTabClass:Load(xml, dbFileName)
main:OpenMessagePopup("Unknown Passive Tree Version", "The build you are trying to load uses an unrecognised version of the passive skill tree.\nYou may need to update the program before loading this build.")
return true
end
- local newSpec = new("PassiveSpec", self.build, node.attrib.treeVersion or defaultTreeVersion)
+ local newSpec = new("PassiveSpec"):PassiveSpec(self.build, node.attrib.treeVersion or defaultTreeVersion)
newSpec:Load(node, dbFileName)
t_insert(self.specList, newSpec)
end
end
end
if not self.specList[1] then
- self.specList[1] = new("PassiveSpec", self.build, latestTreeVersion)
+ self.specList[1] = new("PassiveSpec"):PassiveSpec(self.build, latestTreeVersion)
end
self:SetActiveSpec(tonumber(xml.attrib.activeSpec) or 1)
end
@@ -592,7 +597,7 @@ function TreeTabClass:ConvertToVersion(version, remove, success, ignoreTreeSubTy
version = version..treeSubTypeCapture
end
end
- local newSpec = new("PassiveSpec", self.build, version)
+ local newSpec = new("PassiveSpec"):PassiveSpec(self.build, version)
newSpec.title = self.build.spec.title
newSpec.jewels = copyTable(self.build.spec.jewels)
newSpec:RestoreUndoState(self.build.spec:CreateUndoState(), version)
@@ -628,19 +633,19 @@ end
function TreeTabClass:OpenSpecManagePopup()
local importTree =
- new("ButtonControl", nil, {-99, 259, 90, 20}, "Import Tree", function()
+ new("ButtonControl"):ButtonControl(nil, {-99, 259, 90, 20}, "Import Tree", function()
self:OpenImportPopup()
end)
local exportTree =
- new("ButtonControl", {"LEFT", importTree, "RIGHT"}, {8, 0, 90, 20}, "Export Tree", function()
+ new("ButtonControl"):ButtonControl({"LEFT", importTree, "RIGHT"}, {8, 0, 90, 20}, "Export Tree", function()
self:OpenExportPopup()
end)
main:OpenPopup(370, 290, "Manage Passive Trees", {
- new("PassiveSpecListControl", nil, {0, 50, 350, 200}, self),
+ new("PassiveSpecListControl"):PassiveSpecListControl(nil, {0, 50, 350, 200}, self),
importTree,
exportTree,
- new("ButtonControl", {"LEFT", exportTree, "RIGHT"}, {8, 0, 90, 20}, "Done", function()
+ new("ButtonControl"):ButtonControl({"LEFT", exportTree, "RIGHT"}, {8, 0, 90, 20}, "Done", function()
main:ClosePopup()
end),
})
@@ -648,17 +653,17 @@ end
function TreeTabClass:OpenVersionConvertPopup(version, ignoreTreeSubType)
local controls = { }
- controls.warningLabel = new("LabelControl", nil, {0, 20, 0, 16}, "^7Warning: some or all of the passives may be de-allocated due to changes in the tree.\n\n" ..
+ controls.warningLabel = new("LabelControl"):LabelControl(nil, {0, 20, 0, 16}, "^7Warning: some or all of the passives may be de-allocated due to changes in the tree.\n\n" ..
"Convert will replace your current tree.\nCopy + Convert will backup your current tree.\n")
- controls.convert = new("ButtonControl", nil, {-125, 105, 100, 20}, "Convert", function()
+ controls.convert = new("ButtonControl"):ButtonControl(nil, {-125, 105, 100, 20}, "Convert", function()
self:ConvertToVersion(version, true, false, ignoreTreeSubType)
main:ClosePopup()
end)
- controls.convertCopy = new("ButtonControl", nil, {0, 105, 125, 20}, "Copy + Convert", function()
+ controls.convertCopy = new("ButtonControl"):ButtonControl(nil, {0, 105, 125, 20}, "Copy + Convert", function()
self:ConvertToVersion(version, false, false, ignoreTreeSubType)
main:ClosePopup()
end)
- controls.cancel = new("ButtonControl", nil, {125, 105, 100, 20}, "Cancel", function()
+ controls.cancel = new("ButtonControl"):ButtonControl(nil, {125, 105, 100, 20}, "Cancel", function()
self.controls.versionSelect:SelByValue(self.build.spec.treeVersion, 'value')
main:ClosePopup()
end)
@@ -667,13 +672,13 @@ end
function TreeTabClass:OpenVersionConvertAllPopup(version)
local controls = { }
- controls.warningLabel = new("LabelControl", nil, {0, 20, 0, 16}, "^7Warning: some or all of the passives may be de-allocated due to changes in the tree.\n\n" ..
+ controls.warningLabel = new("LabelControl"):LabelControl(nil, {0, 20, 0, 16}, "^7Warning: some or all of the passives may be de-allocated due to changes in the tree.\n\n" ..
"Convert will replace all trees that are not Version "..treeVersions[version].display..".\nThis action cannot be undone.\n")
- controls.convert = new("ButtonControl", nil, {-58, 105, 100, 20}, "Convert", function()
+ controls.convert = new("ButtonControl"):ButtonControl(nil, {-58, 105, 100, 20}, "Convert", function()
self:ConvertAllToVersion(version)
main:ClosePopup()
end)
- controls.cancel = new("ButtonControl", nil, {58, 105, 100, 20}, "Cancel", function()
+ controls.cancel = new("ButtonControl"):ButtonControl(nil, {58, 105, 100, 20}, "Cancel", function()
main:ClosePopup()
end)
main:OpenPopup(570, 140, "Convert all to Version "..treeVersions[version].display, controls, "convert", "edit")
@@ -684,7 +689,7 @@ function TreeTabClass:OpenImportPopup()
local controls = { }
local function decodePoePlannerTreeLink(treeLink)
-- treeVersion is not known at this point. We need to decode the URL to get it.
- local tmpSpec = new("PassiveSpec", self.build, latestTreeVersion)
+ local tmpSpec = new("PassiveSpec"):PassiveSpec(self.build, latestTreeVersion)
local newTreeVersion_or_errMsg = tmpSpec:DecodePoePlannerURL(treeLink, true)
-- Check for an error message
if string.find(newTreeVersion_or_errMsg, "Invalid") then
@@ -693,7 +698,7 @@ function TreeTabClass:OpenImportPopup()
end
-- 20230908. We always create a new Spec()
- local newSpec = new("PassiveSpec", self.build, newTreeVersion_or_errMsg)
+ local newSpec = new("PassiveSpec"):PassiveSpec(self.build, newTreeVersion_or_errMsg)
newSpec.title = controls.name.buf
newSpec:DecodePoePlannerURL(treeLink, false) --DecodePoePlannerURL was used above and URL proven correct.
t_insert(self.specList, newSpec)
@@ -709,7 +714,7 @@ function TreeTabClass:OpenImportPopup()
-- newTreeVersion is passed in as an output of validateTreeVersion(). It will always be a valid tree version text string
-- 20230908. We always create a new Spec()
ConPrintf("Tree version: " .. newTreeVersion)
- local newSpec = new("PassiveSpec", self.build, newTreeVersion)
+ local newSpec = new("PassiveSpec"):PassiveSpec(self.build, newTreeVersion)
newSpec.title = controls.name.buf
local errMsg = newSpec:DecodeURL(treeLink)
if errMsg then
@@ -740,18 +745,18 @@ function TreeTabClass:OpenImportPopup()
return latestTreeVersion .. (alternateType and ("_" .. alternateType:gsub("-", "_")) or "")
end
- controls.nameLabel = new("LabelControl", nil, {-180, 20, 0, 16}, "Enter name for this passive tree:")
- controls.name = new("EditControl", nil, {100, 20, 350, 18}, "", nil, nil, nil, function(buf)
+ controls.nameLabel = new("LabelControl"):LabelControl(nil, {-180, 20, 0, 16}, "Enter name for this passive tree:")
+ controls.name = new("EditControl"):EditControl(nil, {100, 20, 350, 18}, "", nil, nil, nil, function(buf)
controls.msg.label = ""
controls.import.enabled = buf:match("%S") and controls.edit.buf:match("%S")
end)
- controls.editLabel = new("LabelControl", nil, {-150, 45, 0, 16}, "Enter passive tree link:")
- controls.edit = new("EditControl", nil, {100, 45, 350, 18}, "", nil, nil, nil, function(buf)
+ controls.editLabel = new("LabelControl"):LabelControl(nil, {-150, 45, 0, 16}, "Enter passive tree link:")
+ controls.edit = new("EditControl"):EditControl(nil, {100, 45, 350, 18}, "", nil, nil, nil, function(buf)
controls.msg.label = ""
controls.import.enabled = buf:match("%S") and controls.name.buf:match("%S")
end)
- controls.msg = new("LabelControl", nil, {0, 65, 0, 16}, "")
- controls.import = new("ButtonControl", nil, {-45, 85, 80, 20}, "Import", function()
+ controls.msg = new("LabelControl"):LabelControl(nil, {0, 65, 0, 16}, "")
+ controls.import = new("ButtonControl"):ButtonControl(nil, {-45, 85, 80, 20}, "Import", function()
local treeLink = controls.edit.buf
if #treeLink == 0 then
return
@@ -803,7 +808,7 @@ function TreeTabClass:OpenImportPopup()
end
end)
controls.import.enabled = false
- controls.cancel = new("ButtonControl", nil, {45, 85, 80, 20}, "Cancel", function()
+ controls.cancel = new("ButtonControl"):ButtonControl(nil, {45, 85, 80, 20}, "Cancel", function()
main:ClosePopup()
end)
main:OpenPopup(580, 115, "Import Tree", controls, "import", "name")
@@ -813,9 +818,9 @@ function TreeTabClass:OpenExportPopup()
local treeLink = self.build.spec:EncodeURL(treeVersions[self.build.spec.treeVersion].url)
local popup
local controls = { }
- controls.label = new("LabelControl", nil, {0, 20, 0, 16}, "Passive tree link:")
- controls.edit = new("EditControl", nil, {0, 40, 350, 18}, treeLink, nil, "%Z")
- controls.shrink = new("ButtonControl", nil, {-90, 70, 140, 20}, "Shrink with PoEURL", function()
+ controls.label = new("LabelControl"):LabelControl(nil, {0, 20, 0, 16}, "Passive tree link:")
+ controls.edit = new("EditControl"):EditControl(nil, {0, 40, 350, 18}, treeLink, nil, "%Z")
+ controls.shrink = new("ButtonControl"):ButtonControl(nil, {-90, 70, 140, 20}, "Shrink with PoEURL", function()
controls.shrink.enabled = false
controls.shrink.label = "Shrinking..."
launch:DownloadPage("http://poeurl.com/shrink.php?url="..treeLink, function(response, errMsg)
@@ -829,10 +834,10 @@ function TreeTabClass:OpenExportPopup()
end
end)
end)
- controls.copy = new("ButtonControl", nil, {30, 70, 80, 20}, "Copy", function()
+ controls.copy = new("ButtonControl"):ButtonControl(nil, {30, 70, 80, 20}, "Copy", function()
Copy(treeLink)
end)
- controls.done = new("ButtonControl", nil, {120, 70, 80, 20}, "Done", function()
+ controls.done = new("ButtonControl"):ButtonControl(nil, {120, 70, 80, 20}, "Done", function()
main:ClosePopup()
end)
popup = main:OpenPopup(380, 100, "Export Tree", controls, "done", "edit")
@@ -900,7 +905,7 @@ function TreeTabClass:ModifyNodePopup(selectedNode)
end
end
for idx, desc in ipairs(wrapTable) do
- controls[idx] = new("LabelControl", {"TOPLEFT", controls[idx-1] or controls.modSelect,"TOPLEFT"}, {0, 20, 600, 16}, "^7"..desc)
+ controls[idx] = new("LabelControl"):LabelControl({"TOPLEFT", controls[idx-1] or controls.modSelect,"TOPLEFT"}, {0, 20, 600, 16}, "^7"..desc)
totalHeight = totalHeight + 20
end
main.popups[1].height = totalHeight + 75
@@ -912,8 +917,8 @@ function TreeTabClass:ModifyNodePopup(selectedNode)
end
buildMods(selectedNode)
- controls.modSelectLabel = new("LabelControl", {"TOPRIGHT",nil,"TOPLEFT"}, {170, 25, 0, 16}, "^7Modifier:")
- controls.modSelect = new("DropDownControl", {"TOPLEFT",nil,"TOPLEFT"}, {175, 25, 250, 18}, modGroups, function(idx) constructUI(modGroups[idx]) end)
+ controls.modSelectLabel = new("LabelControl"):LabelControl({"TOPRIGHT",nil,"TOPLEFT"}, {170, 25, 0, 16}, "^7Modifier:")
+ controls.modSelect = new("DropDownControl"):DropDownControl({"TOPLEFT",nil,"TOPLEFT"}, {175, 25, 250, 18}, modGroups, function(idx) constructUI(modGroups[idx]) end)
controls.modSelect.selIndex = self.defaultTattoo[nodeName] or 1
controls.modSelect.tooltipFunc = function(tooltip, mode, index, value)
tooltip:Clear()
@@ -923,7 +928,7 @@ function TreeTabClass:ModifyNodePopup(selectedNode)
end
end
end
- controls.save = new("ButtonControl", nil, {-90, 75, 80, 20}, "Add", function()
+ controls.save = new("ButtonControl"):ButtonControl(nil, {-90, 75, 80, 20}, "Add", function()
addModifier(selectedNode)
self.build.spec:AddUndoState()
self.modFlag = true
@@ -931,7 +936,7 @@ function TreeTabClass:ModifyNodePopup(selectedNode)
self.defaultTattoo[nodeName] = controls.modSelect.selIndex
main:ClosePopup()
end)
- controls.reset = new("ButtonControl", nil, {0, 75, 80, 20}, "Reset Node", function()
+ controls.reset = new("ButtonControl"):ButtonControl(nil, {0, 75, 80, 20}, "Reset Node", function()
self:RemoveTattooFromNode(selectedNode)
self.build.spec:AddUndoState()
self.modFlag = true
@@ -939,7 +944,7 @@ function TreeTabClass:ModifyNodePopup(selectedNode)
self.defaultTattoo[nodeName] = nil
main:ClosePopup()
end)
- controls.close = new("ButtonControl", nil, {90, 75, 80, 20}, "Cancel", function()
+ controls.close = new("ButtonControl"):ButtonControl(nil, {90, 75, 80, 20}, "Cancel", function()
main:ClosePopup()
end)
@@ -976,13 +981,13 @@ function TreeTabClass:ModifyNodePopup(selectedNode)
end
return count
end
- controls.totalTattoos = new("ButtonControl", nil, { 0, 95, 145, 20 }, "^7Tattoo Count: ".. getTattooCount() .."/50", function() return end)
+ controls.totalTattoos = new("ButtonControl"):ButtonControl(nil, { 0, 95, 145, 20 }, "^7Tattoo Count: ".. getTattooCount() .."/50", function() return end)
controls.totalTattoos.tooltipFunc = function(tooltip, mode, index, value) getTattooCount(tooltip) end
main:OpenPopup(600, 105, "Replace Modifier of Node", controls, "save")
constructUI(modGroups[self.defaultTattoo[nodeName] or 1])
-- Show Legacy Tattoos
- controls.showLegacyTattoo = new("CheckBoxControl", { "LEFT", controls.totalTattoos, "RIGHT" }, { 195, 0, 20 }, "Show Legacy Tattoos:", function(state)
+ controls.showLegacyTattoo = new("CheckBoxControl"):CheckBoxControl({ "LEFT", controls.totalTattoos, "RIGHT" }, { 195, 0, 20 }, "Show Legacy Tattoos:", function(state)
self.showLegacyTattoo = state
buildMods(selectedNode)
end)
@@ -1024,13 +1029,13 @@ function TreeTabClass:OpenMasteryPopup(node, viewPort)
--Check to make sure that the effects list has a potential mod to apply to a mastery
if not (next(effects) == nil) then
local passiveMasteryControlHeight = (#effects + 1) * 14 + 2
- controls.close = new("ButtonControl", nil, {0, 30 + passiveMasteryControlHeight, 90, 20}, "Cancel", function()
+ controls.close = new("ButtonControl"):ButtonControl(nil, {0, 30 + passiveMasteryControlHeight, 90, 20}, "Cancel", function()
node.sd = cachedSd
node.allMasteryOptions = cachedAllMasteryOption
self.build.spec.tree:ProcessStats(node)
main:ClosePopup()
end)
- controls.effect = new("PassiveMasteryControl", {"TOPLEFT",nil,"TOPLEFT"}, {6, 25, 0, passiveMasteryControlHeight}, effects, self, node, controls.save)
+ controls.effect = new("PassiveMasteryControl"):PassiveMasteryControl({"TOPLEFT",nil,"TOPLEFT"}, {6, 25, 0, passiveMasteryControlHeight}, effects, self, node, controls.save)
main:OpenPopup(controls.effect.width + 12, controls.effect.height + 60, node.name, controls, nil, nil, "close")
end
end
@@ -1159,7 +1164,7 @@ function TreeTabClass:BuildPowerReportList(currentStat)
end
function TreeTabClass:FindTimelessJewel()
- local socketViewer = new("PassiveTreeView")
+ local socketViewer = new("PassiveTreeView"):PassiveTreeView()
local treeData = self.build.spec.tree
local legionNodes = treeData.legion.nodes
local legionAdditions = treeData.legion.additions
@@ -1480,13 +1485,13 @@ function TreeTabClass:FindTimelessJewel()
self.build.modFlag = true
end
- controls.devotionSelectLabel = new("LabelControl", {"TOPRIGHT", nil, "TOPLEFT"}, {820, 25, 0, 16}, "^7Devotion modifiers:")
+ controls.devotionSelectLabel = new("LabelControl"):LabelControl({"TOPRIGHT", nil, "TOPLEFT"}, {820, 25, 0, 16}, "^7Devotion modifiers:")
controls.devotionSelectLabel.shown = timelessData.jewelType.id == 4
- controls.devotionSelect1 = new("DropDownControl", {"TOP", controls.devotionSelectLabel, "BOTTOM"}, {0, 8, 200, 18}, devotionVariants, function(index, value)
+ controls.devotionSelect1 = new("DropDownControl"):DropDownControl({"TOP", controls.devotionSelectLabel, "BOTTOM"}, {0, 8, 200, 18}, devotionVariants, function(index, value)
timelessData.devotionVariant1 = index
end)
controls.devotionSelect1.selIndex = timelessData.devotionVariant1
- controls.devotionSelect2 = new("DropDownControl", {"TOP", controls.devotionSelect1, "BOTTOM"}, {0, 7, 200, 18}, devotionVariants, function(index, value)
+ controls.devotionSelect2 = new("DropDownControl"):DropDownControl({"TOP", controls.devotionSelect1, "BOTTOM"}, {0, 7, 200, 18}, devotionVariants, function(index, value)
timelessData.devotionVariant2 = index
end)
controls.devotionSelect2.selIndex = timelessData.devotionVariant2
@@ -1496,7 +1501,7 @@ function TreeTabClass:FindTimelessJewel()
local labelHeight = 16
local labelSpacing = 4
- controls.jewelSelect = new("DropDownControl", {"TOPLEFT", nil, "TOPLEFT"}, {380, 25, 200, rowHeight}, jewelTypes, function(index, value)
+ controls.jewelSelect = new("DropDownControl"):DropDownControl({"TOPLEFT", nil, "TOPLEFT"}, {380, 25, 200, rowHeight}, jewelTypes, function(index, value)
timelessData.jewelType = value
controls.devotionSelectLabel.shown = value.id == 4 -- Militant Faith
controls.protectAllocatedLabel.shown = (value.id == 4 and controls.socketFilter.state)
@@ -1509,15 +1514,15 @@ function TreeTabClass:FindTimelessJewel()
updateSearchList("", true)
end)
controls.jewelSelect.selIndex = timelessData.jewelType.id
- controls.jewelSelectLabel = new("LabelControl", {"RIGHT", controls.jewelSelect, "LEFT"}, {-labelSpacing, 0, 0, labelHeight}, "^7Jewel Type:")
+ controls.jewelSelectLabel = new("LabelControl"):LabelControl({"RIGHT", controls.jewelSelect, "LEFT"}, {-labelSpacing, 0, 0, labelHeight}, "^7Jewel Type:")
- controls.conquerorSelect = new("DropDownControl", {"TOPLEFT", controls.jewelSelect, "BOTTOMLEFT"}, {0, rowSpacing, 200, rowHeight}, conquerorTypes[timelessData.jewelType.id], function(index, value)
+ controls.conquerorSelect = new("DropDownControl"):DropDownControl({"TOPLEFT", controls.jewelSelect, "BOTTOMLEFT"}, {0, rowSpacing, 200, rowHeight}, conquerorTypes[timelessData.jewelType.id], function(index, value)
timelessData.conquerorType = value
self.build.modFlag = true
end)
controls.conquerorSelect.selIndex = timelessData.conquerorType.id
- controls.conquerorSelectLabel = new("LabelControl", {"RIGHT", controls.conquerorSelect, "LEFT"}, {-labelSpacing, 0, 0, labelHeight}, "^7Conqueror:")
+ controls.conquerorSelectLabel = new("LabelControl"):LabelControl({"RIGHT", controls.conquerorSelect, "LEFT"}, {-labelSpacing, 0, 0, labelHeight}, "^7Conqueror:")
local allocatedNodes = { }
local protectedNodes = { }
@@ -1542,7 +1547,7 @@ function TreeTabClass:FindTimelessJewel()
end
- controls.socketSelect = new("TimelessJewelSocketControl", {"TOPLEFT", controls.conquerorSelect, "BOTTOMLEFT"}, {0, rowSpacing, 200, rowHeight}, jewelSockets, function(index, value)
+ controls.socketSelect = new("TimelessJewelSocketControl"):TimelessJewelSocketControl({"TOPLEFT", controls.conquerorSelect, "BOTTOMLEFT"}, {0, rowSpacing, 200, rowHeight}, jewelSockets, function(index, value)
timelessData.jewelSocket = value
setAllocatedNodes() -- reset list when changing sockets
self.build.modFlag = true
@@ -1554,7 +1559,7 @@ function TreeTabClass:FindTimelessJewel()
break
end
end
- controls.socketSelectLabel = new("LabelControl", {"RIGHT", controls.socketSelect, "LEFT"}, {-labelSpacing, 0, 0, labelHeight}, "^7Jewel Socket:")
+ controls.socketSelectLabel = new("LabelControl"):LabelControl({"RIGHT", controls.socketSelect, "LEFT"}, {-labelSpacing, 0, 0, labelHeight}, "^7Jewel Socket:")
local function clearProtected() -- clear all controls, nodes related to Militant Faith filtering
protectedNodesCount = 0
@@ -1566,7 +1571,7 @@ function TreeTabClass:FindTimelessJewel()
end
end
- controls.socketFilter = new("CheckBoxControl", {"TOPLEFT", controls.socketSelect, "BOTTOMLEFT"}, {0, rowSpacing, rowHeight}, nil, function(value)
+ controls.socketFilter = new("CheckBoxControl"):CheckBoxControl({"TOPLEFT", controls.socketSelect, "BOTTOMLEFT"}, {0, rowSpacing, rowHeight}, nil, function(value)
timelessData.socketFilter = value
self.build.modFlag = true
controls.socketFilterAdditionalDistanceLabel.shown = value
@@ -1580,7 +1585,7 @@ function TreeTabClass:FindTimelessJewel()
clearProtected()
end
end)
- controls.socketFilterLabel = new("LabelControl", {"RIGHT", controls.socketFilter, "LEFT"}, {-labelSpacing, 0, 0, labelHeight}, "^7Filter Nodes:")
+ controls.socketFilterLabel = new("LabelControl"):LabelControl({"RIGHT", controls.socketFilter, "LEFT"}, {-labelSpacing, 0, 0, labelHeight}, "^7Filter Nodes:")
controls.socketFilter.tooltipFunc = function(tooltip, mode, index, value)
tooltip:Clear()
tooltip:AddLine(16, "^7Enable this option to exclude nodes that you do not have allocated on your active passive skill tree.")
@@ -1589,17 +1594,17 @@ function TreeTabClass:FindTimelessJewel()
controls.socketFilter.state = timelessData.socketFilter
-- Militant Faith protect notables controls
- controls.protectAllocatedLabel = new("LabelControl", { "TOPLEFT", nil, "TOPLEFT" }, { 15, 25, 0, 16 }, "^7Protect allocated nodes from changing:")
- controls.protectAllocatedSelect = new("DropDownControl", { "TOPLEFT", controls.protectAllocatedLabel, "BOTTOMLEFT" }, { 0, 8, 200, 18 }, nil, nil)
- controls.protectAllocatedButtonAdd = new("ButtonControl", { "LEFT", controls.protectAllocatedSelect, "RIGHT" }, { 5, 0, 44, 18 }, "Add", function()
+ controls.protectAllocatedLabel = new("LabelControl"):LabelControl({ "TOPLEFT", nil, "TOPLEFT" }, { 15, 25, 0, 16 }, "^7Protect allocated nodes from changing:")
+ controls.protectAllocatedSelect = new("DropDownControl"):DropDownControl({ "TOPLEFT", controls.protectAllocatedLabel, "BOTTOMLEFT" }, { 0, 8, 200, 18 }, nil, nil)
+ controls.protectAllocatedButtonAdd = new("ButtonControl"):ButtonControl({ "LEFT", controls.protectAllocatedSelect, "RIGHT" }, { 5, 0, 44, 18 }, "Add", function()
local selValue = controls.protectAllocatedSelect:GetSelValue()
if selValue and not controls["protected:"..selValue] then
protectedNodesCount = protectedNodesCount + 1
t_insert(protectedNodes, selValue)
- controls["protected:"..selValue] = new("LabelControl", { "TOPLEFT", controls.protectAllocatedSelect, "BOTTOMLEFT" }, { 0, 16 * protectedNodesCount - 10, 0, 16 }, "^7"..selValue)
+ controls["protected:"..selValue] = new("LabelControl"):LabelControl({ "TOPLEFT", controls.protectAllocatedSelect, "BOTTOMLEFT" }, { 0, 16 * protectedNodesCount - 10, 0, 16 }, "^7"..selValue)
end
end)
- controls.protectAllocatedButtonClear = new("ButtonControl", { "LEFT", controls.protectAllocatedButtonAdd, "RIGHT" }, { 5, 0, 44, 18 }, "Clear", function()
+ controls.protectAllocatedButtonClear = new("ButtonControl"):ButtonControl({ "LEFT", controls.protectAllocatedButtonAdd, "RIGHT" }, { 5, 0, 44, 18 }, "Clear", function()
clearProtected()
end)
-- set shown and list on load
@@ -1615,8 +1620,8 @@ function TreeTabClass:FindTimelessJewel()
end
local socketFilterAdditionalDistanceMAX = 10
- controls.socketFilterAdditionalDistanceLabel = new("LabelControl", {"LEFT", controls.socketFilter, "RIGHT"}, {10, 0, 0, 16}, "^7Node Distance:")
- controls.socketFilterAdditionalDistance = new("SliderControl", {"LEFT", controls.socketFilterAdditionalDistanceLabel, "RIGHT"}, {10, 0, 66, 18}, function(value)
+ controls.socketFilterAdditionalDistanceLabel = new("LabelControl"):LabelControl({"LEFT", controls.socketFilter, "RIGHT"}, {10, 0, 0, 16}, "^7Node Distance:")
+ controls.socketFilterAdditionalDistance = new("SliderControl"):SliderControl({"LEFT", controls.socketFilterAdditionalDistanceLabel, "RIGHT"}, {10, 0, 66, 18}, function(value)
timelessData.socketFilterDistance = m_floor(value * socketFilterAdditionalDistanceMAX + 0.01)
controls.socketFilterAdditionalDistanceValue.label = s_format("^7%d", timelessData.socketFilterDistance)
end, { ["SHIFT"] = 1, ["CTRL"] = 1 / (socketFilterAdditionalDistanceMAX * 2), ["DEFAULT"] = 1 / socketFilterAdditionalDistanceMAX })
@@ -1635,7 +1640,7 @@ function TreeTabClass:FindTimelessJewel()
end
return controls.socketFilterAdditionalDistance.tooltip.realDraw(self, x, y, width, height, viewPort)
end
- controls.socketFilterAdditionalDistanceValue = new("LabelControl", {"LEFT", controls.socketFilterAdditionalDistance, "RIGHT"}, {5, 0, 0, 16}, "^70")
+ controls.socketFilterAdditionalDistanceValue = new("LabelControl"):LabelControl({"LEFT", controls.socketFilterAdditionalDistance, "RIGHT"}, {5, 0, 0, 16}, "^70")
controls.socketFilterAdditionalDistance:SetVal((timelessData.socketFilterDistance or 0) / socketFilterAdditionalDistanceMAX)
controls.socketFilterAdditionalDistanceLabel.shown = timelessData.socketFilter
controls.socketFilterAdditionalDistance.shown = timelessData.socketFilter
@@ -1645,11 +1650,11 @@ function TreeTabClass:FindTimelessJewel()
local scrollWheelSpeedTbl2 = { ["SHIFT"] = 0.2, ["CTRL"] = 0.002, ["DEFAULT"] = 0.02 }
local nodeSliderStatLabel = "None"
- controls.nodeSlider = new("SliderControl", {"TOPLEFT", controls.socketFilter, "BOTTOMLEFT"}, {0, rowSpacing, 200, rowHeight}, function(value)
+ controls.nodeSlider = new("SliderControl"):SliderControl({"TOPLEFT", controls.socketFilter, "BOTTOMLEFT"}, {0, rowSpacing, 200, rowHeight}, function(value)
controls.nodeSliderValue.label = s_format("^7%.3f", value * 10)
parseSearchList(1, controls.searchListFallback and controls.searchListFallback.shown or false)
end, scrollWheelSpeedTbl)
- controls.nodeSliderLabel = new("LabelControl", {"RIGHT", controls.nodeSlider, "LEFT"}, {-labelSpacing, 0, 0, labelHeight}, "^7Primary Node Weight:")
+ controls.nodeSliderLabel = new("LabelControl"):LabelControl({"RIGHT", controls.nodeSlider, "LEFT"}, {-labelSpacing, 0, 0, labelHeight}, "^7Primary Node Weight:")
controls.nodeSlider.tooltipFunc = function(tooltip, mode, index, value)
tooltip:Clear()
if not controls.nodeSlider.dragging then
@@ -1661,7 +1666,7 @@ function TreeTabClass:FindTimelessJewel()
end
end
end
- controls.nodeSliderValue = new("LabelControl", {"LEFT", controls.nodeSlider, "RIGHT"}, {5, 0, 0, 16}, "^71.000")
+ controls.nodeSliderValue = new("LabelControl"):LabelControl({"LEFT", controls.nodeSlider, "RIGHT"}, {5, 0, 0, 16}, "^71.000")
controls.nodeSlider.tooltip.realDraw = controls.nodeSlider.tooltip.Draw
controls.nodeSlider.tooltip.Draw = function(self, x, y, width, height, viewPort)
local sliderOffsetX = round(184 * (1 - controls.nodeSlider.val))
@@ -1674,11 +1679,11 @@ function TreeTabClass:FindTimelessJewel()
controls.nodeSlider:SetVal(0.1)
local nodeSlider2StatLabel = "None"
- controls.nodeSlider2 = new("SliderControl", {"TOPLEFT", controls.nodeSlider, "BOTTOMLEFT"}, {0, rowSpacing, 200, rowHeight}, function(value)
+ controls.nodeSlider2 = new("SliderControl"):SliderControl({"TOPLEFT", controls.nodeSlider, "BOTTOMLEFT"}, {0, rowSpacing, 200, rowHeight}, function(value)
controls.nodeSlider2Value.label = s_format("^7%.3f", value * 10)
parseSearchList(1, controls.searchListFallback and controls.searchListFallback.shown or false)
end, scrollWheelSpeedTbl)
- controls.nodeSlider2Label = new("LabelControl", {"RIGHT", controls.nodeSlider2, "LEFT"}, {-labelSpacing, 0, 0, labelHeight}, "^7Secondary Node Weight:")
+ controls.nodeSlider2Label = new("LabelControl"):LabelControl({"RIGHT", controls.nodeSlider2, "LEFT"}, {-labelSpacing, 0, 0, labelHeight}, "^7Secondary Node Weight:")
controls.nodeSlider2.tooltipFunc = function(tooltip, mode, index, value)
tooltip:Clear()
if not controls.nodeSlider2.dragging then
@@ -1690,7 +1695,7 @@ function TreeTabClass:FindTimelessJewel()
end
end
end
- controls.nodeSlider2Value = new("LabelControl", {"LEFT", controls.nodeSlider2, "RIGHT"}, {5, 0, 0, 16}, "^71.000")
+ controls.nodeSlider2Value = new("LabelControl"):LabelControl({"LEFT", controls.nodeSlider2, "RIGHT"}, {5, 0, 0, 16}, "^71.000")
controls.nodeSlider2.tooltip.realDraw = controls.nodeSlider2.tooltip.Draw
controls.nodeSlider2.tooltip.Draw = function(self, x, y, width, height, viewPort)
local sliderOffsetX = round(184 * (1 - controls.nodeSlider2.val))
@@ -1702,7 +1707,7 @@ function TreeTabClass:FindTimelessJewel()
end
controls.nodeSlider2:SetVal(0.1)
- controls.nodeSlider3 = new("SliderControl", {"TOPLEFT", controls.nodeSlider2, "BOTTOMLEFT"}, {0, rowSpacing, 200, rowHeight}, function(value)
+ controls.nodeSlider3 = new("SliderControl"):SliderControl({"TOPLEFT", controls.nodeSlider2, "BOTTOMLEFT"}, {0, rowSpacing, 200, rowHeight}, function(value)
if value == 1 then
controls.nodeSlider3Value.label = "^7Required"
else
@@ -1710,14 +1715,14 @@ function TreeTabClass:FindTimelessJewel()
end
parseSearchList(1, controls.searchListFallback and controls.searchListFallback.shown or false)
end, scrollWheelSpeedTbl2)
- controls.nodeSlider3Label = new("LabelControl", {"RIGHT", controls.nodeSlider3, "LEFT"}, {-labelSpacing, 0, 0, labelHeight}, "^7Minimum Node Weight:")
+ controls.nodeSlider3Label = new("LabelControl"):LabelControl({"RIGHT", controls.nodeSlider3, "LEFT"}, {-labelSpacing, 0, 0, labelHeight}, "^7Minimum Node Weight:")
controls.nodeSlider3.tooltipFunc = function(tooltip, mode, index, value)
tooltip:Clear()
if not controls.nodeSlider3.dragging then
tooltip:AddLine(16, "^7Seeds that do not meet the minimum weight threshold for a desired node are excluded from the search results.")
end
end
- controls.nodeSlider3Value = new("LabelControl", {"LEFT", controls.nodeSlider3, "RIGHT"}, {5, 0, 0, 16}, "^70")
+ controls.nodeSlider3Value = new("LabelControl"):LabelControl({"LEFT", controls.nodeSlider3, "RIGHT"}, {5, 0, 0, 16}, "^70")
controls.nodeSlider3.tooltip.realDraw = controls.nodeSlider3.tooltip.Draw
controls.nodeSlider3.tooltip.Draw = function(self, x, y, width, height, viewPort)
local sliderOffsetX = round(184 * (1 - controls.nodeSlider3.val))
@@ -1756,7 +1761,7 @@ function TreeTabClass:FindTimelessJewel()
end
buildMods()
- controls.nodeSelect = new("DropDownControl", {"TOPLEFT", controls.nodeSlider3, "BOTTOMLEFT"}, {0, rowSpacing, 200, rowHeight}, modData, function(index, value)
+ controls.nodeSelect = new("DropDownControl"):DropDownControl({"TOPLEFT", controls.nodeSlider3, "BOTTOMLEFT"}, {0, rowSpacing, 200, rowHeight}, modData, function(index, value)
nodeSliderStatLabel = "None"
nodeSlider2StatLabel = "None"
if value.id then
@@ -1815,7 +1820,7 @@ function TreeTabClass:FindTimelessJewel()
self.build.modFlag = true
end
end)
- controls.nodeSelectLabel = new("LabelControl", {"RIGHT", controls.nodeSelect, "LEFT"}, {-labelSpacing, 0, 0, labelHeight}, "^7Search for Node:")
+ controls.nodeSelectLabel = new("LabelControl"):LabelControl({"RIGHT", controls.nodeSelect, "LEFT"}, {-labelSpacing, 0, 0, labelHeight}, "^7Search for Node:")
controls.nodeSelect.tooltipFunc = function(tooltip, mode, index, value)
tooltip:Clear()
if mode ~= "OUT" and value.descriptions then
@@ -2000,12 +2005,12 @@ function TreeTabClass:FindTimelessJewel()
})
end
end
- controls.fallbackWeightsList = new("DropDownControl", {"TOPLEFT", controls.nodeSelect, "BOTTOMLEFT"}, {0, rowSpacing, 200, rowHeight}, fallbackWeightsList, function(index)
+ controls.fallbackWeightsList = new("DropDownControl"):DropDownControl({"TOPLEFT", controls.nodeSelect, "BOTTOMLEFT"}, {0, rowSpacing, 200, rowHeight}, fallbackWeightsList, function(index)
timelessData.fallbackWeightMode.idx = index
end)
- controls.fallbackWeightsLabel = new("LabelControl", {"RIGHT", controls.fallbackWeightsList, "LEFT"}, {-labelSpacing, 0, 0, labelHeight}, "^7Fallback Weight Mode:")
+ controls.fallbackWeightsLabel = new("LabelControl"):LabelControl({"RIGHT", controls.fallbackWeightsList, "LEFT"}, {-labelSpacing, 0, 0, labelHeight}, "^7Fallback Weight Mode:")
controls.fallbackWeightsList.selIndex = timelessData.fallbackWeightMode.idx or 1
- controls.fallbackWeightsButton = new("ButtonControl", {"LEFT", controls.fallbackWeightsList, "RIGHT"}, {5, 0, 66, 18}, "Generate", function()
+ controls.fallbackWeightsButton = new("ButtonControl"):ButtonControl({"LEFT", controls.fallbackWeightsList, "RIGHT"}, {5, 0, 66, 18}, "Generate", function()
setupFallbackWeights()
controls.searchListFallbackButton.label = "^4Fallback Nodes"
end)
@@ -2013,12 +2018,12 @@ function TreeTabClass:FindTimelessJewel()
tooltip:Clear()
tooltip:AddLine(16, "^7Click this button to generate new fallback node weights, replacing your old ones.")
end
- controls.totalMinimumWeight = new("EditControl", {"TOPLEFT", controls.fallbackWeightsList, "BOTTOMLEFT"}, {0, rowSpacing, 200, rowHeight}, "", nil, "%D", nil, function(val)
+ controls.totalMinimumWeight = new("EditControl"):EditControl({"TOPLEFT", controls.fallbackWeightsList, "BOTTOMLEFT"}, {0, rowSpacing, 200, rowHeight}, "", nil, "%D", nil, function(val)
local num = tonumber(val)
timelessData.totalMinimumWeight = num or nil
self.build.modFlag = true
end)
- controls.totalMinimumWeightLabel = new("LabelControl", {"RIGHT", controls.totalMinimumWeight, "LEFT"}, {-labelSpacing, 0, 0, labelHeight}, "^7Total Minimum Weight:")
+ controls.totalMinimumWeightLabel = new("LabelControl"):LabelControl({"RIGHT", controls.totalMinimumWeight, "LEFT"}, {-labelSpacing, 0, 0, labelHeight}, "^7Total Minimum Weight:")
controls.totalMinimumWeight.tooltipFunc = function(tooltip, mode, index, value)
tooltip:Clear()
tooltip:AddLine(16, "^7Optional: Only show results where total weight meets or exceeds this value.")
@@ -2029,7 +2034,7 @@ function TreeTabClass:FindTimelessJewel()
local buttonHeight = 20
local edgePadding = 12
local listYOffset = -(buttonHeight + edgePadding * 2)
- controls.searchList = new("EditControl", { "BOTTOMLEFT", nil, "BOTTOMLEFT" },
+ controls.searchList = new("EditControl"):EditControl({ "BOTTOMLEFT", nil, "BOTTOMLEFT" },
{ edgePadding, listYOffset, listWidth, listHeight }, timelessData.searchList, nil,
"^%C\t\n", nil, function(value)
timelessData.searchList = value
@@ -2040,7 +2045,7 @@ function TreeTabClass:FindTimelessJewel()
controls.searchList.enabled = true
controls.searchList:SetText(timelessData.searchList and timelessData.searchList or "")
- controls.searchListFallback = new("EditControl", { "BOTTOMLEFT", nil, "BOTTOMLEFT" },
+ controls.searchListFallback = new("EditControl"):EditControl({ "BOTTOMLEFT", nil, "BOTTOMLEFT" },
{ edgePadding, listYOffset, listWidth, listHeight },
timelessData.searchListFallback, nil, "^%C\t\n", nil, function(value)
timelessData.searchListFallback = value
@@ -2051,7 +2056,7 @@ function TreeTabClass:FindTimelessJewel()
controls.searchListFallback.enabled = false
controls.searchListFallback:SetText(timelessData.searchListFallback and timelessData.searchListFallback or "")
- controls.searchListButton = new("ButtonControl",
+ controls.searchListButton = new("ButtonControl"):ButtonControl(
{ "BOTTOMLEFT", nil, "BOTTOMLEFT" },
{ edgePadding, listYOffset - listHeight - rowSpacing, 106, buttonHeight }, "^7Desired Nodes", function()
if controls.searchListFallback.shown then
@@ -2070,7 +2075,7 @@ function TreeTabClass:FindTimelessJewel()
end
controls.searchListButton.locked = function() return controls.searchList.shown end
- controls.searchListFallbackButton = new("ButtonControl", {"LEFT", controls.searchListButton, "RIGHT"}, {5, 0, 110, buttonHeight}, "^7Fallback Nodes", function()
+ controls.searchListFallbackButton = new("ButtonControl"):ButtonControl({"LEFT", controls.searchListButton, "RIGHT"}, {5, 0, 110, buttonHeight}, "^7Fallback Nodes", function()
controls.searchList.shown = false
controls.searchList.enabled = false
controls.searchListFallback.shown = true
@@ -2087,11 +2092,11 @@ function TreeTabClass:FindTimelessJewel()
end
controls.searchListFallbackButton.locked = function() return controls.searchListFallback.shown end
- controls.searchResults = new("TimelessJewelListControl", { "BOTTOMLEFT", nil, "BOTTOMLEFT" },
+ controls.searchResults = new("TimelessJewelListControl"):TimelessJewelListControl({ "BOTTOMLEFT", nil, "BOTTOMLEFT" },
{ edgePadding*2 + listWidth, -(buttonHeight + edgePadding * 2), listWidth, listHeight }, self.build)
- self.tradeQueryRequests = new("TradeQueryRequests")
- controls.msg = new("LabelControl", nil, { -280, 5, 0, 20 }, "")
- controls.searchTradeButton = new("ButtonControl", { "BOTTOMRIGHT", controls.searchResults, "TOPRIGHT" }, { 0, -rowSpacing, 170, buttonHeight }, "Open Trade URL", function()
+ self.tradeQueryRequests = new("TradeQueryRequests"):TradeQueryRequests()
+ controls.msg = new("LabelControl"):LabelControl(nil, { -280, 5, 0, 20 }, "")
+ controls.searchTradeButton = new("ButtonControl"):ButtonControl({ "BOTTOMRIGHT", controls.searchResults, "TOPRIGHT" }, { 0, -rowSpacing, 170, buttonHeight }, "Open Trade URL", function()
local seedTrades = {}
local startRow, endRow
if controls.searchResults.highlightIndex and not controls.searchMore.state then
@@ -2210,17 +2215,17 @@ function TreeTabClass:FindTimelessJewel()
tooltip:AddLine(16, "^7After selecting a row You can also shift+click on another row to select a range of rows to search.")
end
- controls.searchTradeLeagueSelect = new("DropDownControl", { "RIGHT", controls.searchTradeButton, "LEFT" },
+ controls.searchTradeLeagueSelect = new("DropDownControl"):DropDownControl({ "RIGHT", controls.searchTradeButton, "LEFT" },
{ -labelSpacing, 0, 140, buttonHeight }, nil, function(idx, val)
self.timelessJewelLeagueSelect = val
end)
- controls.searchTradeLeagueLabel = new("LabelControl", { "TOPRIGHT", controls.searchTradeLeagueSelect, "TOPLEFT" },
+ controls.searchTradeLeagueLabel = new("LabelControl"):LabelControl({ "TOPRIGHT", controls.searchTradeLeagueSelect, "TOPLEFT" },
{ -labelSpacing, 0, 0, labelHeight }, "^7League:")
-- Realm selection
self.realmList = {
"PC", "Sony", "Xbox"
}
- controls.realmSelection = new("DropDownControl", { "BOTTOMLEFT", controls.searchTradeLeagueSelect, "TOPLEFT" },
+ controls.realmSelection = new("DropDownControl"):DropDownControl({ "BOTTOMLEFT", controls.searchTradeLeagueSelect, "TOPLEFT" },
{ 0, -rowSpacing, 50, buttonHeight }, self.realmList, nil)
local function updateLeagues()
local currentRealmId = controls.realmSelection:GetSelValue():lower()
@@ -2274,7 +2279,7 @@ function TreeTabClass:FindTimelessJewel()
-- manually call the function because when initialising, because the
-- function does not get called when the selection index stays the same
controls.realmSelection.selFunc(controls.realmSelection.selIndex)
- controls.realmLabel = new("LabelControl", { "TOPRIGHT", controls.realmSelection, "TOPLEFT" },
+ controls.realmLabel = new("LabelControl"):LabelControl({ "TOPRIGHT", controls.realmSelection, "TOPLEFT" },
{ -labelSpacing, 0, 0, labelHeight }, "^7Realm:")
-- Buyout selection
@@ -2285,7 +2290,7 @@ function TreeTabClass:FindTimelessJewel()
"In person (online)",
"Any (includes offline)"
}
- controls.tradeTypeSelection = new("DropDownControl", { "BOTTOMRIGHT", controls.searchTradeButton, "TOPRIGHT" },
+ controls.tradeTypeSelection = new("DropDownControl"):DropDownControl({ "BOTTOMRIGHT", controls.searchTradeButton, "TOPRIGHT" },
{ 0, -rowSpacing, 205, buttonHeight }, tradeTypes, function(index, value)
self.tradeTypeIndex = index
end)
@@ -2294,7 +2299,7 @@ function TreeTabClass:FindTimelessJewel()
controls.tradeTypeSelection:SetSel(self.tradeTypeIndex)
-- Checkbox to search a lot at once, or just a few
- controls.searchMore = new("CheckBoxControl", { "BOTTOMRIGHT", controls.tradeTypeSelection, "TOPRIGHT" },
+ controls.searchMore = new("CheckBoxControl"):CheckBoxControl({ "BOTTOMRIGHT", controls.tradeTypeSelection, "TOPRIGHT" },
{ 0, -rowSpacing, 19 }, nil, function(state)
self.lastSearchMore = state
end,
@@ -2304,7 +2309,7 @@ function TreeTabClass:FindTimelessJewel()
if self.lastSearchMore then
controls.searchMore.state = self.lastSearchMore
end
- controls.searchMoreLabel = new("LabelControl", { "RIGHT", controls.searchMore, "LEFT" },
+ controls.searchMoreLabel = new("LabelControl"):LabelControl({ "RIGHT", controls.searchMore, "LEFT" },
{ -labelSpacing, 0, 0, labelHeight }, "^7Search Maximum Amount:")
-- Helper function to search a single socket
@@ -2626,17 +2631,17 @@ function TreeTabClass:FindTimelessJewel()
local buttonDivider = 10
local buttonWidth = 80
-- reset button anchored to middle of panel and other buttons anchored to it
- controls.resetButton = new("ButtonControl", {"BOTTOMLEFT", nil, "BOTTOMLEFT"}, {panelWidth / 2 - buttonWidth/2, -edgePadding, buttonWidth, buttonHeight}, "Reset", function()
+ controls.resetButton = new("ButtonControl"):ButtonControl({"BOTTOMLEFT", nil, "BOTTOMLEFT"}, {panelWidth / 2 - buttonWidth/2, -edgePadding, buttonWidth, buttonHeight}, "Reset", function()
updateSearchList("", true)
updateSearchList("", false)
wipeTable(timelessData.searchResults)
controls.searchTradeButton.enabled = false
clearProtected()
end)
- controls.closeButton = new("ButtonControl", {"LEFT", controls.resetButton, "RIGHT"}, {buttonDivider, 0, buttonWidth, buttonHeight}, "Cancel", function()
+ controls.closeButton = new("ButtonControl"):ButtonControl({"LEFT", controls.resetButton, "RIGHT"}, {buttonDivider, 0, buttonWidth, buttonHeight}, "Cancel", function()
main:ClosePopup()
end)
- controls.searchButton = new("ButtonControl", {"RIGHT", controls.resetButton, "LEFT"}, {-buttonDivider, 0, buttonWidth, buttonHeight}, "Search", function()
+ controls.searchButton = new("ButtonControl"):ButtonControl({"RIGHT", controls.resetButton, "LEFT"}, {-buttonDivider, 0, buttonWidth, buttonHeight}, "Search", function()
if timelessData.jewelSocket.id == -1 then
wipeTable(timelessData.searchResults)
wipeTable(timelessData.sharedResults)
diff --git a/src/Classes/UndoHandler.lua b/src/Classes/UndoHandler.lua
index 6759de6cf06..3103b2faa26 100644
--- a/src/Classes/UndoHandler.lua
+++ b/src/Classes/UndoHandler.lua
@@ -9,10 +9,14 @@
local t_insert = table.insert
local t_remove = table.remove
-local UndoHandlerClass = newClass("UndoHandler", function(self)
+---@class UndoHandler
+local UndoHandlerClass = newClass("UndoHandler")
+
+function UndoHandlerClass:UndoHandler()
self.undo = { }
self.redo = { }
-end)
+ return self
+end
-- Initialises the undo/redo buffers
-- Should be called after the current state is first loaded/initialised
diff --git a/src/Data/Bases/amulet.lua b/src/Data/Bases/amulet.lua
index 5a2878586f0..ca3f8e0c7d7 100644
--- a/src/Data/Bases/amulet.lua
+++ b/src/Data/Bases/amulet.lua
@@ -1,7 +1,6 @@
-- This file is automatically generated, do not edit!
-- Item data (c) Grinding Gear Games
-local itemBases = ...
-
+return function(itemBases)
itemBases["Paua Amulet"] = {
type = "Amulet",
@@ -825,3 +824,4 @@ itemBases["Monkey Paw Talisman (Frenzy)"] = {
"- The Wolven King",
},
}
+end
diff --git a/src/Data/Bases/axe.lua b/src/Data/Bases/axe.lua
index 852c9f9f948..9149eab09c8 100644
--- a/src/Data/Bases/axe.lua
+++ b/src/Data/Bases/axe.lua
@@ -1,7 +1,6 @@
-- This file is automatically generated, do not edit!
-- Item data (c) Grinding Gear Games
-local itemBases = ...
-
+return function(itemBases)
itemBases["Rusted Hatchet"] = {
type = "One Handed Axe",
socketLimit = 3,
@@ -494,3 +493,4 @@ itemBases["Apex Cleaver"] = {
weapon = { PhysicalMin = 78, PhysicalMax = 121, CritChanceBase = 5, AttackRateBase = 1.35, Range = 13, },
req = { level = 70, str = 139, dex = 65, },
}
+end
diff --git a/src/Data/Bases/belt.lua b/src/Data/Bases/belt.lua
index 7c3eaea9f23..b158d4f32ee 100644
--- a/src/Data/Bases/belt.lua
+++ b/src/Data/Bases/belt.lua
@@ -1,7 +1,6 @@
-- This file is automatically generated, do not edit!
-- Item data (c) Grinding Gear Games
-local itemBases = ...
-
+return function(itemBases)
itemBases["Rustic Sash"] = {
type = "Belt",
tags = { belt = true, default = true, },
@@ -115,3 +114,4 @@ itemBases["Golden Obi"] = {
implicitModTypes = { { "drop" }, },
req = { },
}
+end
diff --git a/src/Data/Bases/body.lua b/src/Data/Bases/body.lua
index 56767af68bd..040efcb3bad 100644
--- a/src/Data/Bases/body.lua
+++ b/src/Data/Bases/body.lua
@@ -1,7 +1,6 @@
-- This file is automatically generated, do not edit!
-- Item data (c) Grinding Gear Games
-local itemBases = ...
-
+return function(itemBases)
itemBases["Plate Vest"] = {
type = "Body Armour",
@@ -1252,3 +1251,4 @@ itemBases["Golden Mantle"] = {
armour = { ArmourBaseMin = 75, ArmourBaseMax = 86, EvasionBaseMin = 75, EvasionBaseMax = 86, EnergyShieldBaseMin = 17, EnergyShieldBaseMax = 19, },
req = { level = 20, str = 8, dex = 8, int = 8, },
}
+end
diff --git a/src/Data/Bases/boots.lua b/src/Data/Bases/boots.lua
index 384b66bf700..3be89bfde92 100644
--- a/src/Data/Bases/boots.lua
+++ b/src/Data/Bases/boots.lua
@@ -1,7 +1,6 @@
-- This file is automatically generated, do not edit!
-- Item data (c) Grinding Gear Games
-local itemBases = ...
-
+return function(itemBases)
itemBases["Iron Greaves"] = {
type = "Boots",
@@ -833,3 +832,4 @@ itemBases["Golden Caligae"] = {
armour = { },
req = { level = 12, },
}
+end
diff --git a/src/Data/Bases/bow.lua b/src/Data/Bases/bow.lua
index d7dc14f392d..b85e9b8d8d9 100644
--- a/src/Data/Bases/bow.lua
+++ b/src/Data/Bases/bow.lua
@@ -1,7 +1,6 @@
-- This file is automatically generated, do not edit!
-- Item data (c) Grinding Gear Games
-local itemBases = ...
-
+return function(itemBases)
itemBases["Crude Bow"] = {
type = "Bow",
socketLimit = 6,
@@ -278,3 +277,4 @@ itemBases["Ethereal Bow"] = {
weapon = { PhysicalMin = 5, PhysicalMax = 9, CritChanceBase = 6, AttackRateBase = 1.5, Range = 120, },
req = { dex = 14, },
}
+end
diff --git a/src/Data/Bases/claw.lua b/src/Data/Bases/claw.lua
index 5ff7fc574a3..5169d828d9c 100644
--- a/src/Data/Bases/claw.lua
+++ b/src/Data/Bases/claw.lua
@@ -1,7 +1,6 @@
-- This file is automatically generated, do not edit!
-- Item data (c) Grinding Gear Games
-local itemBases = ...
-
+return function(itemBases)
itemBases["Nailed Fist"] = {
type = "Claw",
socketLimit = 3,
@@ -282,3 +281,4 @@ itemBases["Void Fangs"] = {
weapon = { PhysicalMin = 22, PhysicalMax = 41, CritChanceBase = 7, AttackRateBase = 1.6, Range = 11, },
req = { level = 70, dex = 113, int = 113, },
}
+end
diff --git a/src/Data/Bases/dagger.lua b/src/Data/Bases/dagger.lua
index ea79d33b8de..12ea8db272f 100644
--- a/src/Data/Bases/dagger.lua
+++ b/src/Data/Bases/dagger.lua
@@ -1,7 +1,6 @@
-- This file is automatically generated, do not edit!
-- Item data (c) Grinding Gear Games
-local itemBases = ...
-
+return function(itemBases)
itemBases["Glass Shank"] = {
type = "Dagger",
socketLimit = 3,
@@ -340,3 +339,4 @@ itemBases["Infernal Blade"] = {
weapon = { PhysicalMin = 21, PhysicalMax = 85, CritChanceBase = 8.5, AttackRateBase = 1.45, Range = 10, },
req = { level = 70, dex = 121, int = 121, },
}
+end
diff --git a/src/Data/Bases/fishing.lua b/src/Data/Bases/fishing.lua
index 322a64c0272..159a3264b4e 100644
--- a/src/Data/Bases/fishing.lua
+++ b/src/Data/Bases/fishing.lua
@@ -1,7 +1,6 @@
-- This file is automatically generated, do not edit!
-- Item data (c) Grinding Gear Games
-local itemBases = ...
-
+return function(itemBases)
itemBases["Fishing Rod"] = {
type = "Fishing Rod",
socketLimit = 4,
@@ -10,3 +9,4 @@ itemBases["Fishing Rod"] = {
weapon = { PhysicalMin = 8, PhysicalMax = 15, CritChanceBase = 5, AttackRateBase = 1.2, Range = 13, },
req = { str = 8, dex = 8, },
}
+end
diff --git a/src/Data/Bases/flask.lua b/src/Data/Bases/flask.lua
index c9055867280..8ccabe31e59 100644
--- a/src/Data/Bases/flask.lua
+++ b/src/Data/Bases/flask.lua
@@ -1,7 +1,6 @@
-- This file is automatically generated, do not edit!
-- Item data (c) Grinding Gear Games
-local itemBases = ...
-
+return function(itemBases)
itemBases["Small Life Flask"] = {
type = "Flask",
subType = "Life",
@@ -394,3 +393,4 @@ itemBases["Iron Flask"] = {
flask = { duration = 4, chargesUsed = 40, chargesMax = 60, buff = { "+200 to Ward" }, },
req = { level = 27, },
}
+end
diff --git a/src/Data/Bases/gloves.lua b/src/Data/Bases/gloves.lua
index b0c2a331b68..3d0967e9b0e 100644
--- a/src/Data/Bases/gloves.lua
+++ b/src/Data/Bases/gloves.lua
@@ -1,7 +1,6 @@
-- This file is automatically generated, do not edit!
-- Item data (c) Grinding Gear Games
-local itemBases = ...
-
+return function(itemBases)
itemBases["Iron Gauntlets"] = {
type = "Gloves",
@@ -823,3 +822,4 @@ itemBases["Golden Bracers"] = {
armour = { },
req = { level = 12, },
}
+end
diff --git a/src/Data/Bases/graft.lua b/src/Data/Bases/graft.lua
index f15a56ebeaf..9853754751b 100644
--- a/src/Data/Bases/graft.lua
+++ b/src/Data/Bases/graft.lua
@@ -1,7 +1,6 @@
-- This file is automatically generated, do not edit!
-- Item data (c) Grinding Gear Games
-local itemBases = ...
-
+return function(itemBases)
itemBases["Battering Uulgraft"] = {
type = "Graft",
tags = { default = true, graft = true, graft_damaging_skill = true, graft_uulnetol = true, graft_uulnetol_hand_slam = true, },
@@ -114,3 +113,4 @@ itemBases["Aegis Tulgraft"] = {
implicitModTypes = { { "elemental", "resistance" }, },
req = { },
}
+end
diff --git a/src/Data/Bases/helmet.lua b/src/Data/Bases/helmet.lua
index 1ca0e345154..85abc9794b1 100644
--- a/src/Data/Bases/helmet.lua
+++ b/src/Data/Bases/helmet.lua
@@ -1,7 +1,6 @@
-- This file is automatically generated, do not edit!
-- Item data (c) Grinding Gear Games
-local itemBases = ...
-
+return function(itemBases)
itemBases["Iron Hat"] = {
type = "Helmet",
@@ -970,3 +969,4 @@ itemBases["Golden Wreath"] = {
armour = { },
req = { level = 12, },
}
+end
diff --git a/src/Data/Bases/jewel.lua b/src/Data/Bases/jewel.lua
index 522d736a64c..26e5d69d528 100644
--- a/src/Data/Bases/jewel.lua
+++ b/src/Data/Bases/jewel.lua
@@ -1,7 +1,6 @@
-- This file is automatically generated, do not edit!
-- Item data (c) Grinding Gear Games
-local itemBases = ...
-
+return function(itemBases)
itemBases["Crimson Jewel"] = {
type = "Jewel",
tags = { default = true, jewel = true, not_dex = true, not_for_sale = true, not_int = true, strjewel = true, },
@@ -107,3 +106,4 @@ itemBases["Corvine Charm"] = {
implicitModTypes = { },
req = { },
}
+end
diff --git a/src/Data/Bases/mace.lua b/src/Data/Bases/mace.lua
index 8eb8ecdc2f2..838fff84a9c 100644
--- a/src/Data/Bases/mace.lua
+++ b/src/Data/Bases/mace.lua
@@ -1,7 +1,6 @@
-- This file is automatically generated, do not edit!
-- Item data (c) Grinding Gear Games
-local itemBases = ...
-
+return function(itemBases)
itemBases["Driftwood Club"] = {
type = "One Handed Mace",
socketLimit = 3,
@@ -814,3 +813,4 @@ itemBases["Impact Force Propagator"] = {
weapon = { PhysicalMin = 81, PhysicalMax = 135, CritChanceBase = 5, AttackRateBase = 1.15, Range = 13, },
req = { level = 70, str = 220, },
}
+end
diff --git a/src/Data/Bases/quiver.lua b/src/Data/Bases/quiver.lua
index 02a16117473..10ef537f67a 100644
--- a/src/Data/Bases/quiver.lua
+++ b/src/Data/Bases/quiver.lua
@@ -1,7 +1,6 @@
-- This file is automatically generated, do not edit!
-- Item data (c) Grinding Gear Games
-local itemBases = ...
-
+return function(itemBases)
itemBases["Cured Quiver"] = {
type = "Quiver",
hidden = true,
@@ -239,3 +238,4 @@ itemBases["Artillery Quiver"] = {
implicitModTypes = { { "speed" }, },
req = { level = 74, },
}
+end
diff --git a/src/Data/Bases/ring.lua b/src/Data/Bases/ring.lua
index 0f1d9fe4150..27b9cb1f894 100644
--- a/src/Data/Bases/ring.lua
+++ b/src/Data/Bases/ring.lua
@@ -1,7 +1,6 @@
-- This file is automatically generated, do not edit!
-- Item data (c) Grinding Gear Games
-local itemBases = ...
-
+return function(itemBases)
itemBases["Iron Ring"] = {
type = "Ring",
@@ -402,3 +401,4 @@ itemBases["Jet Ring"] = {
implicitModTypes = { { "defences" }, },
req = { },
}
+end
diff --git a/src/Data/Bases/shield.lua b/src/Data/Bases/shield.lua
index 74ae8db48c4..f566c295259 100644
--- a/src/Data/Bases/shield.lua
+++ b/src/Data/Bases/shield.lua
@@ -1,7 +1,6 @@
-- This file is automatically generated, do not edit!
-- Item data (c) Grinding Gear Games
-local itemBases = ...
-
+return function(itemBases)
itemBases["Splintered Tower Shield"] = {
type = "Shield",
@@ -1076,3 +1075,4 @@ itemBases["Golden Flame"] = {
armour = { BlockChance = 20, MovementPenalty = 3, },
req = { level = 15, },
}
+end
diff --git a/src/Data/Bases/staff.lua b/src/Data/Bases/staff.lua
index 96311873104..cd7198ec9e4 100644
--- a/src/Data/Bases/staff.lua
+++ b/src/Data/Bases/staff.lua
@@ -1,7 +1,6 @@
-- This file is automatically generated, do not edit!
-- Item data (c) Grinding Gear Games
-local itemBases = ...
-
+return function(itemBases)
itemBases["Gnarled Branch"] = {
type = "Staff",
socketLimit = 6,
@@ -295,3 +294,4 @@ itemBases["Eventuality Rod"] = {
weapon = { PhysicalMin = 78, PhysicalMax = 144, CritChanceBase = 8.3, AttackRateBase = 1.25, Range = 13, },
req = { level = 70, str = 117, int = 117, },
}
+end
diff --git a/src/Data/Bases/sword.lua b/src/Data/Bases/sword.lua
index 5021a0f0b85..97916e408c2 100644
--- a/src/Data/Bases/sword.lua
+++ b/src/Data/Bases/sword.lua
@@ -1,7 +1,6 @@
-- This file is automatically generated, do not edit!
-- Item data (c) Grinding Gear Games
-local itemBases = ...
-
+return function(itemBases)
itemBases["Rusted Sword"] = {
type = "One Handed Sword",
@@ -871,3 +870,4 @@ itemBases["Energy Blade Two Handed"] = {
weapon = { PhysicalMin = 0, PhysicalMax = 0, CritChanceBase = 7, AttackRateBase = 1.6, Range = 13, },
req = { },
}
+end
diff --git a/src/Data/Bases/tincture.lua b/src/Data/Bases/tincture.lua
index 1c57fc945a9..fbaf4e064c6 100644
--- a/src/Data/Bases/tincture.lua
+++ b/src/Data/Bases/tincture.lua
@@ -1,7 +1,6 @@
-- This file is automatically generated, do not edit!
-- Item data (c) Grinding Gear Games
-local itemBases = ...
-
+return function(itemBases)
itemBases["Prismatic Tincture"] = {
type = "Tincture",
tags = { default = true, tincture = true, },
@@ -82,3 +81,4 @@ itemBases["Sporebloom Tincture"] = {
tincture = { manaBurn = 0.9, cooldown = 8 },
req = { },
}
+end
diff --git a/src/Data/Bases/wand.lua b/src/Data/Bases/wand.lua
index 3f7ae8c2c2a..a691d6eddf7 100644
--- a/src/Data/Bases/wand.lua
+++ b/src/Data/Bases/wand.lua
@@ -1,7 +1,6 @@
-- This file is automatically generated, do not edit!
-- Item data (c) Grinding Gear Games
-local itemBases = ...
-
+return function(itemBases)
itemBases["Driftwood Wand"] = {
type = "Wand",
socketLimit = 3,
@@ -285,3 +284,4 @@ itemBases["Convening Wand"] = {
weapon = { PhysicalMin = 25, PhysicalMax = 47, CritChanceBase = 8, AttackRateBase = 1.5, Range = 120, },
req = { level = 50, int = 183, },
}
+end
diff --git a/src/Data/BeastCraft.lua b/src/Data/BeastCraft.lua
index d1843c7ca6f..d39c7093e1d 100644
--- a/src/Data/BeastCraft.lua
+++ b/src/Data/BeastCraft.lua
@@ -2,12 +2,12 @@
-- Item data (c) Grinding Gear Games
return {
- ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 700 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [1265282021] = { "Grants Level 20 Aspect of the Cat Skill" }, } },
- ["GrantsBirdAspectCrafted"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 695 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [3914740665] = { "Grants Level 20 Aspect of the Avian Skill" }, } },
- ["GrantsSpiderAspectCrafted"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 725 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 20 Aspect of the Spider Skill" }, } },
- ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 702 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 20 Aspect of the Crab Skill" }, } },
- ["GrantsCatAspectCrafted30"] = { type = "Suffix", affix = "of Farrul", "Grants Level 30 Aspect of the Cat Skill", statOrder = { 700 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [1265282021] = { "Grants Level 30 Aspect of the Cat Skill" }, } },
- ["GrantsBirdAspectCrafted30"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 30 Aspect of the Avian Skill", statOrder = { 695 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [3914740665] = { "Grants Level 30 Aspect of the Avian Skill" }, } },
- ["GrantsSpiderAspectCrafted30"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 30 Aspect of the Spider Skill", statOrder = { 725 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 30 Aspect of the Spider Skill" }, } },
- ["GrantsCrabAspectCrafted30"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 30 Aspect of the Crab Skill", statOrder = { 702 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 30 Aspect of the Crab Skill" }, } },
+ ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 695 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [1265282021] = { "Grants Level 20 Aspect of the Cat Skill" }, } },
+ ["GrantsBirdAspectCrafted"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 690 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [3914740665] = { "Grants Level 20 Aspect of the Avian Skill" }, } },
+ ["GrantsSpiderAspectCrafted"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 720 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 20 Aspect of the Spider Skill" }, } },
+ ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 697 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 20 Aspect of the Crab Skill" }, } },
+ ["GrantsCatAspectCrafted30"] = { type = "Suffix", affix = "of Farrul", "Grants Level 30 Aspect of the Cat Skill", statOrder = { 695 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [1265282021] = { "Grants Level 30 Aspect of the Cat Skill" }, } },
+ ["GrantsBirdAspectCrafted30"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 30 Aspect of the Avian Skill", statOrder = { 690 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [3914740665] = { "Grants Level 30 Aspect of the Avian Skill" }, } },
+ ["GrantsSpiderAspectCrafted30"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 30 Aspect of the Spider Skill", statOrder = { 720 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 30 Aspect of the Spider Skill" }, } },
+ ["GrantsCrabAspectCrafted30"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 30 Aspect of the Crab Skill", statOrder = { 697 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 30 Aspect of the Crab Skill" }, } },
}
\ No newline at end of file
diff --git a/src/Data/BossSkills.lua b/src/Data/BossSkills.lua
index f67e5a928e1..e1e5754b31b 100644
--- a/src/Data/BossSkills.lua
+++ b/src/Data/BossSkills.lua
@@ -5,6 +5,7 @@
-- Boss Skill data (c) Grinding Gear Games
--
return {
+ bossSkills = {
["Atziri Flameblast"] = {
DamageType = "Spell",
DamageMultipliers = {
@@ -20,7 +21,7 @@ return {
speed = 25000,
critChance = 0,
earlierUber = true,
- tooltip = "The Uber variant has 10 ^xB97123Fire^7 penetration (Applied on Pinnacle And Uber)"
+ tooltip = "The Uber variant has 10 ^xB97123Fire^7 penetration (Applied on Pinnacle And Uber)",
},
["Shaper Ball"] = {
DamageType = "SpellProjectile",
@@ -34,7 +35,7 @@ return {
ColdPen = 40
},
speed = 1400,
- tooltip = "Allocating Cosmic Wounds increases the penetration to 40% (Applied on Uber) and adds 2 projectiles"
+ tooltip = "Allocating Cosmic Wounds increases the penetration to 40% (Applied on Uber) and adds 2 projectiles",
},
["Shaper Slam"] = {
DamageType = "Melee",
@@ -53,7 +54,7 @@ return {
CannotBeSuppressed = "flag"
}
},
- tooltip = "Cannot be Evaded. Allocating Cosmic Wounds increases Damage by a further 100% (Applied on Uber) and cannot be blocked or dodged"
+ tooltip = "Cannot be Evaded. Allocating Cosmic Wounds increases Damage by a further 100% (Applied on Uber) and cannot be blocked or dodged",
},
["Shaper Beam"] = {
DamageType = "DamageOverTime",
@@ -64,7 +65,7 @@ return {
},
speed = 1000,
critChance = 0,
- tooltip = "Damage Over Time skill"
+ tooltip = "Damage Over Time skill",
},
["Sirus Meteor"] = {
DamageType = "Spell",
@@ -85,7 +86,7 @@ return {
PhysicalDamageSkillConvertToLightning = 25
}
},
- tooltip = "Earlier ones with less walls do less damage. Allocating The Perfect Storm increases Damage by a further 50% (Applied on Uber)"
+ tooltip = "Earlier ones with less walls do less damage. Allocating The Perfect Storm increases Damage by a further 50% (Applied on Uber)",
},
["Cortex Ground Degen"] = {
DamageType = "DamageOverTime",
@@ -94,7 +95,7 @@ return {
},
speed = 1630,
critChance = 0,
- tooltip = "Damage Over Time skill"
+ tooltip = "Damage Over Time skill",
},
["Exarch Ball"] = {
DamageType = "Spell",
@@ -115,7 +116,7 @@ return {
CannotBeSuppressed = "flag"
}
},
- tooltip = "Spawns 8-18 waves of balls depending on which fight and which ball phase, Cannot be Blocked, Dodged, or Suppressed"
+ tooltip = "Spawns 8-18 waves of balls depending on which fight and which ball phase, Cannot be Blocked, Dodged, or Suppressed",
},
["Eater Beam"] = {
DamageType = "Spell",
@@ -123,7 +124,7 @@ return {
Lightning = { 12.164923902598, 0.24329847805197 }
},
speed = 2500,
- tooltip = "Allocating Insatiable Appetite causes the beam to always shock for at least 30%"
+ tooltip = "Allocating Insatiable Appetite causes the beam to always shock for at least 30%",
},
["Maven Fireball"] = {
DamageType = "SpellProjectile",
@@ -138,7 +139,7 @@ return {
FirePen = 30
},
speed = 3000,
- tooltip = "Allocating Throw the Gauntlet increases Damage by a further 100% (Applied on Uber) and causes the fireball to have 30 ^xB97123Fire^7 penetration (Applied on Uber)"
+ tooltip = "Allocating Throw the Gauntlet increases Damage by a further 100% (Applied on Uber) and causes the fireball to have 30 ^xB97123Fire^7 penetration (Applied on Uber)",
},
["Maven Memory Game"] = {
DamageType = "Spell",
@@ -165,9 +166,11 @@ return {
PhysicalDamageSkillConvertToLightning = 100
}
},
- tooltip = "Cannot be Blocked, Dodged, or Suppressed. \n It is three separate hits, and has a large DoT effect. Neither is taken into account here. \n i.e. Hits before death should be more than 3 to survive"
+ tooltip = "Cannot be Blocked, Dodged, or Suppressed. \n It is three separate hits, and has a large DoT effect. Neither is taken into account here. \n i.e. Hits before death should be more than 3 to survive",
},
-},{
+ },
+
+ bossSkillsList = {
{ val = "None", label = "None" },
{ val = "Atziri Flameblast", label = "Atziri Flameblast" },
{ val = "Shaper Ball", label = "Shaper Ball" },
@@ -178,5 +181,5 @@ return {
{ val = "Exarch Ball", label = "Exarch Ball" },
{ val = "Eater Beam", label = "Eater Beam" },
{ val = "Maven Fireball", label = "Maven Fireball" },
- { val = "Maven Memory Game", label = "Maven Memory Game" }
-}
\ No newline at end of file
+ { val = "Maven Memory Game", label = "Maven Memory Game" } },
+}
diff --git a/src/Data/Bosses.lua b/src/Data/Bosses.lua
index 13f07d5cb25..11feafcf9ef 100644
--- a/src/Data/Bosses.lua
+++ b/src/Data/Bosses.lua
@@ -4,120 +4,120 @@
-- Boss Data
-- Boss data (c) Grinding Gear Games
--
-local bosses = ...
+return {
+ ["Venarius"] = {
+ armourMult = 50,
+ evasionMult = 0,
+ isUber = true,
+ },
+ ["EaterOfWorlds"] = {
+ armourMult = 0,
+ evasionMult = 0,
+ isUber = true,
+ },
+ ["SearingExarch"] = {
+ armourMult = 0,
+ evasionMult = 50,
+ isUber = true,
+ },
+ ["Maven"] = {
+ armourMult = 25,
+ evasionMult = 0,
+ isUber = true,
+ },
+ ["Sirus"] = {
+ armourMult = 100,
+ evasionMult = 0,
+ isUber = true,
+ },
+ ["Shaper"] = {
+ armourMult = 0,
+ evasionMult = 33,
+ isUber = true,
+ },
+ ["Elder"] = {
+ armourMult = 0,
+ evasionMult = 33,
+ isUber = true,
+ },
-bosses["Venarius"] = {
- armourMult = 50,
- evasionMult = 0,
- isUber = true,
-}
-bosses["EaterOfWorlds"] = {
- armourMult = 0,
- evasionMult = 0,
- isUber = true,
-}
-bosses["SearingExarch"] = {
- armourMult = 0,
- evasionMult = 50,
- isUber = true,
-}
-bosses["Maven"] = {
- armourMult = 25,
- evasionMult = 0,
- isUber = true,
-}
-bosses["Sirus"] = {
- armourMult = 100,
- evasionMult = 0,
- isUber = true,
-}
-bosses["Shaper"] = {
- armourMult = 0,
- evasionMult = 33,
- isUber = true,
-}
-bosses["Elder"] = {
- armourMult = 0,
- evasionMult = 33,
- isUber = true,
-}
+ ["BlackStar"] = {
+ armourMult = 0,
+ evasionMult = 50,
+ isUber = false,
+ },
+ ["InfiniteHunger"] = {
+ armourMult = 0,
+ evasionMult = 0,
+ isUber = false,
+ },
-bosses["BlackStar"] = {
- armourMult = 0,
- evasionMult = 50,
- isUber = false,
-}
-bosses["InfiniteHunger"] = {
- armourMult = 0,
- evasionMult = 0,
- isUber = false,
-}
-
-bosses["Atziri"] = {
- armourMult = 25,
- evasionMult = 50,
- isUber = false,
-}
+ ["Atziri"] = {
+ armourMult = 25,
+ evasionMult = 50,
+ isUber = false,
+ },
-bosses["Phoenix"] = {
- armourMult = 50,
- evasionMult = 50,
- isUber = false,
-}
-bosses["Hydra"] = {
- armourMult = 50,
- evasionMult = 100,
- isUber = false,
-}
-bosses["Minotaur"] = {
- armourMult = 100,
- evasionMult = 0,
- isUber = false,
-}
-bosses["Chimera"] = {
- armourMult = 50,
- evasionMult = 50,
- isUber = false,
-}
+ ["Phoenix"] = {
+ armourMult = 50,
+ evasionMult = 50,
+ isUber = false,
+ },
+ ["Hydra"] = {
+ armourMult = 50,
+ evasionMult = 100,
+ isUber = false,
+ },
+ ["Minotaur"] = {
+ armourMult = 100,
+ evasionMult = 0,
+ isUber = false,
+ },
+ ["Chimera"] = {
+ armourMult = 50,
+ evasionMult = 50,
+ isUber = false,
+ },
-bosses["Enslaver"] = {
- armourMult = 75,
- evasionMult = 33,
- isUber = false,
-}
-bosses["Eradicator"] = {
- armourMult = 0,
- evasionMult = 33,
- isUber = false,
-}
-bosses["Constrictor"] = {
- armourMult = 100,
- evasionMult = 33,
- isUber = false,
-}
-bosses["Purifier"] = {
- armourMult = 75,
- evasionMult = 33,
- isUber = false,
-}
+ ["Enslaver"] = {
+ armourMult = 75,
+ evasionMult = 33,
+ isUber = false,
+ },
+ ["Eradicator"] = {
+ armourMult = 0,
+ evasionMult = 33,
+ isUber = false,
+ },
+ ["Constrictor"] = {
+ armourMult = 100,
+ evasionMult = 33,
+ isUber = false,
+ },
+ ["Purifier"] = {
+ armourMult = 75,
+ evasionMult = 33,
+ isUber = false,
+ },
-bosses["Baran"] = {
- armourMult = 100,
- evasionMult = 0,
- isUber = false,
-}
-bosses["Veritania"] = {
- armourMult = 100,
- evasionMult = 0,
- isUber = false,
-}
-bosses["AlHezmin"] = {
- armourMult = 100,
- evasionMult = 0,
- isUber = false,
-}
-bosses["Drox"] = {
- armourMult = 100,
- evasionMult = 0,
- isUber = false,
+ ["Baran"] = {
+ armourMult = 100,
+ evasionMult = 0,
+ isUber = false,
+ },
+ ["Veritania"] = {
+ armourMult = 100,
+ evasionMult = 0,
+ isUber = false,
+ },
+ ["AlHezmin"] = {
+ armourMult = 100,
+ evasionMult = 0,
+ isUber = false,
+ },
+ ["Drox"] = {
+ armourMult = 100,
+ evasionMult = 0,
+ isUber = false,
+ },
}
diff --git a/src/Data/Minions.lua b/src/Data/Minions.lua
index b03befd6a77..2157bc35a64 100644
--- a/src/Data/Minions.lua
+++ b/src/Data/Minions.lua
@@ -4,1864 +4,1868 @@
-- Minion Data
-- Monster data (c) Grinding Gear Games
--
-local minions, mod = ...
-minions["RaisedZombie"] = {
- name = "Raised Zombie",
- monsterTags = { "animal_claw_weapon", "fast_movement", "flesh_armour", "is_unarmed", "medium_height", "melee", "physical_affinity", "red_blood", "undead", "zombie", },
- life = 3.75,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 1.65,
- damageSpread = 0.4,
- attackTime = 1.17,
- attackRange = 11,
- accuracy = 3.4,
- limit = "ActiveZombieLimit",
- skillList = {
- "Melee",
- "ZombieSlam",
- "GAZombieCorpseGroundImpact",
- },
- modList = {
- mod("Armour", "INC", 40, 0, 0), -- MonsterImplicitDamageReduction1 [physical_damage_reduction_rating_+% = 40]
- mod("StunThreshold", "INC", 30, 0, 0), -- RaiseZombieStunThreshold [stun_threshold_+% = 30]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- set_monster_no_drops_or_experience [set_monster_no_drops_or_experience = 1]
- },
-}
+return function(mod, flag)
+ ---@class MinionData
+ local minions = {}
+ minions["RaisedZombie"] = {
+ name = "Raised Zombie",
+ monsterTags = { "animal_claw_weapon", "fast_movement", "flesh_armour", "is_unarmed", "medium_height", "melee", "physical_affinity", "red_blood", "undead", "zombie", },
+ life = 3.75,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 1.65,
+ damageSpread = 0.4,
+ attackTime = 1.17,
+ attackRange = 11,
+ accuracy = 3.4,
+ limit = "ActiveZombieLimit",
+ skillList = {
+ "Melee",
+ "ZombieSlam",
+ "GAZombieCorpseGroundImpact",
+ },
+ modList = {
+ mod("Armour", "INC", 40, 0, 0), -- MonsterImplicitDamageReduction1 [physical_damage_reduction_rating_+% = 40]
+ mod("StunThreshold", "INC", 30, 0, 0), -- RaiseZombieStunThreshold [stun_threshold_+% = 30]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_monster_no_drops_or_experience [set_monster_no_drops_or_experience = 1]
+ },
+ }
-minions["SummonedChaosGolem"] = {
- name = "Chaos Golem",
- monsterTags = { "bludgeoning_weapon", "caster", "chaos_affinity", "construct", "fast_movement", "ghost_blood", "is_unarmed", "large_model", "medium_height", "melee", "not_dex", "physical_affinity", "stone_armour", },
- life = 6.9,
- energyShield = 0.2,
- armour = 0.5,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 60,
- damage = 2.9,
- damageSpread = 0.2,
- attackTime = 1,
- attackRange = 8,
- accuracy = 3.4,
- limit = "ActiveGolemLimit",
- skillList = {
- "Melee",
- "SandstormChaosElementalSummoned",
- "ChaosElementalCascadeSummoned",
- "SandstormChaosElementalSummonedEmpowered",
- },
- modList = {
- -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
- mod("LifeRegenPercent", "BASE", 1, 0, 0), -- SummonedGolemLifeRegeneration [life_regeneration_rate_per_minute_% = 60]
- -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
- -- CannotBeAugmented [cant_possess_this = 1]
- -- CannotBeAugmented [cant_touch_this = 1]
- -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
- -- CannotBeAugmented [cannot_be_afflicted = 1]
- -- CannotBeAugmented [cannot_have_affliction_mods = 1]
- },
-}
+ minions["SummonedChaosGolem"] = {
+ name = "Chaos Golem",
+ monsterTags = { "bludgeoning_weapon", "caster", "chaos_affinity", "construct", "fast_movement", "ghost_blood", "is_unarmed", "large_model", "medium_height", "melee", "not_dex", "physical_affinity", "stone_armour", },
+ life = 6.9,
+ energyShield = 0.2,
+ armour = 0.5,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 60,
+ damage = 2.9,
+ damageSpread = 0.2,
+ attackTime = 1,
+ attackRange = 8,
+ accuracy = 3.4,
+ limit = "ActiveGolemLimit",
+ skillList = {
+ "Melee",
+ "SandstormChaosElementalSummoned",
+ "ChaosElementalCascadeSummoned",
+ "SandstormChaosElementalSummonedEmpowered",
+ },
+ modList = {
+ -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
+ mod("LifeRegenPercent", "BASE", 1, 0, 0), -- SummonedGolemLifeRegeneration [life_regeneration_rate_per_minute_% = 60]
+ -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
+ -- CannotBeAugmented [cant_possess_this = 1]
+ -- CannotBeAugmented [cant_touch_this = 1]
+ -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
+ -- CannotBeAugmented [cannot_be_afflicted = 1]
+ -- CannotBeAugmented [cannot_have_affliction_mods = 1]
+ },
+ }
-minions["SummonedFlameGolem"] = {
- name = "Flame Golem",
- monsterTags = { "bludgeoning_weapon", "caster", "construct", "fast_movement", "fire_affinity", "is_unarmed", "mud_blood", "not_dex", "not_str", "ranged", "small_height", "stone_armour", },
- life = 5.82,
- energyShield = 0.4,
- fireResist = 70,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 1.5,
- damageSpread = 0.2,
- attackTime = 1,
- attackRange = 6,
- accuracy = 3.4,
- damageFixup = 0.22,
- limit = "ActiveGolemLimit",
- skillList = {
- "FireElementalFlameRedSummoned",
- "FireElementalConeSummoned",
- "FireElementalMortarSummoned",
- "FireElementalMeteorSummoned",
- },
- modList = {
- -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
- -- MonsterSpeedAndDamageFixupLarge [monster_base_type_attack_cast_speed_+%_and_damage_-%_final = 22]
- mod("LifeRegenPercent", "BASE", 1, 0, 0), -- SummonedGolemLifeRegeneration [life_regeneration_rate_per_minute_% = 60]
- -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
- -- CannotBeAugmented [cant_possess_this = 1]
- -- CannotBeAugmented [cant_touch_this = 1]
- -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
- -- CannotBeAugmented [cannot_be_afflicted = 1]
- -- CannotBeAugmented [cannot_have_affliction_mods = 1]
- },
-}
+ minions["SummonedFlameGolem"] = {
+ name = "Flame Golem",
+ monsterTags = { "bludgeoning_weapon", "caster", "construct", "fast_movement", "fire_affinity", "is_unarmed", "mud_blood", "not_dex", "not_str", "ranged", "small_height", "stone_armour", },
+ life = 5.82,
+ energyShield = 0.4,
+ fireResist = 70,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 1.5,
+ damageSpread = 0.2,
+ attackTime = 1,
+ attackRange = 6,
+ accuracy = 3.4,
+ damageFixup = 0.22,
+ limit = "ActiveGolemLimit",
+ skillList = {
+ "FireElementalFlameRedSummoned",
+ "FireElementalConeSummoned",
+ "FireElementalMortarSummoned",
+ "FireElementalMeteorSummoned",
+ },
+ modList = {
+ -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
+ -- MonsterSpeedAndDamageFixupLarge [monster_base_type_attack_cast_speed_+%_and_damage_-%_final = 22]
+ mod("LifeRegenPercent", "BASE", 1, 0, 0), -- SummonedGolemLifeRegeneration [life_regeneration_rate_per_minute_% = 60]
+ -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
+ -- CannotBeAugmented [cant_possess_this = 1]
+ -- CannotBeAugmented [cant_touch_this = 1]
+ -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
+ -- CannotBeAugmented [cannot_be_afflicted = 1]
+ -- CannotBeAugmented [cannot_have_affliction_mods = 1]
+ },
+ }
-minions["SummonedIceGolem"] = {
- name = "Ice Golem",
- monsterTags = { "caster", "cold_affinity", "construct", "fast_movement", "hard_armour", "is_unarmed", "medium_height", "melee", "not_dex", "not_str", "physical_affinity", "ranged", "slashing_weapon", "water", },
- life = 5.82,
- energyShield = 0.4,
- fireResist = 40,
- coldResist = 70,
- lightningResist = 40,
- chaosResist = 20,
- damage = 3.06,
- damageSpread = 0.2,
- attackTime = 0.85,
- attackRange = 6,
- accuracy = 3.4,
- limit = "ActiveGolemLimit",
- skillList = {
- "Melee",
- "IceElementalIceCyclone",
- "IceElementalSpearSummoned",
- "IceElementalSpearSummonedDeathNova",
- "DeathExplodeIceElementalSummoned",
- },
- modList = {
- -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
- mod("LifeRegenPercent", "BASE", 1, 0, 0), -- SummonedGolemLifeRegeneration [life_regeneration_rate_per_minute_% = 60]
- -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
- -- CannotBeAugmented [cant_possess_this = 1]
- -- CannotBeAugmented [cant_touch_this = 1]
- -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
- -- CannotBeAugmented [cannot_be_afflicted = 1]
- -- CannotBeAugmented [cannot_have_affliction_mods = 1]
- },
-}
+ minions["SummonedIceGolem"] = {
+ name = "Ice Golem",
+ monsterTags = { "caster", "cold_affinity", "construct", "fast_movement", "hard_armour", "is_unarmed", "medium_height", "melee", "not_dex", "not_str", "physical_affinity", "ranged", "slashing_weapon", "water", },
+ life = 5.82,
+ energyShield = 0.4,
+ fireResist = 40,
+ coldResist = 70,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 3.06,
+ damageSpread = 0.2,
+ attackTime = 0.85,
+ attackRange = 6,
+ accuracy = 3.4,
+ limit = "ActiveGolemLimit",
+ skillList = {
+ "Melee",
+ "IceElementalIceCyclone",
+ "IceElementalSpearSummoned",
+ "IceElementalSpearSummonedDeathNova",
+ "DeathExplodeIceElementalSummoned",
+ },
+ modList = {
+ -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
+ mod("LifeRegenPercent", "BASE", 1, 0, 0), -- SummonedGolemLifeRegeneration [life_regeneration_rate_per_minute_% = 60]
+ -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
+ -- CannotBeAugmented [cant_possess_this = 1]
+ -- CannotBeAugmented [cant_touch_this = 1]
+ -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
+ -- CannotBeAugmented [cannot_be_afflicted = 1]
+ -- CannotBeAugmented [cannot_have_affliction_mods = 1]
+ },
+ }
-minions["SummonedLightningGolem"] = {
- name = "Lightning Golem",
- monsterTags = { "aura_bearer", "bludgeoning_weapon", "caster", "construct", "fast_movement", "is_unarmed", "large_model", "lightning_affinity", "mud_blood", "not_dex", "not_str", "ranged", "small_height", "stone_armour", },
- life = 5.82,
- energyShield = 0.2,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 70,
- chaosResist = 20,
- damage = 1.5,
- damageSpread = 0.2,
- attackTime = 1.17,
- attackRange = 8,
- accuracy = 3.4,
- damageFixup = 0.22,
- limit = "ActiveGolemLimit",
- skillList = {
- "LightningGolemArcSummoned",
- "LightningGolemWrath",
- "MonsterProjectileSpellLightningGolemSummoned",
- },
- modList = {
- -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
- -- MonsterSpeedAndDamageFixupLarge [monster_base_type_attack_cast_speed_+%_and_damage_-%_final = 22]
- mod("LifeRegenPercent", "BASE", 1, 0, 0), -- SummonedGolemLifeRegeneration [life_regeneration_rate_per_minute_% = 60]
- -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
- -- CannotBeAugmented [cant_possess_this = 1]
- -- CannotBeAugmented [cant_touch_this = 1]
- -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
- -- CannotBeAugmented [cannot_be_afflicted = 1]
- -- CannotBeAugmented [cannot_have_affliction_mods = 1]
- },
-}
+ minions["SummonedLightningGolem"] = {
+ name = "Lightning Golem",
+ monsterTags = { "aura_bearer", "bludgeoning_weapon", "caster", "construct", "fast_movement", "is_unarmed", "large_model", "lightning_affinity", "mud_blood", "not_dex", "not_str", "ranged", "small_height", "stone_armour", },
+ life = 5.82,
+ energyShield = 0.2,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 70,
+ chaosResist = 20,
+ damage = 1.5,
+ damageSpread = 0.2,
+ attackTime = 1.17,
+ attackRange = 8,
+ accuracy = 3.4,
+ damageFixup = 0.22,
+ limit = "ActiveGolemLimit",
+ skillList = {
+ "LightningGolemArcSummoned",
+ "LightningGolemWrath",
+ "MonsterProjectileSpellLightningGolemSummoned",
+ },
+ modList = {
+ -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
+ -- MonsterSpeedAndDamageFixupLarge [monster_base_type_attack_cast_speed_+%_and_damage_-%_final = 22]
+ mod("LifeRegenPercent", "BASE", 1, 0, 0), -- SummonedGolemLifeRegeneration [life_regeneration_rate_per_minute_% = 60]
+ -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
+ -- CannotBeAugmented [cant_possess_this = 1]
+ -- CannotBeAugmented [cant_touch_this = 1]
+ -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
+ -- CannotBeAugmented [cannot_be_afflicted = 1]
+ -- CannotBeAugmented [cannot_have_affliction_mods = 1]
+ },
+ }
-minions["SummonedStoneGolem"] = {
- name = "Stone Golem",
- monsterTags = { "bludgeoning_weapon", "construct", "fast_movement", "has_one_hand_sword", "has_one_handed_melee", "medium_height", "melee", "mud_blood", "not_int", "physical_affinity", "stone_armour", },
- life = 7.25,
- armour = 1,
- evasion = 0.4,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 2.7,
- damageSpread = 0.2,
- attackTime = 1,
- attackRange = 10,
- accuracy = 3.4,
- weaponType1 = "One Handed Sword",
- limit = "ActiveGolemLimit",
- skillList = {
- "Melee",
- "RockGolemSlam",
- "RockGolemMinionWhirlingBlades",
- },
- modList = {
- mod("LifeRegenPercent", "BASE", 2, 0, 0), -- SummonedGolemLifeRegenerationStone [life_regeneration_rate_per_minute_% = 120]
- },
-}
+ minions["SummonedStoneGolem"] = {
+ name = "Stone Golem",
+ monsterTags = { "bludgeoning_weapon", "construct", "fast_movement", "has_one_hand_sword", "has_one_handed_melee", "medium_height", "melee", "mud_blood", "not_int", "physical_affinity", "stone_armour", },
+ life = 7.25,
+ armour = 1,
+ evasion = 0.4,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 2.7,
+ damageSpread = 0.2,
+ attackTime = 1,
+ attackRange = 10,
+ accuracy = 3.4,
+ weaponType1 = "One Handed Sword",
+ limit = "ActiveGolemLimit",
+ skillList = {
+ "Melee",
+ "RockGolemSlam",
+ "RockGolemMinionWhirlingBlades",
+ },
+ modList = {
+ mod("LifeRegenPercent", "BASE", 2, 0, 0), -- SummonedGolemLifeRegenerationStone [life_regeneration_rate_per_minute_% = 120]
+ },
+ }
-minions["SummonedRagingSpirit"] = {
- name = "Raging Spirit",
- monsterTags = { "bone_armour", "construct", "extra_extra_small_height", "fast_movement", "is_unarmed", "melee", "physical_affinity", "skeleton", "undead", },
- life = 2.16,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 1.02,
- damageSpread = 0.2,
- attackTime = 0.57,
- attackRange = 8,
- accuracy = 3.4,
- limit = "ActiveRagingSpiritLimit",
- skillList = {
- "SumonRagingSpiritMelee",
- },
- modList = {
- mod("PhysicalDamageConvertToFire", "BASE", 100, 0, 0), -- RagingSpiritConvertPhysToFire [base_physical_damage_%_to_convert_to_fire = 100]
- mod("PhysicalMin", "BASE", 4, 0, 65536), -- RagingSpiritAddedPhys [attack_minimum_added_physical_damage = 4]
- mod("PhysicalMax", "BASE", 5, 0, 65536), -- RagingSpiritAddedPhys [attack_maximum_added_physical_damage = 5]
- -- CannotGainAfflictedMods [cannot_have_affliction_mods = 1]
- mod("Speed", "MORE", 40, 1, 0), -- MonsterSummonedSkullFastAttack1 [active_skill_attack_speed_+%_final = 40]
- -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
- -- CannotBeAugmented [cant_possess_this = 1]
- -- CannotBeAugmented [cant_touch_this = 1]
- -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
- -- CannotBeAugmented [cannot_be_afflicted = 1]
- -- CannotBeAugmented [cannot_have_affliction_mods = 1]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
- },
-}
+ minions["SummonedRagingSpirit"] = {
+ name = "Raging Spirit",
+ monsterTags = { "bone_armour", "construct", "extra_extra_small_height", "fast_movement", "is_unarmed", "melee", "physical_affinity", "skeleton", "undead", },
+ life = 2.16,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 1.02,
+ damageSpread = 0.2,
+ attackTime = 0.57,
+ attackRange = 8,
+ accuracy = 3.4,
+ limit = "ActiveRagingSpiritLimit",
+ skillList = {
+ "SumonRagingSpiritMelee",
+ },
+ modList = {
+ mod("PhysicalDamageConvertToFire", "BASE", 100, 0, 0), -- RagingSpiritConvertPhysToFire [base_physical_damage_%_to_convert_to_fire = 100]
+ mod("PhysicalMin", "BASE", 4, 0, 65536), -- RagingSpiritAddedPhys [attack_minimum_added_physical_damage = 4]
+ mod("PhysicalMax", "BASE", 5, 0, 65536), -- RagingSpiritAddedPhys [attack_maximum_added_physical_damage = 5]
+ -- CannotGainAfflictedMods [cannot_have_affliction_mods = 1]
+ mod("Speed", "MORE", 40, 1, 0), -- MonsterSummonedSkullFastAttack1 [active_skill_attack_speed_+%_final = 40]
+ -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
+ -- CannotBeAugmented [cant_possess_this = 1]
+ -- CannotBeAugmented [cant_touch_this = 1]
+ -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
+ -- CannotBeAugmented [cannot_be_afflicted = 1]
+ -- CannotBeAugmented [cannot_have_affliction_mods = 1]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ },
+ }
-minions["SummonedEssenceSpirit"] = {
- name = "Essence Spirit",
- monsterTags = { "bone_armour", "construct", "extra_extra_small_height", "fast_movement", "has_claw", "has_one_handed_melee", "melee", "physical_affinity", "skeleton", "undead", },
- life = 2.25,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 1.28,
- damageSpread = 0.2,
- attackTime = 0.57,
- attackRange = 8,
- accuracy = 3.4,
- skillList = {
- "RagingSpiritMeleeAttack",
- "SpectralSkullShieldCharge",
- },
- modList = {
- mod("Speed", "MORE", 40, 1, 0), -- MonsterSummonedSkullFastAttack1 [active_skill_attack_speed_+%_final = 40]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
- mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
- mod("DamageTaken", "MORE", -100, 0, 0), -- set_base_cannot_be_damaged [set_base_cannot_be_damaged = 1]
- -- set_cannot_be_chained_from [set_cannot_be_chained_from = 1]
- -- set_projectiles_always_pierce_you [set_projectiles_always_pierce_you = 1]
- mod("Condition:FullLife", "FLAG", true),
- },
-}
+ minions["SummonedEssenceSpirit"] = {
+ name = "Essence Spirit",
+ monsterTags = { "bone_armour", "construct", "extra_extra_small_height", "fast_movement", "has_claw", "has_one_handed_melee", "melee", "physical_affinity", "skeleton", "undead", },
+ life = 2.25,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 1.28,
+ damageSpread = 0.2,
+ attackTime = 0.57,
+ attackRange = 8,
+ accuracy = 3.4,
+ skillList = {
+ "RagingSpiritMeleeAttack",
+ "SpectralSkullShieldCharge",
+ },
+ modList = {
+ mod("Speed", "MORE", 40, 1, 0), -- MonsterSummonedSkullFastAttack1 [active_skill_attack_speed_+%_final = 40]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
+ mod("DamageTaken", "MORE", -100, 0, 0), -- set_base_cannot_be_damaged [set_base_cannot_be_damaged = 1]
+ -- set_cannot_be_chained_from [set_cannot_be_chained_from = 1]
+ -- set_projectiles_always_pierce_you [set_projectiles_always_pierce_you = 1]
+ mod("Condition:FullLife", "FLAG", true),
+ },
+ }
-minions["SummonedSpectralWolf"] = {
- name = "Spectral Wolf Companion",
- monsterTags = { "animal_claw_weapon", "beast", "canine_beast", "fast_movement", "ghost", "has_dagger", "has_one_handed_melee", "light_armour", "mammal_beast", "melee", "physical_affinity", "red_blood", "undead", },
- life = 11,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 6.2,
- damageSpread = 0.2,
- attackTime = 1.5,
- attackRange = 11,
- accuracy = 3.4,
- weaponType1 = "Dagger",
- limit = "ActiveWolfLimit",
- skillList = {
- "MeleeAtAnimationSpeed",
- },
- modList = {
- mod("PhysicalDamageLifeLeech", "BASE", 100, 1, 0), -- SummonedWolfLifeLeech [life_leech_from_physical_attack_damage_permyriad = 10000]
- },
-}
+ minions["SummonedSpectralWolf"] = {
+ name = "Spectral Wolf Companion",
+ monsterTags = { "animal_claw_weapon", "beast", "canine_beast", "fast_movement", "ghost", "has_dagger", "has_one_handed_melee", "light_armour", "mammal_beast", "melee", "physical_affinity", "red_blood", "undead", },
+ life = 11,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 6.2,
+ damageSpread = 0.2,
+ attackTime = 1.5,
+ attackRange = 11,
+ accuracy = 3.4,
+ weaponType1 = "Dagger",
+ limit = "ActiveWolfLimit",
+ skillList = {
+ "MeleeAtAnimationSpeed",
+ },
+ modList = {
+ mod("PhysicalDamageLifeLeech", "BASE", 100, 1, 0), -- SummonedWolfLifeLeech [life_leech_from_physical_attack_damage_permyriad = 10000]
+ },
+ }
-minions["SummonedSpectralTiger"] = {
- name = "Spectral Tiger Companion",
- monsterTags = { "animal_claw_weapon", "beast", "fast_movement", "feline_beast", "ghost", "has_dagger", "has_one_handed_melee", "light_armour", "mammal_beast", "melee", "physical_affinity", "red_blood", "undead", },
- life = 12.25,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 26.25,
- damageSpread = 0.2,
- attackTime = 1.5,
- attackRange = 11,
- accuracy = 3.4,
- weaponType1 = "Dagger",
- limit = "ActiveTigerLimit",
- skillList = {
- "MeleeAtAnimationSpeed",
- },
- modList = {
- mod("PhysicalDamageLifeLeech", "BASE", 100, 1, 0), -- SummonedWolfLifeLeech [life_leech_from_physical_attack_damage_permyriad = 10000]
- mod("Speed", "INC", 20, 1, 0), -- MonsterImplicitFastAttack4 [attack_speed_+% = 20]
- },
-}
+ minions["SummonedSpectralTiger"] = {
+ name = "Spectral Tiger Companion",
+ monsterTags = { "animal_claw_weapon", "beast", "fast_movement", "feline_beast", "ghost", "has_dagger", "has_one_handed_melee", "light_armour", "mammal_beast", "melee", "physical_affinity", "red_blood", "undead", },
+ life = 12.25,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 26.25,
+ damageSpread = 0.2,
+ attackTime = 1.5,
+ attackRange = 11,
+ accuracy = 3.4,
+ weaponType1 = "Dagger",
+ limit = "ActiveTigerLimit",
+ skillList = {
+ "MeleeAtAnimationSpeed",
+ },
+ modList = {
+ mod("PhysicalDamageLifeLeech", "BASE", 100, 1, 0), -- SummonedWolfLifeLeech [life_leech_from_physical_attack_damage_permyriad = 10000]
+ mod("Speed", "INC", 20, 1, 0), -- MonsterImplicitFastAttack4 [attack_speed_+% = 20]
+ },
+ }
-minions["RaisedSkeleton"] = {
- name = "Summoned Skeleton",
- monsterTags = { "bone_armour", "bones", "has_one_hand_sword", "has_one_handed_melee", "humanoid", "medium_height", "melee", "physical_affinity", "skeleton", "slashing_weapon", "slow_movement", "undead", },
- life = 1.05,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 2.45,
- damageSpread = 0.4,
- attackTime = 0.8,
- attackRange = 8,
- accuracy = 3.4,
- weaponType1 = "One Handed Sword",
- weaponType2 = "Shield",
- limit = "ActiveSkeletonLimit",
- skillList = {
- "Melee",
- "MonsterQuickDodgeRunUnarmed",
- },
- modList = {
- mod("BlockChance", "BASE", 30, 0, 0), -- MonsterAttackBlock30Bypass15 [monster_base_block_% = 30]
- mod("BlockEffect", "BASE", 15, 0, 0), -- MonsterAttackBlock30Bypass15 [base_block_%_damage_taken = 15]
- -- SummonSkeletonsSkeletonIsWarrior [summoned_skeleton_is_warrior = 1]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- set_monster_no_drops_or_experience [set_monster_no_drops_or_experience = 1]
- },
-}
+ minions["RaisedSkeleton"] = {
+ name = "Summoned Skeleton",
+ monsterTags = { "bone_armour", "bones", "has_one_hand_sword", "has_one_handed_melee", "humanoid", "medium_height", "melee", "physical_affinity", "skeleton", "slashing_weapon", "slow_movement", "undead", },
+ life = 1.05,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 2.45,
+ damageSpread = 0.4,
+ attackTime = 0.8,
+ attackRange = 8,
+ accuracy = 3.4,
+ weaponType1 = "One Handed Sword",
+ weaponType2 = "Shield",
+ limit = "ActiveSkeletonLimit",
+ skillList = {
+ "Melee",
+ "MonsterQuickDodgeRunUnarmed",
+ },
+ modList = {
+ mod("BlockChance", "BASE", 30, 0, 0), -- MonsterAttackBlock30Bypass15 [monster_base_block_% = 30]
+ mod("BlockEffect", "BASE", 15, 0, 0), -- MonsterAttackBlock30Bypass15 [base_block_%_damage_taken = 15]
+ -- SummonSkeletonsSkeletonIsWarrior [summoned_skeleton_is_warrior = 1]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_monster_no_drops_or_experience [set_monster_no_drops_or_experience = 1]
+ },
+ }
-minions["RaisedSkeletonCaster"] = {
- name = "Summoned Skeleton Caster",
- monsterTags = { "bone_armour", "bones", "caster", "cold_affinity", "humanoid", "is_unarmed", "medium_height", "not_dex", "not_str", "ranged", "skeleton", "slashing_weapon", "undead", "very_slow_movement", },
- life = 1.05,
- energyShield = 0.4,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 0.98,
- damageSpread = 0.3,
- attackTime = 1.07,
- attackRange = 46,
- accuracy = 3.4,
- limit = "ActiveSkeletonLimit",
- skillList = {
- "SkeletonMinionProjectileCold",
- "SkeletonMinionProjectileFire",
- "SkeletonMinionProjectileLightning",
- },
- modList = {
- -- SummonSkeletonsSkeletonIsMage [summoned_skeleton_is_mage = 1]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- set_monster_no_drops_or_experience [set_monster_no_drops_or_experience = 1]
- },
-}
+ minions["RaisedSkeletonCaster"] = {
+ name = "Summoned Skeleton Caster",
+ monsterTags = { "bone_armour", "bones", "caster", "cold_affinity", "humanoid", "is_unarmed", "medium_height", "not_dex", "not_str", "ranged", "skeleton", "slashing_weapon", "undead", "very_slow_movement", },
+ life = 1.05,
+ energyShield = 0.4,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 0.98,
+ damageSpread = 0.3,
+ attackTime = 1.07,
+ attackRange = 46,
+ accuracy = 3.4,
+ limit = "ActiveSkeletonLimit",
+ skillList = {
+ "SkeletonMinionProjectileCold",
+ "SkeletonMinionProjectileFire",
+ "SkeletonMinionProjectileLightning",
+ },
+ modList = {
+ -- SummonSkeletonsSkeletonIsMage [summoned_skeleton_is_mage = 1]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_monster_no_drops_or_experience [set_monster_no_drops_or_experience = 1]
+ },
+ }
-minions["RaisedSkeletonMeleeVaal"] = {
- name = "Summoned Skeleton Soldier",
- monsterTags = { "bone_armour", "bones", "has_one_hand_sword", "has_one_handed_melee", "humanoid", "medium_height", "melee", "not_dex", "not_int", "physical_affinity", "skeleton", "slashing_weapon", "slow_movement", "undead", },
- life = 1.05,
- armour = 0.25,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 1.37,
- damageSpread = 0.4,
- attackTime = 0.8,
- attackRange = 8,
- accuracy = 3.4,
- weaponType1 = "One Handed Sword",
- weaponType2 = "Shield",
- limit = "ActiveSkeletonLimit",
- skillList = {
- "Melee",
- },
- modList = {
- mod("BlockChance", "BASE", 30, 0, 0), -- MonsterAttackBlock30Bypass15 [monster_base_block_% = 30]
- mod("BlockEffect", "BASE", 15, 0, 0), -- MonsterAttackBlock30Bypass15 [base_block_%_damage_taken = 15]
- -- SummonSkeletonsSkeletonIsWarrior [summoned_skeleton_is_warrior = 1]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- set_monster_no_drops_or_experience [set_monster_no_drops_or_experience = 1]
- },
-}
+ minions["RaisedSkeletonMeleeVaal"] = {
+ name = "Summoned Skeleton Soldier",
+ monsterTags = { "bone_armour", "bones", "has_one_hand_sword", "has_one_handed_melee", "humanoid", "medium_height", "melee", "not_dex", "not_int", "physical_affinity", "skeleton", "slashing_weapon", "slow_movement", "undead", },
+ life = 1.05,
+ armour = 0.25,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 1.37,
+ damageSpread = 0.4,
+ attackTime = 0.8,
+ attackRange = 8,
+ accuracy = 3.4,
+ weaponType1 = "One Handed Sword",
+ weaponType2 = "Shield",
+ limit = "ActiveSkeletonLimit",
+ skillList = {
+ "Melee",
+ },
+ modList = {
+ mod("BlockChance", "BASE", 30, 0, 0), -- MonsterAttackBlock30Bypass15 [monster_base_block_% = 30]
+ mod("BlockEffect", "BASE", 15, 0, 0), -- MonsterAttackBlock30Bypass15 [base_block_%_damage_taken = 15]
+ -- SummonSkeletonsSkeletonIsWarrior [summoned_skeleton_is_warrior = 1]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_monster_no_drops_or_experience [set_monster_no_drops_or_experience = 1]
+ },
+ }
-minions["RaisedSkeletonArcherVaal"] = {
- name = "Summoned Skeleton Archer",
- monsterTags = { "bone_armour", "bones", "has_bow", "humanoid", "medium_height", "not_int", "not_str", "physical_affinity", "puncturing_weapon", "ranged", "skeleton", "undead", "very_slow_movement", },
- life = 1.05,
- evasion = 0.25,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 0.98,
- damageSpread = 0.16,
- attackTime = 1.33,
- attackRange = 40,
- accuracy = 3.4,
- weaponType1 = "Bow",
- limit = "ActiveSkeletonLimit",
- skillList = {
- "Melee",
- },
- modList = {
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- set_monster_no_drops_or_experience [set_monster_no_drops_or_experience = 1]
- },
-}
+ minions["RaisedSkeletonArcherVaal"] = {
+ name = "Summoned Skeleton Archer",
+ monsterTags = { "bone_armour", "bones", "has_bow", "humanoid", "medium_height", "not_int", "not_str", "physical_affinity", "puncturing_weapon", "ranged", "skeleton", "undead", "very_slow_movement", },
+ life = 1.05,
+ evasion = 0.25,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 0.98,
+ damageSpread = 0.16,
+ attackTime = 1.33,
+ attackRange = 40,
+ accuracy = 3.4,
+ weaponType1 = "Bow",
+ limit = "ActiveSkeletonLimit",
+ skillList = {
+ "Melee",
+ },
+ modList = {
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_monster_no_drops_or_experience [set_monster_no_drops_or_experience = 1]
+ },
+ }
-minions["RaisedSkeletonArcher"] = {
- name = "Summoned Skeleton Archer",
- monsterTags = { "bone_armour", "bones", "has_bow", "humanoid", "not_int", "not_str", "physical_affinity", "puncturing_weapon", "ranged", "skeleton", "undead", "very_slow_movement", },
- life = 1.05,
- evasion = 0.25,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 2.25,
- damageSpread = 0.16,
- attackTime = 1.33,
- attackRange = 60,
- accuracy = 3.4,
- weaponType1 = "Bow",
- limit = "ActiveSkeletonLimit",
- skillList = {
- "Melee",
- },
- modList = {
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- set_monster_no_drops_or_experience [set_monster_no_drops_or_experience = 1]
- },
-}
+ minions["RaisedSkeletonArcher"] = {
+ name = "Summoned Skeleton Archer",
+ monsterTags = { "bone_armour", "bones", "has_bow", "humanoid", "not_int", "not_str", "physical_affinity", "puncturing_weapon", "ranged", "skeleton", "undead", "very_slow_movement", },
+ life = 1.05,
+ evasion = 0.25,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 2.25,
+ damageSpread = 0.16,
+ attackTime = 1.33,
+ attackRange = 60,
+ accuracy = 3.4,
+ weaponType1 = "Bow",
+ limit = "ActiveSkeletonLimit",
+ skillList = {
+ "Melee",
+ },
+ modList = {
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_monster_no_drops_or_experience [set_monster_no_drops_or_experience = 1]
+ },
+ }
-minions["Clone"] = {
- name = "Clone",
- monsterTags = { "construct", "fast_movement", "flesh_armour", "is_unarmed", "medium_height", "melee", "physical_affinity", "red_blood", "slashing_weapon", },
- life = 1,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 1,
- damageSpread = 0,
- attackTime = 0.83,
- attackRange = 6,
- accuracy = 3.4,
- skillList = {
- "Melee",
- },
- modList = {
- mod("EnergyShield", "BASE", 10, 0, 0), -- MirrorArrowEnergyShield [base_maximum_energy_shield = 10]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- set_is_double [set_is_double = 1]
- -- set_suppress_mod_stat_display [set_suppress_mod_stat_display = 1]
- mod("EnergyShieldRecharge", "OVERRIDE", 0, 0, 0), -- set_energy_shield_recharge_rate_per_minute_% [set_energy_shield_recharge_rate_per_minute_% = 0]
- mod("DamageTaken", "MORE", -80, 0, 0), -- monster_inherent_damage_taken_+%_final [monster_inherent_damage_taken_+%_final = -80]
- },
-}
+ minions["Clone"] = {
+ name = "Clone",
+ monsterTags = { "construct", "fast_movement", "flesh_armour", "is_unarmed", "medium_height", "melee", "physical_affinity", "red_blood", "slashing_weapon", },
+ life = 1,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 1,
+ damageSpread = 0,
+ attackTime = 0.83,
+ attackRange = 6,
+ accuracy = 3.4,
+ skillList = {
+ "Melee",
+ },
+ modList = {
+ mod("EnergyShield", "BASE", 10, 0, 0), -- MirrorArrowEnergyShield [base_maximum_energy_shield = 10]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_is_double [set_is_double = 1]
+ -- set_suppress_mod_stat_display [set_suppress_mod_stat_display = 1]
+ mod("EnergyShieldRecharge", "OVERRIDE", 0, 0, 0), -- set_energy_shield_recharge_rate_per_minute_% [set_energy_shield_recharge_rate_per_minute_% = 0]
+ mod("DamageTaken", "MORE", -80, 0, 0), -- monster_inherent_damage_taken_+%_final [monster_inherent_damage_taken_+%_final = -80]
+ },
+ }
-minions["ArrowClone"] = {
- name = "Clone",
- monsterTags = { "construct", "fast_movement", "flesh_armour", "is_unarmed", "medium_height", "melee", "physical_affinity", "red_blood", "slashing_weapon", },
- life = 1.5,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 1,
- damageSpread = 0,
- attackTime = 0.83,
- attackRange = 6,
- accuracy = 3.4,
- skillList = {
- "BlinkMirrorArrowMelee",
- },
- modList = {
- mod("EnergyShield", "BASE", 10, 0, 0), -- MirrorArrowEnergyShield [base_maximum_energy_shield = 10]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- set_is_double [set_is_double = 1]
- -- set_suppress_mod_stat_display [set_suppress_mod_stat_display = 1]
- mod("EnergyShieldRecharge", "OVERRIDE", 0, 0, 0), -- set_energy_shield_recharge_rate_per_minute_% [set_energy_shield_recharge_rate_per_minute_% = 0]
- mod("DamageTaken", "MORE", -80, 0, 0), -- monster_inherent_damage_taken_+%_final [monster_inherent_damage_taken_+%_final = -80]
- },
-}
+ minions["ArrowClone"] = {
+ name = "Clone",
+ monsterTags = { "construct", "fast_movement", "flesh_armour", "is_unarmed", "medium_height", "melee", "physical_affinity", "red_blood", "slashing_weapon", },
+ life = 1.5,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 1,
+ damageSpread = 0,
+ attackTime = 0.83,
+ attackRange = 6,
+ accuracy = 3.4,
+ skillList = {
+ "BlinkMirrorArrowMelee",
+ },
+ modList = {
+ mod("EnergyShield", "BASE", 10, 0, 0), -- MirrorArrowEnergyShield [base_maximum_energy_shield = 10]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_is_double [set_is_double = 1]
+ -- set_suppress_mod_stat_display [set_suppress_mod_stat_display = 1]
+ mod("EnergyShieldRecharge", "OVERRIDE", 0, 0, 0), -- set_energy_shield_recharge_rate_per_minute_% [set_energy_shield_recharge_rate_per_minute_% = 0]
+ mod("DamageTaken", "MORE", -80, 0, 0), -- monster_inherent_damage_taken_+%_final [monster_inherent_damage_taken_+%_final = -80]
+ },
+ }
-minions["ArrowCloneRoA"] = {
- name = "Clone",
- monsterTags = { "construct", "fast_movement", "flesh_armour", "is_unarmed", "medium_height", "melee", "physical_affinity", "red_blood", "slashing_weapon", },
- life = 1.5,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 1,
- damageSpread = 0,
- attackTime = 0.83,
- attackRange = 6,
- accuracy = 3.4,
- skillList = {
- "RainOfArrowsCloneShot",
- },
- modList = {
- mod("EnergyShield", "BASE", 10, 0, 0), -- MirrorArrowEnergyShield [base_maximum_energy_shield = 10]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- set_is_double [set_is_double = 1]
- -- set_suppress_mod_stat_display [set_suppress_mod_stat_display = 1]
- mod("EnergyShieldRecharge", "OVERRIDE", 0, 0, 0), -- set_energy_shield_recharge_rate_per_minute_% [set_energy_shield_recharge_rate_per_minute_% = 0]
- mod("DamageTaken", "MORE", -80, 0, 0), -- monster_inherent_damage_taken_+%_final [monster_inherent_damage_taken_+%_final = -80]
- },
-}
+ minions["ArrowCloneRoA"] = {
+ name = "Clone",
+ monsterTags = { "construct", "fast_movement", "flesh_armour", "is_unarmed", "medium_height", "melee", "physical_affinity", "red_blood", "slashing_weapon", },
+ life = 1.5,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 1,
+ damageSpread = 0,
+ attackTime = 0.83,
+ attackRange = 6,
+ accuracy = 3.4,
+ skillList = {
+ "RainOfArrowsCloneShot",
+ },
+ modList = {
+ mod("EnergyShield", "BASE", 10, 0, 0), -- MirrorArrowEnergyShield [base_maximum_energy_shield = 10]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_is_double [set_is_double = 1]
+ -- set_suppress_mod_stat_display [set_suppress_mod_stat_display = 1]
+ mod("EnergyShieldRecharge", "OVERRIDE", 0, 0, 0), -- set_energy_shield_recharge_rate_per_minute_% [set_energy_shield_recharge_rate_per_minute_% = 0]
+ mod("DamageTaken", "MORE", -80, 0, 0), -- monster_inherent_damage_taken_+%_final [monster_inherent_damage_taken_+%_final = -80]
+ },
+ }
-minions["ArrowCloneEle"] = {
- name = "Clone",
- monsterTags = { "construct", "fast_movement", "flesh_armour", "is_unarmed", "medium_height", "melee", "physical_affinity", "red_blood", "slashing_weapon", },
- life = 1.5,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 1,
- damageSpread = 0,
- attackTime = 0.83,
- attackRange = 6,
- accuracy = 3.4,
- skillList = {
- "ElementalHitCloneShot",
- },
- modList = {
- mod("EnergyShield", "BASE", 10, 0, 0), -- MirrorArrowEnergyShield [base_maximum_energy_shield = 10]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- set_is_double [set_is_double = 1]
- -- set_suppress_mod_stat_display [set_suppress_mod_stat_display = 1]
- mod("EnergyShieldRecharge", "OVERRIDE", 0, 0, 0), -- set_energy_shield_recharge_rate_per_minute_% [set_energy_shield_recharge_rate_per_minute_% = 0]
- mod("DamageTaken", "MORE", -80, 0, 0), -- monster_inherent_damage_taken_+%_final [monster_inherent_damage_taken_+%_final = -80]
- },
-}
+ minions["ArrowCloneEle"] = {
+ name = "Clone",
+ monsterTags = { "construct", "fast_movement", "flesh_armour", "is_unarmed", "medium_height", "melee", "physical_affinity", "red_blood", "slashing_weapon", },
+ life = 1.5,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 1,
+ damageSpread = 0,
+ attackTime = 0.83,
+ attackRange = 6,
+ accuracy = 3.4,
+ skillList = {
+ "ElementalHitCloneShot",
+ },
+ modList = {
+ mod("EnergyShield", "BASE", 10, 0, 0), -- MirrorArrowEnergyShield [base_maximum_energy_shield = 10]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_is_double [set_is_double = 1]
+ -- set_suppress_mod_stat_display [set_suppress_mod_stat_display = 1]
+ mod("EnergyShieldRecharge", "OVERRIDE", 0, 0, 0), -- set_energy_shield_recharge_rate_per_minute_% [set_energy_shield_recharge_rate_per_minute_% = 0]
+ mod("DamageTaken", "MORE", -80, 0, 0), -- monster_inherent_damage_taken_+%_final [monster_inherent_damage_taken_+%_final = -80]
+ },
+ }
-minions["SpiderMinion"] = {
- name = "Spider Minion",
- monsterTags = { "animal_claw_weapon", "beast", "chaos_affinity", "extra_extra_small_height", "ghost_armour", "has_one_hand_sword", "has_one_handed_melee", "spider", "very_fast_movement", },
- life = 1.8,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 1.76,
- damageSpread = 0.2,
- attackTime = 0.96,
- attackRange = 7,
- accuracy = 3.4,
- weaponType1 = "One Handed Sword",
- limit = "ActiveSpiderLimit",
- skillList = {
- "SummonedSpiderViperStrike",
- },
- modList = {
- -- SummonedSpiderPhasing [phase_through_objects = 1]
- -- SummonedSpiderPhasing [suppress_phasing_visual = 1]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
- -- set_is_spider [set_is_spider = 1]
- mod("DamageTaken", "MORE", -100, 0, 0), -- set_base_cannot_be_damaged [set_base_cannot_be_damaged = 1]
- -- set_cannot_be_chained_from [set_cannot_be_chained_from = 1]
- mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
- },
-}
+ minions["SpiderMinion"] = {
+ name = "Spider Minion",
+ monsterTags = { "animal_claw_weapon", "beast", "chaos_affinity", "extra_extra_small_height", "ghost_armour", "has_one_hand_sword", "has_one_handed_melee", "spider", "very_fast_movement", },
+ life = 1.8,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 1.76,
+ damageSpread = 0.2,
+ attackTime = 0.96,
+ attackRange = 7,
+ accuracy = 3.4,
+ weaponType1 = "One Handed Sword",
+ limit = "ActiveSpiderLimit",
+ skillList = {
+ "SummonedSpiderViperStrike",
+ },
+ modList = {
+ -- SummonedSpiderPhasing [phase_through_objects = 1]
+ -- SummonedSpiderPhasing [suppress_phasing_visual = 1]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ -- set_is_spider [set_is_spider = 1]
+ mod("DamageTaken", "MORE", -100, 0, 0), -- set_base_cannot_be_damaged [set_base_cannot_be_damaged = 1]
+ -- set_cannot_be_chained_from [set_cannot_be_chained_from = 1]
+ mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
+ },
+ }
-minions["AnimatedWeapon"] = {
- name = "Animated Weapon",
- monsterTags = { "construct", "fast_movement", "ghost_armour", "is_unarmed", "medium_height", "melee", "physical_affinity", },
- life = 4,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 0,
- damageSpread = 0,
- attackTime = 1,
- attackRange = 6,
- accuracy = 3.4,
- limit = "ActiveAnimatedWeaponLimit",
- skillList = {
- "Melee",
- },
- modList = {
- -- EmergeSpeedLow [emerge_speed_+% = 100]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- minion_does_not_equip_quiver [minion_does_not_equip_quiver = 1]
- -- monster_gets_item_stats [monster_gets_item_stats = 1]
- },
-}
+ minions["AnimatedWeapon"] = {
+ name = "Animated Weapon",
+ monsterTags = { "construct", "fast_movement", "ghost_armour", "is_unarmed", "medium_height", "melee", "physical_affinity", },
+ life = 4,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 0,
+ damageSpread = 0,
+ attackTime = 1,
+ attackRange = 6,
+ accuracy = 3.4,
+ limit = "ActiveAnimatedWeaponLimit",
+ skillList = {
+ "Melee",
+ },
+ modList = {
+ -- EmergeSpeedLow [emerge_speed_+% = 100]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- minion_does_not_equip_quiver [minion_does_not_equip_quiver = 1]
+ -- monster_gets_item_stats [monster_gets_item_stats = 1]
+ },
+ }
-minions["AnimatedArmour"] = {
- name = "Animated Guardian",
- monsterTags = { "construct", "extra_extra_small_height", "ghost_armour", "is_unarmed", "medium_movement", "melee", "not_dex", "not_int", "physical_affinity", },
- life = 5,
- armour = 0.5,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 0,
- damageSpread = 0,
- attackTime = 1,
- attackRange = 6,
- accuracy = 3.4,
- skillList = {
- "Melee",
- "AnimateGuardianSmite",
- },
- modList = {
- -- LabyrinthArrowTrapDamageTakenAnimateArmour [damage_taken_+%_from_arrow_traps_final = -90]
- mod("Speed", "MORE", 10, 1, 0, { type = "Condition", var = "DualWielding" }), -- dual_wield_inherent_attack_speed_+%_final [dual_wield_inherent_attack_speed_+%_final = 10]
- mod("BlockChance", "BASE", 15, 0, 0, { type = "Condition", var = "DualWielding" }), -- block_while_dual_wielding_% [block_while_dual_wielding_% = 15]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- monster_gets_item_stats [monster_gets_item_stats = 1]
- mod("PhysicalMin", "BASE", 2, 8192, 65536), -- main_hand_local_minimum_added_physical_damage [main_hand_local_minimum_added_physical_damage = 2]
- mod("PhysicalMax", "BASE", 6, 8192, 65536), -- main_hand_local_maximum_added_physical_damage [main_hand_local_maximum_added_physical_damage = 6]
- },
-}
+ minions["AnimatedArmour"] = {
+ name = "Animated Guardian",
+ monsterTags = { "construct", "extra_extra_small_height", "ghost_armour", "is_unarmed", "medium_movement", "melee", "not_dex", "not_int", "physical_affinity", },
+ life = 5,
+ armour = 0.5,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 0,
+ damageSpread = 0,
+ attackTime = 1,
+ attackRange = 6,
+ accuracy = 3.4,
+ skillList = {
+ "Melee",
+ "AnimateGuardianSmite",
+ },
+ modList = {
+ -- LabyrinthArrowTrapDamageTakenAnimateArmour [damage_taken_+%_from_arrow_traps_final = -90]
+ mod("Speed", "MORE", 10, 1, 0, { type = "Condition", var = "DualWielding" }), -- dual_wield_inherent_attack_speed_+%_final [dual_wield_inherent_attack_speed_+%_final = 10]
+ mod("BlockChance", "BASE", 15, 0, 0, { type = "Condition", var = "DualWielding" }), -- block_while_dual_wielding_% [block_while_dual_wielding_% = 15]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- monster_gets_item_stats [monster_gets_item_stats = 1]
+ mod("PhysicalMin", "BASE", 2, 8192, 65536), -- main_hand_local_minimum_added_physical_damage [main_hand_local_minimum_added_physical_damage = 2]
+ mod("PhysicalMax", "BASE", 6, 8192, 65536), -- main_hand_local_maximum_added_physical_damage [main_hand_local_maximum_added_physical_damage = 6]
+ },
+ }
-minions["IcyRagingSpirit"] = {
- name = "Grave Spirit",
- monsterTags = { "bone_armour", "cleaving_weapon", "construct", "extra_extra_small_height", "fast_movement", "is_unarmed", "melee", "physical_affinity", "skeleton", "undead", },
- life = 3.75,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 2.5,
- damageSpread = 0.2,
- attackTime = 0.57,
- attackRange = 8,
- accuracy = 3.4,
- skillList = {
- "RagingSpiritMeleeAttack",
- },
- modList = {
- mod("PhysicalDamageConvertToCold", "BASE", 50, 0, 0), -- MonsterSummonedElementalCold [base_physical_damage_%_to_convert_to_cold = 50]
- -- MonsterCannotBeChainedFrom_ [cannot_be_chained_from = 1]
- mod("Speed", "MORE", 40, 1, 0), -- MonsterSummonedSkullFastAttack1 [active_skill_attack_speed_+%_final = 40]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
- },
-}
+ minions["IcyRagingSpirit"] = {
+ name = "Grave Spirit",
+ monsterTags = { "bone_armour", "cleaving_weapon", "construct", "extra_extra_small_height", "fast_movement", "is_unarmed", "melee", "physical_affinity", "skeleton", "undead", },
+ life = 3.75,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 2.5,
+ damageSpread = 0.2,
+ attackTime = 0.57,
+ attackRange = 8,
+ accuracy = 3.4,
+ skillList = {
+ "RagingSpiritMeleeAttack",
+ },
+ modList = {
+ mod("PhysicalDamageConvertToCold", "BASE", 50, 0, 0), -- MonsterSummonedElementalCold [base_physical_damage_%_to_convert_to_cold = 50]
+ -- MonsterCannotBeChainedFrom_ [cannot_be_chained_from = 1]
+ mod("Speed", "MORE", 40, 1, 0), -- MonsterSummonedSkullFastAttack1 [active_skill_attack_speed_+%_final = 40]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ },
+ }
-minions["UniqueAnimatedWeapon"] = {
- name = "Dancing Dervish",
- monsterTags = { "construct", "fast_movement", "ghost_armour", "is_unarmed", "medium_height", "physical_affinity", },
- life = 5,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 0,
- damageSpread = 0,
- attackTime = 1,
- attackRange = 105,
- accuracy = 3.4,
- limit = "ActiveAnimatedWeaponLimit",
- skillList = {
- "Melee",
- "DancingDervishCycloneChannelled",
- },
- modList = {
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- minion_does_not_equip_quiver [minion_does_not_equip_quiver = 1]
- mod("DamageTaken", "MORE", -95, 0, 0), -- monster_inherent_damage_taken_+%_final [monster_inherent_damage_taken_+%_final = -95]
- -- monster_gets_item_stats [monster_gets_item_stats = 1]
- mod("Life", "MORE", 698), -- MonsterUnique2,
- mod("Damage", "MORE", 70), -- MonsterUnique5,
- mod("Speed", "MORE", 33, ModFlag.Attack), -- MonsterUnique8,
- mod("Damage", "MORE", -33, ModFlag.Attack), -- MonsterUnique8,
- },
-}
+ minions["UniqueAnimatedWeapon"] = {
+ name = "Dancing Dervish",
+ monsterTags = { "construct", "fast_movement", "ghost_armour", "is_unarmed", "medium_height", "physical_affinity", },
+ life = 5,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 0,
+ damageSpread = 0,
+ attackTime = 1,
+ attackRange = 105,
+ accuracy = 3.4,
+ limit = "ActiveAnimatedWeaponLimit",
+ skillList = {
+ "Melee",
+ "DancingDervishCycloneChannelled",
+ },
+ modList = {
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- minion_does_not_equip_quiver [minion_does_not_equip_quiver = 1]
+ mod("DamageTaken", "MORE", -95, 0, 0), -- monster_inherent_damage_taken_+%_final [monster_inherent_damage_taken_+%_final = -95]
+ -- monster_gets_item_stats [monster_gets_item_stats = 1]
+ mod("Life", "MORE", 698), -- MonsterUnique2,
+ mod("Damage", "MORE", 70), -- MonsterUnique5,
+ mod("Speed", "MORE", 33, ModFlag.Attack), -- MonsterUnique8,
+ mod("Damage", "MORE", -33, ModFlag.Attack), -- MonsterUnique8,
+ },
+ }
-minions["SummonedPhantasm"] = {
- name = "Summoned Phantasm",
- monsterTags = { "caster", "flesh_armour", "ghost", "is_unarmed", "medium_movement", "melee", "not_dex", "not_str", "physical_affinity", "ranged", "red_blood", "slashing_weapon", "small_height", "undead", },
- life = 1.58,
- energyShield = 0.2,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 1.1,
- damageSpread = 0.2,
- attackTime = 1.17,
- attackRange = 6,
- accuracy = 1,
- limit = "ActivePhantasmLimit",
- skillList = {
- "Melee",
- "SummonPhantasmFadingProjectile",
- "SummonPhantasmFadingProjectile2",
- },
- modList = {
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- set_cannot_spawn_support_ghosts [set_cannot_spawn_support_ghosts = 1]
- },
-}
+ minions["SummonedPhantasm"] = {
+ name = "Summoned Phantasm",
+ monsterTags = { "caster", "flesh_armour", "ghost", "is_unarmed", "medium_movement", "melee", "not_dex", "not_str", "physical_affinity", "ranged", "red_blood", "slashing_weapon", "small_height", "undead", },
+ life = 1.58,
+ energyShield = 0.2,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 1.1,
+ damageSpread = 0.2,
+ attackTime = 1.17,
+ attackRange = 6,
+ accuracy = 1,
+ limit = "ActivePhantasmLimit",
+ skillList = {
+ "Melee",
+ "SummonPhantasmFadingProjectile",
+ "SummonPhantasmFadingProjectile2",
+ },
+ modList = {
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_cannot_spawn_support_ghosts [set_cannot_spawn_support_ghosts = 1]
+ },
+ }
-minions["HeraldOfAgonySpiderPlated"] = {
- name = "Agony Crawler",
- monsterTags = { "animal_claw_weapon", "beast", "flesh_armour", "has_one_hand_sword", "has_one_handed_melee", "insect", "insect_blood", "medium_height", "melee", "physical_affinity", "very_fast_movement", },
- life = 1.5,
- fireResist = 0,
- coldResist = 0,
- lightningResist = 0,
- chaosResist = 0,
- damage = 1.5,
- damageSpread = 0.2,
- attackTime = 1.3,
- attackRange = 12,
- accuracy = 3.4,
- weaponType1 = "One Handed Sword",
- skillList = {
- "HeraldOfAgonyMinionMortar",
- "HeraldOfAgonyMinionTailSpike",
- "HeraldOfAgonyMinionCleave",
- "Melee",
- },
- modList = {
- mod("PhysicalDamageConvertToChaos", "BASE", 40, 0, 0), -- MonsterConvertToChaosHeraldOfAgony1 [base_physical_damage_%_to_convert_to_chaos = 40]
- mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- MonsterCannotBeDamaged [base_cannot_be_damaged = 1]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- set_cannot_die [set_cannot_die = 1]
- mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
- -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
- -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
- -- minion_aggro_range_scaled_by_distance_to_parent_target [minion_aggro_range_scaled_by_distance_to_parent_target = 1]
- mod("Condition:FullLife", "FLAG", true),
- },
-}
+ minions["HeraldOfAgonySpiderPlated"] = {
+ name = "Agony Crawler",
+ monsterTags = { "animal_claw_weapon", "beast", "flesh_armour", "has_one_hand_sword", "has_one_handed_melee", "insect", "insect_blood", "medium_height", "melee", "physical_affinity", "very_fast_movement", },
+ life = 1.5,
+ fireResist = 0,
+ coldResist = 0,
+ lightningResist = 0,
+ chaosResist = 0,
+ damage = 1.5,
+ damageSpread = 0.2,
+ attackTime = 1.3,
+ attackRange = 12,
+ accuracy = 3.4,
+ weaponType1 = "One Handed Sword",
+ skillList = {
+ "HeraldOfAgonyMinionMortar",
+ "HeraldOfAgonyMinionTailSpike",
+ "HeraldOfAgonyMinionCleave",
+ "Melee",
+ },
+ modList = {
+ mod("PhysicalDamageConvertToChaos", "BASE", 40, 0, 0), -- MonsterConvertToChaosHeraldOfAgony1 [base_physical_damage_%_to_convert_to_chaos = 40]
+ mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- MonsterCannotBeDamaged [base_cannot_be_damaged = 1]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_cannot_die [set_cannot_die = 1]
+ mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
+ -- minion_aggro_range_scaled_by_distance_to_parent_target [minion_aggro_range_scaled_by_distance_to_parent_target = 1]
+ mod("Condition:FullLife", "FLAG", true),
+ },
+ }
-minions["AxisEliteSoldierHeraldOfLight"] = {
- name = "Sentinel of Purity",
- monsterTags = { "bludgeoning_weapon", "fast_movement", "has_staff", "has_two_handed_melee", "human", "humanoid", "medium_height", "melee", "not_dex", "not_int", "physical_affinity", "plate_armour", "red_blood", },
- life = 3.4,
- armour = 1,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 3.04,
- damageSpread = 0.2,
- attackTime = 0.83,
- attackRange = 12,
- accuracy = 3.4,
- weaponType1 = "Staff",
- limit = "ActiveSentinelOfPurityLimit",
- skillList = {
- "Melee",
- "HeraldOfLightMinionSlam",
- "ChampionTeleport",
- "SentinelHolySlam",
- },
- modList = {
- -- set_item_drop_slots [set_item_drop_slots = 0]
- },
-}
+ minions["AxisEliteSoldierHeraldOfLight"] = {
+ name = "Sentinel of Purity",
+ monsterTags = { "bludgeoning_weapon", "fast_movement", "has_staff", "has_two_handed_melee", "human", "humanoid", "medium_height", "melee", "not_dex", "not_int", "physical_affinity", "plate_armour", "red_blood", },
+ life = 3.4,
+ armour = 1,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 3.04,
+ damageSpread = 0.2,
+ attackTime = 0.83,
+ attackRange = 12,
+ accuracy = 3.4,
+ weaponType1 = "Staff",
+ limit = "ActiveSentinelOfPurityLimit",
+ skillList = {
+ "Melee",
+ "HeraldOfLightMinionSlam",
+ "ChampionTeleport",
+ "SentinelHolySlam",
+ },
+ modList = {
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ },
+ }
-minions["HolyLivingRelic"] = {
- name = "Holy Relic",
- monsterTags = { "cannot_be_monolith", "caster", "construct", "extra_extra_small_height", "ghost_armour", "is_unarmed", "medium_movement", "not_dex", "not_str", "physical_affinity", "unusable_corpse", },
- life = 6,
- energyShield = 0.6,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 1,
- damageSpread = 0,
- attackTime = 1,
- attackRange = 6,
- accuracy = 1,
- limit = "ActiveHolyRelicLimit",
- skillList = {
- "RelicTriggeredNova",
- "RelicTeleport",
- },
- modList = {
- -- EmergeSpeedHigh [emerge_speed_+% = 0]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
- -- minion_targeting_use_parent_location [minion_targeting_use_parent_location = 1]
- -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
- -- set_cannot_be_afflicted [set_cannot_be_afflicted = 1]
- },
-}
+ minions["HolyLivingRelic"] = {
+ name = "Holy Relic",
+ monsterTags = { "cannot_be_monolith", "caster", "construct", "extra_extra_small_height", "ghost_armour", "is_unarmed", "medium_movement", "not_dex", "not_str", "physical_affinity", "unusable_corpse", },
+ life = 6,
+ energyShield = 0.6,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 1,
+ damageSpread = 0,
+ attackTime = 1,
+ attackRange = 6,
+ accuracy = 1,
+ limit = "ActiveHolyRelicLimit",
+ skillList = {
+ "RelicTriggeredNova",
+ "RelicTeleport",
+ },
+ modList = {
+ -- EmergeSpeedHigh [emerge_speed_+% = 0]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ -- minion_targeting_use_parent_location [minion_targeting_use_parent_location = 1]
+ -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
+ -- set_cannot_be_afflicted [set_cannot_be_afflicted = 1]
+ },
+ }
-minions["AxisEliteSoldierDominatingBlow"] = {
- name = "Sentinel of Dominance",
- monsterTags = { "bludgeoning_weapon", "fast_movement", "has_one_hand_mace", "has_one_handed_melee", "human", "humanoid", "medium_height", "melee", "not_dex", "not_int", "physical_affinity", "plate_armour", },
- life = 4,
- armour = 1,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 2.8,
- damageSpread = 0.2,
- attackTime = 0.83,
- attackRange = 11,
- accuracy = 3.4,
- weaponType1 = "One Handed Mace",
- weaponType2 = "Shield",
- limit = "ActiveSentinelOfDominanceLimit",
- skillList = {
- "Melee",
- "DominatingBlowMinionCharge",
- "SentinelHolySlam",
- },
- modList = {
- -- MonsterCastsShieldChargeText [monster_casts_shield_charge_text = 1]
- mod("BlockChance", "BASE", 40, 0, 0), -- MonsterAttackBlock40Bypass20 [monster_base_block_% = 40]
- mod("BlockEffect", "BASE", 20, 0, 0), -- MonsterAttackBlock40Bypass20 [base_block_%_damage_taken = 20]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- },
-}
+ minions["AxisEliteSoldierDominatingBlow"] = {
+ name = "Sentinel of Dominance",
+ monsterTags = { "bludgeoning_weapon", "fast_movement", "has_one_hand_mace", "has_one_handed_melee", "human", "humanoid", "medium_height", "melee", "not_dex", "not_int", "physical_affinity", "plate_armour", },
+ life = 4,
+ armour = 1,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 2.8,
+ damageSpread = 0.2,
+ attackTime = 0.83,
+ attackRange = 11,
+ accuracy = 3.4,
+ weaponType1 = "One Handed Mace",
+ weaponType2 = "Shield",
+ limit = "ActiveSentinelOfDominanceLimit",
+ skillList = {
+ "Melee",
+ "DominatingBlowMinionCharge",
+ "SentinelHolySlam",
+ },
+ modList = {
+ -- MonsterCastsShieldChargeText [monster_casts_shield_charge_text = 1]
+ mod("BlockChance", "BASE", 40, 0, 0), -- MonsterAttackBlock40Bypass20 [monster_base_block_% = 40]
+ mod("BlockEffect", "BASE", 20, 0, 0), -- MonsterAttackBlock40Bypass20 [base_block_%_damage_taken = 20]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ },
+ }
-minions["AxisEliteSoldierDominatingBlowVaal"] = {
- name = "Ascended Sentinel of Dominance",
- monsterTags = { "bludgeoning_weapon", "has_one_hand_mace", "has_one_handed_melee", "human", "humanoid", "medium_height", "melee", "not_dex", "not_int", "physical_affinity", "plate_armour", "very_slow_movement", },
- life = 4,
- armour = 1,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 2.8,
- damageSpread = 0.2,
- attackTime = 0.83,
- attackRange = 28,
- accuracy = 3.4,
- limit = "ActiveSentinelOfDominanceLimit",
- skillList = {
- "TeleportVaalDomination",
- "GAVaalDominationTeleportSlam",
- "VaalDominationSunderMelee",
- "VaalDominationSunder",
- "GAVaalDominationLargeSlam",
- "VaalDominationMelee",
- },
- modList = {
- -- set_item_drop_slots [set_item_drop_slots = 0]
- mod("Damage", "MORE", 300),
- mod("DamageTaken", "MORE", -70),
- },
-}
+ minions["AxisEliteSoldierDominatingBlowVaal"] = {
+ name = "Ascended Sentinel of Dominance",
+ monsterTags = { "bludgeoning_weapon", "has_one_hand_mace", "has_one_handed_melee", "human", "humanoid", "medium_height", "melee", "not_dex", "not_int", "physical_affinity", "plate_armour", "very_slow_movement", },
+ life = 4,
+ armour = 1,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 2.8,
+ damageSpread = 0.2,
+ attackTime = 0.83,
+ attackRange = 28,
+ accuracy = 3.4,
+ limit = "ActiveSentinelOfDominanceLimit",
+ skillList = {
+ "TeleportVaalDomination",
+ "GAVaalDominationTeleportSlam",
+ "VaalDominationSunderMelee",
+ "VaalDominationSunder",
+ "GAVaalDominationLargeSlam",
+ "VaalDominationMelee",
+ },
+ modList = {
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ mod("Damage", "MORE", 300),
+ mod("DamageTaken", "MORE", -70),
+ },
+ }
-minions["AbsolutionTemplarJudge"] = {
- name = "Sentinel of Absolution",
- monsterTags = { "bludgeoning_weapon", "caster", "fast_movement", "flesh_armour", "has_one_hand_mace", "has_one_handed_melee", "human", "humanoid", "melee", "not_dex", "not_str", "physical_affinity", "templar", },
- life = 4,
- energyShield = 0.2,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 2.8,
- damageSpread = 0.2,
- attackTime = 1.17,
- attackRange = 9,
- accuracy = 1,
- weaponType1 = "One Handed Mace",
- limit = "ActiveSentinelOfAbsolutionLimit",
- skillList = {
- "Melee",
- "AbsolutionMinion",
- "AbsolutionMinionEmpowered",
- },
- modList = {
- -- set_item_drop_slots [set_item_drop_slots = 0]
- },
-}
+ minions["AbsolutionTemplarJudge"] = {
+ name = "Sentinel of Absolution",
+ monsterTags = { "bludgeoning_weapon", "caster", "fast_movement", "flesh_armour", "has_one_hand_mace", "has_one_handed_melee", "human", "humanoid", "melee", "not_dex", "not_str", "physical_affinity", "templar", },
+ life = 4,
+ energyShield = 0.2,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 2.8,
+ damageSpread = 0.2,
+ attackTime = 1.17,
+ attackRange = 9,
+ accuracy = 1,
+ weaponType1 = "One Handed Mace",
+ limit = "ActiveSentinelOfAbsolutionLimit",
+ skillList = {
+ "Melee",
+ "AbsolutionMinion",
+ "AbsolutionMinionEmpowered",
+ },
+ modList = {
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ },
+ }
-minions["AbsolutionTemplarJudgeVaal"] = {
- name = "Ascended Sentinel of Absolution",
- monsterTags = { "bludgeoning_weapon", "caster", "fast_movement", "flesh_armour", "has_one_hand_mace", "has_one_handed_melee", "human", "humanoid", "innocence_story", "melee", "not_dex", "not_str", "physical_affinity", "ranged", "templar", },
- life = 4,
- energyShield = 0.2,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 2.8,
- damageSpread = 0.2,
- attackTime = 1.17,
- attackRange = 9,
- accuracy = 1,
- limit = "ActiveSentinelOfAbsolutionLimit",
- skillList = {
- "AbsolutionMinionVaal",
- "AbsolutionMinionVaalCascade",
- "GTVaalAbsolutionLarge",
- "VaalAbsolutionDelayedBlast",
- "GSVaalAbsolutionEmerge",
- },
- modList = {
- -- set_item_drop_slots [set_item_drop_slots = 0]
- mod("Damage", "MORE", 300),
- mod("DamageTaken", "MORE", -70),
- },
-}
+ minions["AbsolutionTemplarJudgeVaal"] = {
+ name = "Ascended Sentinel of Absolution",
+ monsterTags = { "bludgeoning_weapon", "caster", "fast_movement", "flesh_armour", "has_one_hand_mace", "has_one_handed_melee", "human", "humanoid", "innocence_story", "melee", "not_dex", "not_str", "physical_affinity", "ranged", "templar", },
+ life = 4,
+ energyShield = 0.2,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 2.8,
+ damageSpread = 0.2,
+ attackTime = 1.17,
+ attackRange = 9,
+ accuracy = 1,
+ limit = "ActiveSentinelOfAbsolutionLimit",
+ skillList = {
+ "AbsolutionMinionVaal",
+ "AbsolutionMinionVaalCascade",
+ "GTVaalAbsolutionLarge",
+ "VaalAbsolutionDelayedBlast",
+ "GSVaalAbsolutionEmerge",
+ },
+ modList = {
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ mod("Damage", "MORE", 300),
+ mod("DamageTaken", "MORE", -70),
+ },
+ }
-minions["RhoaUniqueSummoned"] = {
- name = "Summoned Rhoa",
- monsterTags = { "animal_claw_weapon", "avian_beast", "beast", "fast_movement", "has_claw", "has_one_handed_melee", "large_model", "light_armour", "lightning_affinity", "medium_height", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", },
- life = 9,
- armour = 0.25,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 4.28,
- damageSpread = 0.2,
- attackTime = 0.93,
- attackRange = 14,
- accuracy = 3.4,
- limit = "ActiveBeastMinionLimit",
- skillList = {
- "MeleeAtAnimationSpeedUnique",
- "SummonedRhoaShieldCharge",
- },
- modList = {
- -- MonsterNearbyEnemiesAreIntimidated [is_intimidated = 1]
- -- MonsterNearbyEnemiesAreIntimidated [local_display_nearby_enemies_are_intimidated = 1]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
- mod("DamageTaken", "MORE", -100, 0, 0), -- set_base_cannot_be_damaged [set_base_cannot_be_damaged = 1]
- -- set_cannot_be_chained_from [set_cannot_be_chained_from = 1]
- },
-}
+ minions["RhoaUniqueSummoned"] = {
+ name = "Summoned Rhoa",
+ monsterTags = { "animal_claw_weapon", "avian_beast", "beast", "fast_movement", "has_claw", "has_one_handed_melee", "large_model", "light_armour", "lightning_affinity", "medium_height", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", },
+ life = 9,
+ armour = 0.25,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 4.28,
+ damageSpread = 0.2,
+ attackTime = 0.93,
+ attackRange = 14,
+ accuracy = 3.4,
+ limit = "ActiveBeastMinionLimit",
+ skillList = {
+ "MeleeAtAnimationSpeedUnique",
+ "SummonedRhoaShieldCharge",
+ },
+ modList = {
+ -- MonsterNearbyEnemiesAreIntimidated [is_intimidated = 1]
+ -- MonsterNearbyEnemiesAreIntimidated [local_display_nearby_enemies_are_intimidated = 1]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ mod("DamageTaken", "MORE", -100, 0, 0), -- set_base_cannot_be_damaged [set_base_cannot_be_damaged = 1]
+ -- set_cannot_be_chained_from [set_cannot_be_chained_from = 1]
+ },
+ }
-minions["SnakeSpitUniqueSummoned"] = {
- name = "Summoned Cobra",
- monsterTags = { "beast", "fast_movement", "has_dagger", "has_one_handed_melee", "light_armour", "medium_small_height", "not_int", "not_str", "physical_affinity", "ranged", "red_blood", "reptile_beast", },
- baseDamageIgnoresAttackSpeed = true,
- life = 9,
- evasion = 0.15,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 3.23,
- damageSpread = 0.2,
- attackTime = 1.1,
- attackRange = 9,
- accuracy = 3.4,
- limit = "ActiveBeastMinionLimit",
- skillList = {
- "SummonedSnakeProjectile",
- },
- modList = {
- mod("PhysicalDamageConvertToChaos", "BASE", 30, 0, 0), -- MonsterSnakeChaos [base_physical_damage_%_to_convert_to_chaos = 30]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
- mod("DamageTaken", "MORE", -100, 0, 0), -- set_base_cannot_be_damaged [set_base_cannot_be_damaged = 1]
- -- set_cannot_be_chained_from [set_cannot_be_chained_from = 1]
- },
-}
+ minions["SnakeSpitUniqueSummoned"] = {
+ name = "Summoned Cobra",
+ monsterTags = { "beast", "fast_movement", "has_dagger", "has_one_handed_melee", "light_armour", "medium_small_height", "not_int", "not_str", "physical_affinity", "ranged", "red_blood", "reptile_beast", },
+ baseDamageIgnoresAttackSpeed = true,
+ life = 9,
+ evasion = 0.15,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 3.23,
+ damageSpread = 0.2,
+ attackTime = 1.1,
+ attackRange = 9,
+ accuracy = 3.4,
+ limit = "ActiveBeastMinionLimit",
+ skillList = {
+ "SummonedSnakeProjectile",
+ },
+ modList = {
+ mod("PhysicalDamageConvertToChaos", "BASE", 30, 0, 0), -- MonsterSnakeChaos [base_physical_damage_%_to_convert_to_chaos = 30]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ mod("DamageTaken", "MORE", -100, 0, 0), -- set_base_cannot_be_damaged [set_base_cannot_be_damaged = 1]
+ -- set_cannot_be_chained_from [set_cannot_be_chained_from = 1]
+ },
+ }
-minions["DropBearUniqueSummoned"] = {
- name = "Summoned Ursa",
- monsterTags = { "animal_claw_weapon", "beast", "extra_small_height", "fast_movement", "has_one_hand_mace", "has_one_handed_melee", "light_armour", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "ursine_beast", },
- baseDamageIgnoresAttackSpeed = true,
- life = 9,
- evasion = 0.5,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 3.53,
- damageSpread = 0.2,
- attackTime = 1.1,
- attackRange = 10,
- accuracy = 3.4,
- weaponType1 = "One Handed Mace",
- limit = "ActiveBeastMinionLimit",
- skillList = {
- "MeleeAtAnimationSpeedUnique",
- "DropBearSummonedGroundSlam",
- "DropBearSummonedRallyingCry",
- },
- modList = {
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
- mod("DamageTaken", "MORE", -100, 0, 0), -- set_base_cannot_be_damaged [set_base_cannot_be_damaged = 1]
- -- set_cannot_be_chained_from [set_cannot_be_chained_from = 1]
- },
-}
+ minions["DropBearUniqueSummoned"] = {
+ name = "Summoned Ursa",
+ monsterTags = { "animal_claw_weapon", "beast", "extra_small_height", "fast_movement", "has_one_hand_mace", "has_one_handed_melee", "light_armour", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "ursine_beast", },
+ baseDamageIgnoresAttackSpeed = true,
+ life = 9,
+ evasion = 0.5,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 3.53,
+ damageSpread = 0.2,
+ attackTime = 1.1,
+ attackRange = 10,
+ accuracy = 3.4,
+ weaponType1 = "One Handed Mace",
+ limit = "ActiveBeastMinionLimit",
+ skillList = {
+ "MeleeAtAnimationSpeedUnique",
+ "DropBearSummonedGroundSlam",
+ "DropBearSummonedRallyingCry",
+ },
+ modList = {
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ mod("DamageTaken", "MORE", -100, 0, 0), -- set_base_cannot_be_damaged [set_base_cannot_be_damaged = 1]
+ -- set_cannot_be_chained_from [set_cannot_be_chained_from = 1]
+ },
+ }
-minions["SummonedCarrionGolem"] = {
- name = "Carrion Golem",
- monsterTags = { "bludgeoning_weapon", "construct", "fast_movement", "golem", "is_unarmed", "large_height", "mud_blood", "not_dex", "not_str", "physical_affinity", "stone_armour", },
- life = 5.82,
- energyShield = 0.4,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 0.6,
- damageSpread = 0.2,
- attackTime = 0.9,
- attackRange = 13,
- accuracy = 3.4,
- limit = "ActiveGolemLimit",
- skillList = {
- "BoneGolemMultiAttack",
- "BoneGolemCascade",
- "BoneGolemLeapSlam",
- "EGBoneGolemConsumeCorpse",
- "BoneGolemCascadeEmpowered",
- },
- modList = {
- -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
- mod("LifeRegenPercent", "BASE", 1, 0, 0), -- SummonedGolemLifeRegeneration [life_regeneration_rate_per_minute_% = 60]
- -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
- -- CannotBeAugmented [cant_possess_this = 1]
- -- CannotBeAugmented [cant_touch_this = 1]
- -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
- -- CannotBeAugmented [cannot_be_afflicted = 1]
- -- CannotBeAugmented [cannot_have_affliction_mods = 1]
- },
-}
+ minions["SummonedCarrionGolem"] = {
+ name = "Carrion Golem",
+ monsterTags = { "bludgeoning_weapon", "construct", "fast_movement", "golem", "is_unarmed", "large_height", "mud_blood", "not_dex", "not_str", "physical_affinity", "stone_armour", },
+ life = 5.82,
+ energyShield = 0.4,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 0.6,
+ damageSpread = 0.2,
+ attackTime = 0.9,
+ attackRange = 13,
+ accuracy = 3.4,
+ limit = "ActiveGolemLimit",
+ skillList = {
+ "BoneGolemMultiAttack",
+ "BoneGolemCascade",
+ "BoneGolemLeapSlam",
+ "EGBoneGolemConsumeCorpse",
+ "BoneGolemCascadeEmpowered",
+ },
+ modList = {
+ -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
+ mod("LifeRegenPercent", "BASE", 1, 0, 0), -- SummonedGolemLifeRegeneration [life_regeneration_rate_per_minute_% = 60]
+ -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
+ -- CannotBeAugmented [cant_possess_this = 1]
+ -- CannotBeAugmented [cant_touch_this = 1]
+ -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
+ -- CannotBeAugmented [cannot_be_afflicted = 1]
+ -- CannotBeAugmented [cannot_have_affliction_mods = 1]
+ },
+ }
-minions["SkitterbotCold"] = {
- name = "Chilling Skitterbot",
- monsterTags = { "construct", "extra_extra_small_height", "is_unarmed", "non_attacking", "stone_armour", "very_fast_movement", },
- life = 1,
- fireResist = 0,
- coldResist = 0,
- lightningResist = 0,
- chaosResist = 0,
- damage = 1,
- damageSpread = 0,
- attackTime = 1,
- attackRange = 6,
- accuracy = 1,
- skillList = {
- "SkitterbotDetonateMines",
- "SkitterbotWait",
- },
- modList = {
- -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
- -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
- -- CannotBeAugmented [cant_possess_this = 1]
- -- CannotBeAugmented [cant_touch_this = 1]
- -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
- -- CannotBeAugmented [cannot_be_afflicted = 1]
- -- CannotBeAugmented [cannot_have_affliction_mods = 1]
- -- set_immune_to_cheats [set_immune_to_cheats = 1]
- -- set_cannot_die [set_cannot_die = 1]
- mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
- mod("DamageTaken", "MORE", -100, 0, 0), -- set_base_cannot_be_damaged [set_base_cannot_be_damaged = 1]
- -- set_cannot_taunt_enemies [set_cannot_taunt_enemies = 1]
- -- set_untargetable_by_monster_ai [set_untargetable_by_monster_ai = 1]
- mod("StunImmune", "FLAG", 1, 0, 0), -- base_cannot_be_stunned [base_cannot_be_stunned = 1]
- mod("KnockbackImmune", "FLAG", 1, 0, 0), -- cannot_be_knocked_back [cannot_be_knocked_back = 1]
- mod("EnduranceChargesMax", "OVERRIDE", 0, 0, 0), -- set_max_endurance_charges [set_max_endurance_charges = 0]
- mod("FrenzyChargesMax", "OVERRIDE", 0, 0, 0), -- set_max_frenzy_charges [set_max_frenzy_charges = 0]
- mod("PowerChargesMax", "OVERRIDE", 0, 0, 0), -- set_max_power_charges [set_max_power_charges = 0]
- -- set_cannot_be_chained_from [set_cannot_be_chained_from = 1]
- -- set_cannot_be_splashed_from [set_cannot_be_splashed_from = 1]
- },
-}
+ minions["SkitterbotCold"] = {
+ name = "Chilling Skitterbot",
+ monsterTags = { "construct", "extra_extra_small_height", "is_unarmed", "non_attacking", "stone_armour", "very_fast_movement", },
+ life = 1,
+ fireResist = 0,
+ coldResist = 0,
+ lightningResist = 0,
+ chaosResist = 0,
+ damage = 1,
+ damageSpread = 0,
+ attackTime = 1,
+ attackRange = 6,
+ accuracy = 1,
+ skillList = {
+ "SkitterbotDetonateMines",
+ "SkitterbotWait",
+ },
+ modList = {
+ -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
+ -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
+ -- CannotBeAugmented [cant_possess_this = 1]
+ -- CannotBeAugmented [cant_touch_this = 1]
+ -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
+ -- CannotBeAugmented [cannot_be_afflicted = 1]
+ -- CannotBeAugmented [cannot_have_affliction_mods = 1]
+ -- set_immune_to_cheats [set_immune_to_cheats = 1]
+ -- set_cannot_die [set_cannot_die = 1]
+ mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
+ mod("DamageTaken", "MORE", -100, 0, 0), -- set_base_cannot_be_damaged [set_base_cannot_be_damaged = 1]
+ -- set_cannot_taunt_enemies [set_cannot_taunt_enemies = 1]
+ -- set_untargetable_by_monster_ai [set_untargetable_by_monster_ai = 1]
+ mod("StunImmune", "FLAG", 1, 0, 0), -- base_cannot_be_stunned [base_cannot_be_stunned = 1]
+ mod("KnockbackImmune", "FLAG", 1, 0, 0), -- cannot_be_knocked_back [cannot_be_knocked_back = 1]
+ mod("EnduranceChargesMax", "OVERRIDE", 0, 0, 0), -- set_max_endurance_charges [set_max_endurance_charges = 0]
+ mod("FrenzyChargesMax", "OVERRIDE", 0, 0, 0), -- set_max_frenzy_charges [set_max_frenzy_charges = 0]
+ mod("PowerChargesMax", "OVERRIDE", 0, 0, 0), -- set_max_power_charges [set_max_power_charges = 0]
+ -- set_cannot_be_chained_from [set_cannot_be_chained_from = 1]
+ -- set_cannot_be_splashed_from [set_cannot_be_splashed_from = 1]
+ },
+ }
-minions["SkitterbotLightning"] = {
- name = "Shocking Skitterbot",
- monsterTags = { "construct", "extra_extra_small_height", "is_unarmed", "non_attacking", "stone_armour", "very_fast_movement", },
- life = 1,
- fireResist = 0,
- coldResist = 0,
- lightningResist = 0,
- chaosResist = 0,
- damage = 1,
- damageSpread = 0,
- attackTime = 1,
- attackRange = 6,
- accuracy = 1,
- skillList = {
- "SkitterbotDetonateMines",
- "SkitterbotWait",
- },
- modList = {
- -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
- -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
- -- CannotBeAugmented [cant_possess_this = 1]
- -- CannotBeAugmented [cant_touch_this = 1]
- -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
- -- CannotBeAugmented [cannot_be_afflicted = 1]
- -- CannotBeAugmented [cannot_have_affliction_mods = 1]
- -- set_immune_to_cheats [set_immune_to_cheats = 1]
- -- set_cannot_die [set_cannot_die = 1]
- mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
- mod("DamageTaken", "MORE", -100, 0, 0), -- set_base_cannot_be_damaged [set_base_cannot_be_damaged = 1]
- -- set_cannot_taunt_enemies [set_cannot_taunt_enemies = 1]
- -- set_untargetable_by_monster_ai [set_untargetable_by_monster_ai = 1]
- mod("StunImmune", "FLAG", 1, 0, 0), -- base_cannot_be_stunned [base_cannot_be_stunned = 1]
- mod("KnockbackImmune", "FLAG", 1, 0, 0), -- cannot_be_knocked_back [cannot_be_knocked_back = 1]
- mod("EnduranceChargesMax", "OVERRIDE", 0, 0, 0), -- set_max_endurance_charges [set_max_endurance_charges = 0]
- mod("FrenzyChargesMax", "OVERRIDE", 0, 0, 0), -- set_max_frenzy_charges [set_max_frenzy_charges = 0]
- mod("PowerChargesMax", "OVERRIDE", 0, 0, 0), -- set_max_power_charges [set_max_power_charges = 0]
- -- set_cannot_be_chained_from [set_cannot_be_chained_from = 1]
- -- set_cannot_be_splashed_from [set_cannot_be_splashed_from = 1]
- },
-}
+ minions["SkitterbotLightning"] = {
+ name = "Shocking Skitterbot",
+ monsterTags = { "construct", "extra_extra_small_height", "is_unarmed", "non_attacking", "stone_armour", "very_fast_movement", },
+ life = 1,
+ fireResist = 0,
+ coldResist = 0,
+ lightningResist = 0,
+ chaosResist = 0,
+ damage = 1,
+ damageSpread = 0,
+ attackTime = 1,
+ attackRange = 6,
+ accuracy = 1,
+ skillList = {
+ "SkitterbotDetonateMines",
+ "SkitterbotWait",
+ },
+ modList = {
+ -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
+ -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
+ -- CannotBeAugmented [cant_possess_this = 1]
+ -- CannotBeAugmented [cant_touch_this = 1]
+ -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
+ -- CannotBeAugmented [cannot_be_afflicted = 1]
+ -- CannotBeAugmented [cannot_have_affliction_mods = 1]
+ -- set_immune_to_cheats [set_immune_to_cheats = 1]
+ -- set_cannot_die [set_cannot_die = 1]
+ mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
+ mod("DamageTaken", "MORE", -100, 0, 0), -- set_base_cannot_be_damaged [set_base_cannot_be_damaged = 1]
+ -- set_cannot_taunt_enemies [set_cannot_taunt_enemies = 1]
+ -- set_untargetable_by_monster_ai [set_untargetable_by_monster_ai = 1]
+ mod("StunImmune", "FLAG", 1, 0, 0), -- base_cannot_be_stunned [base_cannot_be_stunned = 1]
+ mod("KnockbackImmune", "FLAG", 1, 0, 0), -- cannot_be_knocked_back [cannot_be_knocked_back = 1]
+ mod("EnduranceChargesMax", "OVERRIDE", 0, 0, 0), -- set_max_endurance_charges [set_max_endurance_charges = 0]
+ mod("FrenzyChargesMax", "OVERRIDE", 0, 0, 0), -- set_max_frenzy_charges [set_max_frenzy_charges = 0]
+ mod("PowerChargesMax", "OVERRIDE", 0, 0, 0), -- set_max_power_charges [set_max_power_charges = 0]
+ -- set_cannot_be_chained_from [set_cannot_be_chained_from = 1]
+ -- set_cannot_be_splashed_from [set_cannot_be_splashed_from = 1]
+ },
+ }
-minions["SkitterbotFire"] = {
- name = "Scorching Skitterbot",
- monsterTags = { "construct", "extra_extra_small_height", "is_unarmed", "non_attacking", "stone_armour", "very_fast_movement", },
- life = 1,
- fireResist = 0,
- coldResist = 0,
- lightningResist = 0,
- chaosResist = 0,
- damage = 1,
- damageSpread = 0,
- attackTime = 1,
- attackRange = 6,
- accuracy = 1,
- skillList = {
- "SkitterbotDetonateMines",
- "SkitterbotWait",
- },
- modList = {
- -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
- -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
- -- CannotBeAugmented [cant_possess_this = 1]
- -- CannotBeAugmented [cant_touch_this = 1]
- -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
- -- CannotBeAugmented [cannot_be_afflicted = 1]
- -- CannotBeAugmented [cannot_have_affliction_mods = 1]
- -- set_immune_to_cheats [set_immune_to_cheats = 1]
- -- set_cannot_die [set_cannot_die = 1]
- mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
- mod("DamageTaken", "MORE", -100, 0, 0), -- set_base_cannot_be_damaged [set_base_cannot_be_damaged = 1]
- -- set_cannot_taunt_enemies [set_cannot_taunt_enemies = 1]
- -- set_untargetable_by_monster_ai [set_untargetable_by_monster_ai = 1]
- mod("StunImmune", "FLAG", 1, 0, 0), -- base_cannot_be_stunned [base_cannot_be_stunned = 1]
- mod("KnockbackImmune", "FLAG", 1, 0, 0), -- cannot_be_knocked_back [cannot_be_knocked_back = 1]
- mod("EnduranceChargesMax", "OVERRIDE", 0, 0, 0), -- set_max_endurance_charges [set_max_endurance_charges = 0]
- mod("FrenzyChargesMax", "OVERRIDE", 0, 0, 0), -- set_max_frenzy_charges [set_max_frenzy_charges = 0]
- mod("PowerChargesMax", "OVERRIDE", 0, 0, 0), -- set_max_power_charges [set_max_power_charges = 0]
- -- set_cannot_be_chained_from [set_cannot_be_chained_from = 1]
- -- set_cannot_be_splashed_from [set_cannot_be_splashed_from = 1]
- },
-}
+ minions["SkitterbotFire"] = {
+ name = "Scorching Skitterbot",
+ monsterTags = { "construct", "extra_extra_small_height", "is_unarmed", "non_attacking", "stone_armour", "very_fast_movement", },
+ life = 1,
+ fireResist = 0,
+ coldResist = 0,
+ lightningResist = 0,
+ chaosResist = 0,
+ damage = 1,
+ damageSpread = 0,
+ attackTime = 1,
+ attackRange = 6,
+ accuracy = 1,
+ skillList = {
+ "SkitterbotDetonateMines",
+ "SkitterbotWait",
+ },
+ modList = {
+ -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
+ -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
+ -- CannotBeAugmented [cant_possess_this = 1]
+ -- CannotBeAugmented [cant_touch_this = 1]
+ -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
+ -- CannotBeAugmented [cannot_be_afflicted = 1]
+ -- CannotBeAugmented [cannot_have_affliction_mods = 1]
+ -- set_immune_to_cheats [set_immune_to_cheats = 1]
+ -- set_cannot_die [set_cannot_die = 1]
+ mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
+ mod("DamageTaken", "MORE", -100, 0, 0), -- set_base_cannot_be_damaged [set_base_cannot_be_damaged = 1]
+ -- set_cannot_taunt_enemies [set_cannot_taunt_enemies = 1]
+ -- set_untargetable_by_monster_ai [set_untargetable_by_monster_ai = 1]
+ mod("StunImmune", "FLAG", 1, 0, 0), -- base_cannot_be_stunned [base_cannot_be_stunned = 1]
+ mod("KnockbackImmune", "FLAG", 1, 0, 0), -- cannot_be_knocked_back [cannot_be_knocked_back = 1]
+ mod("EnduranceChargesMax", "OVERRIDE", 0, 0, 0), -- set_max_endurance_charges [set_max_endurance_charges = 0]
+ mod("FrenzyChargesMax", "OVERRIDE", 0, 0, 0), -- set_max_frenzy_charges [set_max_frenzy_charges = 0]
+ mod("PowerChargesMax", "OVERRIDE", 0, 0, 0), -- set_max_power_charges [set_max_power_charges = 0]
+ -- set_cannot_be_chained_from [set_cannot_be_chained_from = 1]
+ -- set_cannot_be_splashed_from [set_cannot_be_splashed_from = 1]
+ },
+ }
-minions["SummonedReaper"] = {
- name = "Reaper",
- monsterTags = { "bone_armour", "bones", "fast_movement", "has_dual_wield_melee", "has_one_hand_sword", "has_one_handed_melee", "melee", "not_int", "physical_affinity", "skeleton", "slashing_weapon", "undead", },
- life = 3.74,
- armour = 0.5,
- evasion = 1,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 2.4,
- damageSpread = 0.2,
- attackTime = 1.5,
- attackRange = 13,
- accuracy = 3.4,
- weaponType1 = "One Handed Sword",
- weaponType2 = "One Handed Sword",
- limit = "ActiveReaperLimit",
- skillList = {
- "ReaperConsumeMinionForHeal",
- "ReaperConsumeMinionForBuff",
- "SummonedReaperMelee",
- "SummonedReaperDash",
- "SummonedReaperUltimate",
- "GASummonReaperUltimateLeftSlash",
- "GASummonReaperUltimateRightSlash",
- "EAASummonedReaperComboAttack",
- "GASummonReaperComboWhirl",
- "GASummonReaperComboLeftSlash",
- "GASummonReaperComboRightSlash",
- "GASummonReaperDashImpactSlash",
- "GASummonReaperDash",
- },
- modList = {
- -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
- -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
- -- CannotBeAugmented [cant_possess_this = 1]
- -- CannotBeAugmented [cant_touch_this = 1]
- -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
- -- CannotBeAugmented [cannot_be_afflicted = 1]
- -- CannotBeAugmented [cannot_have_affliction_mods = 1]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- },
-}
+ minions["SummonedReaper"] = {
+ name = "Reaper",
+ monsterTags = { "bone_armour", "bones", "fast_movement", "has_dual_wield_melee", "has_one_hand_sword", "has_one_handed_melee", "melee", "not_int", "physical_affinity", "skeleton", "slashing_weapon", "undead", },
+ life = 3.74,
+ armour = 0.5,
+ evasion = 1,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 2.4,
+ damageSpread = 0.2,
+ attackTime = 1.5,
+ attackRange = 13,
+ accuracy = 3.4,
+ weaponType1 = "One Handed Sword",
+ weaponType2 = "One Handed Sword",
+ limit = "ActiveReaperLimit",
+ skillList = {
+ "ReaperConsumeMinionForHeal",
+ "ReaperConsumeMinionForBuff",
+ "SummonedReaperMelee",
+ "SummonedReaperDash",
+ "SummonedReaperUltimate",
+ "GASummonReaperUltimateLeftSlash",
+ "GASummonReaperUltimateRightSlash",
+ "EAASummonedReaperComboAttack",
+ "GASummonReaperComboWhirl",
+ "GASummonReaperComboLeftSlash",
+ "GASummonReaperComboRightSlash",
+ "GASummonReaperDashImpactSlash",
+ "GASummonReaperDash",
+ },
+ modList = {
+ -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
+ -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
+ -- CannotBeAugmented [cant_possess_this = 1]
+ -- CannotBeAugmented [cant_touch_this = 1]
+ -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
+ -- CannotBeAugmented [cannot_be_afflicted = 1]
+ -- CannotBeAugmented [cannot_have_affliction_mods = 1]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ },
+ }
-minions["SummonedArbalists"] = {
- name = "Summoned Arbalist",
- monsterTags = { "bone_armour", "bones", "fast_movement", "is_unarmed", "not_int", "physical_affinity", "puncturing_weapon", "skeleton", "undead", },
- life = 7.41,
- armour = 0.5,
- evasion = 0.5,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 4.29,
- damageSpread = 0.2,
- attackTime = 1,
- attackRange = 60,
- accuracy = 3.4,
- limit = "ActiveArbalistLimit",
- skillList = {
- "MPWExpeditionSummonedArbalestProjectile",
- },
- modList = {
- mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- MonsterCannotBeDamaged [base_cannot_be_damaged = 1]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- set_cannot_die [set_cannot_die = 1]
- mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
- -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
- -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
- -- minion_aggro_range_scaled_by_distance_to_parent_target [minion_aggro_range_scaled_by_distance_to_parent_target = 1]
- },
-}
+ minions["SummonedArbalists"] = {
+ name = "Summoned Arbalist",
+ monsterTags = { "bone_armour", "bones", "fast_movement", "is_unarmed", "not_int", "physical_affinity", "puncturing_weapon", "skeleton", "undead", },
+ life = 7.41,
+ armour = 0.5,
+ evasion = 0.5,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 4.29,
+ damageSpread = 0.2,
+ attackTime = 1,
+ attackRange = 60,
+ accuracy = 3.4,
+ limit = "ActiveArbalistLimit",
+ skillList = {
+ "MPWExpeditionSummonedArbalestProjectile",
+ },
+ modList = {
+ mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- MonsterCannotBeDamaged [base_cannot_be_damaged = 1]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_cannot_die [set_cannot_die = 1]
+ mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
+ -- minion_aggro_range_scaled_by_distance_to_parent_target [minion_aggro_range_scaled_by_distance_to_parent_target = 1]
+ },
+ }
-minions["GuardianSentinel"] = {
- name = "Sentinel of Radiance",
- monsterTags = { "bludgeoning_weapon", "has_one_hand_mace", "has_one_handed_melee", "human", "humanoid", "medium_height", "melee", "not_dex", "not_int", "physical_affinity", "plate_armour", "very_slow_movement", },
- life = 12,
- armour = 1,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 20,
- damageSpread = 0.2,
- attackTime = 0.83,
- attackRange = 17,
- accuracy = 3.4,
- skillList = {
- "TeleportVaalDomination",
- "VaalDominationMelee",
- },
- modList = {
- -- set_item_drop_slots [set_item_drop_slots = 0]
- },
-}
+ minions["GuardianSentinel"] = {
+ name = "Sentinel of Radiance",
+ monsterTags = { "bludgeoning_weapon", "has_one_hand_mace", "has_one_handed_melee", "human", "humanoid", "medium_height", "melee", "not_dex", "not_int", "physical_affinity", "plate_armour", "very_slow_movement", },
+ life = 12,
+ armour = 1,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 20,
+ damageSpread = 0.2,
+ attackTime = 0.83,
+ attackRange = 17,
+ accuracy = 3.4,
+ skillList = {
+ "TeleportVaalDomination",
+ "VaalDominationMelee",
+ },
+ modList = {
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ },
+ }
--- This is a fake Minion to apply all 3 auras
-minions["GuardianRelicAll"] = {
- name = "All Relics",
- life = 4,
- energyShield = 0.6,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 1,
- damageSpread = 0,
- attackTime = 1,
- attackRange = 6,
- accuracy = 1,
- skillList = {
- "RelicTeleport",
- "Anger",
- "Hatred",
- "Wrath",
- },
- modList = {
- -- EmergeSpeedHigh [emerge_speed_+% = 0]
- },
-}
+ -- This is a fake Minion to apply all 3 auras
+ minions["GuardianRelicAll"] = {
+ name = "All Relics",
+ life = 4,
+ energyShield = 0.6,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 1,
+ damageSpread = 0,
+ attackTime = 1,
+ attackRange = 6,
+ accuracy = 1,
+ skillList = {
+ "RelicTeleport",
+ "Anger",
+ "Hatred",
+ "Wrath",
+ },
+ modList = {
+ -- EmergeSpeedHigh [emerge_speed_+% = 0]
+ },
+ }
-minions["GuardianRelicFire"] = {
- name = "Fire Relic",
- monsterTags = { "cannot_be_monolith", "caster", "construct", "extra_extra_small_height", "ghost_armour", "is_unarmed", "medium_movement", "not_dex", "not_str", "physical_affinity", "unusable_corpse", },
- life = 4,
- energyShield = 0.6,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 1,
- damageSpread = 0,
- attackTime = 1,
- attackRange = 6,
- accuracy = 1,
- skillList = {
- "RelicTeleport",
- "Anger",
- },
- modList = {
- -- EmergeSpeedHigh [emerge_speed_+% = 0]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
- -- minion_targeting_use_parent_location [minion_targeting_use_parent_location = 1]
- -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
- -- set_cannot_be_afflicted [set_cannot_be_afflicted = 1]
- },
-}
+ minions["GuardianRelicFire"] = {
+ name = "Fire Relic",
+ monsterTags = { "cannot_be_monolith", "caster", "construct", "extra_extra_small_height", "ghost_armour", "is_unarmed", "medium_movement", "not_dex", "not_str", "physical_affinity", "unusable_corpse", },
+ life = 4,
+ energyShield = 0.6,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 1,
+ damageSpread = 0,
+ attackTime = 1,
+ attackRange = 6,
+ accuracy = 1,
+ skillList = {
+ "RelicTeleport",
+ "Anger",
+ },
+ modList = {
+ -- EmergeSpeedHigh [emerge_speed_+% = 0]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ -- minion_targeting_use_parent_location [minion_targeting_use_parent_location = 1]
+ -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
+ -- set_cannot_be_afflicted [set_cannot_be_afflicted = 1]
+ },
+ }
-minions["GuardianRelicCold"] = {
- name = "Cold Relic",
- monsterTags = { "cannot_be_monolith", "caster", "construct", "extra_extra_small_height", "ghost_armour", "is_unarmed", "medium_movement", "not_dex", "not_str", "physical_affinity", "unusable_corpse", },
- life = 4,
- energyShield = 0.6,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 1,
- damageSpread = 0,
- attackTime = 1,
- attackRange = 6,
- accuracy = 1,
- skillList = {
- "RelicTeleport",
- "Hatred",
- },
- modList = {
- -- EmergeSpeedHigh [emerge_speed_+% = 0]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
- -- minion_targeting_use_parent_location [minion_targeting_use_parent_location = 1]
- -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
- -- set_cannot_be_afflicted [set_cannot_be_afflicted = 1]
- },
-}
+ minions["GuardianRelicCold"] = {
+ name = "Cold Relic",
+ monsterTags = { "cannot_be_monolith", "caster", "construct", "extra_extra_small_height", "ghost_armour", "is_unarmed", "medium_movement", "not_dex", "not_str", "physical_affinity", "unusable_corpse", },
+ life = 4,
+ energyShield = 0.6,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 1,
+ damageSpread = 0,
+ attackTime = 1,
+ attackRange = 6,
+ accuracy = 1,
+ skillList = {
+ "RelicTeleport",
+ "Hatred",
+ },
+ modList = {
+ -- EmergeSpeedHigh [emerge_speed_+% = 0]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ -- minion_targeting_use_parent_location [minion_targeting_use_parent_location = 1]
+ -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
+ -- set_cannot_be_afflicted [set_cannot_be_afflicted = 1]
+ },
+ }
-minions["GuardianRelicLightning"] = {
- name = "Lightning Relic",
- monsterTags = { "cannot_be_monolith", "caster", "construct", "extra_extra_small_height", "ghost_armour", "is_unarmed", "medium_movement", "not_dex", "not_str", "physical_affinity", "unusable_corpse", },
- life = 4,
- energyShield = 0.6,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 1,
- damageSpread = 0,
- attackTime = 1,
- attackRange = 6,
- accuracy = 1,
- skillList = {
- "RelicTeleport",
- "Wrath",
- },
- modList = {
- -- EmergeSpeedHigh [emerge_speed_+% = 0]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
- -- minion_targeting_use_parent_location [minion_targeting_use_parent_location = 1]
- -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
- -- set_cannot_be_afflicted [set_cannot_be_afflicted = 1]
- },
-}
+ minions["GuardianRelicLightning"] = {
+ name = "Lightning Relic",
+ monsterTags = { "cannot_be_monolith", "caster", "construct", "extra_extra_small_height", "ghost_armour", "is_unarmed", "medium_movement", "not_dex", "not_str", "physical_affinity", "unusable_corpse", },
+ life = 4,
+ energyShield = 0.6,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 1,
+ damageSpread = 0,
+ attackTime = 1,
+ attackRange = 6,
+ accuracy = 1,
+ skillList = {
+ "RelicTeleport",
+ "Wrath",
+ },
+ modList = {
+ -- EmergeSpeedHigh [emerge_speed_+% = 0]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ -- minion_targeting_use_parent_location [minion_targeting_use_parent_location = 1]
+ -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
+ -- set_cannot_be_afflicted [set_cannot_be_afflicted = 1]
+ },
+ }
-minions["VoidSpawn"] = {
- name = "Void Spawn",
- monsterTags = { "caster", "construct", "elder_monster", "eldritch", "extra_large_height", "flesh_armour", "influence_monster", "is_unarmed", "lightning_affinity", "medium_movement", "not_dex", "not_str", "ranged", "red_blood", },
- life = 6,
- energyShield = 1,
- fireResist = 30,
- coldResist = 30,
- lightningResist = 30,
- chaosResist = 20,
- damage = 1.5,
- damageSpread = 0.2,
- attackTime = 1,
- attackRange = 9,
- accuracy = 1,
- limit = "ActiveVoidSpawnLimit",
- skillList = {
- "ElderTentacleMinionProjectileDeepcaller",
- },
- modList = {
- -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
- -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
- -- CannotBeAugmented [cant_possess_this = 1]
- -- CannotBeAugmented [cant_touch_this = 1]
- -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
- -- CannotBeAugmented [cannot_be_afflicted = 1]
- -- CannotBeAugmented [cannot_have_affliction_mods = 1]
- },
-}
+ minions["VoidSpawn"] = {
+ name = "Void Spawn",
+ monsterTags = { "caster", "construct", "elder_monster", "eldritch", "extra_large_height", "flesh_armour", "influence_monster", "is_unarmed", "lightning_affinity", "medium_movement", "not_dex", "not_str", "ranged", "red_blood", },
+ life = 6,
+ energyShield = 1,
+ fireResist = 30,
+ coldResist = 30,
+ lightningResist = 30,
+ chaosResist = 20,
+ damage = 1.5,
+ damageSpread = 0.2,
+ attackTime = 1,
+ attackRange = 9,
+ accuracy = 1,
+ limit = "ActiveVoidSpawnLimit",
+ skillList = {
+ "ElderTentacleMinionProjectileDeepcaller",
+ },
+ modList = {
+ -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
+ -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
+ -- CannotBeAugmented [cant_possess_this = 1]
+ -- CannotBeAugmented [cant_touch_this = 1]
+ -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
+ -- CannotBeAugmented [cannot_be_afflicted = 1]
+ -- CannotBeAugmented [cannot_have_affliction_mods = 1]
+ },
+ }
-minions["AncestralAhuanaMinion"] = {
- name = "Spirit of Ahuana",
- monsterTags = { "human", "humanoid", "medium_movement", "not_int", "not_str", "red_blood", },
- baseDamageIgnoresAttackSpeed = true,
- life = 0.9,
- evasion = 1,
- fireResist = 0,
- coldResist = 0,
- lightningResist = 0,
- chaosResist = 0,
- damage = 1.3,
- damageSpread = 0.2,
- attackTime = 1,
- attackRange = 70,
- accuracy = 1,
- weaponType1 = "Bow",
- skillList = {
- "MPWAhuanaIceShot",
- "MonsterSnipeAhuana",
- "MPWAhuanaFakeArrow",
- },
- modList = {
- -- set_item_drop_slots [set_item_drop_slots = 0]
- mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- base_cannot_be_damaged [base_cannot_be_damaged = 1]
- mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
- -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
- -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
- -- minion_aggro_range_scaled_by_distance_to_parent_target [minion_aggro_range_scaled_by_distance_to_parent_target = 1]
- },
-}
+ minions["AncestralAhuanaMinion"] = {
+ name = "Spirit of Ahuana",
+ monsterTags = { "human", "humanoid", "medium_movement", "not_int", "not_str", "red_blood", },
+ baseDamageIgnoresAttackSpeed = true,
+ life = 0.9,
+ evasion = 1,
+ fireResist = 0,
+ coldResist = 0,
+ lightningResist = 0,
+ chaosResist = 0,
+ damage = 1.3,
+ damageSpread = 0.2,
+ attackTime = 1,
+ attackRange = 70,
+ accuracy = 1,
+ weaponType1 = "Bow",
+ skillList = {
+ "MPWAhuanaIceShot",
+ "MonsterSnipeAhuana",
+ "MPWAhuanaFakeArrow",
+ },
+ modList = {
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- base_cannot_be_damaged [base_cannot_be_damaged = 1]
+ mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
+ -- minion_aggro_range_scaled_by_distance_to_parent_target [minion_aggro_range_scaled_by_distance_to_parent_target = 1]
+ },
+ }
-minions["AncestralAkoyaMinion"] = {
- name = "Spirit of Akoya",
- monsterTags = { "human", "humanoid", "medium_movement", "not_int", "red_blood", },
- baseDamageIgnoresAttackSpeed = true,
- life = 1.1,
- armour = 0.75,
- evasion = 0.25,
- fireResist = 0,
- coldResist = 0,
- lightningResist = 0,
- chaosResist = 0,
- damage = 1.2,
- damageSpread = 0.2,
- attackTime = 1,
- attackRange = 20,
- accuracy = 1,
- weaponType1 = "Two Handed Axe",
- skillList = {
- "MeleeAtAnimationSpeedUnique",
- "MPSAkoyaJadeSpray",
- "GSAkoyaRockExplosion",
- },
- modList = {
- -- set_item_drop_slots [set_item_drop_slots = 0]
- mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- base_cannot_be_damaged [base_cannot_be_damaged = 1]
- mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
- -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
- -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
- -- minion_aggro_range_scaled_by_distance_to_parent_target [minion_aggro_range_scaled_by_distance_to_parent_target = 1]
- },
-}
+ minions["AncestralAkoyaMinion"] = {
+ name = "Spirit of Akoya",
+ monsterTags = { "human", "humanoid", "medium_movement", "not_int", "red_blood", },
+ baseDamageIgnoresAttackSpeed = true,
+ life = 1.1,
+ armour = 0.75,
+ evasion = 0.25,
+ fireResist = 0,
+ coldResist = 0,
+ lightningResist = 0,
+ chaosResist = 0,
+ damage = 1.2,
+ damageSpread = 0.2,
+ attackTime = 1,
+ attackRange = 20,
+ accuracy = 1,
+ weaponType1 = "Two Handed Axe",
+ skillList = {
+ "MeleeAtAnimationSpeedUnique",
+ "MPSAkoyaJadeSpray",
+ "GSAkoyaRockExplosion",
+ },
+ modList = {
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- base_cannot_be_damaged [base_cannot_be_damaged = 1]
+ mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
+ -- minion_aggro_range_scaled_by_distance_to_parent_target [minion_aggro_range_scaled_by_distance_to_parent_target = 1]
+ },
+ }
-minions["AncestralIkiahoMinion"] = {
- name = "Spirit of Ikiaho",
- monsterTags = { "human", "humanoid", "medium_movement", "not_dex", "not_str", "red_blood", },
- baseDamageIgnoresAttackSpeed = true,
- life = 1,
- energyShield = 4,
- fireResist = 0,
- coldResist = 0,
- lightningResist = 0,
- chaosResist = 0,
- damage = 1.2,
- damageSpread = 0.2,
- attackTime = 1,
- attackRange = 10,
- accuracy = 1,
- skillList = {
- "AncestralIkiahoArcticBreath",
- "AncestralIkiahoIceStorm",
- "EASIkiahoIceStorm",
- },
- modList = {
- -- set_item_drop_slots [set_item_drop_slots = 0]
- mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- base_cannot_be_damaged [base_cannot_be_damaged = 1]
- mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
- -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
- -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
- -- minion_aggro_range_scaled_by_distance_to_parent_target [minion_aggro_range_scaled_by_distance_to_parent_target = 1]
- },
-}
+ minions["AncestralIkiahoMinion"] = {
+ name = "Spirit of Ikiaho",
+ monsterTags = { "human", "humanoid", "medium_movement", "not_dex", "not_str", "red_blood", },
+ baseDamageIgnoresAttackSpeed = true,
+ life = 1,
+ energyShield = 4,
+ fireResist = 0,
+ coldResist = 0,
+ lightningResist = 0,
+ chaosResist = 0,
+ damage = 1.2,
+ damageSpread = 0.2,
+ attackTime = 1,
+ attackRange = 10,
+ accuracy = 1,
+ skillList = {
+ "AncestralIkiahoArcticBreath",
+ "AncestralIkiahoIceStorm",
+ "EASIkiahoIceStorm",
+ },
+ modList = {
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- base_cannot_be_damaged [base_cannot_be_damaged = 1]
+ mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
+ -- minion_aggro_range_scaled_by_distance_to_parent_target [minion_aggro_range_scaled_by_distance_to_parent_target = 1]
+ },
+ }
-minions["AncestralKahuturoaMinion"] = {
- name = "Spirit of Kahuturoa",
- monsterTags = { "fast_movement", "human", "humanoid", "not_dex", "not_int", "red_blood", },
- baseDamageIgnoresAttackSpeed = true,
- life = 1.2,
- armour = 1,
- fireResist = 0,
- coldResist = 0,
- lightningResist = 0,
- chaosResist = 0,
- damage = 1.6,
- damageSpread = 0.2,
- attackTime = 1,
- attackRange = 24,
- accuracy = 1,
- skillList = {
- "KahuturoaMelee",
- "DTTKahuturoaLeapSlam",
- "GAKahuturoaLeapSlamImpact",
- "GAKahuturoaForwardMelee",
- "GAKahuturoaLeapSlamWeaponSwing",
- },
- modList = {
- -- set_item_drop_slots [set_item_drop_slots = 0]
- mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- base_cannot_be_damaged [base_cannot_be_damaged = 1]
- mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
- -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
- -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
- -- minion_aggro_range_scaled_by_distance_to_parent_target [minion_aggro_range_scaled_by_distance_to_parent_target = 1]
- },
-}
+ minions["AncestralKahuturoaMinion"] = {
+ name = "Spirit of Kahuturoa",
+ monsterTags = { "fast_movement", "human", "humanoid", "not_dex", "not_int", "red_blood", },
+ baseDamageIgnoresAttackSpeed = true,
+ life = 1.2,
+ armour = 1,
+ fireResist = 0,
+ coldResist = 0,
+ lightningResist = 0,
+ chaosResist = 0,
+ damage = 1.6,
+ damageSpread = 0.2,
+ attackTime = 1,
+ attackRange = 24,
+ accuracy = 1,
+ skillList = {
+ "KahuturoaMelee",
+ "DTTKahuturoaLeapSlam",
+ "GAKahuturoaLeapSlamImpact",
+ "GAKahuturoaForwardMelee",
+ "GAKahuturoaLeapSlamWeaponSwing",
+ },
+ modList = {
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- base_cannot_be_damaged [base_cannot_be_damaged = 1]
+ mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
+ -- minion_aggro_range_scaled_by_distance_to_parent_target [minion_aggro_range_scaled_by_distance_to_parent_target = 1]
+ },
+ }
-minions["AncestralKaomMinion"] = {
- name = "Spirit of Kaom",
- monsterTags = { "human", "humanoid", "not_int", "red_blood", "slow_movement", },
- baseDamageIgnoresAttackSpeed = true,
- life = 2,
- armour = 0.75,
- evasion = 0.25,
- fireResist = 0,
- coldResist = 0,
- lightningResist = 0,
- chaosResist = 0,
- damage = 1.3,
- damageSpread = 0.2,
- attackTime = 1,
- attackRange = 20,
- accuracy = 1,
- weaponType1 = "Two Handed Axe",
- skillList = {
- "MeleeAtAnimationSpeedUnique",
- "MPSKaomFireFist",
- "GAKaomFistBlast",
- "GAKaomFistBlastFinal",
- "AncestralKaomUnarmedCombo",
- },
- modList = {
- -- set_item_drop_slots [set_item_drop_slots = 0]
- mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- base_cannot_be_damaged [base_cannot_be_damaged = 1]
- mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
- -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
- -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
- -- minion_aggro_range_scaled_by_distance_to_parent_target [minion_aggro_range_scaled_by_distance_to_parent_target = 1]
- },
-}
+ minions["AncestralKaomMinion"] = {
+ name = "Spirit of Kaom",
+ monsterTags = { "human", "humanoid", "not_int", "red_blood", "slow_movement", },
+ baseDamageIgnoresAttackSpeed = true,
+ life = 2,
+ armour = 0.75,
+ evasion = 0.25,
+ fireResist = 0,
+ coldResist = 0,
+ lightningResist = 0,
+ chaosResist = 0,
+ damage = 1.3,
+ damageSpread = 0.2,
+ attackTime = 1,
+ attackRange = 20,
+ accuracy = 1,
+ weaponType1 = "Two Handed Axe",
+ skillList = {
+ "MeleeAtAnimationSpeedUnique",
+ "MPSKaomFireFist",
+ "GAKaomFistBlast",
+ "GAKaomFistBlastFinal",
+ "AncestralKaomUnarmedCombo",
+ },
+ modList = {
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- base_cannot_be_damaged [base_cannot_be_damaged = 1]
+ mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
+ -- minion_aggro_range_scaled_by_distance_to_parent_target [minion_aggro_range_scaled_by_distance_to_parent_target = 1]
+ },
+ }
-minions["AncestralKiloavaMinion"] = {
- name = "Spirit of Kiloava",
- monsterTags = { "fast_movement", "human", "humanoid", "not_int", "red_blood", },
- baseDamageIgnoresAttackSpeed = true,
- life = 1.2,
- armour = 0.75,
- evasion = 0.25,
- fireResist = 0,
- coldResist = 0,
- lightningResist = 0,
- chaosResist = 0,
- damage = 1,
- damageSpread = 0.2,
- attackTime = 1,
- attackRange = 19,
- accuracy = 1,
- skillList = {
- "MeleeAtAnimationSpeedUnique",
- "MPWKiloavaSpearThrow",
- "GSKiloavaLightningBolt",
- },
- modList = {
- -- set_item_drop_slots [set_item_drop_slots = 0]
- mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- base_cannot_be_damaged [base_cannot_be_damaged = 1]
- mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
- -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
- -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
- -- minion_aggro_range_scaled_by_distance_to_parent_target [minion_aggro_range_scaled_by_distance_to_parent_target = 1]
- },
-}
+ minions["AncestralKiloavaMinion"] = {
+ name = "Spirit of Kiloava",
+ monsterTags = { "fast_movement", "human", "humanoid", "not_int", "red_blood", },
+ baseDamageIgnoresAttackSpeed = true,
+ life = 1.2,
+ armour = 0.75,
+ evasion = 0.25,
+ fireResist = 0,
+ coldResist = 0,
+ lightningResist = 0,
+ chaosResist = 0,
+ damage = 1,
+ damageSpread = 0.2,
+ attackTime = 1,
+ attackRange = 19,
+ accuracy = 1,
+ skillList = {
+ "MeleeAtAnimationSpeedUnique",
+ "MPWKiloavaSpearThrow",
+ "GSKiloavaLightningBolt",
+ },
+ modList = {
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- base_cannot_be_damaged [base_cannot_be_damaged = 1]
+ mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
+ -- minion_aggro_range_scaled_by_distance_to_parent_target [minion_aggro_range_scaled_by_distance_to_parent_target = 1]
+ },
+ }
-minions["AncestralMaataMinion"] = {
- name = "Spirit of Maata",
- monsterTags = { "human", "humanoid", "medium_movement", "not_str", "red_blood", },
- baseDamageIgnoresAttackSpeed = true,
- life = 0.9,
- energyShield = 1.6,
- evasion = 0.4,
- fireResist = 0,
- coldResist = 0,
- lightningResist = 0,
- chaosResist = 0,
- damage = 1,
- damageSpread = 0.2,
- attackTime = 1,
- attackRange = 20,
- accuracy = 1,
- weaponType1 = "One Handed Mace",
- skillList = {
- "MeleeAtAnimationSpeedUnique",
- "DonutCircleMaata",
- "SSMMaataVine",
- "GSMaataVineCascade",
- "GTMaataVineCascade",
- },
- modList = {
- -- set_item_drop_slots [set_item_drop_slots = 0]
- mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- base_cannot_be_damaged [base_cannot_be_damaged = 1]
- mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
- -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
- -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
- -- minion_aggro_range_scaled_by_distance_to_parent_target [minion_aggro_range_scaled_by_distance_to_parent_target = 1]
- },
-}
+ minions["AncestralMaataMinion"] = {
+ name = "Spirit of Maata",
+ monsterTags = { "human", "humanoid", "medium_movement", "not_str", "red_blood", },
+ baseDamageIgnoresAttackSpeed = true,
+ life = 0.9,
+ energyShield = 1.6,
+ evasion = 0.4,
+ fireResist = 0,
+ coldResist = 0,
+ lightningResist = 0,
+ chaosResist = 0,
+ damage = 1,
+ damageSpread = 0.2,
+ attackTime = 1,
+ attackRange = 20,
+ accuracy = 1,
+ weaponType1 = "One Handed Mace",
+ skillList = {
+ "MeleeAtAnimationSpeedUnique",
+ "DonutCircleMaata",
+ "SSMMaataVine",
+ "GSMaataVineCascade",
+ "GTMaataVineCascade",
+ },
+ modList = {
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- base_cannot_be_damaged [base_cannot_be_damaged = 1]
+ mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
+ -- minion_aggro_range_scaled_by_distance_to_parent_target [minion_aggro_range_scaled_by_distance_to_parent_target = 1]
+ },
+ }
-minions["AncestralRakiataMinion"] = {
- name = "Spirit of Rakiata",
- monsterTags = { "fast_movement", "human", "humanoid", "not_int", "red_blood", },
- baseDamageIgnoresAttackSpeed = true,
- life = 1,
- armour = 0.75,
- evasion = 0.3,
- fireResist = 0,
- coldResist = 0,
- lightningResist = 0,
- chaosResist = 0,
- damage = 1.3,
- damageSpread = 0.2,
- attackTime = 1,
- attackRange = 20,
- accuracy = 1,
- weaponType1 = "Two Handed Sword",
- skillList = {
- "GARakiataSlam",
- "RakiataSweep",
- "RakiataSlam",
- "RakiataLacerate",
- "GTRakiataSlam",
- },
- modList = {
- -- set_item_drop_slots [set_item_drop_slots = 0]
- mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- base_cannot_be_damaged [base_cannot_be_damaged = 1]
- mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
- -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
- -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
- -- minion_aggro_range_scaled_by_distance_to_parent_target [minion_aggro_range_scaled_by_distance_to_parent_target = 1]
- },
-}
+ minions["AncestralRakiataMinion"] = {
+ name = "Spirit of Rakiata",
+ monsterTags = { "fast_movement", "human", "humanoid", "not_int", "red_blood", },
+ baseDamageIgnoresAttackSpeed = true,
+ life = 1,
+ armour = 0.75,
+ evasion = 0.3,
+ fireResist = 0,
+ coldResist = 0,
+ lightningResist = 0,
+ chaosResist = 0,
+ damage = 1.3,
+ damageSpread = 0.2,
+ attackTime = 1,
+ attackRange = 20,
+ accuracy = 1,
+ weaponType1 = "Two Handed Sword",
+ skillList = {
+ "GARakiataSlam",
+ "RakiataSweep",
+ "RakiataSlam",
+ "RakiataLacerate",
+ "GTRakiataSlam",
+ },
+ modList = {
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- base_cannot_be_damaged [base_cannot_be_damaged = 1]
+ mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
+ -- minion_aggro_range_scaled_by_distance_to_parent_target [minion_aggro_range_scaled_by_distance_to_parent_target = 1]
+ },
+ }
-minions["AncestralTawhanukuMinion"] = {
- name = "Spirit of Tawhanuku",
- monsterTags = { "human", "humanoid", "medium_movement", "not_dex", "not_str", "red_blood", },
- baseDamageIgnoresAttackSpeed = true,
- life = 2,
- energyShield = 0.4,
- fireResist = 0,
- coldResist = 0,
- lightningResist = 0,
- chaosResist = 0,
- damage = 1.2,
- damageSpread = 0.2,
- attackTime = 1,
- attackRange = 10,
- accuracy = 1,
- skillList = {
- "GSAncestralTawhanukuWave",
- "AncestralTawhanukuSoulRend",
- "GTTawhanukuMultiSoulrend",
- },
- modList = {
- -- set_item_drop_slots [set_item_drop_slots = 0]
- mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- base_cannot_be_damaged [base_cannot_be_damaged = 1]
- mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
- -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
- -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
- -- minion_aggro_range_scaled_by_distance_to_parent_target [minion_aggro_range_scaled_by_distance_to_parent_target = 1]
- },
-}
+ minions["AncestralTawhanukuMinion"] = {
+ name = "Spirit of Tawhanuku",
+ monsterTags = { "human", "humanoid", "medium_movement", "not_dex", "not_str", "red_blood", },
+ baseDamageIgnoresAttackSpeed = true,
+ life = 2,
+ energyShield = 0.4,
+ fireResist = 0,
+ coldResist = 0,
+ lightningResist = 0,
+ chaosResist = 0,
+ damage = 1.2,
+ damageSpread = 0.2,
+ attackTime = 1,
+ attackRange = 10,
+ accuracy = 1,
+ skillList = {
+ "GSAncestralTawhanukuWave",
+ "AncestralTawhanukuSoulRend",
+ "GTTawhanukuMultiSoulrend",
+ },
+ modList = {
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- base_cannot_be_damaged [base_cannot_be_damaged = 1]
+ mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
+ -- minion_aggro_range_scaled_by_distance_to_parent_target [minion_aggro_range_scaled_by_distance_to_parent_target = 1]
+ },
+ }
-minions["AncestralUtulaMinion"] = {
- name = "Spirit of Utula",
- monsterTags = { "fast_movement", "human", "humanoid", "not_int", "red_blood", },
- baseDamageIgnoresAttackSpeed = true,
- life = 1.2,
- armour = 0.75,
- evasion = 0.1,
- fireResist = 0,
- coldResist = 0,
- lightningResist = 0,
- chaosResist = 0,
- damage = 1.2,
- damageSpread = 0.2,
- attackTime = 1,
- attackRange = 19,
- accuracy = 1,
- weaponType1 = "One Handed Axe",
- weaponType2 = "One Handed Axe",
- skillList = {
- "MeleeAtAnimationSpeedUnique",
- "UtulaFireSwing",
- "MPSUtulaFireball",
- },
- modList = {
- -- set_item_drop_slots [set_item_drop_slots = 0]
- mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- base_cannot_be_damaged [base_cannot_be_damaged = 1]
- mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
- -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
- -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
- -- minion_aggro_range_scaled_by_distance_to_parent_target [minion_aggro_range_scaled_by_distance_to_parent_target = 1]
- },
-}
+ minions["AncestralUtulaMinion"] = {
+ name = "Spirit of Utula",
+ monsterTags = { "fast_movement", "human", "humanoid", "not_int", "red_blood", },
+ baseDamageIgnoresAttackSpeed = true,
+ life = 1.2,
+ armour = 0.75,
+ evasion = 0.1,
+ fireResist = 0,
+ coldResist = 0,
+ lightningResist = 0,
+ chaosResist = 0,
+ damage = 1.2,
+ damageSpread = 0.2,
+ attackTime = 1,
+ attackRange = 19,
+ accuracy = 1,
+ weaponType1 = "One Handed Axe",
+ weaponType2 = "One Handed Axe",
+ skillList = {
+ "MeleeAtAnimationSpeedUnique",
+ "UtulaFireSwing",
+ "MPSUtulaFireball",
+ },
+ modList = {
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ mod("Condition:CannotBeDamaged", "FLAG", 1, 0, 0), -- base_cannot_be_damaged [base_cannot_be_damaged = 1]
+ mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ -- cannot_taunt_enemies [cannot_taunt_enemies = 1]
+ -- minion_aggro_range_scaled_by_distance_to_parent_target [minion_aggro_range_scaled_by_distance_to_parent_target = 1]
+ },
+ }
-minions["LivingLightningMinion"] = {
- name = "Living Lightning",
- monsterTags = { "elemental", "lightning", "not_dex", "not_str", "small_height", "very_fast_movement", },
- baseDamageIgnoresAttackSpeed = true,
- life = 1.4,
- energyShield = 0.2,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 1.4,
- damageSpread = 0.8,
- attackTime = 1.17,
- attackRange = 20,
- accuracy = 1,
- limit = "ActiveLivingLightningLimit",
- skillList = {
- "SummonedLivingLightningZap",
- },
- modList = {
- -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
- -- CannotBeAugmented [cant_possess_this = 1]
- -- CannotBeAugmented [cant_touch_this = 1]
- -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
- -- CannotBeAugmented [cannot_be_afflicted = 1]
- -- CannotBeAugmented [cannot_have_affliction_mods = 1]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- set_cannot_spawn_support_ghosts [set_cannot_spawn_support_ghosts = 1]
- -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
- mod("DamageTaken", "MORE", -100, 0, 0), -- set_base_cannot_be_damaged [set_base_cannot_be_damaged = 1]
- -- set_cannot_be_chained_from [set_cannot_be_chained_from = 1]
- mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
- mod("AvoidProjectilesChance", "BASE", 100, 0, 0), -- set_base_avoid_projectiles_%_chance [set_base_avoid_projectiles_%_chance = 100]
- },
-}
+ minions["LivingLightningMinion"] = {
+ name = "Living Lightning",
+ monsterTags = { "elemental", "lightning", "not_dex", "not_str", "small_height", "very_fast_movement", },
+ baseDamageIgnoresAttackSpeed = true,
+ life = 1.4,
+ energyShield = 0.2,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 1.4,
+ damageSpread = 0.8,
+ attackTime = 1.17,
+ attackRange = 20,
+ accuracy = 1,
+ limit = "ActiveLivingLightningLimit",
+ skillList = {
+ "SummonedLivingLightningZap",
+ },
+ modList = {
+ -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
+ -- CannotBeAugmented [cant_possess_this = 1]
+ -- CannotBeAugmented [cant_touch_this = 1]
+ -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
+ -- CannotBeAugmented [cannot_be_afflicted = 1]
+ -- CannotBeAugmented [cannot_have_affliction_mods = 1]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_cannot_spawn_support_ghosts [set_cannot_spawn_support_ghosts = 1]
+ -- untargetable_by_monster_ai [untargetable_by_monster_ai = 1]
+ mod("DamageTaken", "MORE", -100, 0, 0), -- set_base_cannot_be_damaged [set_base_cannot_be_damaged = 1]
+ -- set_cannot_be_chained_from [set_cannot_be_chained_from = 1]
+ mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
+ mod("AvoidProjectilesChance", "BASE", 100, 0, 0), -- set_base_avoid_projectiles_%_chance [set_base_avoid_projectiles_%_chance = 100]
+ },
+ }
-minions["PenanceMarkPhantasm"] = {
- name = "Shackled Phantasm",
- monsterTags = { "caster", "fire_affinity", "ghost", "ghost_armour", "ghost_blood", "is_unarmed", "medium_movement", "slashing_weapon", "undead", },
- life = 1.3,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 0.9,
- damageSpread = 0.2,
- attackTime = 1.755,
- attackRange = 6,
- accuracy = 1,
- hostile = true,
- skillList = {
- "MPSPhantasmBasicBlood",
- },
- modList = {
- -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
- -- CannotSpawnBeyondPortals [monster_no_beyond_portal = 1]
- mod("KnockbackImmune", "FLAG", 1, 0, 0), -- ImmuneToKnockback [cannot_be_knocked_back = 1]
- -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
- -- CannotBeAugmented [cant_possess_this = 1]
- -- CannotBeAugmented [cant_touch_this = 1]
- -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
- -- CannotBeAugmented [cannot_be_afflicted = 1]
- -- CannotBeAugmented [cannot_have_affliction_mods = 1]
- -- set_monster_no_drops_or_experience [set_monster_no_drops_or_experience = 1]
- mod("CurseImmune", "FLAG", 1, 0, 0), -- set_immune_to_curses [set_immune_to_curses = 1]
- -- set_monster_can_grant_vaal_souls_if_no_experience [set_monster_can_grant_vaal_souls_if_no_experience = 1]
- },
-}
+ minions["PenanceMarkPhantasm"] = {
+ name = "Shackled Phantasm",
+ monsterTags = { "caster", "fire_affinity", "ghost", "ghost_armour", "ghost_blood", "is_unarmed", "medium_movement", "slashing_weapon", "undead", },
+ life = 1.3,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 0.9,
+ damageSpread = 0.2,
+ attackTime = 1.755,
+ attackRange = 6,
+ accuracy = 1,
+ hostile = true,
+ skillList = {
+ "MPSPhantasmBasicBlood",
+ },
+ modList = {
+ -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
+ -- CannotSpawnBeyondPortals [monster_no_beyond_portal = 1]
+ mod("KnockbackImmune", "FLAG", 1, 0, 0), -- ImmuneToKnockback [cannot_be_knocked_back = 1]
+ -- CannotBeAugmented [cannot_have_azmeri_dust = 1]
+ -- CannotBeAugmented [cant_possess_this = 1]
+ -- CannotBeAugmented [cant_touch_this = 1]
+ -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1]
+ -- CannotBeAugmented [cannot_be_afflicted = 1]
+ -- CannotBeAugmented [cannot_have_affliction_mods = 1]
+ -- set_monster_no_drops_or_experience [set_monster_no_drops_or_experience = 1]
+ mod("CurseImmune", "FLAG", 1, 0, 0), -- set_immune_to_curses [set_immune_to_curses = 1]
+ -- set_monster_can_grant_vaal_souls_if_no_experience [set_monster_can_grant_vaal_souls_if_no_experience = 1]
+ },
+ }
-minions["HolyStrikeMinion"] = {
- name = "Holy Armament",
- monsterTags = { "construct", "fast_movement", "ghost_armour", "is_unarmed", "medium_height", "melee", "physical_affinity", },
- baseDamageIgnoresAttackSpeed = true,
- life = 1,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 0,
- damageSpread = 0.2,
- attackTime = 0,
- attackRange = 12,
- accuracy = 1,
- limit = "ActiveHolyStrikeMinionLimit",
- skillList = {
- "HolyStrikeMinionAttack",
- },
- modList = {
- -- set_item_drop_slots [set_item_drop_slots = 0]
- -- set_base_cannot_be_stunned [set_base_cannot_be_stunned = 1]
- mod("DamageTaken", "MORE", -100, 0, 0), -- set_base_cannot_be_damaged [set_base_cannot_be_damaged = 1]
- -- set_cannot_be_knocked_back [set_cannot_be_knocked_back = 1]
- -- set_untargetable_by_monster_ai [set_untargetable_by_monster_ai = 1]
- -- set_immune_to_auras_from_other_teams [set_immune_to_auras_from_other_teams = 1]
- -- set_hide_mini_life_bar [set_hide_mini_life_bar = 1]
- mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
- -- set_cannot_die [set_cannot_die = 1]
- -- set_cannot_be_splashed_from [set_cannot_be_splashed_from = 1]
- },
-}
+ minions["HolyStrikeMinion"] = {
+ name = "Holy Armament",
+ monsterTags = { "construct", "fast_movement", "ghost_armour", "is_unarmed", "medium_height", "melee", "physical_affinity", },
+ baseDamageIgnoresAttackSpeed = true,
+ life = 1,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 0,
+ damageSpread = 0.2,
+ attackTime = 0,
+ attackRange = 12,
+ accuracy = 1,
+ limit = "ActiveHolyStrikeMinionLimit",
+ skillList = {
+ "HolyStrikeMinionAttack",
+ },
+ modList = {
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ -- set_base_cannot_be_stunned [set_base_cannot_be_stunned = 1]
+ mod("DamageTaken", "MORE", -100, 0, 0), -- set_base_cannot_be_damaged [set_base_cannot_be_damaged = 1]
+ -- set_cannot_be_knocked_back [set_cannot_be_knocked_back = 1]
+ -- set_untargetable_by_monster_ai [set_untargetable_by_monster_ai = 1]
+ -- set_immune_to_auras_from_other_teams [set_immune_to_auras_from_other_teams = 1]
+ -- set_hide_mini_life_bar [set_hide_mini_life_bar = 1]
+ mod("Life", "OVERRIDE", 1, 0, 0), -- set_maximum_life_is_one [set_maximum_life_is_one = 1]
+ -- set_cannot_die [set_cannot_die = 1]
+ -- set_cannot_be_splashed_from [set_cannot_be_splashed_from = 1]
+ },
+ }
-minions["Hiveborn"] = {
- name = "It That Crawls",
- monsterTags = { "demon", "fast_movement", "insect", "melee", "not_int", "not_str", "red_blood", },
- life = 2,
- evasion = 0.25,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 3,
- damageSpread = 0.2,
- attackTime = 1,
- attackRange = 11,
- accuracy = 1,
- limit = "ActiveHivebornLimit",
- skillList = {
- "MeleeAtAnimationSpeedComboCold",
- },
- modList = {
- -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
- },
-}
+ minions["Hiveborn"] = {
+ name = "It That Crawls",
+ monsterTags = { "demon", "fast_movement", "insect", "melee", "not_int", "not_str", "red_blood", },
+ life = 2,
+ evasion = 0.25,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 3,
+ damageSpread = 0.2,
+ attackTime = 1,
+ attackRange = 11,
+ accuracy = 1,
+ limit = "ActiveHivebornLimit",
+ skillList = {
+ "MeleeAtAnimationSpeedComboCold",
+ },
+ modList = {
+ -- MonsterNoDropsOrExperience [monster_no_drops_or_experience = 1]
+ },
+ }
-minions["ShamblingUndead"] = {
- name = "Ceaseless Flesh",
- monsterTags = { "animal_claw_weapon", "flesh_armour", "is_unarmed", "melee", "physical_affinity", "red_blood", "undead", "very_slow_movement", },
- life = 2.7,
- fireResist = 40,
- coldResist = 40,
- lightningResist = 40,
- chaosResist = 20,
- damage = 2.1,
- damageSpread = 0.4,
- attackTime = 1.17,
- attackRange = 11,
- accuracy = 3.4,
- limit = "ShamblingUndeadLimit",
- skillList = {
- "MeleeAtAnimationSpeedChaos",
- "ZombieSlam",
- "GAZombieCorpseGroundImpact",
- },
- modList = {
- mod("Armour", "INC", 40, 0, 0), -- MonsterImplicitDamageReduction1 [physical_damage_reduction_rating_+% = 40]
- mod("StunThreshold", "INC", 30, 0, 0), -- RaiseZombieStunThreshold [stun_threshold_+% = 30]
- -- set_item_drop_slots [set_item_drop_slots = 0]
- },
-}
+ minions["ShamblingUndead"] = {
+ name = "Ceaseless Flesh",
+ monsterTags = { "animal_claw_weapon", "flesh_armour", "is_unarmed", "melee", "physical_affinity", "red_blood", "undead", "very_slow_movement", },
+ life = 2.7,
+ fireResist = 40,
+ coldResist = 40,
+ lightningResist = 40,
+ chaosResist = 20,
+ damage = 2.1,
+ damageSpread = 0.4,
+ attackTime = 1.17,
+ attackRange = 11,
+ accuracy = 3.4,
+ limit = "ShamblingUndeadLimit",
+ skillList = {
+ "MeleeAtAnimationSpeedChaos",
+ "ZombieSlam",
+ "GAZombieCorpseGroundImpact",
+ },
+ modList = {
+ mod("Armour", "INC", 40, 0, 0), -- MonsterImplicitDamageReduction1 [physical_damage_reduction_rating_+% = 40]
+ mod("StunThreshold", "INC", 30, 0, 0), -- RaiseZombieStunThreshold [stun_threshold_+% = 30]
+ -- set_item_drop_slots [set_item_drop_slots = 0]
+ },
+ }
+ return minions
+end
diff --git a/src/Data/Misc.lua b/src/Data/Misc.lua
index 41123e521e2..4cee9150777 100644
--- a/src/Data/Misc.lua
+++ b/src/Data/Misc.lua
@@ -1,20 +1,21 @@
-- This file is automatically generated, do not edit!
-local data = ...
+---@class MiscDataExport
+local out = {}
-- From DefaultMonsterStats.dat
-data.monsterEvasionTable = { 67, 86, 104, 124, 144, 166, 188, 211, 234, 259, 285, 311, 339, 368, 397, 428, 460, 493, 527, 563, 600, 638, 677, 718, 760, 804, 849, 896, 944, 994, 1046, 1100, 1155, 1212, 1271, 1332, 1395, 1460, 1528, 1597, 1669, 1743, 1819, 1898, 1979, 2063, 2150, 2239, 2331, 2426, 2524, 2626, 2730, 2837, 2948, 3063, 3180, 3302, 3427, 3556, 3689, 3826, 3967, 4112, 4262, 4416, 4575, 4739, 4907, 5081, 5260, 5444, 5633, 5828, 6029, 6235, 6448, 6667, 6892, 7124, 7362, 7608, 7860, 8120, 8388, 8663, 8946, 9237, 9536, 9844, 10160, 10486, 10821, 11165, 11519, 11883, 12258, 12643, 13038, 13445, }
-data.monsterAccuracyTable = { 14, 15, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 31, 32, 34, 35, 37, 39, 41, 43, 45, 47, 49, 52, 54, 57, 59, 62, 65, 68, 71, 74, 77, 81, 84, 88, 92, 96, 100, 105, 109, 114, 119, 124, 129, 135, 140, 146, 152, 159, 165, 172, 179, 187, 195, 203, 211, 220, 229, 238, 247, 257, 268, 279, 290, 301, 314, 326, 339, 352, 366, 381, 396, 412, 428, 444, 462, 480, 499, 518, 538, 559, 580, 603, 626, 650, 675, 701, 728, 755, 784, 814, 845, 877, 910, 945, 980, }
-data.monsterLifeTable = { 22, 26, 31, 36, 42, 48, 55, 62, 70, 78, 87, 97, 107, 119, 131, 144, 158, 173, 190, 207, 226, 246, 267, 290, 315, 341, 370, 400, 432, 467, 504, 543, 585, 630, 678, 730, 785, 843, 905, 972, 1042, 1118, 1198, 1284, 1375, 1472, 1575, 1685, 1802, 1927, 2059, 2200, 2350, 2509, 2678, 2858, 3050, 3253, 3469, 3698, 3942, 4201, 4476, 4768, 5078, 5407, 5756, 6127, 6520, 6937, 7380, 7850, 8348, 8876, 9436, 10030, 10660, 11328, 12036, 12787, 13582, 14425, 15319, 16265, 17268, 18331, 19457, 20649, 21913, 23250, 24667, 26168, 27756, 29438, 31220, 33105, 35101, 37214, 39450, 41817, }
-data.monsterLifeTable2 = { 10, 12, 15, 18, 21, 25, 29, 34, 39, 44, 50, 56, 63, 70, 79, 87, 97, 107, 119, 131, 144, 158, 174, 191, 209, 228, 249, 272, 296, 323, 351, 382, 415, 450, 489, 530, 574, 621, 672, 727, 786, 850, 917, 990, 1069, 1153, 1243, 1339, 1443, 1554, 1673, 1800, 1937, 2083, 2240, 2408, 2587, 2780, 2986, 3206, 3442, 3694, 3963, 4252, 4560, 4890, 5243, 5620, 6022, 6453, 6913, 7404, 7929, 8490, 9089, 9729, 10412, 11141, 11920, 12751, 13638, 14585, 15596, 16675, 17825, 19053, 20363, 21760, 23250, 24840, 26535, 28343, 30270, 32326, 34517, 36853, 39343, 41997, 44826, 47841, }
-data.monsterLifeTable3 = { 13, 15, 18, 22, 25, 29, 34, 38, 44, 49, 55, 62, 69, 77, 86, 95, 106, 117, 128, 141, 155, 170, 187, 204, 223, 244, 266, 290, 316, 344, 373, 406, 440, 478, 518, 561, 608, 658, 712, 769, 831, 898, 970, 1046, 1129, 1217, 1312, 1414, 1523, 1640, 1766, 1900, 2044, 2199, 2364, 2541, 2731, 2934, 3151, 3384, 3633, 3900, 4185, 4490, 4816, 5165, 5539, 5938, 6364, 6820, 7308, 7829, 8386, 8980, 9616, 10295, 11020, 11795, 12622, 13506, 14449, 15456, 16531, 17679, 18904, 20211, 21607, 23096, 24684, 26380, 28188, 30117, 32175, 34370, 36711, 39207, 41870, 44708, 47735, 50962, }
-data.monsterAllyLifeTable = { 15, 16, 18, 20, 22, 24, 27, 29, 32, 35, 38, 41, 44, 48, 52, 56, 60, 65, 70, 75, 81, 87, 93, 99, 106, 114, 121, 130, 138, 148, 158, 168, 179, 190, 203, 215, 229, 244, 259, 275, 292, 310, 328, 348, 369, 392, 415, 440, 465, 493, 522, 552, 584, 618, 653, 691, 730, 772, 816, 862, 910, 961, 1015, 1072, 1131, 1194, 1260, 1329, 1402, 1478, 1559, 1644, 1733, 1827, 1926, 2029, 2138, 2253, 2373, 2500, 2633, 2773, 2919, 3074, 3236, 3406, 3585, 3773, 3970, 4178, 4395, 4624, 4864, 5116, 5381, 5659, 5951, 6257, 6578, 6916, }
-data.monsterDamageTable = { 4.9899997711182, 5.5599999427795, 6.1599998474121, 6.8099999427795, 7.5, 8.2299995422363, 9, 9.8199996948242, 10.699999809265, 11.619999885559, 12.60000038147, 13.640000343323, 14.739999771118, 15.909999847412, 17.139999389648, 18.450000762939, 19.829999923706, 21.290000915527, 22.840000152588, 24.469999313354, 26.190000534058, 28.010000228882, 29.940000534058, 31.959999084473, 34.110000610352, 36.360000610352, 38.75, 41.259998321533, 43.909999847412, 46.700000762939, 49.650001525879, 52.75, 56.009998321533, 59.450000762939, 63.080001831055, 66.889999389648, 70.910003662109, 75.129997253418, 79.580001831055, 84.26000213623, 89.180000305176, 94.349998474121, 99.800003051758, 105.51999664307, 111.5299987793, 117.86000061035, 124.5, 131.49000549316, 138.83000183105, 146.5299987793, 154.63000488281, 163.13999938965, 172.07000732422, 181.44999694824, 191.30000305176, 201.63000488281, 212.47999572754, 223.86999511719, 235.83000183105, 248.36999511719, 261.5299987793, 275.32998657227, 289.82000732422, 305.01000976563, 320.94000244141, 337.64999389648, 355.17999267578, 373.54998779297, 392.80999755859, 413.01000976563, 434.17999267578, 456.36999511719, 479.61999511719, 504, 529.53997802734, 556.29998779297, 584.34997558594, 613.72998046875, 644.5, 676.75, 710.52001953125, 745.89001464844, 782.94000244141, 821.72998046875, 862.35998535156, 904.90002441406, 949.44000244141, 996.07000732422, 1044.8900146484, 1096, 1149.5, 1205.5, 1264.1099853516, 1325.4499511719, 1389.6400146484, 1456.8199462891, 1527.1199951172, 1600.6800537109, 1677.6400146484, 1758.1700439453, }
-data.monsterAllyDamageTable = { 5.6199998855591, 6.0300002098083, 6.460000038147, 6.9200000762939, 7.4099998474121, 7.9299998283386, 8.4799995422363, 9.0600004196167, 9.6800003051758, 10.329999923706, 11.029999732971, 11.760000228882, 12.539999961853, 13.369999885559, 14.25, 15.170000076294, 16.159999847412, 17.200000762939, 18.299999237061, 19.459999084473, 20.700000762939, 22, 23.389999389648, 24.85000038147, 26.389999389648, 28.030000686646, 29.760000228882, 31.579999923706, 33.520000457764, 35.560001373291, 37.720001220703, 40, 42.409999847412, 44.959999084473, 47.639999389648, 50.490001678467, 53.490001678467, 56.659999847412, 60, 63.529998779297, 67.26000213623, 71.199996948242, 75.360000610352, 79.73999786377, 84.370002746582, 89.25, 94.400001525879, 99.839996337891, 105.56999969482, 111.62000274658, 118, 124.73000335693, 131.83000183105, 139.30999755859, 147.19999694824, 155.52000427246, 164.2799987793, 173.5299987793, 183.27000427246, 193.53999328613, 204.36999511719, 215.7799987793, 227.80000305176, 240.46000671387, 253.80999755859, 267.86999511719, 282.69000244141, 298.29000854492, 314.73001098633, 332.04998779297, 350.29000854492, 369.5, 389.73001098633, 411.04000854492, 433.4700012207, 457.08999633789, 481.9700012207, 508.14999389648, 535.71997070313, 564.75, 595.29998779297, 627.46002197266, 661.30999755859, 696.95001220703, 734.45001220703, 773.90997314453, 815.45001220703, 859.15997314453, 905.15002441406, 953.53997802734, 1004.4699707031, 1058.0400390625, 1114.4100341797, 1173.7099609375, 1236.0999755859, 1301.7299804688, 1370.7600097656, 1443.3800048828, 1519.7600097656, 1600.0899658203, }
-data.monsterArmourTable = { 12, 15, 19, 23, 27, 32, 37, 43, 50, 57, 65, 74, 83, 94, 105, 118, 132, 147, 164, 182, 202, 224, 248, 275, 303, 334, 368, 405, 445, 489, 537, 589, 646, 707, 774, 846, 925, 1010, 1103, 1204, 1313, 1432, 1560, 1700, 1850, 2014, 2191, 2383, 2591, 2815, 3059, 3322, 3607, 3915, 4248, 4608, 4997, 5418, 5873, 6365, 6896, 7469, 8089, 8757, 9480, 10259, 11101, 12009, 12989, 14047, 15188, 16419, 17747, 19178, 20722, 22387, 24182, 26117, 28203, 30451, 32873, 35483, 38296, 41326, 44591, 48107, 51894, 55973, 60365, 65095, 70188, 75670, 81573, 87926, 94765, 102125, 110047, 118571, 127744, 137613, }
-data.monsterAilmentThresholdTable = { 22, 26, 31, 36, 42, 48, 55, 62, 70, 78, 87, 97, 107, 119, 131, 144, 158, 173, 190, 207, 226, 246, 267, 290, 315, 341, 370, 400, 432, 467, 504, 543, 585, 630, 678, 730, 785, 843, 905, 972, 1042, 1118, 1198, 1284, 1375, 1472, 1575, 1685, 1802, 1927, 2059, 2200, 2350, 2509, 2678, 2858, 3050, 3253, 3469, 3698, 3942, 4201, 4476, 4768, 5078, 5407, 5756, 6127, 6520, 6937, 7380, 7850, 8348, 8876, 9436, 10030, 10660, 11328, 12036, 12787, 13582, 14425, 15319, 16265, 17268, 18331, 19457, 20649, 21913, 23250, 24667, 26168, 27756, 29438, 31220, 33105, 35101, 37214, 39450, 41817, }
-data.monsterPhysConversionMultiTable = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100, 105, 110, 115, 120, 125, 130, 135, 140, 145, 150, 155, 160, 165, 170, 175, 180, 185, 190, 195, 200, 205, 210, 215, 220, 225, 230, 235, 240, 245, 250, 255, 260, 265, 270, 275, 280, 285, 290, 295, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, }
+out.monsterEvasionTable = { 67, 86, 104, 124, 144, 166, 188, 211, 234, 259, 285, 311, 339, 368, 397, 428, 460, 493, 527, 563, 600, 638, 677, 718, 760, 804, 849, 896, 944, 994, 1046, 1100, 1155, 1212, 1271, 1332, 1395, 1460, 1528, 1597, 1669, 1743, 1819, 1898, 1979, 2063, 2150, 2239, 2331, 2426, 2524, 2626, 2730, 2837, 2948, 3063, 3180, 3302, 3427, 3556, 3689, 3826, 3967, 4112, 4262, 4416, 4575, 4739, 4907, 5081, 5260, 5444, 5633, 5828, 6029, 6235, 6448, 6667, 6892, 7124, 7362, 7608, 7860, 8120, 8388, 8663, 8946, 9237, 9536, 9844, 10160, 10486, 10821, 11165, 11519, 11883, 12258, 12643, 13038, 13445, }
+out.monsterAccuracyTable = { 14, 15, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 31, 32, 34, 35, 37, 39, 41, 43, 45, 47, 49, 52, 54, 57, 59, 62, 65, 68, 71, 74, 77, 81, 84, 88, 92, 96, 100, 105, 109, 114, 119, 124, 129, 135, 140, 146, 152, 159, 165, 172, 179, 187, 195, 203, 211, 220, 229, 238, 247, 257, 268, 279, 290, 301, 314, 326, 339, 352, 366, 381, 396, 412, 428, 444, 462, 480, 499, 518, 538, 559, 580, 603, 626, 650, 675, 701, 728, 755, 784, 814, 845, 877, 910, 945, 980, }
+out.monsterLifeTable = { 22, 26, 31, 36, 42, 48, 55, 62, 70, 78, 87, 97, 107, 119, 131, 144, 158, 173, 190, 207, 226, 246, 267, 290, 315, 341, 370, 400, 432, 467, 504, 543, 585, 630, 678, 730, 785, 843, 905, 972, 1042, 1118, 1198, 1284, 1375, 1472, 1575, 1685, 1802, 1927, 2059, 2200, 2350, 2509, 2678, 2858, 3050, 3253, 3469, 3698, 3942, 4201, 4476, 4768, 5078, 5407, 5756, 6127, 6520, 6937, 7380, 7850, 8348, 8876, 9436, 10030, 10660, 11328, 12036, 12787, 13582, 14425, 15319, 16265, 17268, 18331, 19457, 20649, 21913, 23250, 24667, 26168, 27756, 29438, 31220, 33105, 35101, 37214, 39450, 41817, }
+out.monsterLifeTable2 = { 10, 12, 15, 18, 21, 25, 29, 34, 39, 44, 50, 56, 63, 70, 79, 87, 97, 107, 119, 131, 144, 158, 174, 191, 209, 228, 249, 272, 296, 323, 351, 382, 415, 450, 489, 530, 574, 621, 672, 727, 786, 850, 917, 990, 1069, 1153, 1243, 1339, 1443, 1554, 1673, 1800, 1937, 2083, 2240, 2408, 2587, 2780, 2986, 3206, 3442, 3694, 3963, 4252, 4560, 4890, 5243, 5620, 6022, 6453, 6913, 7404, 7929, 8490, 9089, 9729, 10412, 11141, 11920, 12751, 13638, 14585, 15596, 16675, 17825, 19053, 20363, 21760, 23250, 24840, 26535, 28343, 30270, 32326, 34517, 36853, 39343, 41997, 44826, 47841, }
+out.monsterLifeTable3 = { 13, 15, 18, 22, 25, 29, 34, 38, 44, 49, 55, 62, 69, 77, 86, 95, 106, 117, 128, 141, 155, 170, 187, 204, 223, 244, 266, 290, 316, 344, 373, 406, 440, 478, 518, 561, 608, 658, 712, 769, 831, 898, 970, 1046, 1129, 1217, 1312, 1414, 1523, 1640, 1766, 1900, 2044, 2199, 2364, 2541, 2731, 2934, 3151, 3384, 3633, 3900, 4185, 4490, 4816, 5165, 5539, 5938, 6364, 6820, 7308, 7829, 8386, 8980, 9616, 10295, 11020, 11795, 12622, 13506, 14449, 15456, 16531, 17679, 18904, 20211, 21607, 23096, 24684, 26380, 28188, 30117, 32175, 34370, 36711, 39207, 41870, 44708, 47735, 50962, }
+out.monsterAllyLifeTable = { 15, 16, 18, 20, 22, 24, 27, 29, 32, 35, 38, 41, 44, 48, 52, 56, 60, 65, 70, 75, 81, 87, 93, 99, 106, 114, 121, 130, 138, 148, 158, 168, 179, 190, 203, 215, 229, 244, 259, 275, 292, 310, 328, 348, 369, 392, 415, 440, 465, 493, 522, 552, 584, 618, 653, 691, 730, 772, 816, 862, 910, 961, 1015, 1072, 1131, 1194, 1260, 1329, 1402, 1478, 1559, 1644, 1733, 1827, 1926, 2029, 2138, 2253, 2373, 2500, 2633, 2773, 2919, 3074, 3236, 3406, 3585, 3773, 3970, 4178, 4395, 4624, 4864, 5116, 5381, 5659, 5951, 6257, 6578, 6916, }
+out.monsterDamageTable = { 4.9899997711182, 5.5599999427795, 6.1599998474121, 6.8099999427795, 7.5, 8.2299995422363, 9, 9.8199996948242, 10.699999809265, 11.619999885559, 12.60000038147, 13.640000343323, 14.739999771118, 15.909999847412, 17.139999389648, 18.450000762939, 19.829999923706, 21.290000915527, 22.840000152588, 24.469999313354, 26.190000534058, 28.010000228882, 29.940000534058, 31.959999084473, 34.110000610352, 36.360000610352, 38.75, 41.259998321533, 43.909999847412, 46.700000762939, 49.650001525879, 52.75, 56.009998321533, 59.450000762939, 63.080001831055, 66.889999389648, 70.910003662109, 75.129997253418, 79.580001831055, 84.26000213623, 89.180000305176, 94.349998474121, 99.800003051758, 105.51999664307, 111.5299987793, 117.86000061035, 124.5, 131.49000549316, 138.83000183105, 146.5299987793, 154.63000488281, 163.13999938965, 172.07000732422, 181.44999694824, 191.30000305176, 201.63000488281, 212.47999572754, 223.86999511719, 235.83000183105, 248.36999511719, 261.5299987793, 275.32998657227, 289.82000732422, 305.01000976563, 320.94000244141, 337.64999389648, 355.17999267578, 373.54998779297, 392.80999755859, 413.01000976563, 434.17999267578, 456.36999511719, 479.61999511719, 504, 529.53997802734, 556.29998779297, 584.34997558594, 613.72998046875, 644.5, 676.75, 710.52001953125, 745.89001464844, 782.94000244141, 821.72998046875, 862.35998535156, 904.90002441406, 949.44000244141, 996.07000732422, 1044.8900146484, 1096, 1149.5, 1205.5, 1264.1099853516, 1325.4499511719, 1389.6400146484, 1456.8199462891, 1527.1199951172, 1600.6800537109, 1677.6400146484, 1758.1700439453, }
+out.monsterAllyDamageTable = { 5.6199998855591, 6.0300002098083, 6.460000038147, 6.9200000762939, 7.4099998474121, 7.9299998283386, 8.4799995422363, 9.0600004196167, 9.6800003051758, 10.329999923706, 11.029999732971, 11.760000228882, 12.539999961853, 13.369999885559, 14.25, 15.170000076294, 16.159999847412, 17.200000762939, 18.299999237061, 19.459999084473, 20.700000762939, 22, 23.389999389648, 24.85000038147, 26.389999389648, 28.030000686646, 29.760000228882, 31.579999923706, 33.520000457764, 35.560001373291, 37.720001220703, 40, 42.409999847412, 44.959999084473, 47.639999389648, 50.490001678467, 53.490001678467, 56.659999847412, 60, 63.529998779297, 67.26000213623, 71.199996948242, 75.360000610352, 79.73999786377, 84.370002746582, 89.25, 94.400001525879, 99.839996337891, 105.56999969482, 111.62000274658, 118, 124.73000335693, 131.83000183105, 139.30999755859, 147.19999694824, 155.52000427246, 164.2799987793, 173.5299987793, 183.27000427246, 193.53999328613, 204.36999511719, 215.7799987793, 227.80000305176, 240.46000671387, 253.80999755859, 267.86999511719, 282.69000244141, 298.29000854492, 314.73001098633, 332.04998779297, 350.29000854492, 369.5, 389.73001098633, 411.04000854492, 433.4700012207, 457.08999633789, 481.9700012207, 508.14999389648, 535.71997070313, 564.75, 595.29998779297, 627.46002197266, 661.30999755859, 696.95001220703, 734.45001220703, 773.90997314453, 815.45001220703, 859.15997314453, 905.15002441406, 953.53997802734, 1004.4699707031, 1058.0400390625, 1114.4100341797, 1173.7099609375, 1236.0999755859, 1301.7299804688, 1370.7600097656, 1443.3800048828, 1519.7600097656, 1600.0899658203, }
+out.monsterArmourTable = { 12, 15, 19, 23, 27, 32, 37, 43, 50, 57, 65, 74, 83, 94, 105, 118, 132, 147, 164, 182, 202, 224, 248, 275, 303, 334, 368, 405, 445, 489, 537, 589, 646, 707, 774, 846, 925, 1010, 1103, 1204, 1313, 1432, 1560, 1700, 1850, 2014, 2191, 2383, 2591, 2815, 3059, 3322, 3607, 3915, 4248, 4608, 4997, 5418, 5873, 6365, 6896, 7469, 8089, 8757, 9480, 10259, 11101, 12009, 12989, 14047, 15188, 16419, 17747, 19178, 20722, 22387, 24182, 26117, 28203, 30451, 32873, 35483, 38296, 41326, 44591, 48107, 51894, 55973, 60365, 65095, 70188, 75670, 81573, 87926, 94765, 102125, 110047, 118571, 127744, 137613, }
+out.monsterAilmentThresholdTable = { 22, 26, 31, 36, 42, 48, 55, 62, 70, 78, 87, 97, 107, 119, 131, 144, 158, 173, 190, 207, 226, 246, 267, 290, 315, 341, 370, 400, 432, 467, 504, 543, 585, 630, 678, 730, 785, 843, 905, 972, 1042, 1118, 1198, 1284, 1375, 1472, 1575, 1685, 1802, 1927, 2059, 2200, 2350, 2509, 2678, 2858, 3050, 3253, 3469, 3698, 3942, 4201, 4476, 4768, 5078, 5407, 5756, 6127, 6520, 6937, 7380, 7850, 8348, 8876, 9436, 10030, 10660, 11328, 12036, 12787, 13582, 14425, 15319, 16265, 17268, 18331, 19457, 20649, 21913, 23250, 24667, 26168, 27756, 29438, 31220, 33105, 35101, 37214, 39450, 41817, }
+out.monsterPhysConversionMultiTable = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100, 105, 110, 115, 120, 125, 130, 135, 140, 145, 150, 155, 160, 165, 170, 175, 180, 185, 190, 195, 200, 205, 210, 215, 220, 225, 230, 235, 240, 245, 250, 255, 260, 265, 270, 275, 280, 285, 290, 295, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, }
-- From GameConstants.dat
-data.gameConstants = {
+out.gameConstants = {
["MonsterDamageReductionImprovement"] = 6.7,
["MonsterAccuracyBase"] = 13,
["MonsterAccuracyIncremental"] = 38,
@@ -57,7 +58,7 @@ data.gameConstants = {
["NumAtlasPointsFromUniqueMaps"] = 10,
}
-- From Metadata/Characters/Character.ot
-data.characterConstants = {
+out.characterConstants = {
["level"] = 1,
["is_player"] = 1,
["energy_shield_recharge_rate_per_minute_%"] = 2000,
@@ -147,7 +148,7 @@ data.characterConstants = {
["base_speed"] = 37,
}
-- From Metadata/Monsters/Monster.ot
-data.monsterConstants = {
+out.monsterConstants = {
["item_drop_slots"] = 1,
["energy_shield_recharge_rate_per_minute_%"] = 2000,
["mana_regeneration_rate_per_minute_%"] = 100,
@@ -205,8 +206,8 @@ data.monsterConstants = {
["soul_eater_maximum_stacks"] = 45,
}
-- From MonsterVarieties.dat combined with SkillTotemVariations.dat
-data.totemLifeMult = { [1] = 1, [2] = 1, [3] = 1, [4] = 1.2, [5] = 1, [6] = 1.2, [7] = 1.2, [8] = 1.2, [9] = 1, [10] = 1, [11] = 1, [12] = 1, [13] = 1.2, [15] = 1.2, [16] = 7.44, [17] = 1.2, [18] = 1, [19] = 1, [20] = 1.2, [21] = 1.2, }
-data.monsterVarietyLifeMult = {
+out.totemLifeMult = { [1] = 1, [2] = 1, [3] = 1, [4] = 1.2, [5] = 1, [6] = 1.2, [7] = 1.2, [8] = 1.2, [9] = 1, [10] = 1, [11] = 1, [12] = 1, [13] = 1.2, [15] = 1.2, [16] = 7.44, [17] = 1.2, [18] = 1, [19] = 1, [20] = 1.2, [21] = 1.2, }
+out.monsterVarietyLifeMult = {
["Skeletal Beast"] = 2.38,
["Corrupted Beast"] = 2.38,
["Charred Beast"] = 2.3,
@@ -461,9 +462,10 @@ data.monsterVarietyLifeMult = {
["Forged Skeletal Bear"] = 3.6,
}
-- From MonsterMapDifficulty.dat
-data.mapLevelLifeMult = { [66] = 1.01, [67] = 1.03, [68] = 1.05, [69] = 1.09, [70] = 1.13, [71] = 1.19, [72] = 1.24, [73] = 1.3, [74] = 1.36, [75] = 1.43, [76] = 1.49, [77] = 1.55, [78] = 1.61, [79] = 1.68, [80] = 1.77, [81] = 1.87, [82] = 1.98, [83] = 2.09, [84] = 2.17, [85] = 2.25, [86] = 2.34, [87] = 2.42, [88] = 2.5, [89] = 2.58, [90] = 2.66, }
+out.mapLevelLifeMult = { [66] = 1.01, [67] = 1.03, [68] = 1.05, [69] = 1.09, [70] = 1.13, [71] = 1.19, [72] = 1.24, [73] = 1.3, [74] = 1.36, [75] = 1.43, [76] = 1.49, [77] = 1.55, [78] = 1.61, [79] = 1.68, [80] = 1.77, [81] = 1.87, [82] = 1.98, [83] = 2.09, [84] = 2.17, [85] = 2.25, [86] = 2.34, [87] = 2.42, [88] = 2.5, [89] = 2.58, [90] = 2.66, }
-- From MonsterMapBossDifficulty.dat
-data.mapLevelBossLifeMult = { [1] = 1.5, [2] = 1.52, [3] = 1.54, [4] = 1.56, [5] = 1.58, [6] = 1.6, [7] = 1.62, [8] = 1.64, [9] = 1.66, [10] = 1.68, [11] = 1.7, [12] = 1.72, [13] = 1.74, [14] = 1.76, [15] = 1.78, [16] = 1.8, [17] = 1.82, [18] = 1.84, [19] = 1.86, [20] = 1.88, [21] = 1.9, [22] = 1.92, [23] = 1.94, [24] = 1.96, [25] = 1.98, [26] = 2, [27] = 2.02, [28] = 2.04, [29] = 2.06, [30] = 2.08, [31] = 2.1, [32] = 2.12, [33] = 2.14, [34] = 2.16, [35] = 2.18, [36] = 2.2, [37] = 2.22, [38] = 2.24, [39] = 2.26, [40] = 2.28, [41] = 2.3, [42] = 2.32, [43] = 2.34, [44] = 2.36, [45] = 2.38, [46] = 2.4, [47] = 2.42, [48] = 2.44, [49] = 2.46, [50] = 2.48, [51] = 2.5, [52] = 2.52, [53] = 2.54, [54] = 2.56, [55] = 2.58, [56] = 2.6, [57] = 2.62, [58] = 2.64, [59] = 2.66, [60] = 2.68, [61] = 2.7, [62] = 2.72, [63] = 2.74, [64] = 2.76, [65] = 2.78, [66] = 2.8, [67] = 2.8, [68] = 2.8, [69] = 3.03, [70] = 3.16, [71] = 3.32, [72] = 3.48, [73] = 5.63, [74] = 5.97, [75] = 6.32, [76] = 6.66, [77] = 6.99, [78] = 10.46, [79] = 11.32, [80] = 13.01, [81] = 15.43, [82] = 17.2, [83] = 19.64, [84] = 21.46, [85] = 21.46, [86] = 21.46, [87] = 21.46, [88] = 21.46, [89] = 21.46, [90] = 21.46, }
-data.mapLevelBossAilmentMult = { [1] = 0.81, [2] = 0.81, [3] = 0.81, [4] = 0.81, [5] = 0.81, [6] = 0.81, [7] = 0.81, [8] = 0.81, [9] = 0.81, [10] = 0.81, [11] = 0.81, [12] = 0.81, [13] = 0.81, [14] = 0.81, [15] = 0.81, [16] = 0.81, [17] = 0.81, [18] = 0.81, [19] = 0.81, [20] = 0.81, [21] = 0.81, [22] = 0.81, [23] = 0.81, [24] = 0.81, [25] = 0.81, [26] = 0.81, [27] = 0.81, [28] = 0.81, [29] = 0.81, [30] = 0.81, [31] = 0.81, [32] = 0.81, [33] = 0.81, [34] = 0.81, [35] = 0.81, [36] = 0.81, [37] = 0.81, [38] = 0.81, [39] = 0.81, [40] = 0.81, [41] = 0.81, [42] = 0.81, [43] = 0.81, [44] = 0.81, [45] = 0.81, [46] = 0.81, [47] = 0.81, [48] = 0.81, [49] = 0.81, [50] = 0.81, [51] = 0.8, [52] = 0.79, [53] = 0.78, [54] = 0.77, [55] = 0.76, [56] = 0.75, [57] = 0.74, [58] = 0.73, [59] = 0.72, [60] = 0.71, [61] = 0.7, [62] = 0.69, [63] = 0.68, [64] = 0.67, [65] = 0.66, [66] = 0.65, [67] = 0.64, [68] = 0.63, [69] = 0.59, [70] = 0.58, [71] = 0.57, [72] = 0.56, [73] = 0.55, [74] = 0.53, [75] = 0.52, [76] = 0.51, [77] = 0.5, [78] = 0.49, [79] = 0.48, [80] = 0.48, [81] = 0.47, [82] = 0.47, [83] = 0.47, [84] = 0.47, [85] = 0.47, [86] = 0.47, [87] = 0.47, [88] = 0.47, [89] = 0.47, [90] = 0.47, }
+out.mapLevelBossLifeMult = { [1] = 1.5, [2] = 1.52, [3] = 1.54, [4] = 1.56, [5] = 1.58, [6] = 1.6, [7] = 1.62, [8] = 1.64, [9] = 1.66, [10] = 1.68, [11] = 1.7, [12] = 1.72, [13] = 1.74, [14] = 1.76, [15] = 1.78, [16] = 1.8, [17] = 1.82, [18] = 1.84, [19] = 1.86, [20] = 1.88, [21] = 1.9, [22] = 1.92, [23] = 1.94, [24] = 1.96, [25] = 1.98, [26] = 2, [27] = 2.02, [28] = 2.04, [29] = 2.06, [30] = 2.08, [31] = 2.1, [32] = 2.12, [33] = 2.14, [34] = 2.16, [35] = 2.18, [36] = 2.2, [37] = 2.22, [38] = 2.24, [39] = 2.26, [40] = 2.28, [41] = 2.3, [42] = 2.32, [43] = 2.34, [44] = 2.36, [45] = 2.38, [46] = 2.4, [47] = 2.42, [48] = 2.44, [49] = 2.46, [50] = 2.48, [51] = 2.5, [52] = 2.52, [53] = 2.54, [54] = 2.56, [55] = 2.58, [56] = 2.6, [57] = 2.62, [58] = 2.64, [59] = 2.66, [60] = 2.68, [61] = 2.7, [62] = 2.72, [63] = 2.74, [64] = 2.76, [65] = 2.78, [66] = 2.8, [67] = 2.8, [68] = 2.8, [69] = 3.03, [70] = 3.16, [71] = 3.32, [72] = 3.48, [73] = 5.63, [74] = 5.97, [75] = 6.32, [76] = 6.66, [77] = 6.99, [78] = 10.46, [79] = 11.32, [80] = 13.01, [81] = 15.43, [82] = 17.2, [83] = 19.64, [84] = 21.46, [85] = 21.46, [86] = 21.46, [87] = 21.46, [88] = 21.46, [89] = 21.46, [90] = 21.46, }
+out.mapLevelBossAilmentMult = { [1] = 0.81, [2] = 0.81, [3] = 0.81, [4] = 0.81, [5] = 0.81, [6] = 0.81, [7] = 0.81, [8] = 0.81, [9] = 0.81, [10] = 0.81, [11] = 0.81, [12] = 0.81, [13] = 0.81, [14] = 0.81, [15] = 0.81, [16] = 0.81, [17] = 0.81, [18] = 0.81, [19] = 0.81, [20] = 0.81, [21] = 0.81, [22] = 0.81, [23] = 0.81, [24] = 0.81, [25] = 0.81, [26] = 0.81, [27] = 0.81, [28] = 0.81, [29] = 0.81, [30] = 0.81, [31] = 0.81, [32] = 0.81, [33] = 0.81, [34] = 0.81, [35] = 0.81, [36] = 0.81, [37] = 0.81, [38] = 0.81, [39] = 0.81, [40] = 0.81, [41] = 0.81, [42] = 0.81, [43] = 0.81, [44] = 0.81, [45] = 0.81, [46] = 0.81, [47] = 0.81, [48] = 0.81, [49] = 0.81, [50] = 0.81, [51] = 0.8, [52] = 0.79, [53] = 0.78, [54] = 0.77, [55] = 0.76, [56] = 0.75, [57] = 0.74, [58] = 0.73, [59] = 0.72, [60] = 0.71, [61] = 0.7, [62] = 0.69, [63] = 0.68, [64] = 0.67, [65] = 0.66, [66] = 0.65, [67] = 0.64, [68] = 0.63, [69] = 0.59, [70] = 0.58, [71] = 0.57, [72] = 0.56, [73] = 0.55, [74] = 0.53, [75] = 0.52, [76] = 0.51, [77] = 0.5, [78] = 0.49, [79] = 0.48, [80] = 0.48, [81] = 0.47, [82] = 0.47, [83] = 0.47, [84] = 0.47, [85] = 0.47, [86] = 0.47, [87] = 0.47, [88] = 0.47, [89] = 0.47, [90] = 0.47, }
-- From VillageBalancePerLevelShared.dat
-data.goldRespecPrices = { 4, 4, 4, 5, 5, 6, 6, 7, 8, 8, 9, 11, 12, 14, 15, 17, 18, 20, 22, 24, 26, 28, 31, 34, 36, 39, 43, 46, 50, 54, 58, 62, 67, 72, 83, 90, 97, 105, 113, 121, 130, 151, 161, 171, 182, 209, 222, 237, 252, 267, 295, 313, 333, 354, 376, 427, 452, 482, 513, 546, 618, 656, 694, 733, 773, 816, 860, 892, 921, 1055, 1203, 1365, 1541, 1748, 1974, 2221, 2490, 2770, 3073, 3400, 3752, 4131, 4538, 4976, 5444, 5967, 6526, 7126, 7766, 8450, 9851, 11380, 13042, 14847, 16801, 18914, 21192, 23647, 26286, 29119, }
+out.goldRespecPrices = { 4, 4, 4, 5, 5, 6, 6, 7, 8, 8, 9, 11, 12, 14, 15, 17, 18, 20, 22, 24, 26, 28, 31, 34, 36, 39, 43, 46, 50, 54, 58, 62, 67, 72, 83, 90, 97, 105, 113, 121, 130, 151, 161, 171, 182, 209, 222, 237, 252, 267, 295, 313, 333, 354, 376, 427, 452, 482, 513, 546, 618, 656, 694, 733, 773, 816, 860, 892, 921, 1055, 1203, 1365, 1541, 1748, 1974, 2221, 2490, 2770, 3073, 3400, 3752, 4131, 4538, 4976, 5444, 5967, 6526, 7126, 7766, 8450, 9851, 11380, 13042, 14847, 16801, 18914, 21192, 23647, 26286, 29119, }
+return out
diff --git a/src/Data/ModCache.lua b/src/Data/ModCache.lua
index 0f8d49d5cf2..4cc3d7e59ea 100755
--- a/src/Data/ModCache.lua
+++ b/src/Data/ModCache.lua
@@ -1,4 +1,6 @@
-local c=...c["(10-15)% increased Energy Shield Recharge Rate"]={nil,"(10-15)% increased Energy Shield Recharge Rate "}
+---@class ModCache
+local c = {}
+c["(10-15)% increased Energy Shield Recharge Rate"]={nil,"(10-15)% increased Energy Shield Recharge Rate "}
c["(12-17)% increased Mana Regeneration Rate"]={nil,"(12-17)% increased Mana Regeneration Rate "}
c["(15-25)% increased Mana Regeneration Rate"]={nil,"(15-25)% increased Mana Regeneration Rate "}
c["(17-23)% increased maximum Mana"]={nil,"(17-23)% increased maximum Mana "}
@@ -12869,3 +12871,4 @@ c["your Minions cannot be Reflected Right ring slot: 40% of Physical Hit Damage
c["your Minions cannot be Reflected Right ring slot: 80% of Physical Hit Damage from you and"]={nil,"your Minions cannot be Reflected Right ring slot: 80% of Physical Hit Damage from you and "}
c["your maximum number of Crab Barriers"]={nil,"your maximum number of Crab Barriers "}
c["your maximum number of Power Charges"]={nil,"your maximum number of Power Charges "}
+return c
diff --git a/src/Data/ModCorrupted.lua b/src/Data/ModCorrupted.lua
index 8952c1b8571..a3e3567b07d 100644
--- a/src/Data/ModCorrupted.lua
+++ b/src/Data/ModCorrupted.lua
@@ -2,317 +2,317 @@
-- Item data (c) Grinding Gear Games
return {
- ["MovementVelocityCorrupted"] = { type = "Corrupted", affix = "", "(2-5)% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { "amulet", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(2-5)% increased Movement Speed" }, } },
- ["MaxFrenzyChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1814 }, level = 20, group = "MaximumFrenzyCharges", weightKey = { "boots", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } },
- ["MaxPowerChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrder = { 1819 }, level = 20, group = "IncreasedMaximumPowerCharges", weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } },
- ["MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (15-20)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { "helmet", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-20)% increased Damage" }, } },
- ["SocketedVaalGemsIncreaseCorrupted"] = { type = "Corrupted", affix = "", "+(1-2) to Level of Socketed Vaal Gems", statOrder = { 193 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { "helmet", "gloves", "boots", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "vaal", "gem" }, tradeHashes = { [1170386874] = { "+(1-2) to Level of Socketed Vaal Gems" }, } },
- ["DamageTakenFlatReductionCorrupted1"] = { type = "Corrupted", affix = "", "-(10-5) Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(10-5) Physical Damage taken from Attack Hits" }, } },
- ["DamageTakenFlatReductionCorrupted2"] = { type = "Corrupted", affix = "", "-(16-11) Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 30, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(16-11) Physical Damage taken from Attack Hits" }, } },
- ["DamageTakenFlatReductionCorrupted3"] = { type = "Corrupted", affix = "", "-(24-17) Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 60, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(24-17) Physical Damage taken from Attack Hits" }, } },
- ["FireDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 50, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.2% of Fire Damage Leeched as Life" }, } },
- ["ColdDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Cold Damage Leeched as Life", statOrder = { 1680 }, level = 50, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.2% of Cold Damage Leeched as Life" }, } },
- ["LightningDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1684 }, level = 50, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.2% of Lightning Damage Leeched as Life" }, } },
- ["IncreasedCastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "ring", "gloves", "focus", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(4-6)% increased Cast Speed" }, } },
- ["ChanceToFleeCorrupted"] = { type = "Corrupted", affix = "", "5% chance to Cause Monsters to Flee", statOrder = { 2047 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3181974858] = { "5% chance to Cause Monsters to Flee" }, } },
- ["BlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(2-4)% Chance to Block Attack Damage", statOrder = { 1143 }, level = 1, group = "BlockPercent", weightKey = { "staff", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(2-4)% Chance to Block Attack Damage" }, } },
- ["LocalAddedChaosDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (3-5) Chaos Damage", statOrder = { 1395 }, level = 1, group = "LocalChaosDamage", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (1-2) to (3-5) Chaos Damage" }, } },
- ["LocalAddedChaosDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-8) to (11-13) Chaos Damage", statOrder = { 1395 }, level = 20, group = "LocalChaosDamage", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (6-8) to (11-13) Chaos Damage" }, } },
- ["LocalAddedChaosDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-11) to (19-23) Chaos Damage", statOrder = { 1395 }, level = 40, group = "LocalChaosDamage", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (8-11) to (19-23) Chaos Damage" }, } },
- ["AddedChaosDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1392 }, level = 1, group = "ChaosDamage", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds 1 to (2-3) Chaos Damage to Attacks" }, } },
- ["AddedChaosDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-4) to (6-8) Chaos Damage to Attacks", statOrder = { 1392 }, level = 20, group = "ChaosDamage", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (3-4) to (6-8) Chaos Damage to Attacks" }, } },
- ["AddedChaosDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (7-9) to (11-13) Chaos Damage to Attacks", statOrder = { 1392 }, level = 40, group = "ChaosDamage", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (7-9) to (11-13) Chaos Damage to Attacks" }, } },
- ["SpellBlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(2-4)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 1, group = "SpellBlockPercentage", weightKey = { "staff", "amulet", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(2-4)% Chance to Block Spell Damage" }, } },
- ["AttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(4-8)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(4-8)% increased Attack Speed" }, } },
- ["WeaponElementalDamageCorrupted"] = { type = "Corrupted", affix = "", "(6-12)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(6-12)% increased Elemental Damage with Attack Skills" }, } },
- ["CullingStrikeCorrupted"] = { type = "Corrupted", affix = "", "Culling Strike", statOrder = { 2044 }, level = 1, group = "CullingStrike", weightKey = { "sword", "axe", "dagger", "wand", "bow", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } },
- ["ManaOnLifeLostCorrupted"] = { type = "Corrupted", affix = "", "(3-6)% of Damage taken Recouped as Mana", statOrder = { 2460 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "amulet", "ring", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(3-6)% of Damage taken Recouped as Mana" }, } },
- ["MaximumResistanceCorrupted"] = { type = "Corrupted", affix = "", "+1% to all maximum Resistances", statOrder = { 1647 }, level = 1, group = "MaximumResistances", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } },
- ["AdditionalCurseCorrupted"] = { type = "Corrupted", affix = "", "You can apply an additional Curse", statOrder = { 2173 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } },
- ["ChanceToAvoidFreezeCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "amulet", "body_armour", "ring", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(10-20)% chance to Avoid being Frozen" }, } },
- ["ChanceToAvoidIgniteCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 1, group = "AvoidIgnite", weightKey = { "amulet", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(10-20)% chance to Avoid being Ignited" }, } },
- ["ChaosResistCorruption"] = { type = "Corrupted", affix = "", "+(2-4)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { "fishing_rod", "weapon", "jewel", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(2-4)% to Chaos Resistance" }, } },
- ["ChanceToDodgeCorruption"] = { type = "Corrupted", affix = "", "+(3-6)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(3-6)% chance to Suppress Spell Damage" }, } },
- ["CannotBeKnockedBackCorruption"] = { type = "Corrupted", affix = "", "Cannot be Knocked Back", statOrder = { 1526 }, level = 1, group = "ImmuneToKnockback", weightKey = { "boots", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4212255859] = { "Cannot be Knocked Back" }, } },
- ["GemLevelCorruption"] = { type = "Corrupted", affix = "", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { "boots", "gloves", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } },
- ["AvoidShockCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 1, group = "ReducedShockChance", weightKey = { "body_armour", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(10-20)% chance to Avoid being Shocked" }, } },
- ["CannotBeLeechedFromCorruption"] = { type = "Corrupted", affix = "", "Enemies Cannot Leech Life From you", statOrder = { 2445 }, level = 1, group = "EnemiesCantLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [4293455942] = { "Enemies Cannot Leech Life From you" }, } },
- ["DamageTakenFromManaBeforeLifeCorruption"] = { type = "Corrupted", affix = "", "(3-5)% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(3-5)% of Damage is taken from Mana before Life" }, } },
- ["DamageConversionFireCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(10-20)% of Physical Damage Converted to Fire Damage" }, } },
- ["DamageConversionColdCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(10-20)% of Physical Damage Converted to Cold Damage" }, } },
- ["DamageConversionLighningCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 1, group = "MonsterConvertPhysicalDamageToLightning", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(10-20)% of Physical Damage Converted to Lightning Damage" }, } },
- ["AdditionalArrowsCorruption"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1799 }, level = 1, group = "AdditionalArrows", weightKey = { "quiver", "bow", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } },
- ["AdditionalAOERangeCorruption"] = { type = "Corrupted", affix = "", "(4-6)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(4-6)% increased Area of Effect" }, } },
- ["IncreasedDurationCorruption"] = { type = "Corrupted", affix = "", "(5-8)% increased Skill Effect Duration", statOrder = { 1900 }, level = 1, group = "SkillEffectDuration", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(5-8)% increased Skill Effect Duration" }, } },
- ["AdditionalTrapsCorruption_"] = { type = "Corrupted", affix = "", "Can have up to 1 additional Trap placed at a time", statOrder = { 2260 }, level = 1, group = "TrapsAllowed", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2224292784] = { "Can have up to 1 additional Trap placed at a time" }, } },
- ["MaximumEnduranceChargesCorruption_"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } },
- ["DualWieldBlockCorruption"] = { type = "Corrupted", affix = "", "+(3-6)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1167 }, level = 1, group = "BlockWhileDualWielding", weightKey = { "sceptre", "axe", "mace", "wand", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+(3-6)% Chance to Block Attack Damage while Dual Wielding" }, } },
- ["AdditionalPierceCorruption"] = { type = "Corrupted", affix = "", "Arrows Pierce an additional Target", statOrder = { 1796 }, level = 1, group = "AdditionalArrowPierce", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } },
- ["GlobalPierceCorruption"] = { type = "Corrupted", affix = "", "(4-8)% increased Projectile Speed", statOrder = { 1801 }, level = 1, group = "ProjectileSpeed", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(4-8)% increased Projectile Speed" }, } },
- ["CurseOnHitTemporalChainsCurruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2527 }, level = 30, group = "CurseOnHitLevelTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3433724931] = { "Curse Enemies with Temporal Chains on Hit" }, } },
- ["CurseOnHitVulnerabilityCorruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2528 }, level = 30, group = "CurseOnHitLevelVulnerability", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3967845372] = { "Curse Enemies with Vulnerability on Hit" }, } },
- ["CurseOnHitElementalWeaknessCorruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2530 }, level = 30, group = "CurseOnHitLevelElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2028847114] = { "Curse Enemies with Elemental Weakness on Hit" }, } },
- ["SupportedByCastOnStunCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Cast when Stunned", statOrder = { 482 }, level = 35, group = "SupportedByCastOnStun", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1079148723] = { "Socketed Gems are supported by Level 12 Cast when Stunned" }, } },
- ["SupportedByCastOnCritCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Cast On Critical Strike", statOrder = { 477 }, level = 35, group = "SupportedByCastOnCrit", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2325632050] = { "Socketed Gems are supported by Level 12 Cast On Critical Strike" }, } },
- ["SupportedByMeleeSplashCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Melee Splash", statOrder = { 476 }, level = 20, group = "SupportedByMeleeSplash", weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 10 Melee Splash" }, } },
- ["SupportedByAddedFireDamageCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 12 Added Fire Damage", statOrder = { 467 }, level = 48, group = "DisplaySocketedGemsGetAddedFireDamage", weightKey = { "two_hand_weapon", "mace", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2572192375] = { "Socketed Gems are Supported by Level 12 Added Fire Damage" }, } },
- ["SupportedByStunCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 6 Stun", statOrder = { 484 }, level = 38, group = "SupportedByStun", weightKey = { "mace", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [689720069] = { "Socketed Gems are supported by Level 6 Stun" }, } },
- ["LocalMeleeWeaponRangeCorrupted"] = { type = "Corrupted", affix = "", "+(0.1-0.2) metres to Weapon Range", statOrder = { 2750 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "sceptre", "rapier", "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+(0.1-0.2) metres to Weapon Range" }, } },
- ["SocketedSkillsManaMultiplierCorrupted"] = { type = "Corrupted", affix = "", "Socketed Skill Gems get a 95% Cost & Reservation Multiplier", statOrder = { 535 }, level = 1, group = "SocketedSkillsManaMultiplier", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "gem" }, tradeHashes = { [2865550257] = { "Socketed Skill Gems get a 95% Cost & Reservation Multiplier" }, } },
- ["SupportedByElementalProliferationCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Elemental Proliferation", statOrder = { 471 }, level = 12, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2929101122] = { "Socketed Gems are Supported by Level 1 Elemental Proliferation" }, } },
- ["SupportedByAccuracyCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Additional Accuracy", statOrder = { 485 }, level = 48, group = "SupportedByAccuracy", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1567462963] = { "Socketed Gems are supported by Level 12 Additional Accuracy" }, } },
- ["SupportedByMultistrikeCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 1 Multistrike", statOrder = { 486 }, level = 28, group = "SupportedByMultistrike", weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2501237765] = { "Socketed Gems are supported by Level 1 Multistrike" }, } },
- ["SupportedByAreaOfEffectCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Increased Area of Effect", statOrder = { 229 }, level = 24, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 1 Increased Area of Effect" }, } },
- ["SupportedByLifeLeechCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 488 }, level = 59, group = "SupportedByLifeLeech", weightKey = { "claw", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [891277550] = { "Socketed Gems are supported by Level 15 Life Leech" }, } },
- ["SupportedByCriticalMultiplierCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 14 Increased Critical Damage", statOrder = { 490 }, level = 35, group = "SupportedByCriticalMultiplier", weightKey = { "dagger", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1108755349] = { "Socketed Gems are supported by Level 14 Increased Critical Damage" }, } },
- ["SupportedByForkCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 1 Fork", statOrder = { 491 }, level = 6, group = "SupportedByFork", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2062753054] = { "Socketed Gems are supported by Level 1 Fork" }, } },
- ["SupportedByWeaponElementalDamageCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Elemental Damage with Attacks", statOrder = { 492 }, level = 24, group = "SupportedByWeaponElementalDamage", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2532625478] = { "Socketed Gems are supported by Level 12 Elemental Damage with Attacks" }, } },
- ["SupportedByFasterCastCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 505 }, level = 24, group = "DisplaySocketedGemsGetFasterCast", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 10 Faster Casting" }, } },
- ["PuritySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Elements Skill", statOrder = { 650 }, level = 45, group = "PuritySkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, tradeHashes = { [105466375] = { "Grants Level 15 Purity of Elements Skill" }, } },
- ["CriticalWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Assassin's Mark Skill", statOrder = { 652 }, level = 31, group = "CriticalWeaknessSkill", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [3736925508] = { "Grants Level 10 Assassin's Mark Skill" }, } },
- ["PurityOfFireSkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Fire Skill", statOrder = { 628 }, level = 45, group = "PurityOfFireSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, tradeHashes = { [3970432307] = { "Grants Level 15 Purity of Fire Skill" }, } },
- ["PurityOfColdSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Ice Skill", statOrder = { 634 }, level = 45, group = "PurityOfColdSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, tradeHashes = { [4193390599] = { "Grants Level 15 Purity of Ice Skill" }, } },
- ["PurityOfLightningSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Lightning Skill", statOrder = { 636 }, level = 45, group = "PurityOfLightningSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, tradeHashes = { [3822878124] = { "Grants Level 15 Purity of Lightning Skill" }, } },
- ["WrathSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 7 Wrath Skill", statOrder = { 653 }, level = 28, group = "WrathSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2265307453] = { "Grants Level 7 Wrath Skill" }, } },
- ["HatredSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 11 Hatred Skill", statOrder = { 654 }, level = 44, group = "HatredSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2429546158] = { "Grants Level 11 Hatred Skill" }, } },
- ["AngerSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Anger Skill", statOrder = { 655 }, level = 56, group = "AngerSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [484879947] = { "Grants Level 15 Anger Skill" }, } },
- ["DeterminationSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Determination Skill", statOrder = { 656 }, level = 61, group = "DeterminationSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [4265392510] = { "Grants Level 16 Determination Skill" }, } },
- ["GraceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Grace Skill", statOrder = { 657 }, level = 61, group = "GraceSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2867050084] = { "Grants Level 16 Grace Skill" }, } },
- ["DisciplineSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Discipline Skill", statOrder = { 659 }, level = 61, group = "DisciplineSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2341269061] = { "Grants Level 16 Discipline Skill" }, } },
- ["ProjectileWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Sniper's Mark Skill", statOrder = { 663 }, level = 58, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [3536689603] = { "Grants Level 15 Sniper's Mark Skill" }, } },
- ["ElementalWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Elemental Weakness Skill", statOrder = { 664 }, level = 31, group = "ElementalWeaknessSkill", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [3792821911] = { "Grants Level 10 Elemental Weakness Skill" }, } },
- ["VulnerabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Vulnerability Skill", statOrder = { 666 }, level = 31, group = "VulnerabilitySkill", weightKey = { "axe", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [1447222021] = { "Grants Level 10 Vulnerability Skill" }, } },
- ["ClaritySkillCorrupted1"] = { type = "Corrupted", affix = "", "Grants Level 4 Clarity Skill", statOrder = { 646 }, level = 19, group = "ClaritySkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, tradeHashes = { [3511815065] = { "Grants Level 4 Clarity Skill" }, } },
- ["ClaritySkillCorrupted2"] = { type = "Corrupted", affix = "", "Grants Level 8 Clarity Skill", statOrder = { 646 }, level = 32, group = "ClaritySkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, tradeHashes = { [3511815065] = { "Grants Level 8 Clarity Skill" }, } },
- ["ClaritySkillCorrupted3"] = { type = "Corrupted", affix = "", "Grants Level 12 Clarity Skill", statOrder = { 646 }, level = 47, group = "ClaritySkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [3511815065] = { "Grants Level 12 Clarity Skill" }, } },
- ["ClaritySkillCorrupted4"] = { type = "Corrupted", affix = "", "Grants Level 16 Clarity Skill", statOrder = { 646 }, level = 59, group = "ClaritySkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [3511815065] = { "Grants Level 16 Clarity Skill" }, } },
- ["FrostbiteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Frostbite Skill", statOrder = { 642 }, level = 46, group = "FrostbiteSkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [1169502663] = { "Grants Level 14 Frostbite Skill" }, } },
- ["FlammabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Flammability Skill", statOrder = { 637 }, level = 46, group = "FlammabilitySkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2209668839] = { "Grants Level 14 Flammability Skill" }, } },
- ["ConductivitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Conductivity Skill", statOrder = { 641 }, level = 46, group = "ConductivitySkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [461472247] = { "Grants Level 14 Conductivity Skill" }, } },
- ["TemporalChainsSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Temporal Chains Skill", statOrder = { 643 }, level = 40, group = "TemporalChainsSkill", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [940324562] = { "Grants Level 14 Temporal Chains Skill" }, } },
- ["HasteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Haste Skill", statOrder = { 644 }, level = 40, group = "HasteSkill", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [1188846263] = { "Grants Level 14 Haste Skill" }, } },
- ["ManaOnHitCorrupted"] = { type = "Corrupted", affix = "", "Gain (1-2) Mana per Enemy Hit with Attacks", statOrder = { 1749 }, level = 40, group = "ManaGainPerTarget", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (1-2) Mana per Enemy Hit with Attacks" }, } },
- ["VitalitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Vitality Skill", statOrder = { 648 }, level = 35, group = "VitalitySkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2410613176] = { "Grants Level 15 Vitality Skill" }, } },
- ["FishingQuantityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Fish Caught", statOrder = { 2854 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "drop" }, tradeHashes = { [3802667447] = { "(5-10)% increased Quantity of Fish Caught" }, } },
- ["FishingRarityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Rarity of Fish Caught", statOrder = { 2855 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "(5-10)% increased Rarity of Fish Caught" }, } },
- ["CastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(10-20)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeedFishing", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "red_herring", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } },
- ["CanCatchCorruptFishCorrupted"] = { type = "Corrupted", affix = "", "You can catch Corrupted Fish", statOrder = { 2860 }, level = 1, group = "CorruptFish", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "vaal", "drop" }, tradeHashes = { [2451060005] = { "You can catch Corrupted Fish" }, } },
- ["V2AddedArmourWhileStationaryCorrupted1"] = { type = "Corrupted", affix = "", "+(35-60) Armour while stationary", statOrder = { 4319 }, level = 1, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2551779822] = { "+(35-60) Armour while stationary" }, } },
- ["V2AddedArmourWhileStationaryCorrupted2"] = { type = "Corrupted", affix = "", "+(61-138) Armour while stationary", statOrder = { 4319 }, level = 31, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2551779822] = { "+(61-138) Armour while stationary" }, } },
- ["V2AddedArmourWhileStationaryCorrupted3"] = { type = "Corrupted", affix = "", "+(139-322) Armour while stationary", statOrder = { 4319 }, level = 75, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2551779822] = { "+(139-322) Armour while stationary" }, } },
- ["V2AddedColdDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (3-4) to (7-8) Cold Damage to Spells and Attacks", statOrder = { 1379 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (3-4) to (7-8) Cold Damage to Spells and Attacks" }, } },
- ["V2AddedColdDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-9) to (13-16) Cold Damage to Spells and Attacks", statOrder = { 1379 }, level = 31, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (6-9) to (13-16) Cold Damage to Spells and Attacks" }, } },
- ["V2AddedColdDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (12-16) to (24-28) Cold Damage to Spells and Attacks", statOrder = { 1379 }, level = 81, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (12-16) to (24-28) Cold Damage to Spells and Attacks" }, } },
- ["V2AddedColdDamageToBowAttacksCorrupted1__"] = { type = "Corrupted", affix = "", "(8-11) to (18-21) Added Cold Damage with Bow Attacks", statOrder = { 2093 }, level = 1, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(8-11) to (18-21) Added Cold Damage with Bow Attacks" }, } },
- ["V2AddedColdDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "(20-25) to (38-45) Added Cold Damage with Bow Attacks", statOrder = { 2093 }, level = 31, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(20-25) to (38-45) Added Cold Damage with Bow Attacks" }, } },
- ["V2AddedColdDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(29-35) to (55-62) Added Cold Damage with Bow Attacks", statOrder = { 2093 }, level = 75, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(29-35) to (55-62) Added Cold Damage with Bow Attacks" }, } },
- ["V2AddedEvasionWhileMovingCorrupted1_"] = { type = "Corrupted", affix = "", "+(35-60) to Global Evasion Rating while moving", statOrder = { 6883 }, level = 1, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3825877290] = { "+(35-60) to Global Evasion Rating while moving" }, } },
- ["V2AddedEvasionWhileMovingCorrupted2"] = { type = "Corrupted", affix = "", "+(61-138) to Global Evasion Rating while moving", statOrder = { 6883 }, level = 31, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3825877290] = { "+(61-138) to Global Evasion Rating while moving" }, } },
- ["V2AddedEvasionWhileMovingCorrupted3"] = { type = "Corrupted", affix = "", "+(139-322) to Global Evasion Rating while moving", statOrder = { 6883 }, level = 75, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3825877290] = { "+(139-322) to Global Evasion Rating while moving" }, } },
- ["V2AddedFireDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (3-5) to (7-8) Fire Damage to Spells and Attacks", statOrder = { 1378 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (3-5) to (7-8) Fire Damage to Spells and Attacks" }, } },
- ["V2AddedFireDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (7-10) to (15-18) Fire Damage to Spells and Attacks", statOrder = { 1378 }, level = 31, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (7-10) to (15-18) Fire Damage to Spells and Attacks" }, } },
- ["V2AddedFireDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (13-18) to (28-33) Fire Damage to Spells and Attacks", statOrder = { 1378 }, level = 82, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (13-18) to (28-33) Fire Damage to Spells and Attacks" }, } },
- ["V2AddedFireDamageToBowAttacksCorrupted1__"] = { type = "Corrupted", affix = "", "(11-14) to (21-25) Added Fire Damage with Bow Attacks", statOrder = { 2085 }, level = 1, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "(11-14) to (21-25) Added Fire Damage with Bow Attacks" }, } },
- ["V2AddedFireDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "(24-31) to (46-55) Added Fire Damage with Bow Attacks", statOrder = { 2085 }, level = 31, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "(24-31) to (46-55) Added Fire Damage with Bow Attacks" }, } },
- ["V2AddedFireDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(29-39) to (59-69) Added Fire Damage with Bow Attacks", statOrder = { 2085 }, level = 75, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "(29-39) to (59-69) Added Fire Damage with Bow Attacks" }, } },
- ["V2AddedLightningDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (14-15) Lightning Damage to Spells and Attacks", statOrder = { 1414 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds 1 to (14-15) Lightning Damage to Spells and Attacks" }, } },
- ["V2AddedLightningDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage to Spells and Attacks", statOrder = { 1414 }, level = 31, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (1-2) to (27-28) Lightning Damage to Spells and Attacks" }, } },
- ["V2AddedLightningDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (1-5) to (50-52) Lightning Damage to Spells and Attacks", statOrder = { 1414 }, level = 83, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (1-5) to (50-52) Lightning Damage to Spells and Attacks" }, } },
- ["V2AddedLightningDamageToBowAttacksCorrupted1_"] = { type = "Corrupted", affix = "", "(1-3) to (38-39) Added Lightning Damage with Bow Attacks", statOrder = { 2101 }, level = 1, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1040269876] = { "(1-3) to (38-39) Added Lightning Damage with Bow Attacks" }, } },
- ["V2AddedLightningDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "(3-7) to (81-85) Added Lightning Damage with Bow Attacks", statOrder = { 2101 }, level = 31, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1040269876] = { "(3-7) to (81-85) Added Lightning Damage with Bow Attacks" }, } },
- ["V2AddedLightningDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(3-8) to (101-106) Added Lightning Damage with Bow Attacks", statOrder = { 2101 }, level = 75, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1040269876] = { "(3-8) to (101-106) Added Lightning Damage with Bow Attacks" }, } },
- ["V2AddedPhysicalDamageToBowAttacksCorrupted1"] = { type = "Corrupted", affix = "", "(3-4) to (6-10) Added Physical Damage with Bow Attacks", statOrder = { 2075 }, level = 1, group = "AddedPhysicalDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(3-4) to (6-10) Added Physical Damage with Bow Attacks" }, } },
- ["V2AddedPhysicalDamageToBowAttacksCorrupted2___"] = { type = "Corrupted", affix = "", "(5-7) to (10-14) Added Physical Damage with Bow Attacks", statOrder = { 2075 }, level = 31, group = "AddedPhysicalDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(5-7) to (10-14) Added Physical Damage with Bow Attacks" }, } },
- ["V2AddedPhysicalDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(9-12) to (16-19) Added Physical Damage with Bow Attacks", statOrder = { 2075 }, level = 75, group = "AddedPhysicalDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(9-12) to (16-19) Added Physical Damage with Bow Attacks" }, } },
- ["V2AddedChaosDamageToBowAttacksCorrupted1"] = { type = "Corrupted", affix = "", "(23-29) to (37-43) Added Chaos Damage with Bow Attacks", statOrder = { 2108 }, level = 81, group = "AddedChaosDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3478075311] = { "(23-29) to (37-43) Added Chaos Damage with Bow Attacks" }, } },
- ["V2AdditionalAOERangeCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(8-10)% increased Area of Effect" }, } },
- ["V2AdditionalArrowsCorrupted"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1799 }, level = 75, group = "AdditionalArrows", weightKey = { "quiver", "bow", "default", }, weightVal = { 200, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } },
- ["V2AdditionalChainCorrupted"] = { type = "Corrupted", affix = "", "Arrows Chain +1 times", statOrder = { 1793 }, level = 80, group = "AdditionalArrowChain", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, tradeHashes = { [1001077145] = { "Arrows Chain +1 times" }, } },
- ["V2ChanceToSuppressSpells_"] = { type = "Corrupted", affix = "", "+(8-12)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(8-12)% chance to Suppress Spell Damage" }, } },
- ["V2AdditionalCriticalStrikeMultiplierUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "+(20-25)% to Critical Strike Multiplier during any Flask Effect", statOrder = { 5958 }, level = 60, group = "AdditionalCriticalStrikeMultiplierUnderFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "damage", "critical" }, tradeHashes = { [240289863] = { "+(20-25)% to Critical Strike Multiplier during any Flask Effect" }, } },
- ["V2AdditionalCurseCorrupted"] = { type = "Corrupted", affix = "", "You can apply an additional Curse", statOrder = { 2173 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } },
- ["V2AdditionalPhysicalDamageReductionWhileStationaryCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% additional Physical Damage Reduction while stationary", statOrder = { 4318 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, tradeHashes = { [2181129193] = { "(3-5)% additional Physical Damage Reduction while stationary" }, } },
- ["V2AdditionalProjectilesCorrupted"] = { type = "Corrupted", affix = "", "Skills fire an additional Projectile", statOrder = { 1797 }, level = 1, group = "AdditionalProjectilesCorrupted", weightKey = { "rapier", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [74338099] = { "Skills fire an additional Projectile" }, } },
- ["V2AngerSkillReducedCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Anger Skill", statOrder = { 655 }, level = 56, group = "AngerSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [484879947] = { "Grants Level 21 Anger Skill" }, } },
- ["V2AttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-10)% increased Attack Speed" }, } },
- ["V2BlindImmunityCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Blinded", statOrder = { 2979 }, level = 1, group = "ImmunityToBlind", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } },
- ["V2BlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% Chance to Block Attack Damage", statOrder = { 1143 }, level = 1, group = "MonsterBlock", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(4-5)% Chance to Block Attack Damage" }, } },
- ["V2CanCatchCorruptFishCorrupted"] = { type = "Corrupted", affix = "", "You can catch Corrupted Fish", statOrder = { 2860 }, level = 1, group = "CorruptFish", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "vaal", "drop" }, tradeHashes = { [2451060005] = { "You can catch Corrupted Fish" }, } },
- ["V2CannotGainBleedingCorrupted_"] = { type = "Corrupted", affix = "", "Bleeding cannot be inflicted on you", statOrder = { 4220 }, level = 60, group = "BleedingImmunity", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1901158930] = { "Bleeding cannot be inflicted on you" }, } },
- ["V2AvoidIgniteCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Ignited", statOrder = { 1844 }, level = 40, group = "CannotBeIgnited", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } },
- ["V2CannotBePoisonedCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Poisoned", statOrder = { 3374 }, level = 40, group = "CannotBePoisoned", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } },
- ["V2CastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(10-20)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeedFishing", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "red_herring", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } },
- ["V2ChanceToBleedOnHitAndIncreasedDamageToBleedingTargetsCorrupted_"] = { type = "Corrupted", affix = "", "20% chance to cause Bleeding on Hit", "(30-40)% increased Attack Damage against Bleeding Enemies", statOrder = { 2488, 2496 }, level = 1, group = "ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets", weightKey = { "axe", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "20% chance to cause Bleeding on Hit" }, [3944782785] = { "(30-40)% increased Attack Damage against Bleeding Enemies" }, } },
- ["V2ChanceToDodgeCorrupted"] = { type = "Corrupted", affix = "", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(4-6)% chance to Suppress Spell Damage" }, } },
- ["V2ChanceToGainEnduranceChargeOnStunCorrupted_"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5692 }, level = 1, group = "GainEnduranceChargeOnStunChance", weightKey = { "sceptre", "staff", "mace", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1582887649] = { "(5-7)% chance to gain an Endurance Charge when you Stun an Enemy" }, } },
- ["V2ChanceToGainFortifyOnMeleeHitCorrupted"] = { type = "Corrupted", affix = "", "Melee Hits have (10-15)% chance to Fortify", statOrder = { 2269 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { "sceptre", "wand", "dagger", "claw", "rapier", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (10-15)% chance to Fortify" }, } },
- ["V2ChanceToGainFrenzyChargeOnKillCorrupted"] = { type = "Corrupted", affix = "", "(9-11)% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { "dagger", "claw", "bow", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "(9-11)% chance to gain a Frenzy Charge on Kill" }, } },
- ["V2ChanceToGainOnslaughtOnKillCorrupted_"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2998 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "sceptre", "wand", "dagger", "claw", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "(10-15)% chance to gain Onslaught for 4 seconds on Kill" }, } },
- ["V2ChanceToGainPowerChargeOnCritCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain a Power Charge on Critical Strike", statOrder = { 1835 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "wand", "dagger", "claw", "sceptre", "staff", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "(5-7)% chance to gain a Power Charge on Critical Strike" }, } },
- ["V2UnholyMightOnKillPercentChanceCorrupted"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3382 }, level = 1, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3562211447] = { "(10-15)% chance to gain Unholy Might for 3 seconds on Kill" }, } },
- ["V2ChanceToSpellDodgeCorrupted_"] = { type = "Corrupted", affix = "", "+(6-9)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(6-9)% chance to Suppress Spell Damage" }, } },
- ["V2ClaritySkillReducedCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 21 Clarity Skill", statOrder = { 646 }, level = 56, group = "ClaritySkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, tradeHashes = { [3511815065] = { "Grants Level 21 Clarity Skill" }, } },
- ["V2ColdDamageLifeLeechPermyriadCorrupted_"] = { type = "Corrupted", affix = "", "0.5% of Cold Damage Leeched as Life", statOrder = { 1680 }, level = 50, group = "ColdDamageLifeLeechPermyriad", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.5% of Cold Damage Leeched as Life" }, } },
- ["V2ConductivitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Conductivity Skill", statOrder = { 641 }, level = 56, group = "ConductivitySkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [461472247] = { "Grants Level 23 Conductivity Skill" }, } },
- ["V2CurseOnHitDespair"] = { type = "Corrupted", affix = "", "Curse Enemies with Despair on Hit", statOrder = { 2533 }, level = 30, group = "CurseOnHitDespair", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } },
- ["V2CurseOnHitElementalWeaknessCorrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2530 }, level = 30, group = "CurseOnHitLevelElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2028847114] = { "Curse Enemies with Elemental Weakness on Hit" }, } },
- ["V2CurseOnHitEnfeeble"] = { type = "Corrupted", affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2534 }, level = 30, group = "CurseOnHitEnfeeble", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1625819882] = { "Curse Enemies with Enfeeble on Hit" }, } },
- ["V2CurseOnHitTemporalChainsCurrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2527 }, level = 30, group = "CurseOnHitLevelTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3433724931] = { "Curse Enemies with Temporal Chains on Hit" }, } },
- ["V2CurseOnHitVulnerabilityCorrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2528 }, level = 30, group = "CurseOnHitLevelVulnerability", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3967845372] = { "Curse Enemies with Vulnerability on Hit" }, } },
- ["V2DespairSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Despair Skill", statOrder = { 633 }, level = 56, group = "DespairSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [2044547677] = { "Grants Level 23 Despair Skill" }, } },
- ["V2DeterminationSkillCorrupted__"] = { type = "Corrupted", affix = "", "Grants Level 23 Determination Skill", statOrder = { 656 }, level = 56, group = "DeterminationSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0 }, modTags = { "skill" }, tradeHashes = { [4265392510] = { "Grants Level 23 Determination Skill" }, } },
- ["V2DisciplineSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Discipline Skill", statOrder = { 659 }, level = 56, group = "DisciplineSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0 }, modTags = { "skill" }, tradeHashes = { [2341269061] = { "Grants Level 23 Discipline Skill" }, } },
- ["V2DodgeAttackHitsWhileMovingCorrupted_"] = { type = "Corrupted", affix = "", "+(6-10)% chance to Suppress Spell Damage while moving", statOrder = { 10177 }, level = 60, group = "DodgeSpellHitsWhileMoving", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2907896585] = { "+(6-10)% chance to Suppress Spell Damage while moving" }, } },
- ["V2DodgeSpellHitsWhileMovingCorrupted"] = { type = "Corrupted", affix = "", "+(6-10)% chance to Suppress Spell Damage while moving", statOrder = { 10177 }, level = 60, group = "DodgeSpellHitsWhileMoving", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2907896585] = { "+(6-10)% chance to Suppress Spell Damage while moving" }, } },
- ["V2DualWieldBlockCorrupted"] = { type = "Corrupted", affix = "", "+(8-10)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1167 }, level = 1, group = "BlockWhileDualWielding", weightKey = { "claw", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+(8-10)% Chance to Block Attack Damage while Dual Wielding" }, } },
- ["V2ElementalDamagePenetrationCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates (8-10)% Elemental Resistances", statOrder = { 2985 }, level = 1, group = "ElementalPenetration", weightKey = { "wand", "rapier", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (8-10)% Elemental Resistances" }, } },
- ["V2FireDamageLifeLeechPermyriadCorrupted_"] = { type = "Corrupted", affix = "", "0.5% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 50, group = "FireDamageLifeLeechPermyriad", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.5% of Fire Damage Leeched as Life" }, } },
- ["V2FishingQuantityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Fish Caught", statOrder = { 2854 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3802667447] = { "(5-10)% increased Quantity of Fish Caught" }, } },
- ["V2FishingRarityCorrupted_"] = { type = "Corrupted", affix = "", "(5-10)% increased Rarity of Fish Caught", statOrder = { 2855 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "(5-10)% increased Rarity of Fish Caught" }, } },
- ["V2FlammabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Flammability Skill", statOrder = { 637 }, level = 56, group = "FlammabilitySkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [2209668839] = { "Grants Level 23 Flammability Skill" }, } },
- ["V2FrostbiteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Frostbite Skill", statOrder = { 642 }, level = 56, group = "FrostbiteSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [1169502663] = { "Grants Level 23 Frostbite Skill" }, } },
- ["V2GainFrenzyChargeAfterSpending200ManaCorrupted"] = { type = "Corrupted", affix = "", "Gain a Frenzy Charge after Spending a total of 200 Mana", statOrder = { 6706 }, level = 1, group = "GainFrenzyChargeAfterSpending200Mana", weightKey = { "rapier", "default", }, weightVal = { 1000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [3868549606] = { "Gain a Frenzy Charge after Spending a total of 200 Mana" }, } },
- ["V2GemLevelCorrupted"] = { type = "Corrupted", affix = "", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { "boots", "gloves", "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } },
- ["V2GlobalCriticalStrikeMultiplierCorrupted"] = { type = "Corrupted", affix = "", "+(25-30)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "dagger", "claw", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(25-30)% to Global Critical Strike Multiplier" }, } },
- ["V2GraceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Grace Skill", statOrder = { 657 }, level = 56, group = "GraceSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0 }, modTags = { "skill" }, tradeHashes = { [2867050084] = { "Grants Level 23 Grace Skill" }, } },
- ["V2HasteSkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 21 Haste Skill", statOrder = { 644 }, level = 56, group = "HasteSkill", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [1188846263] = { "Grants Level 21 Haste Skill" }, } },
- ["V2HatredSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Hatred Skill", statOrder = { 654 }, level = 56, group = "HatredSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [2429546158] = { "Grants Level 21 Hatred Skill" }, } },
- ["V2MalevolenceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Malevolence Skill", statOrder = { 717 }, level = 56, group = "MalevolenceSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, tradeHashes = { [2148556029] = { "Grants Level 23 Malevolence Skill" }, } },
- ["V2ZealotrySkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 23 Zealotry Skill", statOrder = { 735 }, level = 56, group = "ZealotrySkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [3224664127] = { "Grants Level 23 Zealotry Skill" }, } },
- ["V2PrideSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Pride Skill", statOrder = { 721 }, level = 56, group = "PrideSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [4184565463] = { "Grants Level 21 Pride Skill" }, } },
- ["V2IncreasedAreaOfEffect1hCorrupted"] = { type = "Corrupted", affix = "", "(15-20)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { "dagger", "claw", "rapier", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(15-20)% increased Area of Effect" }, } },
- ["V2IncreasedAreaOfEffect2hCorrupted_"] = { type = "Corrupted", affix = "", "(25-30)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(25-30)% increased Area of Effect" }, } },
- ["V2IncreasedAtackCriticalStrikeCorruption"] = { type = "Corrupted", affix = "", "Attacks have +(0.5-0.8)% to Critical Strike Chance", statOrder = { 4797 }, level = 60, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(0.5-0.8)% to Critical Strike Chance" }, } },
- ["V2IncreasedAttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "ring", "default", }, weightVal = { 1000, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-10)% increased Attack Speed" }, } },
- ["V2IncreasedAttackSpeedUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Attack Speed during any Flask Effect", statOrder = { 3305 }, level = 60, group = "AttackSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "attack", "speed" }, tradeHashes = { [1365052901] = { "(8-12)% increased Attack Speed during any Flask Effect" }, } },
- ["V2IncreasedBurningDamageCorrupted"] = { type = "Corrupted", affix = "", "(30-40)% increased Burning Damage", statOrder = { 1882 }, level = 40, group = "BurnDamage", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(30-40)% increased Burning Damage" }, } },
- ["V2IncreasedCastSpeedCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "gloves", "ring", "default", }, weightVal = { 1000, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-10)% increased Cast Speed" }, } },
- ["V2IncreasedCastSpeedUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Cast Speed during any Flask Effect", statOrder = { 5471 }, level = 60, group = "CastSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "caster", "speed" }, tradeHashes = { [252194507] = { "(8-12)% increased Cast Speed during any Flask Effect" }, } },
- ["V2IncreasedChillEffectCorrupted"] = { type = "Corrupted", affix = "", "(25-30)% increased Effect of Cold Ailments", statOrder = { 5803 }, level = 40, group = "ChillEffect", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1793818220] = { "(25-30)% increased Effect of Cold Ailments" }, } },
- ["V2IncreasedCriticalStrikeUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(35-40)% increased Critical Strike Chance during any Flask Effect", statOrder = { 5927 }, level = 1, group = "IncreasedCriticalStrikeUnderFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2898434123] = { "(35-40)% increased Critical Strike Chance during any Flask Effect" }, } },
- ["V2IncreasedDamageCorrupted_"] = { type = "Corrupted", affix = "", "(40-50)% increased Damage", statOrder = { 1196 }, level = 1, group = "IncreasedDamage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(40-50)% increased Damage" }, } },
- ["V2IncreasedDamageOverTimeCorrupted_"] = { type = "Corrupted", affix = "", "(50-60)% increased Damage over Time", statOrder = { 1215 }, level = 1, group = "DamageOverTime", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(50-60)% increased Damage over Time" }, } },
- ["V2IncreasedDurationCorrupted"] = { type = "Corrupted", affix = "", "(12-15)% increased Skill Effect Duration", statOrder = { 1900 }, level = 1, group = "SkillEffectDuration", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(12-15)% increased Skill Effect Duration" }, } },
- ["V2IncreasedEnergyShieldCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased maximum Energy Shield", statOrder = { 1566 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(8-10)% increased maximum Energy Shield" }, } },
- ["V2IncreasedGlobalPhysicalDamageCorrupted"] = { type = "Corrupted", affix = "", "(15-25)% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(15-25)% increased Global Physical Damage" }, } },
- ["V2IncreasedLifeCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-8)% increased maximum Life" }, } },
- ["V2IncreasedLifeRegenerationPerSecondCorrupted"] = { type = "Corrupted", affix = "", "Regenerate (1.6-2)% of Life per second", statOrder = { 1949 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.6-2)% of Life per second" }, } },
- ["V2IncreasedMovementVelocityUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Movement Speed during any Flask Effect", statOrder = { 3191 }, level = 60, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, tradeHashes = { [304970526] = { "(8-12)% increased Movement Speed during any Flask Effect" }, } },
- ["V2IncreasedProjectileDamageForEachChainCorrupted"] = { type = "Corrupted", affix = "", "Projectiles deal (20-25)% increased Damage with Hits and Ailments for each time they have Chained", statOrder = { 9732 }, level = 40, group = "IncreasedProjectileDamageForEachChain", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1923210508] = { "Projectiles deal (20-25)% increased Damage with Hits and Ailments for each time they have Chained" }, } },
- ["V2IncreasedProjectileDamageForEachPierceCorrupted"] = { type = "Corrupted", affix = "", "Projectiles deal (8-10)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9733 }, level = 40, group = "ProjectileDamagePerEnemyPierced", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (8-10)% increased Damage with Hits and Ailments for each Enemy Pierced" }, } },
- ["V2IncreasedShockEffectCorrupted_"] = { type = "Corrupted", affix = "", "(25-30)% increased Effect of Shock", statOrder = { 10007 }, level = 40, group = "ShockEffect", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(25-30)% increased Effect of Shock" }, } },
- ["V2IncreasedSpellCriticalStrikeCorruption"] = { type = "Corrupted", affix = "", "+(0.5-0.8)% to Spell Critical Strike Chance", statOrder = { 10124 }, level = 60, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [791835907] = { "+(0.5-0.8)% to Spell Critical Strike Chance" }, } },
- ["V2LevelOfSocketedColdGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 1, group = "LocalIncreaseSocketedColdGemLevelCorrupted", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } },
- ["V2LevelOfSocketedFireGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 1, group = "LocalIncreaseSocketedFireGemLevelCorrupted", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } },
- ["V2LevelOfSocketedLightningGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Lightning Gems", statOrder = { 174 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevelCorrupted", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+2 to Level of Socketed Lightning Gems" }, } },
- ["V2LightningDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrder = { 1684 }, level = 50, group = "LightningDamageLifeLeechPermyriad", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.5% of Lightning Damage Leeched as Life" }, } },
- ["V2LocalAddedChaosDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (3-5) Chaos Damage", statOrder = { 1395 }, level = 1, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (1-2) to (3-5) Chaos Damage" }, } },
- ["V2LocalAddedChaosDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-8) to (11-13) Chaos Damage", statOrder = { 1395 }, level = 31, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (6-8) to (11-13) Chaos Damage" }, } },
- ["V2LocalAddedChaosDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-11) to (19-23) Chaos Damage", statOrder = { 1395 }, level = 84, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (8-11) to (19-23) Chaos Damage" }, } },
- ["V2LocalAddedColdDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (6-8) to (13-15) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (6-8) to (13-15) Cold Damage" }, } },
- ["V2LocalAddedColdDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (14-18) to (27-32) Cold Damage", statOrder = { 1376 }, level = 31, group = "LocalColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (14-18) to (27-32) Cold Damage" }, } },
- ["V2LocalAddedColdDamage1hCorrupted3_"] = { type = "Corrupted", affix = "", "Adds (17-23) to (24-40) Cold Damage", statOrder = { 1376 }, level = 84, group = "LocalColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (17-23) to (24-40) Cold Damage" }, } },
- ["V2LocalAddedColdDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (9-13) to (20-23) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (9-13) to (20-23) Cold Damage" }, } },
- ["V2LocalAddedColdDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (22-27) to (36-44) Cold Damage", statOrder = { 1376 }, level = 31, group = "LocalColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (22-27) to (36-44) Cold Damage" }, } },
- ["V2LocalAddedColdDamage2hCorrupted3_"] = { type = "Corrupted", affix = "", "Adds (26-32) to (45-55) Cold Damage", statOrder = { 1376 }, level = 84, group = "LocalColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (26-32) to (45-55) Cold Damage" }, } },
- ["V2LocalAddedFireDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (8-10) to (15-18) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (8-10) to (15-18) Fire Damage" }, } },
- ["V2LocalAddedFireDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (17-22) to (33-39) Fire Damage", statOrder = { 1367 }, level = 31, group = "LocalFireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (17-22) to (33-39) Fire Damage" }, } },
- ["V2LocalAddedFireDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (21-28) to (40-48) Fire Damage", statOrder = { 1367 }, level = 84, group = "LocalFireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (21-28) to (40-48) Fire Damage" }, } },
- ["V2LocalAddedFireDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (12-17) to (23-27) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (12-17) to (23-27) Fire Damage" }, } },
- ["V2LocalAddedFireDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (27-31) to (39-50) Fire Damage", statOrder = { 1367 }, level = 31, group = "LocalFireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (27-31) to (39-50) Fire Damage" }, } },
- ["V2LocalAddedFireDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (31-39) to (52-61) Fire Damage", statOrder = { 1367 }, level = 84, group = "LocalFireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (31-39) to (52-61) Fire Damage" }, } },
- ["V2LocalAddedLightningDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (27-28) Lightning Damage" }, } },
- ["V2LocalAddedLightningDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (2-5) to (58-61) Lightning Damage", statOrder = { 1387 }, level = 31, group = "LocalLightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (2-5) to (58-61) Lightning Damage" }, } },
- ["V2LocalAddedLightningDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (2-6) to (72-76) Lightning Damage", statOrder = { 1387 }, level = 84, group = "LocalLightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (2-6) to (72-76) Lightning Damage" }, } },
- ["V2LocalAddedLightningDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (2-3) to (35-39) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (2-3) to (35-39) Lightning Damage" }, } },
- ["V2LocalAddedLightningDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-7) to (73-84) Lightning Damage", statOrder = { 1387 }, level = 31, group = "LocalLightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (3-7) to (73-84) Lightning Damage" }, } },
- ["V2LocalAddedLightningDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (5-9) to (103-107) Lightning Damage", statOrder = { 1387 }, level = 84, group = "LocalLightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (5-9) to (103-107) Lightning Damage" }, } },
- ["V2LocalAddedPhysicalDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to 2 Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 1 to 2 Physical Damage" }, } },
- ["V2LocalAddedPhysicalDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-4) to (5-7) Physical Damage", statOrder = { 1281 }, level = 31, group = "LocalPhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (3-4) to (5-7) Physical Damage" }, } },
- ["V2LocalAddedPhysicalDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (5-7) to (10-12) Physical Damage", statOrder = { 1281 }, level = 84, group = "LocalPhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-7) to (10-12) Physical Damage" }, } },
- ["V2LocalAddedPhysicalDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 1 to (2-3) Physical Damage" }, } },
- ["V2LocalAddedPhysicalDamage2hCorrupted2__"] = { type = "Corrupted", affix = "", "Adds (4-5) to (6-8) Physical Damage", statOrder = { 1281 }, level = 31, group = "LocalPhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (4-5) to (6-8) Physical Damage" }, } },
- ["V2LocalAddedPhysicalDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-9) to (11-13) Physical Damage", statOrder = { 1281 }, level = 84, group = "LocalPhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-9) to (11-13) Physical Damage" }, } },
- ["V2LocalBlockChanceCorrupted"] = { type = "Corrupted", affix = "", "+(4-5)% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(4-5)% Chance to Block" }, } },
- ["V2LocalIncreasedAttackSpeedBowCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(3-5)% increased Attack Speed" }, } },
- ["V2LocalIncreasedAttackSpeed1hCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-7)% increased Attack Speed" }, } },
- ["V2LocalIncreasedAttackSpeed2hCorrupted_"] = { type = "Corrupted", affix = "", "(5-7)% increased Attack Speed", statOrder = { 1418 }, level = 70, group = "LocalIncreasedAttackSpeed", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-7)% increased Attack Speed" }, } },
- ["V2LocalIncreasedAttackSpeedWandCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "wand", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(3-5)% increased Attack Speed" }, } },
- ["V2IncreasedCastSpeedCorrupted__"] = { type = "Corrupted", affix = "", "(12-15)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "sceptre", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(12-15)% increased Cast Speed" }, } },
- ["V2LocalIncreasedCriticalStrikeChance1hCorrupted1"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "wand", "rapier", "claw", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(14-18)% increased Critical Strike Chance" }, } },
- ["V2LocalIncreasedCriticalStrikeChance2hCorrupted_"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(14-18)% increased Critical Strike Chance" }, } },
- ["V2LocalIncreasedCriticalStrikeChance1hCorrupted2__"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "dagger", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(14-18)% increased Critical Strike Chance" }, } },
- ["V2LocalIncreasedPhysicalDamageBowCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrder = { 1237 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(10-15)% increased Physical Damage" }, } },
- ["V2LocalIncreasedPhysicalDamageBowCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrder = { 1237 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(16-20)% increased Physical Damage" }, } },
- ["V2LocalIncreasedPhysicalDamageCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrder = { 1237 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(10-15)% increased Physical Damage" }, } },
- ["V2LocalIncreasedPhysicalDamageCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrder = { 1237 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(16-20)% increased Physical Damage" }, } },
- ["V2IncreasedSpellDamage1hCorrupted"] = { type = "Corrupted", affix = "", "(50-60)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-60)% increased Spell Damage" }, } },
- ["V2LocalMeleeWeaponRangeCorrupted"] = { type = "Corrupted", affix = "", "+(0.1-0.2) metres to Weapon Range", statOrder = { 2750 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "sword", "mace", "staff", "bow", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+(0.1-0.2) metres to Weapon Range" }, } },
- ["V2ManaOnHitCorrupted"] = { type = "Corrupted", affix = "", "Gain (4-6) Mana per Enemy Hit with Attacks", statOrder = { 1749 }, level = 40, group = "ManaGainPerTarget", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (4-6) Mana per Enemy Hit with Attacks" }, } },
- ["V2MaximumEnduranceChargesCorruption"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 60, group = "MaximumEnduranceCharges", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } },
- ["V2MaxFrenzyChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1814 }, level = 60, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } },
- ["V2MaxPowerChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrder = { 1819 }, level = 60, group = "IncreasedMaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } },
- ["V2MaximumBlockCorruption"] = { type = "Corrupted", affix = "", "+1% to maximum Chance to Block Attack Damage", statOrder = { 1993 }, level = 60, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, tradeHashes = { [4124805414] = { "+1% to maximum Chance to Block Attack Damage" }, } },
- ["V2MaximumResistanceCorrupted"] = { type = "Corrupted", affix = "", "+1% to all maximum Resistances", statOrder = { 1647 }, level = 80, group = "MaximumResistances", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } },
- ["V2MovementVelocityCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { "amulet", "boots", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(8-10)% increased Movement Speed" }, } },
- ["V2PercentageOfBlockAppliesToSpellBlockCorrupted_"] = { type = "Corrupted", affix = "", "(6-7)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "BlockingBlocksSpells", weightKey = { "shield", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "block" }, tradeHashes = { [2881111359] = { "(6-7)% Chance to Block Spell Damage" }, } },
- ["V2SpellBlockPercentageCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 1, group = "SpellBlockPercentage", weightKey = { "shield", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(4-5)% Chance to Block Spell Damage" }, } },
- ["V2PhysicalDamageAddedAsColdCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 1, group = "ColdDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (8-12)% of Physical Damage as Extra Cold Damage" }, } },
- ["V2PhysicalDamageAddedAsFireCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 1, group = "FireDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (8-12)% of Physical Damage as Extra Fire Damage" }, } },
- ["V2PhysicalDamageAddedAsLightningCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 1, group = "LightningDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (8-12)% of Physical Damage as Extra Lightning Damage" }, } },
- ["V2PhysicalDamageTakenAsColdCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 60, group = "PhysicalDamageTakenAsCold", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(6-8)% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["V2PhysicalDamageTakenAsFireCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 60, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(6-8)% of Physical Damage from Hits taken as Fire Damage" }, } },
- ["V2PhysicalDamageTakenAsLightningCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 60, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(6-8)% of Physical Damage from Hits taken as Lightning Damage" }, } },
- ["V2PhysicalDamageTakenAsChaosCorrupted_"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 60, group = "PhysicalDamageTakenAsChaos", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "(6-8)% of Physical Damage from Hits taken as Chaos Damage" }, } },
- ["V2PointBlankCorrupted"] = { type = "Corrupted", affix = "", "Point Blank", statOrder = { 10800 }, level = 1, group = "PointBlank", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2896346114] = { "Point Blank" }, } },
- ["V2PurityOfFireSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Fire Skill", statOrder = { 628 }, level = 56, group = "PurityOfFireSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, tradeHashes = { [3970432307] = { "Grants Level 23 Purity of Fire Skill" }, } },
- ["V2PurityOfColdSkillCorrupted___"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Ice Skill", statOrder = { 634 }, level = 56, group = "PurityOfColdSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, tradeHashes = { [4193390599] = { "Grants Level 23 Purity of Ice Skill" }, } },
- ["V2PurityOfLightningSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Lightning Skill", statOrder = { 636 }, level = 56, group = "PurityOfLightningSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, tradeHashes = { [3822878124] = { "Grants Level 23 Purity of Lightning Skill" }, } },
- ["V2PuritySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Purity of Elements Skill", statOrder = { 650 }, level = 56, group = "PuritySkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, tradeHashes = { [105466375] = { "Grants Level 21 Purity of Elements Skill" }, } },
- ["V2ReducedChaosDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Chaos Damage taken", statOrder = { 2248 }, level = 45, group = "ChaosDamageTakenPercentage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos" }, tradeHashes = { [2960683632] = { "(4-6)% reduced Chaos Damage taken" }, } },
- ["V2ReducedColdDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Cold Damage taken", statOrder = { 3394 }, level = 45, group = "ColdDamageTakenPercentage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3303114033] = { "(4-6)% reduced Cold Damage taken" }, } },
- ["V2ReducedDamageFromAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Area Damage taken from Hits", statOrder = { 2244 }, level = 20, group = "AreaOfEffectDamageTaken", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3001376862] = { "(4-6)% reduced Area Damage taken from Hits" }, } },
- ["V2ReducedDamageFromProjectilesCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Damage taken from Projectile Hits", statOrder = { 2754 }, level = 20, group = "ProjectileDamageTaken", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1425651005] = { "(4-6)% reduced Damage taken from Projectile Hits" }, } },
- ["V2ReducedFireDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Fire Damage taken", statOrder = { 2247 }, level = 45, group = "FireDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3743301799] = { "(4-6)% reduced Fire Damage taken" }, } },
- ["V2ReducedLightningDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Lightning Damage taken", statOrder = { 3393 }, level = 45, group = "LightningDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [1276918229] = { "(4-6)% reduced Lightning Damage taken" }, } },
- ["V2ReducedExtraDamageFromCriticalStrikesBodyCorrupted__"] = { type = "Corrupted", affix = "", "You take 50% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 20, group = "ReducedExtraDamageFromCrits", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take 50% reduced Extra Damage from Critical Strikes" }, } },
- ["V2ReducedExtraDamageFromCriticalStrikesShieldCorrupted"] = { type = "Corrupted", affix = "", "You take (20-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 20, group = "ReducedExtraDamageFromCrits", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (20-30)% reduced Extra Damage from Critical Strikes" }, } },
- ["V2RegenerateLifePerSecondWhileMovingCorrupted_"] = { type = "Corrupted", affix = "", "Regenerate 100 Life per second while moving", statOrder = { 7411 }, level = 60, group = "LifeRegenerationWhileMoving", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2841027131] = { "Regenerate 100 Life per second while moving" }, } },
- ["V2ResoluteTechniqueCorrupted"] = { type = "Corrupted", affix = "", "Resolute Technique", statOrder = { 10827 }, level = 40, group = "ResoluteTechnique", weightKey = { "sword", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } },
- ["V2SocketedSkillsManaMultiplierCorrupted__"] = { type = "Corrupted", affix = "", "Socketed Skill Gems get a 90% Cost & Reservation Multiplier", statOrder = { 535 }, level = 1, group = "SocketedSkillsManaMultiplier", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana", "gem" }, tradeHashes = { [2865550257] = { "Socketed Skill Gems get a 90% Cost & Reservation Multiplier" }, } },
- ["V2SupportedByAccuracyCorrupted__"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Additional Accuracy", statOrder = { 485 }, level = 1, group = "SupportedByAccuracy", weightKey = { "mace", "axe", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1567462963] = { "Socketed Gems are supported by Level 10 Additional Accuracy" }, } },
- ["V2SupportedByBlindCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Blind", statOrder = { 475 }, level = 1, group = "SupportedByBlind", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 10 Blind" }, } },
- ["V2SupportedByBloodmagicCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Lifetap", statOrder = { 330 }, level = 1, group = "SocketedGemsSupportedByLifetap", weightKey = { "mace", "sword", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "skill", "gem" }, tradeHashes = { [1079239905] = { "Socketed Gems are Supported by Level 1 Lifetap" }, } },
- ["V2SupportedByFasterProjectilesCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Faster Projectiles", statOrder = { 487 }, level = 1, group = "SupportedByProjectileSpeed", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 10 Faster Projectiles" }, } },
- ["V2SupportedByFortifyCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Fortify", statOrder = { 501 }, level = 1, group = "SupportedByFortify", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 10 Fortify" }, } },
- ["V2SupportedByLifeGainOnHitCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Life Gain On Hit", statOrder = { 329 }, level = 1, group = "SupportedByLifeGainOnHit", weightKey = { "sword", "mace", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2032386732] = { "Socketed Gems are Supported by Level 10 Life Gain On Hit" }, } },
- ["V2SupportedByOnslaughtCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 349 }, level = 1, group = "SupportedByOnslaught", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [3237923082] = { "Socketed Gems are Supported by Level 10 Momentum" }, } },
- ["V2SupportedByReducedManaCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Inspiration", statOrder = { 499 }, level = 1, group = "SupportedByReducedMana", weightKey = { "sword", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1866911844] = { "Socketed Gems are Supported by Level 10 Inspiration" }, } },
- ["V2WeaponElementalDamageCorrupted"] = { type = "Corrupted", affix = "", "(20-24)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-24)% increased Elemental Damage with Attack Skills" }, } },
- ["V2WrathSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Wrath Skill", statOrder = { 653 }, level = 45, group = "WrathSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [2265307453] = { "Grants Level 21 Wrath Skill" }, } },
- ["V2SocketedDurationGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Duration Gems", statOrder = { 180 }, level = 20, group = "IncreaseSocketedDurationGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2115168758] = { "+2 to Level of Socketed Duration Gems" }, } },
- ["V2SocketedAoEGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed AoE Gems", statOrder = { 181 }, level = 20, group = "IncreasedSocketedAoEGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2551600084] = { "+2 to Level of Socketed AoE Gems" }, } },
- ["V2SocketedAuraGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 186 }, level = 20, group = "LocalIncreaseSocketedAuraLevelCorrupted", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } },
- ["V2SocketedCurseGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 189 }, level = 20, group = "LocalIncreaseSocketedCurseLevelCorrupted", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+2 to Level of Socketed Curse Gems" }, } },
- ["V2SocketedTrapOrMineGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Trap or Mine Gems", statOrder = { 192 }, level = 20, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [150668988] = { "+2 to Level of Socketed Trap or Mine Gems" }, } },
- ["V2SocketedMinionGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 20, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } },
- ["V2SocketedWarcryGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Warcry Gems", statOrder = { 198 }, level = 20, group = "LocalSocketedWarcryGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [1672793731] = { "+2 to Level of Socketed Warcry Gems" }, } },
- ["V2SocketedProjectileGemCorrupted_"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Projectile Gems", statOrder = { 182 }, level = 20, group = "LocalIncreaseSocketedProjectileLevelCorrupted", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2176571093] = { "+2 to Level of Socketed Projectile Gems" }, } },
- ["V2IncreasedMaximumLifeCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-6)% increased maximum Life" }, } },
- ["V2IncreasedMaximumEnergyShieldCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased maximum Energy Shield", statOrder = { 1566 }, level = 1, group = "MaximumEnergyShieldPercent", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(4-6)% increased maximum Energy Shield" }, } },
- ["V2ItemRarityCorrupted_"] = { type = "Corrupted", affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1601 }, level = 60, group = "IncreasedItemRarity", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } },
- ["V2ItemQuantityCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% increased Quantity of Items found", statOrder = { 1597 }, level = 84, group = "IncreasedItemQuantity", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(3-5)% increased Quantity of Items found" }, } },
- ["V2IncreasedAuraEffectWrathCorrupted"] = { type = "Corrupted", affix = "", "Wrath has (15-20)% increased Aura Effect", statOrder = { 3366 }, level = 45, group = "IncreasedAuraEffectWrathCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (15-20)% increased Aura Effect" }, } },
- ["V2IncreasedAuraEffectAngerCorrupted"] = { type = "Corrupted", affix = "", "Anger has (15-20)% increased Aura Effect", statOrder = { 3361 }, level = 45, group = "IncreasedAuraEffectAngerCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (15-20)% increased Aura Effect" }, } },
- ["V2IncreasedAuraEffectHatredCorrupted"] = { type = "Corrupted", affix = "", "Hatred has (15-20)% increased Aura Effect", statOrder = { 3371 }, level = 45, group = "IncreasedAuraEffectHatredCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (15-20)% increased Aura Effect" }, } },
- ["V2IncreasedAuraEffectDeterminationCorrupted"] = { type = "Corrupted", affix = "", "Determination has (15-20)% increased Aura Effect", statOrder = { 3372 }, level = 45, group = "IncreasedAuraEffectDeterminationCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (15-20)% increased Aura Effect" }, } },
- ["V2IncreasedAuraEffectDisciplineCorrupted"] = { type = "Corrupted", affix = "", "Discipline has (15-20)% increased Aura Effect", statOrder = { 3373 }, level = 45, group = "IncreasedAuraEffectDisciplineCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (15-20)% increased Aura Effect" }, } },
- ["V2IncreasedAuraEffectGraceCorrupted"] = { type = "Corrupted", affix = "", "Grace has (15-20)% increased Aura Effect", statOrder = { 3368 }, level = 45, group = "IncreasedAuraEffectGraceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (15-20)% increased Aura Effect" }, } },
- ["V2IncreasedAuraEffectMalevolenceCorrupted"] = { type = "Corrupted", affix = "", "Malevolence has (15-20)% increased Aura Effect", statOrder = { 6166 }, level = 45, group = "IncreasedAuraEffectMalevolenceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (15-20)% increased Aura Effect" }, } },
- ["V2IncreasedAuraEffectZealotryCorrupted_"] = { type = "Corrupted", affix = "", "Zealotry has (15-20)% increased Aura Effect", statOrder = { 10720 }, level = 45, group = "IncreasedAuraEffectZealotryCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (15-20)% increased Aura Effect" }, } },
- ["V2IncreasedAuraEffectPrideCorrupted"] = { type = "Corrupted", affix = "", "Pride has (15-20)% increased Aura Effect", statOrder = { 9709 }, level = 45, group = "IncreasedAuraEffectPrideCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (15-20)% increased Aura Effect" }, } },
- ["V2IncreasedIntelligenceDexterityCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Dexterity", "(4-6)% increased Intelligence", statOrder = { 1190, 1191 }, level = 1, group = "IncreasedIntelligenceDexterityCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(4-6)% increased Intelligence" }, [4139681126] = { "(4-6)% increased Dexterity" }, } },
- ["V2IncreasedDexterityStrengthCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Strength", "(4-6)% increased Dexterity", statOrder = { 1189, 1190 }, level = 1, group = "IncreasedDexterityStrengthCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(4-6)% increased Dexterity" }, [734614379] = { "(4-6)% increased Strength" }, } },
- ["V2IncreasedStrengthIntelligenceCorrupted_"] = { type = "Corrupted", affix = "", "(4-6)% increased Strength", "(4-6)% increased Intelligence", statOrder = { 1189, 1191 }, level = 1, group = "IncreasedStrengthIntelligenceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(4-6)% increased Strength" }, [656461285] = { "(4-6)% increased Intelligence" }, } },
- ["V2AllResistancesCorrupted"] = { type = "Corrupted", affix = "", "+(14-16)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistancesCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(14-16)% to all Elemental Resistances" }, } },
+ ["MovementVelocityCorrupted"] = { type = "Corrupted", affix = "", "(2-5)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { "amulet", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(2-5)% increased Movement Speed" }, } },
+ ["MaxFrenzyChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 20, group = "MaximumFrenzyCharges", weightKey = { "boots", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } },
+ ["MaxPowerChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 20, group = "IncreasedMaximumPowerCharges", weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } },
+ ["MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (15-20)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "helmet", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-20)% increased Damage" }, } },
+ ["SocketedVaalGemsIncreaseCorrupted"] = { type = "Corrupted", affix = "", "+(1-2) to Level of Socketed Vaal Gems", statOrder = { 188 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { "helmet", "gloves", "boots", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "vaal", "gem" }, tradeHashes = { [1170386874] = { "+(1-2) to Level of Socketed Vaal Gems" }, } },
+ ["DamageTakenFlatReductionCorrupted1"] = { type = "Corrupted", affix = "", "-(10-5) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(10-5) Physical Damage taken from Attack Hits" }, } },
+ ["DamageTakenFlatReductionCorrupted2"] = { type = "Corrupted", affix = "", "-(16-11) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 30, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(16-11) Physical Damage taken from Attack Hits" }, } },
+ ["DamageTakenFlatReductionCorrupted3"] = { type = "Corrupted", affix = "", "-(24-17) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 60, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(24-17) Physical Damage taken from Attack Hits" }, } },
+ ["FireDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 50, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.2% of Fire Damage Leeched as Life" }, } },
+ ["ColdDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 50, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.2% of Cold Damage Leeched as Life" }, } },
+ ["LightningDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 50, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.2% of Lightning Damage Leeched as Life" }, } },
+ ["IncreasedCastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "ring", "gloves", "focus", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(4-6)% increased Cast Speed" }, } },
+ ["ChanceToFleeCorrupted"] = { type = "Corrupted", affix = "", "5% chance to Cause Monsters to Flee", statOrder = { 2042 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3181974858] = { "5% chance to Cause Monsters to Flee" }, } },
+ ["BlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(2-4)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { "staff", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(2-4)% Chance to Block Attack Damage" }, } },
+ ["LocalAddedChaosDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (3-5) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (1-2) to (3-5) Chaos Damage" }, } },
+ ["LocalAddedChaosDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-8) to (11-13) Chaos Damage", statOrder = { 1390 }, level = 20, group = "LocalChaosDamage", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (6-8) to (11-13) Chaos Damage" }, } },
+ ["LocalAddedChaosDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-11) to (19-23) Chaos Damage", statOrder = { 1390 }, level = 40, group = "LocalChaosDamage", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (8-11) to (19-23) Chaos Damage" }, } },
+ ["AddedChaosDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds 1 to (2-3) Chaos Damage to Attacks" }, } },
+ ["AddedChaosDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-4) to (6-8) Chaos Damage to Attacks", statOrder = { 1387 }, level = 20, group = "ChaosDamage", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (3-4) to (6-8) Chaos Damage to Attacks" }, } },
+ ["AddedChaosDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (7-9) to (11-13) Chaos Damage to Attacks", statOrder = { 1387 }, level = 40, group = "ChaosDamage", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (7-9) to (11-13) Chaos Damage to Attacks" }, } },
+ ["SpellBlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(2-4)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { "staff", "amulet", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(2-4)% Chance to Block Spell Damage" }, } },
+ ["AttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(4-8)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(4-8)% increased Attack Speed" }, } },
+ ["WeaponElementalDamageCorrupted"] = { type = "Corrupted", affix = "", "(6-12)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(6-12)% increased Elemental Damage with Attack Skills" }, } },
+ ["CullingStrikeCorrupted"] = { type = "Corrupted", affix = "", "Culling Strike", statOrder = { 2039 }, level = 1, group = "CullingStrike", weightKey = { "sword", "axe", "dagger", "wand", "bow", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } },
+ ["ManaOnLifeLostCorrupted"] = { type = "Corrupted", affix = "", "(3-6)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "amulet", "ring", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(3-6)% of Damage taken Recouped as Mana" }, } },
+ ["MaximumResistanceCorrupted"] = { type = "Corrupted", affix = "", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 1, group = "MaximumResistances", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } },
+ ["AdditionalCurseCorrupted"] = { type = "Corrupted", affix = "", "You can apply an additional Curse", statOrder = { 2168 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } },
+ ["ChanceToAvoidFreezeCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "amulet", "body_armour", "ring", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(10-20)% chance to Avoid being Frozen" }, } },
+ ["ChanceToAvoidIgniteCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 1, group = "AvoidIgnite", weightKey = { "amulet", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(10-20)% chance to Avoid being Ignited" }, } },
+ ["ChaosResistCorruption"] = { type = "Corrupted", affix = "", "+(2-4)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { "fishing_rod", "weapon", "jewel", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(2-4)% to Chaos Resistance" }, } },
+ ["ChanceToDodgeCorruption"] = { type = "Corrupted", affix = "", "+(3-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(3-6)% chance to Suppress Spell Damage" }, } },
+ ["CannotBeKnockedBackCorruption"] = { type = "Corrupted", affix = "", "Cannot be Knocked Back", statOrder = { 1521 }, level = 1, group = "ImmuneToKnockback", weightKey = { "boots", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4212255859] = { "Cannot be Knocked Back" }, } },
+ ["GemLevelCorruption"] = { type = "Corrupted", affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { "boots", "gloves", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } },
+ ["AvoidShockCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 1, group = "ReducedShockChance", weightKey = { "body_armour", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(10-20)% chance to Avoid being Shocked" }, } },
+ ["CannotBeLeechedFromCorruption"] = { type = "Corrupted", affix = "", "Enemies Cannot Leech Life From you", statOrder = { 2440 }, level = 1, group = "EnemiesCantLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [4293455942] = { "Enemies Cannot Leech Life From you" }, } },
+ ["DamageTakenFromManaBeforeLifeCorruption"] = { type = "Corrupted", affix = "", "(3-5)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(3-5)% of Damage is taken from Mana before Life" }, } },
+ ["DamageConversionFireCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(10-20)% of Physical Damage Converted to Fire Damage" }, } },
+ ["DamageConversionColdCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(10-20)% of Physical Damage Converted to Cold Damage" }, } },
+ ["DamageConversionLighningCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 1, group = "MonsterConvertPhysicalDamageToLightning", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(10-20)% of Physical Damage Converted to Lightning Damage" }, } },
+ ["AdditionalArrowsCorruption"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 1, group = "AdditionalArrows", weightKey = { "quiver", "bow", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } },
+ ["AdditionalAOERangeCorruption"] = { type = "Corrupted", affix = "", "(4-6)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(4-6)% increased Area of Effect" }, } },
+ ["IncreasedDurationCorruption"] = { type = "Corrupted", affix = "", "(5-8)% increased Skill Effect Duration", statOrder = { 1895 }, level = 1, group = "SkillEffectDuration", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(5-8)% increased Skill Effect Duration" }, } },
+ ["AdditionalTrapsCorruption_"] = { type = "Corrupted", affix = "", "Can have up to 1 additional Trap placed at a time", statOrder = { 2255 }, level = 1, group = "TrapsAllowed", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2224292784] = { "Can have up to 1 additional Trap placed at a time" }, } },
+ ["MaximumEnduranceChargesCorruption_"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } },
+ ["DualWieldBlockCorruption"] = { type = "Corrupted", affix = "", "+(3-6)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "BlockWhileDualWielding", weightKey = { "sceptre", "axe", "mace", "wand", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+(3-6)% Chance to Block Attack Damage while Dual Wielding" }, } },
+ ["AdditionalPierceCorruption"] = { type = "Corrupted", affix = "", "Arrows Pierce an additional Target", statOrder = { 1791 }, level = 1, group = "AdditionalArrowPierce", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } },
+ ["GlobalPierceCorruption"] = { type = "Corrupted", affix = "", "(4-8)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(4-8)% increased Projectile Speed" }, } },
+ ["CurseOnHitTemporalChainsCurruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2522 }, level = 30, group = "CurseOnHitLevelTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3433724931] = { "Curse Enemies with Temporal Chains on Hit" }, } },
+ ["CurseOnHitVulnerabilityCorruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2523 }, level = 30, group = "CurseOnHitLevelVulnerability", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3967845372] = { "Curse Enemies with Vulnerability on Hit" }, } },
+ ["CurseOnHitElementalWeaknessCorruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2525 }, level = 30, group = "CurseOnHitLevelElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2028847114] = { "Curse Enemies with Elemental Weakness on Hit" }, } },
+ ["SupportedByCastOnStunCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Cast when Stunned", statOrder = { 477 }, level = 35, group = "SupportedByCastOnStun", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1079148723] = { "Socketed Gems are supported by Level 12 Cast when Stunned" }, } },
+ ["SupportedByCastOnCritCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Cast On Critical Strike", statOrder = { 472 }, level = 35, group = "SupportedByCastOnCrit", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2325632050] = { "Socketed Gems are supported by Level 12 Cast On Critical Strike" }, } },
+ ["SupportedByMeleeSplashCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Melee Splash", statOrder = { 471 }, level = 20, group = "SupportedByMeleeSplash", weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 10 Melee Splash" }, } },
+ ["SupportedByAddedFireDamageCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 12 Added Fire Damage", statOrder = { 462 }, level = 48, group = "DisplaySocketedGemsGetAddedFireDamage", weightKey = { "two_hand_weapon", "mace", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2572192375] = { "Socketed Gems are Supported by Level 12 Added Fire Damage" }, } },
+ ["SupportedByStunCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 6 Stun", statOrder = { 479 }, level = 38, group = "SupportedByStun", weightKey = { "mace", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [689720069] = { "Socketed Gems are supported by Level 6 Stun" }, } },
+ ["LocalMeleeWeaponRangeCorrupted"] = { type = "Corrupted", affix = "", "+(0.1-0.2) metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "sceptre", "rapier", "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+(0.1-0.2) metres to Weapon Range" }, } },
+ ["SocketedSkillsManaMultiplierCorrupted"] = { type = "Corrupted", affix = "", "Socketed Skill Gems get a 95% Cost & Reservation Multiplier", statOrder = { 530 }, level = 1, group = "SocketedSkillsManaMultiplier", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "gem" }, tradeHashes = { [2865550257] = { "Socketed Skill Gems get a 95% Cost & Reservation Multiplier" }, } },
+ ["SupportedByElementalProliferationCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Elemental Proliferation", statOrder = { 466 }, level = 12, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2929101122] = { "Socketed Gems are Supported by Level 1 Elemental Proliferation" }, } },
+ ["SupportedByAccuracyCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Additional Accuracy", statOrder = { 480 }, level = 48, group = "SupportedByAccuracy", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1567462963] = { "Socketed Gems are supported by Level 12 Additional Accuracy" }, } },
+ ["SupportedByMultistrikeCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 1 Multistrike", statOrder = { 481 }, level = 28, group = "SupportedByMultistrike", weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2501237765] = { "Socketed Gems are supported by Level 1 Multistrike" }, } },
+ ["SupportedByAreaOfEffectCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Increased Area of Effect", statOrder = { 224 }, level = 24, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 1 Increased Area of Effect" }, } },
+ ["SupportedByLifeLeechCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 483 }, level = 59, group = "SupportedByLifeLeech", weightKey = { "claw", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [891277550] = { "Socketed Gems are supported by Level 15 Life Leech" }, } },
+ ["SupportedByCriticalMultiplierCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 14 Increased Critical Damage", statOrder = { 485 }, level = 35, group = "SupportedByCriticalMultiplier", weightKey = { "dagger", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1108755349] = { "Socketed Gems are supported by Level 14 Increased Critical Damage" }, } },
+ ["SupportedByForkCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 1 Fork", statOrder = { 486 }, level = 6, group = "SupportedByFork", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2062753054] = { "Socketed Gems are supported by Level 1 Fork" }, } },
+ ["SupportedByWeaponElementalDamageCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Elemental Damage with Attacks", statOrder = { 487 }, level = 24, group = "SupportedByWeaponElementalDamage", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2532625478] = { "Socketed Gems are supported by Level 12 Elemental Damage with Attacks" }, } },
+ ["SupportedByFasterCastCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 500 }, level = 24, group = "DisplaySocketedGemsGetFasterCast", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 10 Faster Casting" }, } },
+ ["PuritySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Elements Skill", statOrder = { 645 }, level = 45, group = "PuritySkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, tradeHashes = { [105466375] = { "Grants Level 15 Purity of Elements Skill" }, } },
+ ["CriticalWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Assassin's Mark Skill", statOrder = { 647 }, level = 31, group = "CriticalWeaknessSkill", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [3736925508] = { "Grants Level 10 Assassin's Mark Skill" }, } },
+ ["PurityOfFireSkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Fire Skill", statOrder = { 623 }, level = 45, group = "PurityOfFireSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, tradeHashes = { [3970432307] = { "Grants Level 15 Purity of Fire Skill" }, } },
+ ["PurityOfColdSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Ice Skill", statOrder = { 629 }, level = 45, group = "PurityOfColdSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, tradeHashes = { [4193390599] = { "Grants Level 15 Purity of Ice Skill" }, } },
+ ["PurityOfLightningSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Lightning Skill", statOrder = { 631 }, level = 45, group = "PurityOfLightningSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, tradeHashes = { [3822878124] = { "Grants Level 15 Purity of Lightning Skill" }, } },
+ ["WrathSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 7 Wrath Skill", statOrder = { 648 }, level = 28, group = "WrathSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2265307453] = { "Grants Level 7 Wrath Skill" }, } },
+ ["HatredSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 11 Hatred Skill", statOrder = { 649 }, level = 44, group = "HatredSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2429546158] = { "Grants Level 11 Hatred Skill" }, } },
+ ["AngerSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Anger Skill", statOrder = { 650 }, level = 56, group = "AngerSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [484879947] = { "Grants Level 15 Anger Skill" }, } },
+ ["DeterminationSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Determination Skill", statOrder = { 651 }, level = 61, group = "DeterminationSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [4265392510] = { "Grants Level 16 Determination Skill" }, } },
+ ["GraceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Grace Skill", statOrder = { 652 }, level = 61, group = "GraceSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2867050084] = { "Grants Level 16 Grace Skill" }, } },
+ ["DisciplineSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Discipline Skill", statOrder = { 654 }, level = 61, group = "DisciplineSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2341269061] = { "Grants Level 16 Discipline Skill" }, } },
+ ["ProjectileWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Sniper's Mark Skill", statOrder = { 658 }, level = 58, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [3536689603] = { "Grants Level 15 Sniper's Mark Skill" }, } },
+ ["ElementalWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Elemental Weakness Skill", statOrder = { 659 }, level = 31, group = "ElementalWeaknessSkill", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [3792821911] = { "Grants Level 10 Elemental Weakness Skill" }, } },
+ ["VulnerabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Vulnerability Skill", statOrder = { 661 }, level = 31, group = "VulnerabilitySkill", weightKey = { "axe", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [1447222021] = { "Grants Level 10 Vulnerability Skill" }, } },
+ ["ClaritySkillCorrupted1"] = { type = "Corrupted", affix = "", "Grants Level 4 Clarity Skill", statOrder = { 641 }, level = 19, group = "ClaritySkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, tradeHashes = { [3511815065] = { "Grants Level 4 Clarity Skill" }, } },
+ ["ClaritySkillCorrupted2"] = { type = "Corrupted", affix = "", "Grants Level 8 Clarity Skill", statOrder = { 641 }, level = 32, group = "ClaritySkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, tradeHashes = { [3511815065] = { "Grants Level 8 Clarity Skill" }, } },
+ ["ClaritySkillCorrupted3"] = { type = "Corrupted", affix = "", "Grants Level 12 Clarity Skill", statOrder = { 641 }, level = 47, group = "ClaritySkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [3511815065] = { "Grants Level 12 Clarity Skill" }, } },
+ ["ClaritySkillCorrupted4"] = { type = "Corrupted", affix = "", "Grants Level 16 Clarity Skill", statOrder = { 641 }, level = 59, group = "ClaritySkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [3511815065] = { "Grants Level 16 Clarity Skill" }, } },
+ ["FrostbiteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Frostbite Skill", statOrder = { 637 }, level = 46, group = "FrostbiteSkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [1169502663] = { "Grants Level 14 Frostbite Skill" }, } },
+ ["FlammabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Flammability Skill", statOrder = { 632 }, level = 46, group = "FlammabilitySkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2209668839] = { "Grants Level 14 Flammability Skill" }, } },
+ ["ConductivitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Conductivity Skill", statOrder = { 636 }, level = 46, group = "ConductivitySkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [461472247] = { "Grants Level 14 Conductivity Skill" }, } },
+ ["TemporalChainsSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Temporal Chains Skill", statOrder = { 638 }, level = 40, group = "TemporalChainsSkill", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [940324562] = { "Grants Level 14 Temporal Chains Skill" }, } },
+ ["HasteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Haste Skill", statOrder = { 639 }, level = 40, group = "HasteSkill", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [1188846263] = { "Grants Level 14 Haste Skill" }, } },
+ ["ManaOnHitCorrupted"] = { type = "Corrupted", affix = "", "Gain (1-2) Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 40, group = "ManaGainPerTarget", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (1-2) Mana per Enemy Hit with Attacks" }, } },
+ ["VitalitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Vitality Skill", statOrder = { 643 }, level = 35, group = "VitalitySkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, tradeHashes = { [2410613176] = { "Grants Level 15 Vitality Skill" }, } },
+ ["FishingQuantityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Fish Caught", statOrder = { 2849 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "drop" }, tradeHashes = { [3802667447] = { "(5-10)% increased Quantity of Fish Caught" }, } },
+ ["FishingRarityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Rarity of Fish Caught", statOrder = { 2850 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "(5-10)% increased Rarity of Fish Caught" }, } },
+ ["CastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(10-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeedFishing", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "red_herring", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } },
+ ["CanCatchCorruptFishCorrupted"] = { type = "Corrupted", affix = "", "You can catch Corrupted Fish", statOrder = { 2855 }, level = 1, group = "CorruptFish", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "vaal", "drop" }, tradeHashes = { [2451060005] = { "You can catch Corrupted Fish" }, } },
+ ["V2AddedArmourWhileStationaryCorrupted1"] = { type = "Corrupted", affix = "", "+(35-60) Armour while stationary", statOrder = { 4314 }, level = 1, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2551779822] = { "+(35-60) Armour while stationary" }, } },
+ ["V2AddedArmourWhileStationaryCorrupted2"] = { type = "Corrupted", affix = "", "+(61-138) Armour while stationary", statOrder = { 4314 }, level = 31, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2551779822] = { "+(61-138) Armour while stationary" }, } },
+ ["V2AddedArmourWhileStationaryCorrupted3"] = { type = "Corrupted", affix = "", "+(139-322) Armour while stationary", statOrder = { 4314 }, level = 75, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2551779822] = { "+(139-322) Armour while stationary" }, } },
+ ["V2AddedColdDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (3-4) to (7-8) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (3-4) to (7-8) Cold Damage to Spells and Attacks" }, } },
+ ["V2AddedColdDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-9) to (13-16) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 31, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (6-9) to (13-16) Cold Damage to Spells and Attacks" }, } },
+ ["V2AddedColdDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (12-16) to (24-28) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 81, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (12-16) to (24-28) Cold Damage to Spells and Attacks" }, } },
+ ["V2AddedColdDamageToBowAttacksCorrupted1__"] = { type = "Corrupted", affix = "", "(8-11) to (18-21) Added Cold Damage with Bow Attacks", statOrder = { 2088 }, level = 1, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(8-11) to (18-21) Added Cold Damage with Bow Attacks" }, } },
+ ["V2AddedColdDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "(20-25) to (38-45) Added Cold Damage with Bow Attacks", statOrder = { 2088 }, level = 31, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(20-25) to (38-45) Added Cold Damage with Bow Attacks" }, } },
+ ["V2AddedColdDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(29-35) to (55-62) Added Cold Damage with Bow Attacks", statOrder = { 2088 }, level = 75, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [215124030] = { "(29-35) to (55-62) Added Cold Damage with Bow Attacks" }, } },
+ ["V2AddedEvasionWhileMovingCorrupted1_"] = { type = "Corrupted", affix = "", "+(35-60) to Global Evasion Rating while moving", statOrder = { 6878 }, level = 1, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3825877290] = { "+(35-60) to Global Evasion Rating while moving" }, } },
+ ["V2AddedEvasionWhileMovingCorrupted2"] = { type = "Corrupted", affix = "", "+(61-138) to Global Evasion Rating while moving", statOrder = { 6878 }, level = 31, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3825877290] = { "+(61-138) to Global Evasion Rating while moving" }, } },
+ ["V2AddedEvasionWhileMovingCorrupted3"] = { type = "Corrupted", affix = "", "+(139-322) to Global Evasion Rating while moving", statOrder = { 6878 }, level = 75, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3825877290] = { "+(139-322) to Global Evasion Rating while moving" }, } },
+ ["V2AddedFireDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (3-5) to (7-8) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (3-5) to (7-8) Fire Damage to Spells and Attacks" }, } },
+ ["V2AddedFireDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (7-10) to (15-18) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 31, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (7-10) to (15-18) Fire Damage to Spells and Attacks" }, } },
+ ["V2AddedFireDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (13-18) to (28-33) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 82, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (13-18) to (28-33) Fire Damage to Spells and Attacks" }, } },
+ ["V2AddedFireDamageToBowAttacksCorrupted1__"] = { type = "Corrupted", affix = "", "(11-14) to (21-25) Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 1, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "(11-14) to (21-25) Added Fire Damage with Bow Attacks" }, } },
+ ["V2AddedFireDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "(24-31) to (46-55) Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 31, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "(24-31) to (46-55) Added Fire Damage with Bow Attacks" }, } },
+ ["V2AddedFireDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(29-39) to (59-69) Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 75, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3120164895] = { "(29-39) to (59-69) Added Fire Damage with Bow Attacks" }, } },
+ ["V2AddedLightningDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (14-15) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds 1 to (14-15) Lightning Damage to Spells and Attacks" }, } },
+ ["V2AddedLightningDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 31, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (1-2) to (27-28) Lightning Damage to Spells and Attacks" }, } },
+ ["V2AddedLightningDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (1-5) to (50-52) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 83, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (1-5) to (50-52) Lightning Damage to Spells and Attacks" }, } },
+ ["V2AddedLightningDamageToBowAttacksCorrupted1_"] = { type = "Corrupted", affix = "", "(1-3) to (38-39) Added Lightning Damage with Bow Attacks", statOrder = { 2096 }, level = 1, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1040269876] = { "(1-3) to (38-39) Added Lightning Damage with Bow Attacks" }, } },
+ ["V2AddedLightningDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "(3-7) to (81-85) Added Lightning Damage with Bow Attacks", statOrder = { 2096 }, level = 31, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1040269876] = { "(3-7) to (81-85) Added Lightning Damage with Bow Attacks" }, } },
+ ["V2AddedLightningDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(3-8) to (101-106) Added Lightning Damage with Bow Attacks", statOrder = { 2096 }, level = 75, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1040269876] = { "(3-8) to (101-106) Added Lightning Damage with Bow Attacks" }, } },
+ ["V2AddedPhysicalDamageToBowAttacksCorrupted1"] = { type = "Corrupted", affix = "", "(3-4) to (6-10) Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 1, group = "AddedPhysicalDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(3-4) to (6-10) Added Physical Damage with Bow Attacks" }, } },
+ ["V2AddedPhysicalDamageToBowAttacksCorrupted2___"] = { type = "Corrupted", affix = "", "(5-7) to (10-14) Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 31, group = "AddedPhysicalDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(5-7) to (10-14) Added Physical Damage with Bow Attacks" }, } },
+ ["V2AddedPhysicalDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(9-12) to (16-19) Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 75, group = "AddedPhysicalDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1760576992] = { "(9-12) to (16-19) Added Physical Damage with Bow Attacks" }, } },
+ ["V2AddedChaosDamageToBowAttacksCorrupted1"] = { type = "Corrupted", affix = "", "(23-29) to (37-43) Added Chaos Damage with Bow Attacks", statOrder = { 2103 }, level = 81, group = "AddedChaosDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3478075311] = { "(23-29) to (37-43) Added Chaos Damage with Bow Attacks" }, } },
+ ["V2AdditionalAOERangeCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(8-10)% increased Area of Effect" }, } },
+ ["V2AdditionalArrowsCorrupted"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 75, group = "AdditionalArrows", weightKey = { "quiver", "bow", "default", }, weightVal = { 200, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } },
+ ["V2AdditionalChainCorrupted"] = { type = "Corrupted", affix = "", "Arrows Chain +1 times", statOrder = { 1788 }, level = 80, group = "AdditionalArrowChain", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, tradeHashes = { [1001077145] = { "Arrows Chain +1 times" }, } },
+ ["V2ChanceToSuppressSpells_"] = { type = "Corrupted", affix = "", "+(8-12)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(8-12)% chance to Suppress Spell Damage" }, } },
+ ["V2AdditionalCriticalStrikeMultiplierUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "+(20-25)% to Critical Strike Multiplier during any Flask Effect", statOrder = { 5953 }, level = 60, group = "AdditionalCriticalStrikeMultiplierUnderFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "damage", "critical" }, tradeHashes = { [240289863] = { "+(20-25)% to Critical Strike Multiplier during any Flask Effect" }, } },
+ ["V2AdditionalCurseCorrupted"] = { type = "Corrupted", affix = "", "You can apply an additional Curse", statOrder = { 2168 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } },
+ ["V2AdditionalPhysicalDamageReductionWhileStationaryCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% additional Physical Damage Reduction while stationary", statOrder = { 4313 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, tradeHashes = { [2181129193] = { "(3-5)% additional Physical Damage Reduction while stationary" }, } },
+ ["V2AdditionalProjectilesCorrupted"] = { type = "Corrupted", affix = "", "Skills fire an additional Projectile", statOrder = { 1792 }, level = 1, group = "AdditionalProjectilesCorrupted", weightKey = { "rapier", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [74338099] = { "Skills fire an additional Projectile" }, } },
+ ["V2AngerSkillReducedCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Anger Skill", statOrder = { 650 }, level = 56, group = "AngerSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [484879947] = { "Grants Level 21 Anger Skill" }, } },
+ ["V2AttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-10)% increased Attack Speed" }, } },
+ ["V2BlindImmunityCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Blinded", statOrder = { 2974 }, level = 1, group = "ImmunityToBlind", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } },
+ ["V2BlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "MonsterBlock", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(4-5)% Chance to Block Attack Damage" }, } },
+ ["V2CanCatchCorruptFishCorrupted"] = { type = "Corrupted", affix = "", "You can catch Corrupted Fish", statOrder = { 2855 }, level = 1, group = "CorruptFish", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "vaal", "drop" }, tradeHashes = { [2451060005] = { "You can catch Corrupted Fish" }, } },
+ ["V2CannotGainBleedingCorrupted_"] = { type = "Corrupted", affix = "", "Bleeding cannot be inflicted on you", statOrder = { 4215 }, level = 60, group = "BleedingImmunity", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1901158930] = { "Bleeding cannot be inflicted on you" }, } },
+ ["V2AvoidIgniteCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Ignited", statOrder = { 1839 }, level = 40, group = "CannotBeIgnited", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } },
+ ["V2CannotBePoisonedCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Poisoned", statOrder = { 3369 }, level = 40, group = "CannotBePoisoned", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } },
+ ["V2CastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(10-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeedFishing", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "red_herring", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-20)% increased Cast Speed" }, } },
+ ["V2ChanceToBleedOnHitAndIncreasedDamageToBleedingTargetsCorrupted_"] = { type = "Corrupted", affix = "", "20% chance to cause Bleeding on Hit", "(30-40)% increased Attack Damage against Bleeding Enemies", statOrder = { 2483, 2491 }, level = 1, group = "ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets", weightKey = { "axe", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "20% chance to cause Bleeding on Hit" }, [3944782785] = { "(30-40)% increased Attack Damage against Bleeding Enemies" }, } },
+ ["V2ChanceToDodgeCorrupted"] = { type = "Corrupted", affix = "", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(4-6)% chance to Suppress Spell Damage" }, } },
+ ["V2ChanceToGainEnduranceChargeOnStunCorrupted_"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5687 }, level = 1, group = "GainEnduranceChargeOnStunChance", weightKey = { "sceptre", "staff", "mace", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1582887649] = { "(5-7)% chance to gain an Endurance Charge when you Stun an Enemy" }, } },
+ ["V2ChanceToGainFortifyOnMeleeHitCorrupted"] = { type = "Corrupted", affix = "", "Melee Hits have (10-15)% chance to Fortify", statOrder = { 2264 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { "sceptre", "wand", "dagger", "claw", "rapier", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (10-15)% chance to Fortify" }, } },
+ ["V2ChanceToGainFrenzyChargeOnKillCorrupted"] = { type = "Corrupted", affix = "", "(9-11)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { "dagger", "claw", "bow", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "(9-11)% chance to gain a Frenzy Charge on Kill" }, } },
+ ["V2ChanceToGainOnslaughtOnKillCorrupted_"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "sceptre", "wand", "dagger", "claw", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "(10-15)% chance to gain Onslaught for 4 seconds on Kill" }, } },
+ ["V2ChanceToGainPowerChargeOnCritCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain a Power Charge on Critical Strike", statOrder = { 1830 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "wand", "dagger", "claw", "sceptre", "staff", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "(5-7)% chance to gain a Power Charge on Critical Strike" }, } },
+ ["V2UnholyMightOnKillPercentChanceCorrupted"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 1, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3562211447] = { "(10-15)% chance to gain Unholy Might for 3 seconds on Kill" }, } },
+ ["V2ChanceToSpellDodgeCorrupted_"] = { type = "Corrupted", affix = "", "+(6-9)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(6-9)% chance to Suppress Spell Damage" }, } },
+ ["V2ClaritySkillReducedCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 21 Clarity Skill", statOrder = { 641 }, level = 56, group = "ClaritySkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, tradeHashes = { [3511815065] = { "Grants Level 21 Clarity Skill" }, } },
+ ["V2ColdDamageLifeLeechPermyriadCorrupted_"] = { type = "Corrupted", affix = "", "0.5% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 50, group = "ColdDamageLifeLeechPermyriad", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.5% of Cold Damage Leeched as Life" }, } },
+ ["V2ConductivitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Conductivity Skill", statOrder = { 636 }, level = 56, group = "ConductivitySkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [461472247] = { "Grants Level 23 Conductivity Skill" }, } },
+ ["V2CurseOnHitDespair"] = { type = "Corrupted", affix = "", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 30, group = "CurseOnHitDespair", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } },
+ ["V2CurseOnHitElementalWeaknessCorrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2525 }, level = 30, group = "CurseOnHitLevelElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2028847114] = { "Curse Enemies with Elemental Weakness on Hit" }, } },
+ ["V2CurseOnHitEnfeeble"] = { type = "Corrupted", affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2529 }, level = 30, group = "CurseOnHitEnfeeble", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1625819882] = { "Curse Enemies with Enfeeble on Hit" }, } },
+ ["V2CurseOnHitTemporalChainsCurrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2522 }, level = 30, group = "CurseOnHitLevelTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3433724931] = { "Curse Enemies with Temporal Chains on Hit" }, } },
+ ["V2CurseOnHitVulnerabilityCorrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2523 }, level = 30, group = "CurseOnHitLevelVulnerability", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3967845372] = { "Curse Enemies with Vulnerability on Hit" }, } },
+ ["V2DespairSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Despair Skill", statOrder = { 628 }, level = 56, group = "DespairSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [2044547677] = { "Grants Level 23 Despair Skill" }, } },
+ ["V2DeterminationSkillCorrupted__"] = { type = "Corrupted", affix = "", "Grants Level 23 Determination Skill", statOrder = { 651 }, level = 56, group = "DeterminationSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0 }, modTags = { "skill" }, tradeHashes = { [4265392510] = { "Grants Level 23 Determination Skill" }, } },
+ ["V2DisciplineSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Discipline Skill", statOrder = { 654 }, level = 56, group = "DisciplineSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0 }, modTags = { "skill" }, tradeHashes = { [2341269061] = { "Grants Level 23 Discipline Skill" }, } },
+ ["V2DodgeAttackHitsWhileMovingCorrupted_"] = { type = "Corrupted", affix = "", "+(6-10)% chance to Suppress Spell Damage while moving", statOrder = { 10178 }, level = 60, group = "DodgeSpellHitsWhileMoving", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2907896585] = { "+(6-10)% chance to Suppress Spell Damage while moving" }, } },
+ ["V2DodgeSpellHitsWhileMovingCorrupted"] = { type = "Corrupted", affix = "", "+(6-10)% chance to Suppress Spell Damage while moving", statOrder = { 10178 }, level = 60, group = "DodgeSpellHitsWhileMoving", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2907896585] = { "+(6-10)% chance to Suppress Spell Damage while moving" }, } },
+ ["V2DualWieldBlockCorrupted"] = { type = "Corrupted", affix = "", "+(8-10)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "BlockWhileDualWielding", weightKey = { "claw", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+(8-10)% Chance to Block Attack Damage while Dual Wielding" }, } },
+ ["V2ElementalDamagePenetrationCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates (8-10)% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { "wand", "rapier", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (8-10)% Elemental Resistances" }, } },
+ ["V2FireDamageLifeLeechPermyriadCorrupted_"] = { type = "Corrupted", affix = "", "0.5% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 50, group = "FireDamageLifeLeechPermyriad", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.5% of Fire Damage Leeched as Life" }, } },
+ ["V2FishingQuantityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Fish Caught", statOrder = { 2849 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3802667447] = { "(5-10)% increased Quantity of Fish Caught" }, } },
+ ["V2FishingRarityCorrupted_"] = { type = "Corrupted", affix = "", "(5-10)% increased Rarity of Fish Caught", statOrder = { 2850 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "(5-10)% increased Rarity of Fish Caught" }, } },
+ ["V2FlammabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Flammability Skill", statOrder = { 632 }, level = 56, group = "FlammabilitySkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [2209668839] = { "Grants Level 23 Flammability Skill" }, } },
+ ["V2FrostbiteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Frostbite Skill", statOrder = { 637 }, level = 56, group = "FrostbiteSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [1169502663] = { "Grants Level 23 Frostbite Skill" }, } },
+ ["V2GainFrenzyChargeAfterSpending200ManaCorrupted"] = { type = "Corrupted", affix = "", "Gain a Frenzy Charge after Spending a total of 200 Mana", statOrder = { 6701 }, level = 1, group = "GainFrenzyChargeAfterSpending200Mana", weightKey = { "rapier", "default", }, weightVal = { 1000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [3868549606] = { "Gain a Frenzy Charge after Spending a total of 200 Mana" }, } },
+ ["V2GemLevelCorrupted"] = { type = "Corrupted", affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { "boots", "gloves", "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } },
+ ["V2GlobalCriticalStrikeMultiplierCorrupted"] = { type = "Corrupted", affix = "", "+(25-30)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "dagger", "claw", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(25-30)% to Global Critical Strike Multiplier" }, } },
+ ["V2GraceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Grace Skill", statOrder = { 652 }, level = 56, group = "GraceSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0 }, modTags = { "skill" }, tradeHashes = { [2867050084] = { "Grants Level 23 Grace Skill" }, } },
+ ["V2HasteSkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 21 Haste Skill", statOrder = { 639 }, level = 56, group = "HasteSkill", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [1188846263] = { "Grants Level 21 Haste Skill" }, } },
+ ["V2HatredSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Hatred Skill", statOrder = { 649 }, level = 56, group = "HatredSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [2429546158] = { "Grants Level 21 Hatred Skill" }, } },
+ ["V2MalevolenceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Malevolence Skill", statOrder = { 712 }, level = 56, group = "MalevolenceSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, tradeHashes = { [2148556029] = { "Grants Level 23 Malevolence Skill" }, } },
+ ["V2ZealotrySkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 23 Zealotry Skill", statOrder = { 730 }, level = 56, group = "ZealotrySkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [3224664127] = { "Grants Level 23 Zealotry Skill" }, } },
+ ["V2PrideSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Pride Skill", statOrder = { 716 }, level = 56, group = "PrideSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [4184565463] = { "Grants Level 21 Pride Skill" }, } },
+ ["V2IncreasedAreaOfEffect1hCorrupted"] = { type = "Corrupted", affix = "", "(15-20)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { "dagger", "claw", "rapier", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(15-20)% increased Area of Effect" }, } },
+ ["V2IncreasedAreaOfEffect2hCorrupted_"] = { type = "Corrupted", affix = "", "(25-30)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(25-30)% increased Area of Effect" }, } },
+ ["V2IncreasedAtackCriticalStrikeCorruption"] = { type = "Corrupted", affix = "", "Attacks have +(0.5-0.8)% to Critical Strike Chance", statOrder = { 4792 }, level = 60, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(0.5-0.8)% to Critical Strike Chance" }, } },
+ ["V2IncreasedAttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "ring", "default", }, weightVal = { 1000, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-10)% increased Attack Speed" }, } },
+ ["V2IncreasedAttackSpeedUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Attack Speed during any Flask Effect", statOrder = { 3300 }, level = 60, group = "AttackSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "attack", "speed" }, tradeHashes = { [1365052901] = { "(8-12)% increased Attack Speed during any Flask Effect" }, } },
+ ["V2IncreasedBurningDamageCorrupted"] = { type = "Corrupted", affix = "", "(30-40)% increased Burning Damage", statOrder = { 1877 }, level = 40, group = "BurnDamage", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(30-40)% increased Burning Damage" }, } },
+ ["V2IncreasedCastSpeedCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "gloves", "ring", "default", }, weightVal = { 1000, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-10)% increased Cast Speed" }, } },
+ ["V2IncreasedCastSpeedUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Cast Speed during any Flask Effect", statOrder = { 5466 }, level = 60, group = "CastSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "caster", "speed" }, tradeHashes = { [252194507] = { "(8-12)% increased Cast Speed during any Flask Effect" }, } },
+ ["V2IncreasedChillEffectCorrupted"] = { type = "Corrupted", affix = "", "(25-30)% increased Effect of Cold Ailments", statOrder = { 5798 }, level = 40, group = "ChillEffect", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1793818220] = { "(25-30)% increased Effect of Cold Ailments" }, } },
+ ["V2IncreasedCriticalStrikeUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(35-40)% increased Critical Strike Chance during any Flask Effect", statOrder = { 5922 }, level = 1, group = "IncreasedCriticalStrikeUnderFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2898434123] = { "(35-40)% increased Critical Strike Chance during any Flask Effect" }, } },
+ ["V2IncreasedDamageCorrupted_"] = { type = "Corrupted", affix = "", "(40-50)% increased Damage", statOrder = { 1191 }, level = 1, group = "IncreasedDamage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(40-50)% increased Damage" }, } },
+ ["V2IncreasedDamageOverTimeCorrupted_"] = { type = "Corrupted", affix = "", "(50-60)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DamageOverTime", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [967627487] = { "(50-60)% increased Damage over Time" }, } },
+ ["V2IncreasedDurationCorrupted"] = { type = "Corrupted", affix = "", "(12-15)% increased Skill Effect Duration", statOrder = { 1895 }, level = 1, group = "SkillEffectDuration", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(12-15)% increased Skill Effect Duration" }, } },
+ ["V2IncreasedEnergyShieldCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(8-10)% increased maximum Energy Shield" }, } },
+ ["V2IncreasedGlobalPhysicalDamageCorrupted"] = { type = "Corrupted", affix = "", "(15-25)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(15-25)% increased Global Physical Damage" }, } },
+ ["V2IncreasedLifeCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(6-8)% increased maximum Life" }, } },
+ ["V2IncreasedLifeRegenerationPerSecondCorrupted"] = { type = "Corrupted", affix = "", "Regenerate (1.6-2)% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.6-2)% of Life per second" }, } },
+ ["V2IncreasedMovementVelocityUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Movement Speed during any Flask Effect", statOrder = { 3186 }, level = 60, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, tradeHashes = { [304970526] = { "(8-12)% increased Movement Speed during any Flask Effect" }, } },
+ ["V2IncreasedProjectileDamageForEachChainCorrupted"] = { type = "Corrupted", affix = "", "Projectiles deal (20-25)% increased Damage with Hits and Ailments for each time they have Chained", statOrder = { 9733 }, level = 40, group = "IncreasedProjectileDamageForEachChain", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1923210508] = { "Projectiles deal (20-25)% increased Damage with Hits and Ailments for each time they have Chained" }, } },
+ ["V2IncreasedProjectileDamageForEachPierceCorrupted"] = { type = "Corrupted", affix = "", "Projectiles deal (8-10)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9734 }, level = 40, group = "ProjectileDamagePerEnemyPierced", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (8-10)% increased Damage with Hits and Ailments for each Enemy Pierced" }, } },
+ ["V2IncreasedShockEffectCorrupted_"] = { type = "Corrupted", affix = "", "(25-30)% increased Effect of Shock", statOrder = { 10008 }, level = 40, group = "ShockEffect", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(25-30)% increased Effect of Shock" }, } },
+ ["V2IncreasedSpellCriticalStrikeCorruption"] = { type = "Corrupted", affix = "", "+(0.5-0.8)% to Spell Critical Strike Chance", statOrder = { 10125 }, level = 60, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [791835907] = { "+(0.5-0.8)% to Spell Critical Strike Chance" }, } },
+ ["V2LevelOfSocketedColdGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 1, group = "LocalIncreaseSocketedColdGemLevelCorrupted", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } },
+ ["V2LevelOfSocketedFireGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedFireGemLevelCorrupted", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } },
+ ["V2LevelOfSocketedLightningGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevelCorrupted", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+2 to Level of Socketed Lightning Gems" }, } },
+ ["V2LightningDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 50, group = "LightningDamageLifeLeechPermyriad", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.5% of Lightning Damage Leeched as Life" }, } },
+ ["V2LocalAddedChaosDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (3-5) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (1-2) to (3-5) Chaos Damage" }, } },
+ ["V2LocalAddedChaosDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-8) to (11-13) Chaos Damage", statOrder = { 1390 }, level = 31, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (6-8) to (11-13) Chaos Damage" }, } },
+ ["V2LocalAddedChaosDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-11) to (19-23) Chaos Damage", statOrder = { 1390 }, level = 84, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (8-11) to (19-23) Chaos Damage" }, } },
+ ["V2LocalAddedColdDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (6-8) to (13-15) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (6-8) to (13-15) Cold Damage" }, } },
+ ["V2LocalAddedColdDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (14-18) to (27-32) Cold Damage", statOrder = { 1371 }, level = 31, group = "LocalColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (14-18) to (27-32) Cold Damage" }, } },
+ ["V2LocalAddedColdDamage1hCorrupted3_"] = { type = "Corrupted", affix = "", "Adds (17-23) to (24-40) Cold Damage", statOrder = { 1371 }, level = 84, group = "LocalColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (17-23) to (24-40) Cold Damage" }, } },
+ ["V2LocalAddedColdDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (9-13) to (20-23) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (9-13) to (20-23) Cold Damage" }, } },
+ ["V2LocalAddedColdDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (22-27) to (36-44) Cold Damage", statOrder = { 1371 }, level = 31, group = "LocalColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (22-27) to (36-44) Cold Damage" }, } },
+ ["V2LocalAddedColdDamage2hCorrupted3_"] = { type = "Corrupted", affix = "", "Adds (26-32) to (45-55) Cold Damage", statOrder = { 1371 }, level = 84, group = "LocalColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (26-32) to (45-55) Cold Damage" }, } },
+ ["V2LocalAddedFireDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (8-10) to (15-18) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (8-10) to (15-18) Fire Damage" }, } },
+ ["V2LocalAddedFireDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (17-22) to (33-39) Fire Damage", statOrder = { 1362 }, level = 31, group = "LocalFireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (17-22) to (33-39) Fire Damage" }, } },
+ ["V2LocalAddedFireDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (21-28) to (40-48) Fire Damage", statOrder = { 1362 }, level = 84, group = "LocalFireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (21-28) to (40-48) Fire Damage" }, } },
+ ["V2LocalAddedFireDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (12-17) to (23-27) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (12-17) to (23-27) Fire Damage" }, } },
+ ["V2LocalAddedFireDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (27-31) to (39-50) Fire Damage", statOrder = { 1362 }, level = 31, group = "LocalFireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (27-31) to (39-50) Fire Damage" }, } },
+ ["V2LocalAddedFireDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (31-39) to (52-61) Fire Damage", statOrder = { 1362 }, level = 84, group = "LocalFireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (31-39) to (52-61) Fire Damage" }, } },
+ ["V2LocalAddedLightningDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (27-28) Lightning Damage" }, } },
+ ["V2LocalAddedLightningDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (2-5) to (58-61) Lightning Damage", statOrder = { 1382 }, level = 31, group = "LocalLightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (2-5) to (58-61) Lightning Damage" }, } },
+ ["V2LocalAddedLightningDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (2-6) to (72-76) Lightning Damage", statOrder = { 1382 }, level = 84, group = "LocalLightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (2-6) to (72-76) Lightning Damage" }, } },
+ ["V2LocalAddedLightningDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (2-3) to (35-39) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (2-3) to (35-39) Lightning Damage" }, } },
+ ["V2LocalAddedLightningDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-7) to (73-84) Lightning Damage", statOrder = { 1382 }, level = 31, group = "LocalLightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (3-7) to (73-84) Lightning Damage" }, } },
+ ["V2LocalAddedLightningDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (5-9) to (103-107) Lightning Damage", statOrder = { 1382 }, level = 84, group = "LocalLightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (5-9) to (103-107) Lightning Damage" }, } },
+ ["V2LocalAddedPhysicalDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to 2 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 1 to 2 Physical Damage" }, } },
+ ["V2LocalAddedPhysicalDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-4) to (5-7) Physical Damage", statOrder = { 1276 }, level = 31, group = "LocalPhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (3-4) to (5-7) Physical Damage" }, } },
+ ["V2LocalAddedPhysicalDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (5-7) to (10-12) Physical Damage", statOrder = { 1276 }, level = 84, group = "LocalPhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-7) to (10-12) Physical Damage" }, } },
+ ["V2LocalAddedPhysicalDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 1 to (2-3) Physical Damage" }, } },
+ ["V2LocalAddedPhysicalDamage2hCorrupted2__"] = { type = "Corrupted", affix = "", "Adds (4-5) to (6-8) Physical Damage", statOrder = { 1276 }, level = 31, group = "LocalPhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (4-5) to (6-8) Physical Damage" }, } },
+ ["V2LocalAddedPhysicalDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-9) to (11-13) Physical Damage", statOrder = { 1276 }, level = 84, group = "LocalPhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-9) to (11-13) Physical Damage" }, } },
+ ["V2LocalBlockChanceCorrupted"] = { type = "Corrupted", affix = "", "+(4-5)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(4-5)% Chance to Block" }, } },
+ ["V2LocalIncreasedAttackSpeedBowCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(3-5)% increased Attack Speed" }, } },
+ ["V2LocalIncreasedAttackSpeed1hCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-7)% increased Attack Speed" }, } },
+ ["V2LocalIncreasedAttackSpeed2hCorrupted_"] = { type = "Corrupted", affix = "", "(5-7)% increased Attack Speed", statOrder = { 1413 }, level = 70, group = "LocalIncreasedAttackSpeed", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-7)% increased Attack Speed" }, } },
+ ["V2LocalIncreasedAttackSpeedWandCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "wand", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(3-5)% increased Attack Speed" }, } },
+ ["V2IncreasedCastSpeedCorrupted__"] = { type = "Corrupted", affix = "", "(12-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "sceptre", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(12-15)% increased Cast Speed" }, } },
+ ["V2LocalIncreasedCriticalStrikeChance1hCorrupted1"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "wand", "rapier", "claw", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(14-18)% increased Critical Strike Chance" }, } },
+ ["V2LocalIncreasedCriticalStrikeChance2hCorrupted_"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(14-18)% increased Critical Strike Chance" }, } },
+ ["V2LocalIncreasedCriticalStrikeChance1hCorrupted2__"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "dagger", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(14-18)% increased Critical Strike Chance" }, } },
+ ["V2LocalIncreasedPhysicalDamageBowCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(10-15)% increased Physical Damage" }, } },
+ ["V2LocalIncreasedPhysicalDamageBowCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrder = { 1232 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(16-20)% increased Physical Damage" }, } },
+ ["V2LocalIncreasedPhysicalDamageCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(10-15)% increased Physical Damage" }, } },
+ ["V2LocalIncreasedPhysicalDamageCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrder = { 1232 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(16-20)% increased Physical Damage" }, } },
+ ["V2IncreasedSpellDamage1hCorrupted"] = { type = "Corrupted", affix = "", "(50-60)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-60)% increased Spell Damage" }, } },
+ ["V2LocalMeleeWeaponRangeCorrupted"] = { type = "Corrupted", affix = "", "+(0.1-0.2) metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "sword", "mace", "staff", "bow", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+(0.1-0.2) metres to Weapon Range" }, } },
+ ["V2ManaOnHitCorrupted"] = { type = "Corrupted", affix = "", "Gain (4-6) Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 40, group = "ManaGainPerTarget", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (4-6) Mana per Enemy Hit with Attacks" }, } },
+ ["V2MaximumEnduranceChargesCorruption"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 60, group = "MaximumEnduranceCharges", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } },
+ ["V2MaxFrenzyChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 60, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } },
+ ["V2MaxPowerChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 60, group = "IncreasedMaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } },
+ ["V2MaximumBlockCorruption"] = { type = "Corrupted", affix = "", "+1% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 60, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, tradeHashes = { [4124805414] = { "+1% to maximum Chance to Block Attack Damage" }, } },
+ ["V2MaximumResistanceCorrupted"] = { type = "Corrupted", affix = "", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 80, group = "MaximumResistances", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } },
+ ["V2MovementVelocityCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { "amulet", "boots", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(8-10)% increased Movement Speed" }, } },
+ ["V2PercentageOfBlockAppliesToSpellBlockCorrupted_"] = { type = "Corrupted", affix = "", "(6-7)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { "shield", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "block" }, tradeHashes = { [2881111359] = { "(6-7)% Chance to Block Spell Damage" }, } },
+ ["V2SpellBlockPercentageCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { "shield", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(4-5)% Chance to Block Spell Damage" }, } },
+ ["V2PhysicalDamageAddedAsColdCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 1, group = "ColdDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (8-12)% of Physical Damage as Extra Cold Damage" }, } },
+ ["V2PhysicalDamageAddedAsFireCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 1, group = "FireDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (8-12)% of Physical Damage as Extra Fire Damage" }, } },
+ ["V2PhysicalDamageAddedAsLightningCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 1, group = "LightningDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (8-12)% of Physical Damage as Extra Lightning Damage" }, } },
+ ["V2PhysicalDamageTakenAsColdCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 60, group = "PhysicalDamageTakenAsCold", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(6-8)% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["V2PhysicalDamageTakenAsFireCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 60, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(6-8)% of Physical Damage from Hits taken as Fire Damage" }, } },
+ ["V2PhysicalDamageTakenAsLightningCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 60, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(6-8)% of Physical Damage from Hits taken as Lightning Damage" }, } },
+ ["V2PhysicalDamageTakenAsChaosCorrupted_"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 60, group = "PhysicalDamageTakenAsChaos", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "(6-8)% of Physical Damage from Hits taken as Chaos Damage" }, } },
+ ["V2PointBlankCorrupted"] = { type = "Corrupted", affix = "", "Point Blank", statOrder = { 10801 }, level = 1, group = "PointBlank", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2896346114] = { "Point Blank" }, } },
+ ["V2PurityOfFireSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Fire Skill", statOrder = { 623 }, level = 56, group = "PurityOfFireSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, tradeHashes = { [3970432307] = { "Grants Level 23 Purity of Fire Skill" }, } },
+ ["V2PurityOfColdSkillCorrupted___"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Ice Skill", statOrder = { 629 }, level = 56, group = "PurityOfColdSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, tradeHashes = { [4193390599] = { "Grants Level 23 Purity of Ice Skill" }, } },
+ ["V2PurityOfLightningSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Lightning Skill", statOrder = { 631 }, level = 56, group = "PurityOfLightningSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, tradeHashes = { [3822878124] = { "Grants Level 23 Purity of Lightning Skill" }, } },
+ ["V2PuritySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Purity of Elements Skill", statOrder = { 645 }, level = 56, group = "PuritySkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, tradeHashes = { [105466375] = { "Grants Level 21 Purity of Elements Skill" }, } },
+ ["V2ReducedChaosDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Chaos Damage taken", statOrder = { 2243 }, level = 45, group = "ChaosDamageTakenPercentage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos" }, tradeHashes = { [2960683632] = { "(4-6)% reduced Chaos Damage taken" }, } },
+ ["V2ReducedColdDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Cold Damage taken", statOrder = { 3389 }, level = 45, group = "ColdDamageTakenPercentage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3303114033] = { "(4-6)% reduced Cold Damage taken" }, } },
+ ["V2ReducedDamageFromAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Area Damage taken from Hits", statOrder = { 2239 }, level = 20, group = "AreaOfEffectDamageTaken", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3001376862] = { "(4-6)% reduced Area Damage taken from Hits" }, } },
+ ["V2ReducedDamageFromProjectilesCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Damage taken from Projectile Hits", statOrder = { 2749 }, level = 20, group = "ProjectileDamageTaken", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1425651005] = { "(4-6)% reduced Damage taken from Projectile Hits" }, } },
+ ["V2ReducedFireDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Fire Damage taken", statOrder = { 2242 }, level = 45, group = "FireDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3743301799] = { "(4-6)% reduced Fire Damage taken" }, } },
+ ["V2ReducedLightningDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Lightning Damage taken", statOrder = { 3388 }, level = 45, group = "LightningDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [1276918229] = { "(4-6)% reduced Lightning Damage taken" }, } },
+ ["V2ReducedExtraDamageFromCriticalStrikesBodyCorrupted__"] = { type = "Corrupted", affix = "", "You take 50% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 20, group = "ReducedExtraDamageFromCrits", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take 50% reduced Extra Damage from Critical Strikes" }, } },
+ ["V2ReducedExtraDamageFromCriticalStrikesShieldCorrupted"] = { type = "Corrupted", affix = "", "You take (20-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 20, group = "ReducedExtraDamageFromCrits", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (20-30)% reduced Extra Damage from Critical Strikes" }, } },
+ ["V2RegenerateLifePerSecondWhileMovingCorrupted_"] = { type = "Corrupted", affix = "", "Regenerate 100 Life per second while moving", statOrder = { 7406 }, level = 60, group = "LifeRegenerationWhileMoving", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2841027131] = { "Regenerate 100 Life per second while moving" }, } },
+ ["V2ResoluteTechniqueCorrupted"] = { type = "Corrupted", affix = "", "Resolute Technique", statOrder = { 10828 }, level = 40, group = "ResoluteTechnique", weightKey = { "sword", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } },
+ ["V2SocketedSkillsManaMultiplierCorrupted__"] = { type = "Corrupted", affix = "", "Socketed Skill Gems get a 90% Cost & Reservation Multiplier", statOrder = { 530 }, level = 1, group = "SocketedSkillsManaMultiplier", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana", "gem" }, tradeHashes = { [2865550257] = { "Socketed Skill Gems get a 90% Cost & Reservation Multiplier" }, } },
+ ["V2SupportedByAccuracyCorrupted__"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Additional Accuracy", statOrder = { 480 }, level = 1, group = "SupportedByAccuracy", weightKey = { "mace", "axe", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1567462963] = { "Socketed Gems are supported by Level 10 Additional Accuracy" }, } },
+ ["V2SupportedByBlindCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Blind", statOrder = { 470 }, level = 1, group = "SupportedByBlind", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 10 Blind" }, } },
+ ["V2SupportedByBloodmagicCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Lifetap", statOrder = { 325 }, level = 1, group = "SocketedGemsSupportedByLifetap", weightKey = { "mace", "sword", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "skill", "gem" }, tradeHashes = { [1079239905] = { "Socketed Gems are Supported by Level 1 Lifetap" }, } },
+ ["V2SupportedByFasterProjectilesCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Faster Projectiles", statOrder = { 482 }, level = 1, group = "SupportedByProjectileSpeed", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 10 Faster Projectiles" }, } },
+ ["V2SupportedByFortifyCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Fortify", statOrder = { 496 }, level = 1, group = "SupportedByFortify", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 10 Fortify" }, } },
+ ["V2SupportedByLifeGainOnHitCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Life Gain On Hit", statOrder = { 324 }, level = 1, group = "SupportedByLifeGainOnHit", weightKey = { "sword", "mace", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2032386732] = { "Socketed Gems are Supported by Level 10 Life Gain On Hit" }, } },
+ ["V2SupportedByOnslaughtCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 344 }, level = 1, group = "SupportedByOnslaught", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [3237923082] = { "Socketed Gems are Supported by Level 10 Momentum" }, } },
+ ["V2SupportedByReducedManaCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Inspiration", statOrder = { 494 }, level = 1, group = "SupportedByReducedMana", weightKey = { "sword", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "support", "gem" }, tradeHashes = { [1866911844] = { "Socketed Gems are Supported by Level 10 Inspiration" }, } },
+ ["V2WeaponElementalDamageCorrupted"] = { type = "Corrupted", affix = "", "(20-24)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-24)% increased Elemental Damage with Attack Skills" }, } },
+ ["V2WrathSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Wrath Skill", statOrder = { 648 }, level = 45, group = "WrathSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, tradeHashes = { [2265307453] = { "Grants Level 21 Wrath Skill" }, } },
+ ["V2SocketedDurationGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Duration Gems", statOrder = { 175 }, level = 20, group = "IncreaseSocketedDurationGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2115168758] = { "+2 to Level of Socketed Duration Gems" }, } },
+ ["V2SocketedAoEGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed AoE Gems", statOrder = { 176 }, level = 20, group = "IncreasedSocketedAoEGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2551600084] = { "+2 to Level of Socketed AoE Gems" }, } },
+ ["V2SocketedAuraGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 20, group = "LocalIncreaseSocketedAuraLevelCorrupted", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } },
+ ["V2SocketedCurseGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 184 }, level = 20, group = "LocalIncreaseSocketedCurseLevelCorrupted", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+2 to Level of Socketed Curse Gems" }, } },
+ ["V2SocketedTrapOrMineGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Trap or Mine Gems", statOrder = { 187 }, level = 20, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [150668988] = { "+2 to Level of Socketed Trap or Mine Gems" }, } },
+ ["V2SocketedMinionGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 20, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } },
+ ["V2SocketedWarcryGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Warcry Gems", statOrder = { 193 }, level = 20, group = "LocalSocketedWarcryGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [1672793731] = { "+2 to Level of Socketed Warcry Gems" }, } },
+ ["V2SocketedProjectileGemCorrupted_"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Projectile Gems", statOrder = { 177 }, level = 20, group = "LocalIncreaseSocketedProjectileLevelCorrupted", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2176571093] = { "+2 to Level of Socketed Projectile Gems" }, } },
+ ["V2IncreasedMaximumLifeCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(4-6)% increased maximum Life" }, } },
+ ["V2IncreasedMaximumEnergyShieldCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "MaximumEnergyShieldPercent", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(4-6)% increased maximum Energy Shield" }, } },
+ ["V2ItemRarityCorrupted_"] = { type = "Corrupted", affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 60, group = "IncreasedItemRarity", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-30)% increased Rarity of Items found" }, } },
+ ["V2ItemQuantityCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% increased Quantity of Items found", statOrder = { 1592 }, level = 84, group = "IncreasedItemQuantity", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(3-5)% increased Quantity of Items found" }, } },
+ ["V2IncreasedAuraEffectWrathCorrupted"] = { type = "Corrupted", affix = "", "Wrath has (15-20)% increased Aura Effect", statOrder = { 3361 }, level = 45, group = "IncreasedAuraEffectWrathCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (15-20)% increased Aura Effect" }, } },
+ ["V2IncreasedAuraEffectAngerCorrupted"] = { type = "Corrupted", affix = "", "Anger has (15-20)% increased Aura Effect", statOrder = { 3356 }, level = 45, group = "IncreasedAuraEffectAngerCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (15-20)% increased Aura Effect" }, } },
+ ["V2IncreasedAuraEffectHatredCorrupted"] = { type = "Corrupted", affix = "", "Hatred has (15-20)% increased Aura Effect", statOrder = { 3366 }, level = 45, group = "IncreasedAuraEffectHatredCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (15-20)% increased Aura Effect" }, } },
+ ["V2IncreasedAuraEffectDeterminationCorrupted"] = { type = "Corrupted", affix = "", "Determination has (15-20)% increased Aura Effect", statOrder = { 3367 }, level = 45, group = "IncreasedAuraEffectDeterminationCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (15-20)% increased Aura Effect" }, } },
+ ["V2IncreasedAuraEffectDisciplineCorrupted"] = { type = "Corrupted", affix = "", "Discipline has (15-20)% increased Aura Effect", statOrder = { 3368 }, level = 45, group = "IncreasedAuraEffectDisciplineCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (15-20)% increased Aura Effect" }, } },
+ ["V2IncreasedAuraEffectGraceCorrupted"] = { type = "Corrupted", affix = "", "Grace has (15-20)% increased Aura Effect", statOrder = { 3363 }, level = 45, group = "IncreasedAuraEffectGraceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (15-20)% increased Aura Effect" }, } },
+ ["V2IncreasedAuraEffectMalevolenceCorrupted"] = { type = "Corrupted", affix = "", "Malevolence has (15-20)% increased Aura Effect", statOrder = { 6161 }, level = 45, group = "IncreasedAuraEffectMalevolenceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (15-20)% increased Aura Effect" }, } },
+ ["V2IncreasedAuraEffectZealotryCorrupted_"] = { type = "Corrupted", affix = "", "Zealotry has (15-20)% increased Aura Effect", statOrder = { 10721 }, level = 45, group = "IncreasedAuraEffectZealotryCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (15-20)% increased Aura Effect" }, } },
+ ["V2IncreasedAuraEffectPrideCorrupted"] = { type = "Corrupted", affix = "", "Pride has (15-20)% increased Aura Effect", statOrder = { 9710 }, level = 45, group = "IncreasedAuraEffectPrideCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (15-20)% increased Aura Effect" }, } },
+ ["V2IncreasedIntelligenceDexterityCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Dexterity", "(4-6)% increased Intelligence", statOrder = { 1185, 1186 }, level = 1, group = "IncreasedIntelligenceDexterityCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(4-6)% increased Intelligence" }, [4139681126] = { "(4-6)% increased Dexterity" }, } },
+ ["V2IncreasedDexterityStrengthCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Strength", "(4-6)% increased Dexterity", statOrder = { 1184, 1185 }, level = 1, group = "IncreasedDexterityStrengthCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(4-6)% increased Dexterity" }, [734614379] = { "(4-6)% increased Strength" }, } },
+ ["V2IncreasedStrengthIntelligenceCorrupted_"] = { type = "Corrupted", affix = "", "(4-6)% increased Strength", "(4-6)% increased Intelligence", statOrder = { 1184, 1186 }, level = 1, group = "IncreasedStrengthIntelligenceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(4-6)% increased Strength" }, [656461285] = { "(4-6)% increased Intelligence" }, } },
+ ["V2AllResistancesCorrupted"] = { type = "Corrupted", affix = "", "+(14-16)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistancesCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(14-16)% to all Elemental Resistances" }, } },
}
\ No newline at end of file
diff --git a/src/Data/ModDelve.lua b/src/Data/ModDelve.lua
index ec479696f57..7eb62d9505e 100644
--- a/src/Data/ModDelve.lua
+++ b/src/Data/ModDelve.lua
@@ -2,190 +2,190 @@
-- Item data (c) Grinding Gear Games
return {
- ["DoubleModSellPrice1"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7956 }, level = 1, group = "DoubleModSellPrice1", weightKey = { "default", }, weightVal = { 6000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } },
- ["DoubleModSellPrice2"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7956 }, level = 1, group = "DoubleModSellPrice2", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } },
- ["DoubleModSellPrice3_"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7956 }, level = 1, group = "DoubleModSellPrice3", weightKey = { "default", }, weightVal = { 6000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } },
- ["DoubleModSellPrice4"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7956 }, level = 1, group = "DoubleModSellPrice4", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } },
- ["DoubleModSellPrice5_"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7956 }, level = 1, group = "DoubleModSellPrice5", weightKey = { "default", }, weightVal = { 6000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } },
- ["DoubleModSellPrice6"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7956 }, level = 1, group = "DoubleModSellPrice6", weightKey = { "default", }, weightVal = { 10 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } },
- ["DoubleModSellPrice7"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7956 }, level = 1, group = "DoubleModSellPrice7", weightKey = { "default", }, weightVal = { 2000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } },
- ["DoubleModSellPrice8"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7956 }, level = 1, group = "DoubleModSellPrice8", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } },
- ["DoubleModSellPrice9"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7956 }, level = 1, group = "DoubleModSellPrice9", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } },
- ["DelveWeaponFirePenetration1h1_"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 2986 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } },
- ["DelveWeaponFirePenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Fire Resistance", statOrder = { 2986 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (12-15)% Fire Resistance" }, } },
- ["DelveJewelFirePenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Fire Resistance", statOrder = { 2986 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 1% Fire Resistance" }, } },
- ["DelveArmourFireResistance1"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistancePrefix", weightKey = { "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-35)% to Fire Resistance" }, } },
- ["DelveBodyArmourAvoidFire1_"] = { type = "Prefix", affix = "Subterranean", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3378 }, level = 1, group = "FireDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(8-10)% chance to Avoid Fire Damage from Hits" }, } },
- ["DelveGlovesFireDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1364 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (20-25) to (26-35) Fire Damage" }, } },
- ["DelveBootsSocketedFireGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } },
- ["DelveRingFireLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.2% of Fire Damage Leeched as Life" }, } },
- ["DelveHelmetEnemyFireResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 7919 }, level = 1, group = "NearbyEnemyFireDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [3914021960] = { "Nearby Enemies have -9% to Fire Resistance" }, [3372524247] = { "-9% to Fire Resistance" }, } },
- ["DelveJewelryFireDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } },
- ["DelveWeaponColdPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 2988 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, } },
- ["DelveWeaponColdPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Cold Resistance", statOrder = { 2988 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (12-15)% Cold Resistance" }, } },
- ["DelveJewelColdPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Cold Resistance", statOrder = { 2988 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 1% Cold Resistance" }, } },
- ["DelveArmourColdResistance1"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistancePrefix", weightKey = { "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-35)% to Cold Resistance" }, } },
- ["DelveBodyArmourAvoidCold1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3379 }, level = 1, group = "ColdDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(6-10)% chance to Avoid Cold Damage from Hits" }, } },
- ["DelveGlovesColdDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1373 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (20-25) to (26-35) Cold Damage" }, } },
- ["DelveBootsSocketedColdGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } },
- ["DelveRingColdLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Cold Damage Leeched as Life", statOrder = { 1680 }, level = 1, group = "ColdDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.2% of Cold Damage Leeched as Life" }, } },
- ["DelveHelmetEnemyColdResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 7917 }, level = 1, group = "NearbyEnemyColdDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-9% to Cold Resistance" }, [2674336304] = { "Nearby Enemies have -9% to Cold Resistance" }, } },
- ["DelveJewelryColdDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } },
- ["DelveWeaponLightningPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 2989 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } },
- ["DelveWeaponLightningPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Lightning Resistance", statOrder = { 2989 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (12-15)% Lightning Resistance" }, } },
- ["DelveJewelLightningPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2989 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 1% Lightning Resistance" }, } },
- ["DelveArmourLightningResistance1"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistancePrefix", weightKey = { "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-35)% to Lightning Resistance" }, } },
- ["DelveBodyArmourAvoidLightning1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3380 }, level = 1, group = "LightningDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(6-10)% chance to Avoid Lightning Damage from Hits" }, } },
- ["DelveGlovesLightningDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1384 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds 1 to (48-60) Lightning Damage" }, } },
- ["DelveBootsSocketedLightningGemLevel1_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Lightning Gems", statOrder = { 174 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+2 to Level of Socketed Lightning Gems" }, } },
- ["DelveRingLightningLeech1_"] = { type = "Prefix", affix = "Subterranean", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1684 }, level = 1, group = "LightningDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.2% of Lightning Damage Leeched as Life" }, } },
- ["DelveHelmetEnemyLightningResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 7921 }, level = 1, group = "NearbyEnemyLightningDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-9% to Lightning Resistance" }, [1849749435] = { "Nearby Enemies have -9% to Lightning Resistance" }, } },
- ["DelveJewelryLightningDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } },
- ["DelveWeaponIntimidateOnHit1"] = { type = "Suffix", affix = "of the Underground", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7879 }, level = 1, group = "LocalChanceToIntimidateOnHit", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack" }, tradeHashes = { [2089652545] = { "15% chance to Intimidate Enemies for 4 seconds on Hit" }, } },
- ["DelveArmourPhysDamageTaken1"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2240 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(75-50) Physical Damage taken from Hits" }, } },
- ["DelveArmourPhysDamageTakenv2_1"] = { type = "Suffix", affix = "of the Underground", "-(34-20) Physical Damage taken from Hits", statOrder = { 2240 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(34-20) Physical Damage taken from Hits" }, } },
- ["DelveArmourPhysDamageTakenv2_2"] = { type = "Suffix", affix = "of the Underground", "-(49-35) Physical Damage taken from Hits", statOrder = { 2240 }, level = 30, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(49-35) Physical Damage taken from Hits" }, } },
- ["DelveArmourPhysDamageTakenv2_3"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2240 }, level = 60, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(75-50) Physical Damage taken from Hits" }, } },
- ["DelveShieldPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Subterranean", "(3-5)% additional Physical Damage Reduction", statOrder = { 2278 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } },
- ["DelveBootsPhyiscalDamageReductionRatingWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction while moving", statOrder = { 4589 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [2713357573] = { "(3-5)% additional Physical Damage Reduction while moving" }, } },
- ["DelveGlovesGlobalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "Adds (6-8) to (9-11) Physical Damage", statOrder = { 1270 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [960081730] = { "Adds (6-8) to (9-11) Physical Damage" }, } },
- ["DelveRingPhysicalLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Physical Damage Leeched as Life", statOrder = { 1671 }, level = 1, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "0.2% of Physical Damage Leeched as Life" }, } },
- ["DelveHelmetEnemyPhysicalDamageTakenAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 7923 }, level = 1, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3853018505] = { "9% increased Physical Damage taken" }, [415837237] = { "Nearby Enemies take 9% increased Physical Damage" }, } },
- ["DelveJewelryPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercentPrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(20-30)% increased Global Physical Damage" }, } },
- ["DelveJewelPhysicalDamageOverTimeTaken1"] = { type = "Prefix", affix = "Subterranean", "(1-2)% reduced Physical Damage taken over time", statOrder = { 5046 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical" }, tradeHashes = { [511024200] = { "(1-2)% reduced Physical Damage taken over time" }, } },
- ["DelveWeaponDespairOnHit1h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2533 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } },
- ["DelveWeaponDespairOnHit2h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2533 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } },
- ["DelveArmourChaosResistance1_"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistancePrefix", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-35)% to Chaos Resistance" }, } },
- ["DelveBodyArmourChaosDegenResist1"] = { type = "Suffix", affix = "of the Underground", "+(30-40)% Chaos Resistance against Damage Over Time", statOrder = { 5739 }, level = 1, group = "ChaosResistanceAgainstDamageOverTime", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2266636761] = { "+(30-40)% Chaos Resistance against Damage Over Time" }, } },
- ["DelveGlovesChaosDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1391 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (15-20) to (21-30) Chaos Damage" }, } },
- ["DelveBootsSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Chaos Gems", statOrder = { 175 }, level = 1, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+2 to Level of Socketed Chaos Gems" }, } },
- ["DelveRingChaosLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1687 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.2% of Chaos Damage Leeched as Life" }, } },
- ["DelveHelmetEnemyChaosResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 7916 }, level = 1, group = "NearbyEnemyChaosDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [1902595112] = { "Nearby Enemies have -9% to Chaos Resistance" }, [2923486259] = { "-9% to Chaos Resistance" }, } },
- ["DelveJewelryChaosDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(20-30)% increased Chaos Damage" }, } },
- ["DelveJewelChaosDamage1"] = { type = "Suffix", affix = "of the Underground", "(13-19)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(13-19)% increased Chaos Damage" }, } },
- ["DelveWeaponDamageOnFullLife1h1__"] = { type = "Suffix", affix = "of the Underground", "(50-60)% increased Damage when on Full Life", statOrder = { 6079 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, tradeHashes = { [592020238] = { "(50-60)% increased Damage when on Full Life" }, } },
- ["DelveWeaponDamageOnFullLife2h1"] = { type = "Suffix", affix = "of the Underground", "(100-120)% increased Damage when on Full Life", statOrder = { 6079 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, tradeHashes = { [592020238] = { "(100-120)% increased Damage when on Full Life" }, } },
- ["DelveBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(25-40) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1574, 1576 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(3-5)% increased maximum Life" }, [3299347043] = { "+(25-40) to maximum Life" }, } },
- ["DelveNonBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(15-25) to maximum Life", "(2-3)% increased maximum Life", statOrder = { 1574, 1576 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(2-3)% increased maximum Life" }, [3299347043] = { "+(15-25) to maximum Life" }, } },
- ["DelveArmourLifeRegen1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Life per second", statOrder = { 1949 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of Life per second" }, } },
- ["DelveJewelryFlaskLifeRecovery1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Life Recovery from Flasks", statOrder = { 2064 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(20-30)% increased Life Recovery from Flasks" }, } },
- ["DelveWeaponArmourIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Armour if you've Hit an Enemy Recently", statOrder = { 9651 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "sceptre", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2368149582] = { "+500 to Armour if you've Hit an Enemy Recently" }, } },
- ["DelveJewelLifeRegeneration1"] = { type = "Prefix", affix = "Subterranean", "Regenerate 0.3% of Life per second", statOrder = { 1949 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 0.3% of Life per second" }, } },
- ["DelveWeaponArmourIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Armour if you've Hit an Enemy Recently", statOrder = { 9651 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2368149582] = { "+1000 to Armour if you've Hit an Enemy Recently" }, } },
- ["DelveJewelArmourIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Armour if you've Hit an Enemy Recently", statOrder = { 9651 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2368149582] = { "+(250-300) to Armour if you've Hit an Enemy Recently" }, } },
- ["DelveWeaponEvasionIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6494 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "axe", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2935548106] = { "+500 to Evasion Rating if Hit an Enemy Recently" }, } },
- ["DelveWeaponEvasionIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6494 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "axe", "sword", "bow", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2935548106] = { "+1000 to Evasion Rating if Hit an Enemy Recently" }, } },
- ["DelveJewelEvasionIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Evasion Rating if Hit an Enemy Recently", statOrder = { 6494 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2935548106] = { "+(250-300) to Evasion Rating if Hit an Enemy Recently" }, } },
- ["DelveWeaponEnergyShieldRegenIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6463 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "dagger", "claw", "wand", "sceptre", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [588560583] = { "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently" }, } },
- ["DelveWeaponEnergyShieldRegenIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6463 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "staff", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [588560583] = { "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently" }, } },
- ["DelveJewelEnergyShieldRegenIfYouHitRecently1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6463 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [588560583] = { "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently" }, } },
- ["DelveArmourArmour1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercentSuffix", weightKey = { "abyss_jewel", "jewel", "str_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(25-50)% increased Armour" }, } },
- ["DelveArmourEvasion1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercentSuffix", weightKey = { "abyss_jewel", "jewel", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(25-50)% increased Evasion Rating" }, } },
- ["DelveArmourEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercentSuffix", weightKey = { "abyss_jewel", "jewel", "int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(25-50)% increased Energy Shield" }, } },
- ["DelveArmourArmourAndEvasion1_"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasionSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(25-50)% increased Armour and Evasion" }, } },
- ["DelveArmourArmourAndEnergyShield1__"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(25-50)% increased Armour and Energy Shield" }, } },
- ["DelveArmourEvasionAndEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(25-50)% increased Evasion and Energy Shield" }, } },
- ["DelveArmourDefences1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour, Evasion and Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(25-50)% increased Armour, Evasion and Energy Shield" }, } },
- ["DelveArmourQuality"] = { type = "Suffix", affix = "of the Underground", "+(10-20)% to Quality", statOrder = { 7955 }, level = 1, group = "LocalItemQuality", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2016708976] = { "+(10-20)% to Quality" }, } },
- ["DelveArmourEnergyShieldRegen"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second", statOrder = { 2651 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of Energy Shield per second" }, } },
- ["DelveArmourEnergyShieldLeechSpells_"] = { type = "Suffix", affix = "of the Underground", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1727 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [11106713] = { "0.3% of Spell Damage Leeched as Energy Shield" }, } },
- ["DelveArmourSpellBlock__"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 1, group = "SpellBlockPercentage", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "gloves", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(3-4)% Chance to Block Spell Damage" }, } },
- ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } },
- ["DelveArmourBlindChance"] = { type = "Suffix", affix = "of the Underground", "(4-6)% Global chance to Blind Enemies on hit", statOrder = { 2963 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2221570601] = { "(4-6)% Global chance to Blind Enemies on hit" }, } },
- ["DelveArmourEvasionOnFullLife"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Global Evasion Rating when on Full Life", statOrder = { 6501 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [88817332] = { "(25-50)% increased Global Evasion Rating when on Full Life" }, } },
- ["DelveArmourDoubleArmourEffectOnHit"] = { type = "Suffix", affix = "of the Underground", "(10-20)% chance to Defend with 200% of Armour", statOrder = { 5676 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [327253797] = { "(10-20)% chance to Defend with 200% of Armour" }, } },
- ["DelveArmourAttackBlock"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Attack Damage", statOrder = { 1143 }, level = 1, group = "BlockPercent", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(3-4)% Chance to Block Attack Damage" }, } },
- ["DelveArmourFortifyEffect"] = { type = "Suffix", affix = "of the Underground", "+(3-5) to maximum Fortification", statOrder = { 9121 }, level = 1, group = "FortifyEffect", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [335507772] = { "+(3-5) to maximum Fortification" }, } },
- ["DelveJewelryIncreasedEnergyShieldFromBodyArmour1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 9137 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1195319608] = { "(20-30)% increased Energy Shield from Equipped Body Armour" }, } },
- ["DelveJewelryChanceWhenHitForArmourToBeDoubled1"] = { type = "Suffix", affix = "of the Underground", "20% chance to Defend with 200% of Armour", statOrder = { 5676 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [327253797] = { "20% chance to Defend with 200% of Armour" }, } },
- ["DelveJewelryChanceToEvade"] = { type = "Suffix", affix = "of the Underground", "+(1-2)% chance to Evade Attack Hits", statOrder = { 5678 }, level = 1, group = "AdditionalChanceToEvade", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2021058489] = { "+(1-2)% chance to Evade Attack Hits" }, } },
- ["DelveJewelGlobalDefences1"] = { type = "Prefix", affix = "Subterranean", "(4-6)% increased Global Defences", statOrder = { 2838 }, level = 1, group = "AllDefences", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(4-6)% increased Global Defences" }, } },
- ["DelveWeaponLocalChanceForPoisonDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7876 }, level = 1, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [2523146878] = { "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage" }, } },
- ["DelveWeaponLocalChanceForBleedingDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7875 }, level = 1, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1560880986] = { "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage" }, } },
- ["DelveArmourAvoidPoison1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "50% chance to Avoid being Poisoned" }, } },
- ["DelveArmourAvoidBleeding1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid Bleeding", statOrder = { 4221 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "50% chance to Avoid Bleeding" }, } },
- ["DelveJewelryAilmentDamage1_"] = { type = "Suffix", affix = "of the Underground", "(30-40)% increased Damage with Ailments", statOrder = { 4988 }, level = 1, group = "AilmentDamage", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(30-40)% increased Damage with Ailments" }, } },
- ["DelveJewelAilmentDamage1__"] = { type = "Suffix", affix = "of the Underground", "(15-20)% increased Damage with Ailments", statOrder = { 4988 }, level = 1, group = "AilmentDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(15-20)% increased Damage with Ailments" }, } },
- ["DelveGlovesAddedPhysicalDamageVsPoisonedEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies", statOrder = { 9254 }, level = 1, group = "AddedPhysicalDamageVsPoisonedEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [424026624] = { "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies" }, } },
- ["DelveGlovesAddedPhysicalDamageVsBleedingEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies", statOrder = { 2499 }, level = 1, group = "AddedPhysicalDamageVsBleedingEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1244003614] = { "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies" }, } },
- ["DelveWeaponLocalAttackReduceEnemyElementalResistance1h1"] = { type = "Prefix", affix = "Subterranean", "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances", statOrder = { 3766 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances" }, } },
- ["DelveWeaponElementalDamage1h1"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(40-60)% increased Elemental Damage" }, } },
- ["DelveWeaponElementalDamage2h1"] = { type = "Prefix", affix = "Subterranean", "(80-120)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(80-120)% increased Elemental Damage" }, } },
- ["DelveWeaponElementalDamagev2_1h1"] = { type = "Prefix", affix = "Subterranean", "(19-25)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(19-25)% increased Elemental Damage" }, } },
- ["DelveWeaponElementalDamagev2_1h2_"] = { type = "Prefix", affix = "Subterranean", "(26-32)% increased Elemental Damage", statOrder = { 1985 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(26-32)% increased Elemental Damage" }, } },
- ["DelveWeaponElementalDamagev2_1h3"] = { type = "Prefix", affix = "Subterranean", "(33-39)% increased Elemental Damage", statOrder = { 1985 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(33-39)% increased Elemental Damage" }, } },
- ["DelveWeaponElementalDamagev2_1h4"] = { type = "Prefix", affix = "Subterranean", "(40-49)% increased Elemental Damage", statOrder = { 1985 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(40-49)% increased Elemental Damage" }, } },
- ["DelveWeaponElementalDamagev2_2h1"] = { type = "Prefix", affix = "Subterranean", "(37-50)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(37-50)% increased Elemental Damage" }, } },
- ["DelveWeaponElementalDamagev2_2h2__"] = { type = "Prefix", affix = "Subterranean", "(51-65)% increased Elemental Damage", statOrder = { 1985 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(51-65)% increased Elemental Damage" }, } },
- ["DelveWeaponElementalDamagev2_2h3"] = { type = "Prefix", affix = "Subterranean", "(66-79)% increased Elemental Damage", statOrder = { 1985 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(66-79)% increased Elemental Damage" }, } },
- ["DelveWeaponElementalDamagev2_2h4_"] = { type = "Prefix", affix = "Subterranean", "(80-94)% increased Elemental Damage", statOrder = { 1985 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(80-94)% increased Elemental Damage" }, } },
- ["DelveArmourElementalAilmentDuration1___"] = { type = "Suffix", affix = "of the Underground", "(20-30)% reduced Elemental Ailment Duration on you", statOrder = { 1872 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(20-30)% reduced Elemental Ailment Duration on you" }, } },
- ["DelveJewelryElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 2985 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "quiver", "amulet", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (3-5)% Elemental Resistances" }, } },
- ["DelveRingElementalDamage1"] = { type = "Suffix", affix = "of the Underground", "(25-30)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(25-30)% increased Elemental Damage" }, } },
- ["DelveJewelElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2985 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 1% Elemental Resistances" }, } },
- ["DelveWeaponSocketedSpellsDamageFinal1h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Spell Damage", statOrder = { 570 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, tradeHashes = { [2964800094] = { "Socketed Skills deal 40% more Spell Damage" }, } },
- ["DelveWeaponSocketedSpellsDamageFinal2h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Spell Damage", statOrder = { 570 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, tradeHashes = { [2964800094] = { "Socketed Skills deal 20% more Spell Damage" }, } },
- ["DelveBodyArmourSocketedSkillsSupportedByArcaneSurge1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 231 }, level = 1, group = "SupportedByArcaneSurge", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2287264161] = { "Socketed Gems are Supported by Level 1 Arcane Surge" }, } },
- ["DelveGlovesSocketedSkillsCastSpeed1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Cast Speed", statOrder = { 567 }, level = 1, group = "SocketedSkillsCastSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster", "speed", "gem" }, tradeHashes = { [3425934849] = { "Socketed Skills have 18% increased Cast Speed" }, } },
- ["DelveArmourSocketedSpellsManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Spells have 20% reduced Mana Cost", statOrder = { 573 }, level = 1, group = "SocketedSpellsManaCost", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "caster", "gem" }, tradeHashes = { [1688834903] = { "Socketed Spells have 20% reduced Mana Cost" }, } },
- ["DelveJewelAvoidInterruptionWhileCasting1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1903 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1916706958] = { "(15-20)% chance to Ignore Stuns while Casting" }, } },
- ["DelveWeaponSocketedAttacksDamageFinal1h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Attack Damage", statOrder = { 551 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, tradeHashes = { [1970781345] = { "Socketed Skills deal 40% more Attack Damage" }, } },
- ["DelveWeaponSocketedAttacksDamageFinal2h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Attack Damage", statOrder = { 551 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, tradeHashes = { [1970781345] = { "Socketed Skills deal 20% more Attack Damage" }, } },
- ["DelveBodyArmourSocketedSkillsSupportedByMaim1"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Maim", statOrder = { 336 }, level = 1, group = "SupportedByMaim", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [3826977109] = { "Socketed Gems are Supported by Level 1 Maim" }, } },
- ["DelveGlovesLocalDisplaySocketedSkillsAttackSpeed1"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Attack Speed", statOrder = { 566 }, level = 1, group = "SocketedSkillsAttackSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "attack", "speed", "gem" }, tradeHashes = { [2881124988] = { "Socketed Skills have 18% increased Attack Speed" }, } },
- ["DelveArmourLocalDisplaySocketedAttacksManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 554 }, level = 1, group = "SocketedAttacksManaCost", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "attack", "gem" }, tradeHashes = { [2264586521] = { "Socketed Attacks have -15 to Total Mana Cost" }, } },
- ["DelveJewelAttackLeech1"] = { type = "Suffix", affix = "of the Underground", "0.3% of Attack Damage Leeched as Life", statOrder = { 1669 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "0.3% of Attack Damage Leeched as Life" }, } },
- ["DelveWeaponManaRegeneratedIfYouveHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8204 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2602865453] = { "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently" }, } },
- ["DelveWeaponManaRegeneratedIfYouveHitRecently2h1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8204 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2602865453] = { "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently" }, } },
- ["DelveBodyDamageRemovedFromManaBeforeLife1_"] = { type = "Suffix", affix = "of the Underground", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(5-10)% of Damage is taken from Mana before Life" }, } },
- ["DelveBodyDamageRemovedFromManaBeforeLifeNew1"] = { type = "Prefix", affix = "Subterranean", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(5-10)% of Damage is taken from Mana before Life" }, } },
- ["DelveBootsManaRegenerationRateWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(50-70)% increased Mana Regeneration Rate while moving", statOrder = { 8216 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1327522346] = { "(50-70)% increased Mana Regeneration Rate while moving" }, } },
- ["DelveGlovesManaGainPerTarget1"] = { type = "Suffix", affix = "of the Underground", "Gain (2-4) Mana per Enemy Hit with Attacks", statOrder = { 1749 }, level = 1, group = "ManaGainPerTarget", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (2-4) Mana per Enemy Hit with Attacks" }, } },
- ["DelveHelmBaseManaRegeneration1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Mana per second", statOrder = { 1586 }, level = 1, group = "BaseManaRegeneration", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.5% of Mana per second" }, } },
- ["DelveAmuletBeltManaRecoveryRate1"] = { type = "Suffix", affix = "of the Underground", "(8-12)% increased Mana Recovery rate", statOrder = { 1591 }, level = 1, group = "ManaRecoveryRate", weightKey = { "abyss_jewel", "jewel", "belt", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "(8-12)% increased Mana Recovery rate" }, } },
- ["DelveRingManaCostReduction1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% reduced Mana Cost of Skills", statOrder = { 1888 }, level = 1, group = "ManaCostReduction", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(4-6)% reduced Mana Cost of Skills" }, } },
- ["DelveQuiverIncreasedMana1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(20-30)% increased maximum Mana" }, } },
- ["DelveJewelDamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of the Underground", "(2-3)% of Damage taken Recouped as Mana", statOrder = { 2460 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(2-3)% of Damage taken Recouped as Mana" }, } },
- ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2998 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "10% chance to gain Onslaught for 4 seconds on Kill" }, } },
- ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2998 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "20% chance to gain Onslaught for 4 seconds on Kill" }, } },
- ["DelveBodyFrenzyChargeWhenHit1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain a Frenzy Charge when Hit", statOrder = { 4535 }, level = 1, group = "FrenzyChargeWhenHit", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [881914531] = { "(15-20)% chance to gain a Frenzy Charge when Hit" }, } },
- ["DelveBootsMovementSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9417 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, tradeHashes = { [3178542354] = { "(4-6)% increased Movement Speed if you've Hit an Enemy Recently" }, } },
- ["DelveGlovesAttackAndCastSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently", statOrder = { 4820 }, level = 1, group = "AttackAndCastSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [1483753325] = { "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently" }, } },
- ["DelveHelmIgnoreArmourMovementPenalties1"] = { type = "Suffix", affix = "of the Underground", "Ignore all Movement Penalties from Armour", statOrder = { 2186 }, level = 1, group = "IgnoreArmourMovementPenalties", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, tradeHashes = { [1311723478] = { "Ignore all Movement Penalties from Armour" }, } },
- ["DelveAmuletCannotBeChilledOrFrozenWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Chilled or Frozen while moving", statOrder = { 5401 }, level = 1, group = "CannotBeChilledOrFrozenWhileMoving", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [628032624] = { "Cannot be Chilled or Frozen while moving" }, } },
- ["DelveBeltChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain Onslaught when you use a Flask", statOrder = { 5698 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "abyss_jewel", "jewel", "belt", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "flask" }, tradeHashes = { [1324450398] = { "(15-20)% chance to gain Onslaught when you use a Flask" }, } },
- ["DelveRingCannotBeShockedWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Shocked or Ignited while moving", statOrder = { 5417 }, level = 1, group = "CannotBeShockedOrIgnitedWhileMoving", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3592330380] = { "Cannot be Shocked or Ignited while moving" }, } },
- ["DelveQuiverFrenzyChargeOnHittingRareOrUnique1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6765 }, level = 1, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4179663748] = { "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy" }, } },
- ["DelveJewelChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% chance to gain Onslaught when you use a Flask", statOrder = { 5698 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1324450398] = { "(5-10)% chance to gain Onslaught when you use a Flask" }, } },
- ["DelveWeaponIncreasedDamageFromAuras1h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3463 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 2% increased Damage to you and Allies" }, } },
- ["DelveWeaponIncreasedDamageFromAuras2h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3463 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 4% increased Damage to you and Allies" }, } },
- ["DelveWeaponMinionDamage1h1_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (30-44)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-44)% increased Damage" }, } },
- ["DelveWeaponMinionDamage1h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (45-59)% increased Damage", statOrder = { 1978 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (45-59)% increased Damage" }, } },
- ["DelveWeaponMinionDamage1h3___"] = { type = "Prefix", affix = "Subterranean", "Minions deal (60-74)% increased Damage", statOrder = { 1978 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (60-74)% increased Damage" }, } },
- ["DelveWeaponMinionDamage1h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (75-80)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (75-80)% increased Damage" }, } },
- ["DelveWeaponMinionDamage2h1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (51-70)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (51-70)% increased Damage" }, } },
- ["DelveWeaponMinionDamage2h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (71-90)% increased Damage", statOrder = { 1978 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (71-90)% increased Damage" }, } },
- ["DelveWeaponMinionDamage2h3_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (91-110)% increased Damage", statOrder = { 1978 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (91-110)% increased Damage" }, } },
- ["DelveWeaponMinionDamage2h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (111-130)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (111-130)% increased Damage" }, } },
- ["DelveGlovesMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (20-30)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-30)% increased Damage" }, } },
- ["DelveJewelryMinionRunSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (15-30)% increased Movement Speed", statOrder = { 1774 }, level = 74, group = "MinionRunSpeed", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (15-30)% increased Movement Speed" }, } },
- ["DelveArmourMinionLife1"] = { type = "Suffix", affix = "of the Underground", "Minions have (20-30)% increased maximum Life", statOrder = { 1771 }, level = 74, group = "MinionLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } },
- ["DelveBootsAdditionalSpectre1_"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of all Raise Spectre Gems", statOrder = { 1621 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "minion", "gem" }, tradeHashes = { [2739830820] = { "" }, [2120904498] = { "" }, [3235814433] = { "+1 to Level of all Raise Spectre Gems" }, } },
- ["DelveBodyArmourAuraEffect1_"] = { type = "Suffix", affix = "of the Underground", "(20-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 1, group = "AuraEffect", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(20-25)% increased effect of Non-Curse Auras from your Skills" }, } },
- ["DelveHelmetReducedManaReserved1"] = { type = "Suffix", affix = "of the Underground", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 1, group = "ReducedReservation", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "(8-10)% increased Mana Reservation Efficiency of Skills" }, } },
- ["DelveHelmetManaReservationEfficiency1"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "10% increased Mana Reservation Efficiency of Skills" }, } },
- ["DelveAbyssJewelMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (14-16)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "default", }, weightVal = { 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (14-16)% increased Damage" }, } },
- ["DelveJewelMinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrder = { 2912, 2913 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (4-6)% increased Attack Speed" }, [4000101551] = { "Minions have (4-6)% increased Cast Speed" }, } },
- ["DelveStrengthGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Strength Gems", statOrder = { 163 }, level = 1, group = "DelveStrengthGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 750, 1600, 750, 750, 1000, 1000, 750, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [916797432] = { "+1 to Level of Socketed Strength Gems" }, } },
- ["DelveDexterityGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Dexterity Gems", statOrder = { 165 }, level = 1, group = "DelveDexterityGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 750, 750, 750, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 1600, 1000, 750, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [2718698372] = { "+1 to Level of Socketed Dexterity Gems" }, } },
- ["DelveIntelligenceGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Intelligence Gems", statOrder = { 166 }, level = 1, group = "DelveIntelligenceGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 750, 750, 750, 750, 1000, 1000, 1600, 750, 1600, 750, 750, 1000, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [1719423857] = { "+1 to Level of Socketed Intelligence Gems" }, } },
- ["DelveAbyssJewelSocket1"] = { type = "Suffix", affix = "of the Underground", "Has 1 Abyssal Socket", statOrder = { 73 }, level = 1, group = "AbyssJewelSocket", weightKey = { "abyss_jewel", "jewel", "weapon", "helmet", "boots", "gloves", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } },
- ["DelveWeaponVaalSoulCost1h1_"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 20% reduced Souls Per Use", statOrder = { 9485 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [3533432197] = { "Non-Aura Vaal Skills require 20% reduced Souls Per Use" }, } },
- ["DelveWeaponVaalSoulCost2h1"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 40% reduced Souls Per Use", statOrder = { 9485 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [3533432197] = { "Non-Aura Vaal Skills require 40% reduced Souls Per Use" }, } },
- ["DelveArmourVaalSoulsOnKill1_"] = { type = "Suffix", affix = "of the Underground", "(5-8)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3109 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "helmet", "body_armour", "boots", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(5-8)% chance to gain an additional Vaal Soul on Kill" }, } },
- ["DelveJewelVaalSoulsOnKill1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3109 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(3-5)% chance to gain an additional Vaal Soul on Kill" }, } },
- ["DelveGlovesVaalSkillCriticalChance1"] = { type = "Suffix", affix = "of the Underground", "(80-120)% increased Vaal Skill Critical Strike Chance", statOrder = { 3112 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { "abyss_jewel", "jewel", "quiver", "gloves", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "critical", "vaal" }, tradeHashes = { [3165492062] = { "(80-120)% increased Vaal Skill Critical Strike Chance" }, } },
- ["DelveAmuletVaalSkillDuration1"] = { type = "Suffix", affix = "of the Underground", "Vaal Skills have (15-25)% increased Skill Effect Duration", statOrder = { 3110 }, level = 1, group = "VaalSkillDuration", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [547412107] = { "Vaal Skills have (15-25)% increased Skill Effect Duration" }, } },
- ["DelveJewelryVaalSkillDamage1"] = { type = "Suffix", affix = "of the Underground", "(20-40)% increased Damage with Vaal Skills", statOrder = { 3100 }, level = 1, group = "VaalSkillDamage", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(20-40)% increased Damage with Vaal Skills" }, } },
- ["DelveMapMonsterPacksVaalMapWorlds1"] = { type = "Prefix", affix = "Subterranean", "Area is inhabited by the Vaal", "Found Items have 10% chance to drop Corrupted in Area", statOrder = { 8766, 10825 }, level = 1, group = "MapMonsterPacksVaalMapWorlds", weightKey = { "map", "expedition_logbook", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [728267040] = { "Found Items have 10% chance to drop Corrupted in Area" }, [57434274] = { "" }, [2306002879] = { "" }, [2390685262] = { "" }, [2017682521] = { "" }, } },
+ ["DoubleModSellPrice1"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7951 }, level = 1, group = "DoubleModSellPrice1", weightKey = { "default", }, weightVal = { 6000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } },
+ ["DoubleModSellPrice2"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7951 }, level = 1, group = "DoubleModSellPrice2", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } },
+ ["DoubleModSellPrice3_"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7951 }, level = 1, group = "DoubleModSellPrice3", weightKey = { "default", }, weightVal = { 6000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } },
+ ["DoubleModSellPrice4"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7951 }, level = 1, group = "DoubleModSellPrice4", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } },
+ ["DoubleModSellPrice5_"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7951 }, level = 1, group = "DoubleModSellPrice5", weightKey = { "default", }, weightVal = { 6000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } },
+ ["DoubleModSellPrice6"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7951 }, level = 1, group = "DoubleModSellPrice6", weightKey = { "default", }, weightVal = { 10 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } },
+ ["DoubleModSellPrice7"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7951 }, level = 1, group = "DoubleModSellPrice7", weightKey = { "default", }, weightVal = { 2000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } },
+ ["DoubleModSellPrice8"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7951 }, level = 1, group = "DoubleModSellPrice8", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } },
+ ["DoubleModSellPrice9"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7951 }, level = 1, group = "DoubleModSellPrice9", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, tradeHashes = { [3513534186] = { "Item sells for much more to vendors" }, } },
+ ["DelveWeaponFirePenetration1h1_"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } },
+ ["DelveWeaponFirePenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (12-15)% Fire Resistance" }, } },
+ ["DelveJewelFirePenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 1% Fire Resistance" }, } },
+ ["DelveArmourFireResistance1"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistancePrefix", weightKey = { "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-35)% to Fire Resistance" }, } },
+ ["DelveBodyArmourAvoidFire1_"] = { type = "Prefix", affix = "Subterranean", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 1, group = "FireDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(8-10)% chance to Avoid Fire Damage from Hits" }, } },
+ ["DelveGlovesFireDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1359 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [321077055] = { "Adds (20-25) to (26-35) Fire Damage" }, } },
+ ["DelveBootsSocketedFireGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } },
+ ["DelveRingFireLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.2% of Fire Damage Leeched as Life" }, } },
+ ["DelveHelmetEnemyFireResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 7914 }, level = 1, group = "NearbyEnemyFireDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [3914021960] = { "Nearby Enemies have -9% to Fire Resistance" }, [3372524247] = { "-9% to Fire Resistance" }, } },
+ ["DelveJewelryFireDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-30)% increased Fire Damage" }, } },
+ ["DelveWeaponColdPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, } },
+ ["DelveWeaponColdPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (12-15)% Cold Resistance" }, } },
+ ["DelveJewelColdPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 1% Cold Resistance" }, } },
+ ["DelveArmourColdResistance1"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistancePrefix", weightKey = { "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-35)% to Cold Resistance" }, } },
+ ["DelveBodyArmourAvoidCold1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 1, group = "ColdDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(6-10)% chance to Avoid Cold Damage from Hits" }, } },
+ ["DelveGlovesColdDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1368 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2387423236] = { "Adds (20-25) to (26-35) Cold Damage" }, } },
+ ["DelveBootsSocketedColdGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } },
+ ["DelveRingColdLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 1, group = "ColdDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.2% of Cold Damage Leeched as Life" }, } },
+ ["DelveHelmetEnemyColdResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 7912 }, level = 1, group = "NearbyEnemyColdDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-9% to Cold Resistance" }, [2674336304] = { "Nearby Enemies have -9% to Cold Resistance" }, } },
+ ["DelveJewelryColdDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-30)% increased Cold Damage" }, } },
+ ["DelveWeaponLightningPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } },
+ ["DelveWeaponLightningPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (12-15)% Lightning Resistance" }, } },
+ ["DelveJewelLightningPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 1% Lightning Resistance" }, } },
+ ["DelveArmourLightningResistance1"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistancePrefix", weightKey = { "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-35)% to Lightning Resistance" }, } },
+ ["DelveBodyArmourAvoidLightning1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 1, group = "LightningDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(6-10)% chance to Avoid Lightning Damage from Hits" }, } },
+ ["DelveGlovesLightningDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1379 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds 1 to (48-60) Lightning Damage" }, } },
+ ["DelveBootsSocketedLightningGemLevel1_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+2 to Level of Socketed Lightning Gems" }, } },
+ ["DelveRingLightningLeech1_"] = { type = "Prefix", affix = "Subterranean", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 1, group = "LightningDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.2% of Lightning Damage Leeched as Life" }, } },
+ ["DelveHelmetEnemyLightningResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 7916 }, level = 1, group = "NearbyEnemyLightningDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-9% to Lightning Resistance" }, [1849749435] = { "Nearby Enemies have -9% to Lightning Resistance" }, } },
+ ["DelveJewelryLightningDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-30)% increased Lightning Damage" }, } },
+ ["DelveWeaponIntimidateOnHit1"] = { type = "Suffix", affix = "of the Underground", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7874 }, level = 1, group = "LocalChanceToIntimidateOnHit", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack" }, tradeHashes = { [2089652545] = { "15% chance to Intimidate Enemies for 4 seconds on Hit" }, } },
+ ["DelveArmourPhysDamageTaken1"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2235 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(75-50) Physical Damage taken from Hits" }, } },
+ ["DelveArmourPhysDamageTakenv2_1"] = { type = "Suffix", affix = "of the Underground", "-(34-20) Physical Damage taken from Hits", statOrder = { 2235 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(34-20) Physical Damage taken from Hits" }, } },
+ ["DelveArmourPhysDamageTakenv2_2"] = { type = "Suffix", affix = "of the Underground", "-(49-35) Physical Damage taken from Hits", statOrder = { 2235 }, level = 30, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(49-35) Physical Damage taken from Hits" }, } },
+ ["DelveArmourPhysDamageTakenv2_3"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2235 }, level = 60, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-(75-50) Physical Damage taken from Hits" }, } },
+ ["DelveShieldPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Subterranean", "(3-5)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } },
+ ["DelveBootsPhyiscalDamageReductionRatingWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction while moving", statOrder = { 4584 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, tradeHashes = { [2713357573] = { "(3-5)% additional Physical Damage Reduction while moving" }, } },
+ ["DelveGlovesGlobalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "Adds (6-8) to (9-11) Physical Damage", statOrder = { 1265 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [960081730] = { "Adds (6-8) to (9-11) Physical Damage" }, } },
+ ["DelveRingPhysicalLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 1, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "0.2% of Physical Damage Leeched as Life" }, } },
+ ["DelveHelmetEnemyPhysicalDamageTakenAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 7918 }, level = 1, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3853018505] = { "9% increased Physical Damage taken" }, [415837237] = { "Nearby Enemies take 9% increased Physical Damage" }, } },
+ ["DelveJewelryPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercentPrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(20-30)% increased Global Physical Damage" }, } },
+ ["DelveJewelPhysicalDamageOverTimeTaken1"] = { type = "Prefix", affix = "Subterranean", "(1-2)% reduced Physical Damage taken over time", statOrder = { 5041 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical" }, tradeHashes = { [511024200] = { "(1-2)% reduced Physical Damage taken over time" }, } },
+ ["DelveWeaponDespairOnHit1h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } },
+ ["DelveWeaponDespairOnHit2h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } },
+ ["DelveArmourChaosResistance1_"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistancePrefix", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-35)% to Chaos Resistance" }, } },
+ ["DelveBodyArmourChaosDegenResist1"] = { type = "Suffix", affix = "of the Underground", "+(30-40)% Chaos Resistance against Damage Over Time", statOrder = { 5734 }, level = 1, group = "ChaosResistanceAgainstDamageOverTime", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2266636761] = { "+(30-40)% Chaos Resistance against Damage Over Time" }, } },
+ ["DelveGlovesChaosDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (15-20) to (21-30) Chaos Damage" }, } },
+ ["DelveBootsSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Chaos Gems", statOrder = { 170 }, level = 1, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+2 to Level of Socketed Chaos Gems" }, } },
+ ["DelveRingChaosLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.2% of Chaos Damage Leeched as Life" }, } },
+ ["DelveHelmetEnemyChaosResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 7911 }, level = 1, group = "NearbyEnemyChaosDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [1902595112] = { "Nearby Enemies have -9% to Chaos Resistance" }, [2923486259] = { "-9% to Chaos Resistance" }, } },
+ ["DelveJewelryChaosDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(20-30)% increased Chaos Damage" }, } },
+ ["DelveJewelChaosDamage1"] = { type = "Suffix", affix = "of the Underground", "(13-19)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(13-19)% increased Chaos Damage" }, } },
+ ["DelveWeaponDamageOnFullLife1h1__"] = { type = "Suffix", affix = "of the Underground", "(50-60)% increased Damage when on Full Life", statOrder = { 6074 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, tradeHashes = { [592020238] = { "(50-60)% increased Damage when on Full Life" }, } },
+ ["DelveWeaponDamageOnFullLife2h1"] = { type = "Suffix", affix = "of the Underground", "(100-120)% increased Damage when on Full Life", statOrder = { 6074 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, tradeHashes = { [592020238] = { "(100-120)% increased Damage when on Full Life" }, } },
+ ["DelveBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(25-40) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1569, 1571 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(3-5)% increased maximum Life" }, [3299347043] = { "+(25-40) to maximum Life" }, } },
+ ["DelveNonBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(15-25) to maximum Life", "(2-3)% increased maximum Life", statOrder = { 1569, 1571 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(2-3)% increased maximum Life" }, [3299347043] = { "+(15-25) to maximum Life" }, } },
+ ["DelveArmourLifeRegen1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of Life per second" }, } },
+ ["DelveJewelryFlaskLifeRecovery1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(20-30)% increased Life Recovery from Flasks" }, } },
+ ["DelveWeaponArmourIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Armour if you've Hit an Enemy Recently", statOrder = { 9652 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "sceptre", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2368149582] = { "+500 to Armour if you've Hit an Enemy Recently" }, } },
+ ["DelveJewelLifeRegeneration1"] = { type = "Prefix", affix = "Subterranean", "Regenerate 0.3% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 0.3% of Life per second" }, } },
+ ["DelveWeaponArmourIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Armour if you've Hit an Enemy Recently", statOrder = { 9652 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2368149582] = { "+1000 to Armour if you've Hit an Enemy Recently" }, } },
+ ["DelveJewelArmourIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Armour if you've Hit an Enemy Recently", statOrder = { 9652 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2368149582] = { "+(250-300) to Armour if you've Hit an Enemy Recently" }, } },
+ ["DelveWeaponEvasionIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6489 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "axe", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2935548106] = { "+500 to Evasion Rating if Hit an Enemy Recently" }, } },
+ ["DelveWeaponEvasionIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6489 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "axe", "sword", "bow", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2935548106] = { "+1000 to Evasion Rating if Hit an Enemy Recently" }, } },
+ ["DelveJewelEvasionIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Evasion Rating if Hit an Enemy Recently", statOrder = { 6489 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2935548106] = { "+(250-300) to Evasion Rating if Hit an Enemy Recently" }, } },
+ ["DelveWeaponEnergyShieldRegenIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6458 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "dagger", "claw", "wand", "sceptre", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [588560583] = { "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently" }, } },
+ ["DelveWeaponEnergyShieldRegenIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6458 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "staff", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [588560583] = { "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently" }, } },
+ ["DelveJewelEnergyShieldRegenIfYouHitRecently1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6458 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [588560583] = { "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently" }, } },
+ ["DelveArmourArmour1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercentSuffix", weightKey = { "abyss_jewel", "jewel", "str_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(25-50)% increased Armour" }, } },
+ ["DelveArmourEvasion1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercentSuffix", weightKey = { "abyss_jewel", "jewel", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(25-50)% increased Evasion Rating" }, } },
+ ["DelveArmourEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercentSuffix", weightKey = { "abyss_jewel", "jewel", "int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(25-50)% increased Energy Shield" }, } },
+ ["DelveArmourArmourAndEvasion1_"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasionSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(25-50)% increased Armour and Evasion" }, } },
+ ["DelveArmourArmourAndEnergyShield1__"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(25-50)% increased Armour and Energy Shield" }, } },
+ ["DelveArmourEvasionAndEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(25-50)% increased Evasion and Energy Shield" }, } },
+ ["DelveArmourDefences1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(25-50)% increased Armour, Evasion and Energy Shield" }, } },
+ ["DelveArmourQuality"] = { type = "Suffix", affix = "of the Underground", "+(10-20)% to Quality", statOrder = { 7950 }, level = 1, group = "LocalItemQuality", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2016708976] = { "+(10-20)% to Quality" }, } },
+ ["DelveArmourEnergyShieldRegen"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second", statOrder = { 2646 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of Energy Shield per second" }, } },
+ ["DelveArmourEnergyShieldLeechSpells_"] = { type = "Suffix", affix = "of the Underground", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1722 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [11106713] = { "0.3% of Spell Damage Leeched as Energy Shield" }, } },
+ ["DelveArmourSpellBlock__"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "gloves", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(3-4)% Chance to Block Spell Damage" }, } },
+ ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } },
+ ["DelveArmourBlindChance"] = { type = "Suffix", affix = "of the Underground", "(4-6)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2221570601] = { "(4-6)% Global chance to Blind Enemies on hit" }, } },
+ ["DelveArmourEvasionOnFullLife"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Global Evasion Rating when on Full Life", statOrder = { 6496 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [88817332] = { "(25-50)% increased Global Evasion Rating when on Full Life" }, } },
+ ["DelveArmourDoubleArmourEffectOnHit"] = { type = "Suffix", affix = "of the Underground", "(10-20)% chance to Defend with 200% of Armour", statOrder = { 5671 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [327253797] = { "(10-20)% chance to Defend with 200% of Armour" }, } },
+ ["DelveArmourAttackBlock"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "(3-4)% Chance to Block Attack Damage" }, } },
+ ["DelveArmourFortifyEffect"] = { type = "Suffix", affix = "of the Underground", "+(3-5) to maximum Fortification", statOrder = { 9117 }, level = 1, group = "FortifyEffect", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [335507772] = { "+(3-5) to maximum Fortification" }, } },
+ ["DelveJewelryIncreasedEnergyShieldFromBodyArmour1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 9133 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1195319608] = { "(20-30)% increased Energy Shield from Equipped Body Armour" }, } },
+ ["DelveJewelryChanceWhenHitForArmourToBeDoubled1"] = { type = "Suffix", affix = "of the Underground", "20% chance to Defend with 200% of Armour", statOrder = { 5671 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [327253797] = { "20% chance to Defend with 200% of Armour" }, } },
+ ["DelveJewelryChanceToEvade"] = { type = "Suffix", affix = "of the Underground", "+(1-2)% chance to Evade Attack Hits", statOrder = { 5673 }, level = 1, group = "AdditionalChanceToEvade", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2021058489] = { "+(1-2)% chance to Evade Attack Hits" }, } },
+ ["DelveJewelGlobalDefences1"] = { type = "Prefix", affix = "Subterranean", "(4-6)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(4-6)% increased Global Defences" }, } },
+ ["DelveWeaponLocalChanceForPoisonDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7871 }, level = 1, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [2523146878] = { "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage" }, } },
+ ["DelveWeaponLocalChanceForBleedingDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7870 }, level = 1, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1560880986] = { "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage" }, } },
+ ["DelveArmourAvoidPoison1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "50% chance to Avoid being Poisoned" }, } },
+ ["DelveArmourAvoidBleeding1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid Bleeding", statOrder = { 4216 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "50% chance to Avoid Bleeding" }, } },
+ ["DelveJewelryAilmentDamage1_"] = { type = "Suffix", affix = "of the Underground", "(30-40)% increased Damage with Ailments", statOrder = { 4983 }, level = 1, group = "AilmentDamage", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(30-40)% increased Damage with Ailments" }, } },
+ ["DelveJewelAilmentDamage1__"] = { type = "Suffix", affix = "of the Underground", "(15-20)% increased Damage with Ailments", statOrder = { 4983 }, level = 1, group = "AilmentDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [690707482] = { "(15-20)% increased Damage with Ailments" }, } },
+ ["DelveGlovesAddedPhysicalDamageVsPoisonedEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies", statOrder = { 9250 }, level = 1, group = "AddedPhysicalDamageVsPoisonedEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [424026624] = { "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies" }, } },
+ ["DelveGlovesAddedPhysicalDamageVsBleedingEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies", statOrder = { 2494 }, level = 1, group = "AddedPhysicalDamageVsBleedingEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1244003614] = { "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies" }, } },
+ ["DelveWeaponLocalAttackReduceEnemyElementalResistance1h1"] = { type = "Prefix", affix = "Subterranean", "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances", statOrder = { 3761 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances" }, } },
+ ["DelveWeaponElementalDamage1h1"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(40-60)% increased Elemental Damage" }, } },
+ ["DelveWeaponElementalDamage2h1"] = { type = "Prefix", affix = "Subterranean", "(80-120)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(80-120)% increased Elemental Damage" }, } },
+ ["DelveWeaponElementalDamagev2_1h1"] = { type = "Prefix", affix = "Subterranean", "(19-25)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(19-25)% increased Elemental Damage" }, } },
+ ["DelveWeaponElementalDamagev2_1h2_"] = { type = "Prefix", affix = "Subterranean", "(26-32)% increased Elemental Damage", statOrder = { 1980 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(26-32)% increased Elemental Damage" }, } },
+ ["DelveWeaponElementalDamagev2_1h3"] = { type = "Prefix", affix = "Subterranean", "(33-39)% increased Elemental Damage", statOrder = { 1980 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(33-39)% increased Elemental Damage" }, } },
+ ["DelveWeaponElementalDamagev2_1h4"] = { type = "Prefix", affix = "Subterranean", "(40-49)% increased Elemental Damage", statOrder = { 1980 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(40-49)% increased Elemental Damage" }, } },
+ ["DelveWeaponElementalDamagev2_2h1"] = { type = "Prefix", affix = "Subterranean", "(37-50)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(37-50)% increased Elemental Damage" }, } },
+ ["DelveWeaponElementalDamagev2_2h2__"] = { type = "Prefix", affix = "Subterranean", "(51-65)% increased Elemental Damage", statOrder = { 1980 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(51-65)% increased Elemental Damage" }, } },
+ ["DelveWeaponElementalDamagev2_2h3"] = { type = "Prefix", affix = "Subterranean", "(66-79)% increased Elemental Damage", statOrder = { 1980 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(66-79)% increased Elemental Damage" }, } },
+ ["DelveWeaponElementalDamagev2_2h4_"] = { type = "Prefix", affix = "Subterranean", "(80-94)% increased Elemental Damage", statOrder = { 1980 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(80-94)% increased Elemental Damage" }, } },
+ ["DelveArmourElementalAilmentDuration1___"] = { type = "Suffix", affix = "of the Underground", "(20-30)% reduced Elemental Ailment Duration on you", statOrder = { 1867 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(20-30)% reduced Elemental Ailment Duration on you" }, } },
+ ["DelveJewelryElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "quiver", "amulet", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (3-5)% Elemental Resistances" }, } },
+ ["DelveRingElementalDamage1"] = { type = "Suffix", affix = "of the Underground", "(25-30)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(25-30)% increased Elemental Damage" }, } },
+ ["DelveJewelElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 1% Elemental Resistances" }, } },
+ ["DelveWeaponSocketedSpellsDamageFinal1h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Spell Damage", statOrder = { 565 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, tradeHashes = { [2964800094] = { "Socketed Skills deal 40% more Spell Damage" }, } },
+ ["DelveWeaponSocketedSpellsDamageFinal2h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Spell Damage", statOrder = { 565 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, tradeHashes = { [2964800094] = { "Socketed Skills deal 20% more Spell Damage" }, } },
+ ["DelveBodyArmourSocketedSkillsSupportedByArcaneSurge1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 226 }, level = 1, group = "SupportedByArcaneSurge", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "support", "gem" }, tradeHashes = { [2287264161] = { "Socketed Gems are Supported by Level 1 Arcane Surge" }, } },
+ ["DelveGlovesSocketedSkillsCastSpeed1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Cast Speed", statOrder = { 562 }, level = 1, group = "SocketedSkillsCastSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster", "speed", "gem" }, tradeHashes = { [3425934849] = { "Socketed Skills have 18% increased Cast Speed" }, } },
+ ["DelveArmourSocketedSpellsManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Spells have 20% reduced Mana Cost", statOrder = { 568 }, level = 1, group = "SocketedSpellsManaCost", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "caster", "gem" }, tradeHashes = { [1688834903] = { "Socketed Spells have 20% reduced Mana Cost" }, } },
+ ["DelveJewelAvoidInterruptionWhileCasting1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1916706958] = { "(15-20)% chance to Ignore Stuns while Casting" }, } },
+ ["DelveWeaponSocketedAttacksDamageFinal1h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Attack Damage", statOrder = { 546 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, tradeHashes = { [1970781345] = { "Socketed Skills deal 40% more Attack Damage" }, } },
+ ["DelveWeaponSocketedAttacksDamageFinal2h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Attack Damage", statOrder = { 546 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, tradeHashes = { [1970781345] = { "Socketed Skills deal 20% more Attack Damage" }, } },
+ ["DelveBodyArmourSocketedSkillsSupportedByMaim1"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Maim", statOrder = { 331 }, level = 1, group = "SupportedByMaim", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "gem" }, tradeHashes = { [3826977109] = { "Socketed Gems are Supported by Level 1 Maim" }, } },
+ ["DelveGlovesLocalDisplaySocketedSkillsAttackSpeed1"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Attack Speed", statOrder = { 561 }, level = 1, group = "SocketedSkillsAttackSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "attack", "speed", "gem" }, tradeHashes = { [2881124988] = { "Socketed Skills have 18% increased Attack Speed" }, } },
+ ["DelveArmourLocalDisplaySocketedAttacksManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 549 }, level = 1, group = "SocketedAttacksManaCost", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "attack", "gem" }, tradeHashes = { [2264586521] = { "Socketed Attacks have -15 to Total Mana Cost" }, } },
+ ["DelveJewelAttackLeech1"] = { type = "Suffix", affix = "of the Underground", "0.3% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [141810208] = { "0.3% of Attack Damage Leeched as Life" }, } },
+ ["DelveWeaponManaRegeneratedIfYouveHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8199 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2602865453] = { "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently" }, } },
+ ["DelveWeaponManaRegeneratedIfYouveHitRecently2h1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8199 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2602865453] = { "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently" }, } },
+ ["DelveBodyDamageRemovedFromManaBeforeLife1_"] = { type = "Suffix", affix = "of the Underground", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(5-10)% of Damage is taken from Mana before Life" }, } },
+ ["DelveBodyDamageRemovedFromManaBeforeLifeNew1"] = { type = "Prefix", affix = "Subterranean", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(5-10)% of Damage is taken from Mana before Life" }, } },
+ ["DelveBootsManaRegenerationRateWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(50-70)% increased Mana Regeneration Rate while moving", statOrder = { 8211 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1327522346] = { "(50-70)% increased Mana Regeneration Rate while moving" }, } },
+ ["DelveGlovesManaGainPerTarget1"] = { type = "Suffix", affix = "of the Underground", "Gain (2-4) Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 1, group = "ManaGainPerTarget", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (2-4) Mana per Enemy Hit with Attacks" }, } },
+ ["DelveHelmBaseManaRegeneration1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Mana per second", statOrder = { 1581 }, level = 1, group = "BaseManaRegeneration", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.5% of Mana per second" }, } },
+ ["DelveAmuletBeltManaRecoveryRate1"] = { type = "Suffix", affix = "of the Underground", "(8-12)% increased Mana Recovery rate", statOrder = { 1586 }, level = 1, group = "ManaRecoveryRate", weightKey = { "abyss_jewel", "jewel", "belt", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "(8-12)% increased Mana Recovery rate" }, } },
+ ["DelveRingManaCostReduction1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(4-6)% reduced Mana Cost of Skills" }, } },
+ ["DelveQuiverIncreasedMana1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(20-30)% increased maximum Mana" }, } },
+ ["DelveJewelDamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of the Underground", "(2-3)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(2-3)% of Damage taken Recouped as Mana" }, } },
+ ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "10% chance to gain Onslaught for 4 seconds on Kill" }, } },
+ ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, tradeHashes = { [2988593550] = { "20% chance to gain Onslaught for 4 seconds on Kill" }, } },
+ ["DelveBodyFrenzyChargeWhenHit1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain a Frenzy Charge when Hit", statOrder = { 4530 }, level = 1, group = "FrenzyChargeWhenHit", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [881914531] = { "(15-20)% chance to gain a Frenzy Charge when Hit" }, } },
+ ["DelveBootsMovementSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9418 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, tradeHashes = { [3178542354] = { "(4-6)% increased Movement Speed if you've Hit an Enemy Recently" }, } },
+ ["DelveGlovesAttackAndCastSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently", statOrder = { 4815 }, level = 1, group = "AttackAndCastSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [1483753325] = { "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently" }, } },
+ ["DelveHelmIgnoreArmourMovementPenalties1"] = { type = "Suffix", affix = "of the Underground", "Ignore all Movement Penalties from Armour", statOrder = { 2181 }, level = 1, group = "IgnoreArmourMovementPenalties", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, tradeHashes = { [1311723478] = { "Ignore all Movement Penalties from Armour" }, } },
+ ["DelveAmuletCannotBeChilledOrFrozenWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Chilled or Frozen while moving", statOrder = { 5396 }, level = 1, group = "CannotBeChilledOrFrozenWhileMoving", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [628032624] = { "Cannot be Chilled or Frozen while moving" }, } },
+ ["DelveBeltChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain Onslaught when you use a Flask", statOrder = { 5693 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "abyss_jewel", "jewel", "belt", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "flask" }, tradeHashes = { [1324450398] = { "(15-20)% chance to gain Onslaught when you use a Flask" }, } },
+ ["DelveRingCannotBeShockedWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Shocked or Ignited while moving", statOrder = { 5412 }, level = 1, group = "CannotBeShockedOrIgnitedWhileMoving", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3592330380] = { "Cannot be Shocked or Ignited while moving" }, } },
+ ["DelveQuiverFrenzyChargeOnHittingRareOrUnique1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6760 }, level = 1, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4179663748] = { "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy" }, } },
+ ["DelveJewelChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% chance to gain Onslaught when you use a Flask", statOrder = { 5693 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1324450398] = { "(5-10)% chance to gain Onslaught when you use a Flask" }, } },
+ ["DelveWeaponIncreasedDamageFromAuras1h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3458 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 2% increased Damage to you and Allies" }, } },
+ ["DelveWeaponIncreasedDamageFromAuras2h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3458 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 4% increased Damage to you and Allies" }, } },
+ ["DelveWeaponMinionDamage1h1_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (30-44)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-44)% increased Damage" }, } },
+ ["DelveWeaponMinionDamage1h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (45-59)% increased Damage", statOrder = { 1973 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (45-59)% increased Damage" }, } },
+ ["DelveWeaponMinionDamage1h3___"] = { type = "Prefix", affix = "Subterranean", "Minions deal (60-74)% increased Damage", statOrder = { 1973 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (60-74)% increased Damage" }, } },
+ ["DelveWeaponMinionDamage1h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (75-80)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (75-80)% increased Damage" }, } },
+ ["DelveWeaponMinionDamage2h1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (51-70)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (51-70)% increased Damage" }, } },
+ ["DelveWeaponMinionDamage2h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (71-90)% increased Damage", statOrder = { 1973 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (71-90)% increased Damage" }, } },
+ ["DelveWeaponMinionDamage2h3_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (91-110)% increased Damage", statOrder = { 1973 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (91-110)% increased Damage" }, } },
+ ["DelveWeaponMinionDamage2h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (111-130)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (111-130)% increased Damage" }, } },
+ ["DelveGlovesMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (20-30)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-30)% increased Damage" }, } },
+ ["DelveJewelryMinionRunSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (15-30)% increased Movement Speed", statOrder = { 1769 }, level = 74, group = "MinionRunSpeed", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (15-30)% increased Movement Speed" }, } },
+ ["DelveArmourMinionLife1"] = { type = "Suffix", affix = "of the Underground", "Minions have (20-30)% increased maximum Life", statOrder = { 1766 }, level = 74, group = "MinionLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-30)% increased maximum Life" }, } },
+ ["DelveBootsAdditionalSpectre1_"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of all Raise Spectre Gems", statOrder = { 1616 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "minion", "gem" }, tradeHashes = { [2739830820] = { "" }, [2120904498] = { "" }, [3235814433] = { "+1 to Level of all Raise Spectre Gems" }, } },
+ ["DelveBodyArmourAuraEffect1_"] = { type = "Suffix", affix = "of the Underground", "(20-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffect", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(20-25)% increased effect of Non-Curse Auras from your Skills" }, } },
+ ["DelveHelmetReducedManaReserved1"] = { type = "Suffix", affix = "of the Underground", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 1, group = "ReducedReservation", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "(8-10)% increased Mana Reservation Efficiency of Skills" }, } },
+ ["DelveHelmetManaReservationEfficiency1"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "10% increased Mana Reservation Efficiency of Skills" }, } },
+ ["DelveAbyssJewelMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (14-16)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "default", }, weightVal = { 2000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (14-16)% increased Damage" }, } },
+ ["DelveJewelMinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (4-6)% increased Attack Speed" }, [4000101551] = { "Minions have (4-6)% increased Cast Speed" }, } },
+ ["DelveStrengthGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Strength Gems", statOrder = { 158 }, level = 1, group = "DelveStrengthGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 750, 1600, 750, 750, 1000, 1000, 750, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [916797432] = { "+1 to Level of Socketed Strength Gems" }, } },
+ ["DelveDexterityGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Dexterity Gems", statOrder = { 160 }, level = 1, group = "DelveDexterityGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 750, 750, 750, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 1600, 1000, 750, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [2718698372] = { "+1 to Level of Socketed Dexterity Gems" }, } },
+ ["DelveIntelligenceGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Intelligence Gems", statOrder = { 161 }, level = 1, group = "DelveIntelligenceGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 750, 750, 750, 750, 1000, 1000, 1600, 750, 1600, 750, 750, 1000, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [1719423857] = { "+1 to Level of Socketed Intelligence Gems" }, } },
+ ["DelveAbyssJewelSocket1"] = { type = "Suffix", affix = "of the Underground", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { "abyss_jewel", "jewel", "weapon", "helmet", "boots", "gloves", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { }, tradeHashes = { [3527617737] = { "Has 1 Abyssal Socket" }, } },
+ ["DelveWeaponVaalSoulCost1h1_"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 20% reduced Souls Per Use", statOrder = { 9486 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [3533432197] = { "Non-Aura Vaal Skills require 20% reduced Souls Per Use" }, } },
+ ["DelveWeaponVaalSoulCost2h1"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 40% reduced Souls Per Use", statOrder = { 9486 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [3533432197] = { "Non-Aura Vaal Skills require 40% reduced Souls Per Use" }, } },
+ ["DelveArmourVaalSoulsOnKill1_"] = { type = "Suffix", affix = "of the Underground", "(5-8)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3104 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "helmet", "body_armour", "boots", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(5-8)% chance to gain an additional Vaal Soul on Kill" }, } },
+ ["DelveJewelVaalSoulsOnKill1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3104 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(3-5)% chance to gain an additional Vaal Soul on Kill" }, } },
+ ["DelveGlovesVaalSkillCriticalChance1"] = { type = "Suffix", affix = "of the Underground", "(80-120)% increased Vaal Skill Critical Strike Chance", statOrder = { 3107 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { "abyss_jewel", "jewel", "quiver", "gloves", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "critical", "vaal" }, tradeHashes = { [3165492062] = { "(80-120)% increased Vaal Skill Critical Strike Chance" }, } },
+ ["DelveAmuletVaalSkillDuration1"] = { type = "Suffix", affix = "of the Underground", "Vaal Skills have (15-25)% increased Skill Effect Duration", statOrder = { 3105 }, level = 1, group = "VaalSkillDuration", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, tradeHashes = { [547412107] = { "Vaal Skills have (15-25)% increased Skill Effect Duration" }, } },
+ ["DelveJewelryVaalSkillDamage1"] = { type = "Suffix", affix = "of the Underground", "(20-40)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 1, group = "VaalSkillDamage", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "damage", "vaal" }, tradeHashes = { [2257141320] = { "(20-40)% increased Damage with Vaal Skills" }, } },
+ ["DelveMapMonsterPacksVaalMapWorlds1"] = { type = "Prefix", affix = "Subterranean", "Area is inhabited by the Vaal", "Found Items have 10% chance to drop Corrupted in Area", statOrder = { 8762, 10826 }, level = 1, group = "MapMonsterPacksVaalMapWorlds", weightKey = { "map", "expedition_logbook", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [728267040] = { "Found Items have 10% chance to drop Corrupted in Area" }, [57434274] = { "" }, [2306002879] = { "" }, [2390685262] = { "" }, [2017682521] = { "" }, } },
}
\ No newline at end of file
diff --git a/src/Data/ModEldritch.lua b/src/Data/ModEldritch.lua
index 3fac5d42042..1fbe5debbbc 100644
--- a/src/Data/ModEldritch.lua
+++ b/src/Data/ModEldritch.lua
@@ -2,4072 +2,4072 @@
-- Item data (c) Grinding Gear Games
return {
- ["IncreasedAttackSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "8% increased Attack Speed" }, } },
- ["IncreasedAttackSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "9% increased Attack Speed" }, } },
- ["IncreasedAttackSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } },
- ["IncreasedAttackSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "11% increased Attack Speed" }, } },
- ["IncreasedAttackSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "12% increased Attack Speed" }, } },
- ["IncreasedAttackSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "13% increased Attack Speed" }, } },
- ["IncreasedAttackSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "12% increased Attack Speed" }, [4074358700] = { "" }, } },
- ["IncreasedAttackSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "13% increased Attack Speed" }, [4074358700] = { "" }, } },
- ["IncreasedAttackSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "14% increased Attack Speed" }, [4074358700] = { "" }, } },
- ["IncreasedAttackSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "15% increased Attack Speed" }, [4074358700] = { "" }, } },
- ["IncreasedAttackSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "16% increased Attack Speed" }, [4074358700] = { "" }, } },
- ["IncreasedAttackSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "17% increased Attack Speed" }, [4074358700] = { "" }, } },
- ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "16% increased Attack Speed" }, [3283106665] = { "" }, } },
- ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "17% increased Attack Speed" }, [3283106665] = { "" }, } },
- ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "18% increased Attack Speed" }, [3283106665] = { "" }, } },
- ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "19% increased Attack Speed" }, [3283106665] = { "" }, } },
- ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "20% increased Attack Speed" }, [3283106665] = { "" }, } },
- ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "21% increased Attack Speed" }, [3283106665] = { "" }, } },
- ["AttackCriticalStrikeChanceEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-21)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(19-21)% increased Critical Strike Chance for Attacks" }, } },
- ["AttackCriticalStrikeChanceEldritchImplicit2"] = { type = "Exarch", affix = "", "(22-24)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(22-24)% increased Critical Strike Chance for Attacks" }, } },
- ["AttackCriticalStrikeChanceEldritchImplicit3"] = { type = "Exarch", affix = "", "(25-27)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(25-27)% increased Critical Strike Chance for Attacks" }, } },
- ["AttackCriticalStrikeChanceEldritchImplicit4"] = { type = "Exarch", affix = "", "(28-30)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(28-30)% increased Critical Strike Chance for Attacks" }, } },
- ["AttackCriticalStrikeChanceEldritchImplicit5"] = { type = "Exarch", affix = "", "(31-33)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(31-33)% increased Critical Strike Chance for Attacks" }, } },
- ["AttackCriticalStrikeChanceEldritchImplicit6"] = { type = "Exarch", affix = "", "(34-36)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(34-36)% increased Critical Strike Chance for Attacks" }, } },
- ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(31-33)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } },
- ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(34-36)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } },
- ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(37-39)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } },
- ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(40-42)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } },
- ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(43-45)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } },
- ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(46-48)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } },
- ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(43-45)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } },
- ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(46-48)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } },
- ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(49-51)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } },
- ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(52-54)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } },
- ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(55-57)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } },
- ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(58-60)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } },
- ["AddedPhysicalDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (3-5) to (7-9) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-5) to (7-9) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (4-5) to (8-9) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-5) to (8-9) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (4-6) to (9-10) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-6) to (9-10) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (5-6) to (10-11) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-6) to (10-11) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (11-12) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (6-7) to (12-14) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-7) to (12-14) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (5-6) to (10-11) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (5-6) to (10-11) Physical Damage to Attacks" }, [4074358700] = { "" }, } },
- ["AddedPhysicalDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (11-12) Physical Damage to Attacks" }, [4074358700] = { "" }, } },
- ["AddedPhysicalDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-7) to (12-14) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (6-7) to (12-14) Physical Damage to Attacks" }, [4074358700] = { "" }, } },
- ["AddedPhysicalDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (6-9) to (13-15) Physical Damage to Attacks" }, [4074358700] = { "" }, } },
- ["AddedPhysicalDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-9) to (14-17) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (7-9) to (14-17) Physical Damage to Attacks" }, [4074358700] = { "" }, } },
- ["AddedPhysicalDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-10) to (16-18) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (8-10) to (16-18) Physical Damage to Attacks" }, [4074358700] = { "" }, } },
- ["AddedPhysicalDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (6-9) to (13-15) Physical Damage to Attacks" }, [3283106665] = { "" }, } },
- ["AddedPhysicalDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (7-9) to (14-17) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (7-9) to (14-17) Physical Damage to Attacks" }, [3283106665] = { "" }, } },
- ["AddedPhysicalDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (8-10) to (16-18) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (8-10) to (16-18) Physical Damage to Attacks" }, [3283106665] = { "" }, } },
- ["AddedPhysicalDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (9-12) to (18-21) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (9-12) to (18-21) Physical Damage to Attacks" }, [3283106665] = { "" }, } },
- ["AddedPhysicalDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-14) to (21-24) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (10-14) to (21-24) Physical Damage to Attacks" }, [3283106665] = { "" }, } },
- ["AddedPhysicalDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-15) to (24-28) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (12-15) to (24-28) Physical Damage to Attacks" }, [3283106665] = { "" }, } },
- ["AddedFireDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (6-8) to (13-15) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (6-8) to (13-15) Fire Damage to Attacks" }, } },
- ["AddedFireDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (7-9) to (14-16) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (7-9) to (14-16) Fire Damage to Attacks" }, } },
- ["AddedFireDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (8-10) to (15-18) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-10) to (15-18) Fire Damage to Attacks" }, } },
- ["AddedFireDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-20) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-11) to (17-20) Fire Damage to Attacks" }, } },
- ["AddedFireDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (9-12) to (19-22) Fire Damage to Attacks" }, } },
- ["AddedFireDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (10-13) to (21-24) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (10-13) to (21-24) Fire Damage to Attacks" }, } },
- ["AddedFireDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-11) to (17-20) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (8-11) to (17-20) Fire Damage to Attacks" }, } },
- ["AddedFireDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (9-12) to (19-22) Fire Damage to Attacks" }, } },
- ["AddedFireDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (21-24) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (10-13) to (21-24) Fire Damage to Attacks" }, } },
- ["AddedFireDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-26) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (11-15) to (23-26) Fire Damage to Attacks" }, } },
- ["AddedFireDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-29) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (13-16) to (25-29) Fire Damage to Attacks" }, } },
- ["AddedFireDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-18) to (28-32) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (13-18) to (28-32) Fire Damage to Attacks" }, } },
- ["AddedFireDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (11-15) to (23-26) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (11-15) to (23-26) Fire Damage to Attacks" }, } },
- ["AddedFireDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-16) to (25-29) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (13-16) to (25-29) Fire Damage to Attacks" }, } },
- ["AddedFireDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (13-18) to (28-32) Fire Damage to Attacks" }, } },
- ["AddedFireDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-20) to (32-37) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (16-20) to (32-37) Fire Damage to Attacks" }, } },
- ["AddedFireDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-42) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (18-24) to (37-42) Fire Damage to Attacks" }, } },
- ["AddedFireDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (21-27) to (42-49) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (21-27) to (42-49) Fire Damage to Attacks" }, } },
- ["AddedColdDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (6-7) to (11-13) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (6-7) to (11-13) Cold Damage to Attacks" }, } },
- ["AddedColdDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (6-8) to (12-15) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (6-8) to (12-15) Cold Damage to Attacks" }, } },
- ["AddedColdDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (7-9) to (13-16) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (7-9) to (13-16) Cold Damage to Attacks" }, } },
- ["AddedColdDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (7-10) to (15-18) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (7-10) to (15-18) Cold Damage to Attacks" }, } },
- ["AddedColdDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-19) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (8-11) to (17-19) Cold Damage to Attacks" }, } },
- ["AddedColdDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (9-12) to (18-22) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (9-12) to (18-22) Cold Damage to Attacks" }, } },
- ["AddedColdDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-10) to (15-18) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (7-10) to (15-18) Cold Damage to Attacks" }, } },
- ["AddedColdDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-11) to (17-19) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (8-11) to (17-19) Cold Damage to Attacks" }, } },
- ["AddedColdDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-12) to (18-22) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (9-12) to (18-22) Cold Damage to Attacks" }, } },
- ["AddedColdDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (10-13) to (20-24) Cold Damage to Attacks" }, } },
- ["AddedColdDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (22-26) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (11-15) to (22-26) Cold Damage to Attacks" }, } },
- ["AddedColdDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (12-16) to (24-29) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (12-16) to (24-29) Cold Damage to Attacks" }, } },
- ["AddedColdDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (10-13) to (20-24) Cold Damage to Attacks" }, } },
- ["AddedColdDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (11-15) to (22-26) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (11-15) to (22-26) Cold Damage to Attacks" }, } },
- ["AddedColdDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-16) to (24-29) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (12-16) to (24-29) Cold Damage to Attacks" }, } },
- ["AddedColdDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (14-18) to (28-33) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (14-18) to (28-33) Cold Damage to Attacks" }, } },
- ["AddedColdDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-21) to (32-38) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (16-21) to (32-38) Cold Damage to Attacks" }, } },
- ["AddedColdDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-44) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (18-24) to (37-44) Cold Damage to Attacks" }, } },
- ["AddedLightningDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (1-2) to (22-24) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (22-24) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (1-3) to (24-26) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (24-26) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (1-3) to (27-28) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (27-28) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (29-32) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (2-4) to (32-35) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (32-35) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (2-4) to (36-38) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (36-38) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (29-32) Lightning Damage to Attacks" }, [4074358700] = { "" }, } },
- ["AddedLightningDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (32-35) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (32-35) Lightning Damage to Attacks" }, [4074358700] = { "" }, } },
- ["AddedLightningDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (36-38) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (36-38) Lightning Damage to Attacks" }, [4074358700] = { "" }, } },
- ["AddedLightningDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (39-42) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (39-42) Lightning Damage to Attacks" }, [4074358700] = { "" }, } },
- ["AddedLightningDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (43-47) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (43-47) Lightning Damage to Attacks" }, [4074358700] = { "" }, } },
- ["AddedLightningDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (48-51) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-5) to (48-51) Lightning Damage to Attacks" }, [4074358700] = { "" }, } },
- ["AddedLightningDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-4) to (39-42) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (39-42) Lightning Damage to Attacks" }, [3283106665] = { "" }, } },
- ["AddedLightningDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-4) to (43-47) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (43-47) Lightning Damage to Attacks" }, [3283106665] = { "" }, } },
- ["AddedLightningDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-5) to (48-51) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-5) to (48-51) Lightning Damage to Attacks" }, [3283106665] = { "" }, } },
- ["AddedLightningDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-6) to (55-59) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-6) to (55-59) Lightning Damage to Attacks" }, [3283106665] = { "" }, } },
- ["AddedLightningDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-6) to (63-68) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (3-6) to (63-68) Lightning Damage to Attacks" }, [3283106665] = { "" }, } },
- ["AddedLightningDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (3-8) to (72-78) Lightning Damage to Attacks" }, [3283106665] = { "" }, } },
- ["AddedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (5-6) to (10-11) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (5-6) to (10-11) Chaos Damage to Attacks" }, } },
- ["AddedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (5-7) to (11-12) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (5-7) to (11-12) Chaos Damage to Attacks" }, } },
- ["AddedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (6-7) to (12-14) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (6-7) to (12-14) Chaos Damage to Attacks" }, } },
- ["AddedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (6-9) to (13-15) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (6-9) to (13-15) Chaos Damage to Attacks" }, } },
- ["AddedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (7-9) to (14-17) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (7-9) to (14-17) Chaos Damage to Attacks" }, } },
- ["AddedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (8-10) to (16-18) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (8-10) to (16-18) Chaos Damage to Attacks" }, } },
- ["AddedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-9) to (13-15) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (6-9) to (13-15) Chaos Damage to Attacks" }, } },
- ["AddedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-9) to (14-17) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (7-9) to (14-17) Chaos Damage to Attacks" }, } },
- ["AddedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-10) to (16-18) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (8-10) to (16-18) Chaos Damage to Attacks" }, } },
- ["AddedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-11) to (17-20) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (9-11) to (17-20) Chaos Damage to Attacks" }, } },
- ["AddedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (19-22) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (10-13) to (19-22) Chaos Damage to Attacks" }, } },
- ["AddedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-14) to (21-24) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (10-14) to (21-24) Chaos Damage to Attacks" }, } },
- ["AddedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (9-11) to (17-20) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (9-11) to (17-20) Chaos Damage to Attacks" }, } },
- ["AddedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-13) to (19-22) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (10-13) to (19-22) Chaos Damage to Attacks" }, } },
- ["AddedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-14) to (21-24) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (10-14) to (21-24) Chaos Damage to Attacks" }, } },
- ["AddedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-15) to (24-28) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (12-15) to (24-28) Chaos Damage to Attacks" }, } },
- ["AddedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (13-18) to (28-32) Chaos Damage to Attacks" }, } },
- ["AddedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-20) to (32-37) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (16-20) to (32-37) Chaos Damage to Attacks" }, } },
- ["FireDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(5-7)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(8-10)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(11-13)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(14-16)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(17-18)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(19-20)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(14-16)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } },
- ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(17-19)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } },
- ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(20-22)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } },
- ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(23-25)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } },
- ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(26-27)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } },
- ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(28-29)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } },
- ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(23-25)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } },
- ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(26-28)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } },
- ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(29-31)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } },
- ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(32-34)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } },
- ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(35-36)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } },
- ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(37-38)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } },
- ["ColdDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(5-7)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(8-10)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(11-13)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(14-16)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(17-18)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(19-20)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(14-16)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } },
- ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(17-19)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } },
- ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(20-22)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } },
- ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(23-25)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } },
- ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(26-27)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } },
- ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(28-29)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } },
- ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(23-25)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } },
- ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(26-28)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } },
- ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(29-31)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } },
- ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(32-34)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } },
- ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(35-36)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } },
- ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(37-38)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } },
- ["PhysicalDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(5-7)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(8-10)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(11-13)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(14-16)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(17-18)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(19-20)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(14-16)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(17-19)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(20-22)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(23-25)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(26-27)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(28-29)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(23-25)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(26-28)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(29-31)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(32-34)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(35-36)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(37-38)% to Physical Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(5-7)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(8-10)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(11-13)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(14-16)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(17-18)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(19-20)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(14-16)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(17-19)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(20-22)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(23-25)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(26-27)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(28-29)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(23-25)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(26-28)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(29-31)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(32-34)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(35-36)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(37-38)% to Chaos Damage over Time Multiplier" }, } },
- ["HeraldBonusAshEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Ash has (15-17)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (15-17)% increased Buff Effect" }, } },
- ["HeraldBonusAshEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Ash has (18-20)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (18-20)% increased Buff Effect" }, } },
- ["HeraldBonusAshEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Ash has (21-23)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (21-23)% increased Buff Effect" }, } },
- ["HeraldBonusAshEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Ash has (24-26)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (24-26)% increased Buff Effect" }, } },
- ["HeraldBonusAshEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Ash has (27-28)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (27-28)% increased Buff Effect" }, } },
- ["HeraldBonusAshEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Ash has (29-30)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (29-30)% increased Buff Effect" }, } },
- ["HeraldBonusAshEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (24-26)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (24-26)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["HeraldBonusAshEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (27-29)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (27-29)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["HeraldBonusAshEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (30-32)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (30-32)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["HeraldBonusAshEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (33-35)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (33-35)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["HeraldBonusAshEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (36-37)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (36-37)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["HeraldBonusAshEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (38-39)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (38-39)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (33-35)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (33-35)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (36-38)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (36-38)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (39-41)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (39-41)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (42-44)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (42-44)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (45-46)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (45-46)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (47-48)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (47-48)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["HeraldBonusIceEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Ice has (15-17)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (15-17)% increased Buff Effect" }, } },
- ["HeraldBonusIceEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Ice has (18-20)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (18-20)% increased Buff Effect" }, } },
- ["HeraldBonusIceEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Ice has (21-23)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (21-23)% increased Buff Effect" }, } },
- ["HeraldBonusIceEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Ice has (24-26)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (24-26)% increased Buff Effect" }, } },
- ["HeraldBonusIceEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Ice has (27-28)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (27-28)% increased Buff Effect" }, } },
- ["HeraldBonusIceEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Ice has (29-30)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (29-30)% increased Buff Effect" }, } },
- ["HeraldBonusIceEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (24-26)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (24-26)% increased Buff Effect" }, } },
- ["HeraldBonusIceEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (27-29)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (27-29)% increased Buff Effect" }, } },
- ["HeraldBonusIceEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (30-32)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (30-32)% increased Buff Effect" }, } },
- ["HeraldBonusIceEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (33-35)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (33-35)% increased Buff Effect" }, } },
- ["HeraldBonusIceEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (36-37)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (36-37)% increased Buff Effect" }, } },
- ["HeraldBonusIceEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (38-39)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (38-39)% increased Buff Effect" }, } },
- ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (33-35)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (33-35)% increased Buff Effect" }, } },
- ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (36-38)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (36-38)% increased Buff Effect" }, } },
- ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (39-41)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (39-41)% increased Buff Effect" }, } },
- ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (42-44)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (42-44)% increased Buff Effect" }, } },
- ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (45-46)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (45-46)% increased Buff Effect" }, } },
- ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (47-48)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (47-48)% increased Buff Effect" }, } },
- ["HeraldBonusThunderEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Thunder has (15-17)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (15-17)% increased Buff Effect" }, } },
- ["HeraldBonusThunderEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Thunder has (18-20)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (18-20)% increased Buff Effect" }, } },
- ["HeraldBonusThunderEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Thunder has (21-23)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (21-23)% increased Buff Effect" }, } },
- ["HeraldBonusThunderEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Thunder has (24-26)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (24-26)% increased Buff Effect" }, } },
- ["HeraldBonusThunderEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Thunder has (27-28)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (27-28)% increased Buff Effect" }, } },
- ["HeraldBonusThunderEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Thunder has (29-30)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (29-30)% increased Buff Effect" }, } },
- ["HeraldBonusThunderEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (24-26)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (24-26)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["HeraldBonusThunderEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (27-29)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (27-29)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["HeraldBonusThunderEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (30-32)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (30-32)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["HeraldBonusThunderEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (33-35)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (33-35)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["HeraldBonusThunderEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (36-37)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (36-37)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["HeraldBonusThunderEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (38-39)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (38-39)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (33-35)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (33-35)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (36-38)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (36-38)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (39-41)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (39-41)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (42-44)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (42-44)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (45-46)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (45-46)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (47-48)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (47-48)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["HeraldBonusPurityEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Purity has (15-17)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (15-17)% increased Buff Effect" }, } },
- ["HeraldBonusPurityEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Purity has (18-20)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (18-20)% increased Buff Effect" }, } },
- ["HeraldBonusPurityEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Purity has (21-23)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (21-23)% increased Buff Effect" }, } },
- ["HeraldBonusPurityEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Purity has (24-26)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (24-26)% increased Buff Effect" }, } },
- ["HeraldBonusPurityEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Purity has (27-28)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (27-28)% increased Buff Effect" }, } },
- ["HeraldBonusPurityEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Purity has (29-30)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (29-30)% increased Buff Effect" }, } },
- ["HeraldBonusPurityEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (24-26)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (24-26)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["HeraldBonusPurityEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (27-29)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (27-29)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["HeraldBonusPurityEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (30-32)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (30-32)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["HeraldBonusPurityEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (33-35)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (33-35)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["HeraldBonusPurityEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (36-37)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (36-37)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["HeraldBonusPurityEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (38-39)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (38-39)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (33-35)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (33-35)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (36-38)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (36-38)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (39-41)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (39-41)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (42-44)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (42-44)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (45-46)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (45-46)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (47-48)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (47-48)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["HeraldBonusAgonyEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Agony has (15-17)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (15-17)% increased Buff Effect" }, } },
- ["HeraldBonusAgonyEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Agony has (18-20)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (18-20)% increased Buff Effect" }, } },
- ["HeraldBonusAgonyEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Agony has (21-23)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (21-23)% increased Buff Effect" }, } },
- ["HeraldBonusAgonyEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Agony has (24-26)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (24-26)% increased Buff Effect" }, } },
- ["HeraldBonusAgonyEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Agony has (27-28)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (27-28)% increased Buff Effect" }, } },
- ["HeraldBonusAgonyEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Agony has (29-30)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (29-30)% increased Buff Effect" }, } },
- ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (24-26)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (24-26)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (27-29)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (27-29)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (30-32)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (30-32)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (33-35)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (33-35)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (36-37)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (36-37)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (38-39)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (38-39)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (33-35)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (33-35)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (36-38)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (36-38)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (39-41)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (39-41)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (42-44)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (42-44)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (45-46)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (45-46)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (47-48)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (47-48)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["IgniteProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.2 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.2 metres" }, } },
- ["IgniteProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.3 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.3 metres" }, } },
- ["IgniteProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.4 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.4 metres" }, } },
- ["IgniteProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.5 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.5 metres" }, } },
- ["IgniteProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.6 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.6 metres" }, } },
- ["IgniteProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.7 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.7 metres" }, } },
- ["IgniteProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.5 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.5 metres" }, [4074358700] = { "" }, } },
- ["IgniteProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.6 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.6 metres" }, [4074358700] = { "" }, } },
- ["IgniteProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.7 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.7 metres" }, [4074358700] = { "" }, } },
- ["IgniteProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.8 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.8 metres" }, [4074358700] = { "" }, } },
- ["IgniteProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.9 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.9 metres" }, [4074358700] = { "" }, } },
- ["IgniteProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 2 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2 metres" }, [4074358700] = { "" }, } },
- ["IgniteProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 1.8 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.8 metres" }, [3283106665] = { "" }, } },
- ["IgniteProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 1.9 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.9 metres" }, [3283106665] = { "" }, } },
- ["IgniteProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2 metres" }, [3283106665] = { "" }, } },
- ["IgniteProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.1 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2.1 metres" }, [3283106665] = { "" }, } },
- ["IgniteProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.2 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2.2 metres" }, [3283106665] = { "" }, } },
- ["IgniteProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.3 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2.3 metres" }, [3283106665] = { "" }, } },
- ["FreezeProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.2 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.2 metres" }, } },
- ["FreezeProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.3 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.3 metres" }, } },
- ["FreezeProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.4 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.4 metres" }, } },
- ["FreezeProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.5 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.5 metres" }, } },
- ["FreezeProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.6 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.6 metres" }, } },
- ["FreezeProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.7 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.7 metres" }, } },
- ["FreezeProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.5 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.5 metres" }, } },
- ["FreezeProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.6 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.6 metres" }, } },
- ["FreezeProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.7 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.7 metres" }, } },
- ["FreezeProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.8 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.8 metres" }, } },
- ["FreezeProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.9 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.9 metres" }, } },
- ["FreezeProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 2 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 2 metres" }, } },
- ["FreezeProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 1.8 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.8 metres" }, } },
- ["FreezeProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 1.9 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.9 metres" }, } },
- ["FreezeProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 2 metres" }, } },
- ["FreezeProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.1 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 2.1 metres" }, } },
- ["FreezeProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.2 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 2.2 metres" }, } },
- ["FreezeProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.3 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 2.3 metres" }, } },
- ["ShockProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.2 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.2 metres" }, } },
- ["ShockProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.3 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.3 metres" }, } },
- ["ShockProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.4 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.4 metres" }, } },
- ["ShockProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.5 metres" }, } },
- ["ShockProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.6 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.6 metres" }, } },
- ["ShockProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.7 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.7 metres" }, } },
- ["ShockProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.5 metres" }, [4074358700] = { "" }, } },
- ["ShockProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.6 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.6 metres" }, [4074358700] = { "" }, } },
- ["ShockProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.7 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.7 metres" }, [4074358700] = { "" }, } },
- ["ShockProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.8 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.8 metres" }, [4074358700] = { "" }, } },
- ["ShockProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.9 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.9 metres" }, [4074358700] = { "" }, } },
- ["ShockProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 2 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2 metres" }, [4074358700] = { "" }, } },
- ["ShockProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 1.8 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.8 metres" }, [3283106665] = { "" }, } },
- ["ShockProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 1.9 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.9 metres" }, [3283106665] = { "" }, } },
- ["ShockProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2 metres" }, [3283106665] = { "" }, } },
- ["ShockProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.1 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2.1 metres" }, [3283106665] = { "" }, } },
- ["ShockProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.2 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2.2 metres" }, [3283106665] = { "" }, } },
- ["ShockProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.3 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2.3 metres" }, [3283106665] = { "" }, } },
- ["StunThresholdReductionEldritchImplicit1"] = { type = "Exarch", affix = "", "(6-7)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(6-7)% reduced Enemy Stun Threshold" }, } },
- ["StunThresholdReductionEldritchImplicit2"] = { type = "Exarch", affix = "", "(8-9)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(8-9)% reduced Enemy Stun Threshold" }, } },
- ["StunThresholdReductionEldritchImplicit3"] = { type = "Exarch", affix = "", "(10-11)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(10-11)% reduced Enemy Stun Threshold" }, } },
- ["StunThresholdReductionEldritchImplicit4"] = { type = "Exarch", affix = "", "(12-13)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(12-13)% reduced Enemy Stun Threshold" }, } },
- ["StunThresholdReductionEldritchImplicit5"] = { type = "Exarch", affix = "", "(14-15)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(14-15)% reduced Enemy Stun Threshold" }, } },
- ["StunThresholdReductionEldritchImplicit6"] = { type = "Exarch", affix = "", "(16-17)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(16-17)% reduced Enemy Stun Threshold" }, } },
- ["StunThresholdReductionEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (12-13)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(12-13)% reduced Enemy Stun Threshold" }, } },
- ["StunThresholdReductionEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(14-15)% reduced Enemy Stun Threshold" }, } },
- ["StunThresholdReductionEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(16-17)% reduced Enemy Stun Threshold" }, } },
- ["StunThresholdReductionEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(18-19)% reduced Enemy Stun Threshold" }, } },
- ["StunThresholdReductionEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(20-21)% reduced Enemy Stun Threshold" }, } },
- ["StunThresholdReductionEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(22-23)% reduced Enemy Stun Threshold" }, } },
- ["StunThresholdReductionEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(18-19)% reduced Enemy Stun Threshold" }, } },
- ["StunThresholdReductionEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(20-21)% reduced Enemy Stun Threshold" }, } },
- ["StunThresholdReductionEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(22-23)% reduced Enemy Stun Threshold" }, } },
- ["StunThresholdReductionEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(24-25)% reduced Enemy Stun Threshold" }, } },
- ["StunThresholdReductionEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(26-27)% reduced Enemy Stun Threshold" }, } },
- ["StunThresholdReductionEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(28-29)% reduced Enemy Stun Threshold" }, } },
- ["MinionDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions deal (14-16)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (14-16)% increased Damage" }, } },
- ["MinionDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions deal (17-19)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (17-19)% increased Damage" }, } },
- ["MinionDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions deal (20-22)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-22)% increased Damage" }, } },
- ["MinionDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions deal (23-25)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (23-25)% increased Damage" }, } },
- ["MinionDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions deal (26-27)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (26-27)% increased Damage" }, } },
- ["MinionDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions deal (28-29)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (28-29)% increased Damage" }, } },
- ["MinionDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (26-28)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (26-28)% increased Damage" }, } },
- ["MinionDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (29-31)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (29-31)% increased Damage" }, } },
- ["MinionDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (32-34)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (32-34)% increased Damage" }, } },
- ["MinionDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (35-37)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (35-37)% increased Damage" }, } },
- ["MinionDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (38-39)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (38-39)% increased Damage" }, } },
- ["MinionDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (40-41)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (40-41)% increased Damage" }, } },
- ["MinionDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (38-40)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (38-40)% increased Damage" }, } },
- ["MinionDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (41-43)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (41-43)% increased Damage" }, } },
- ["MinionDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (44-46)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (44-46)% increased Damage" }, } },
- ["MinionDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (47-49)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (47-49)% increased Damage" }, } },
- ["MinionDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (50-51)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (50-51)% increased Damage" }, } },
- ["MinionDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (52-53)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (52-53)% increased Damage" }, } },
- ["TrapThrowSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "8% increased Trap Throwing Speed" }, } },
- ["TrapThrowSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "9% increased Trap Throwing Speed" }, } },
- ["TrapThrowSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "10% increased Trap Throwing Speed" }, } },
- ["TrapThrowSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "11% increased Trap Throwing Speed" }, } },
- ["TrapThrowSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "12% increased Trap Throwing Speed" }, } },
- ["TrapThrowSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "13% increased Trap Throwing Speed" }, } },
- ["TrapThrowSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "12% increased Trap Throwing Speed" }, [4074358700] = { "" }, } },
- ["TrapThrowSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "13% increased Trap Throwing Speed" }, [4074358700] = { "" }, } },
- ["TrapThrowSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "14% increased Trap Throwing Speed" }, [4074358700] = { "" }, } },
- ["TrapThrowSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "15% increased Trap Throwing Speed" }, [4074358700] = { "" }, } },
- ["TrapThrowSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "16% increased Trap Throwing Speed" }, [4074358700] = { "" }, } },
- ["TrapThrowSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "17% increased Trap Throwing Speed" }, [4074358700] = { "" }, } },
- ["TrapThrowSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "16% increased Trap Throwing Speed" }, [3283106665] = { "" }, } },
- ["TrapThrowSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "17% increased Trap Throwing Speed" }, [3283106665] = { "" }, } },
- ["TrapThrowSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "18% increased Trap Throwing Speed" }, [3283106665] = { "" }, } },
- ["TrapThrowSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "19% increased Trap Throwing Speed" }, [3283106665] = { "" }, } },
- ["TrapThrowSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "20% increased Trap Throwing Speed" }, [3283106665] = { "" }, } },
- ["TrapThrowSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "21% increased Trap Throwing Speed" }, [3283106665] = { "" }, } },
- ["MineLayingSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "8% increased Mine Throwing Speed" }, } },
- ["MineLayingSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "9% increased Mine Throwing Speed" }, } },
- ["MineLayingSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "10% increased Mine Throwing Speed" }, } },
- ["MineLayingSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "11% increased Mine Throwing Speed" }, } },
- ["MineLayingSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "12% increased Mine Throwing Speed" }, } },
- ["MineLayingSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "13% increased Mine Throwing Speed" }, } },
- ["MineLayingSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "12% increased Mine Throwing Speed" }, } },
- ["MineLayingSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "13% increased Mine Throwing Speed" }, } },
- ["MineLayingSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "14% increased Mine Throwing Speed" }, } },
- ["MineLayingSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "15% increased Mine Throwing Speed" }, } },
- ["MineLayingSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "16% increased Mine Throwing Speed" }, } },
- ["MineLayingSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "17% increased Mine Throwing Speed" }, } },
- ["MineLayingSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "16% increased Mine Throwing Speed" }, } },
- ["MineLayingSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "17% increased Mine Throwing Speed" }, } },
- ["MineLayingSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "18% increased Mine Throwing Speed" }, } },
- ["MineLayingSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "19% increased Mine Throwing Speed" }, } },
- ["MineLayingSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "20% increased Mine Throwing Speed" }, } },
- ["MineLayingSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "21% increased Mine Throwing Speed" }, } },
- ["ExtinguishOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "15% chance to Extinguish Enemies on Hit" }, } },
- ["ExtinguishOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "20% chance to Extinguish Enemies on Hit" }, } },
- ["ExtinguishOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "25% chance to Extinguish Enemies on Hit" }, } },
- ["ExtinguishOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "30% chance to Extinguish Enemies on Hit" }, } },
- ["ExtinguishOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "35% chance to Extinguish Enemies on Hit" }, } },
- ["ExtinguishOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "40% chance to Extinguish Enemies on Hit" }, } },
- ["ExtinguishOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "45% chance to Extinguish Enemies on Hit" }, } },
- ["ExtinguishOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "50% chance to Extinguish Enemies on Hit" }, } },
- ["ExtinguishOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "55% chance to Extinguish Enemies on Hit" }, } },
- ["ExtinguishOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "60% chance to Extinguish Enemies on Hit" }, } },
- ["ExtinguishOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "65% chance to Extinguish Enemies on Hit" }, } },
- ["ExtinguishOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "70% chance to Extinguish Enemies on Hit" }, } },
- ["ExtinguishOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "75% chance to Extinguish Enemies on Hit" }, } },
- ["ExtinguishOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "80% chance to Extinguish Enemies on Hit" }, } },
- ["ExtinguishOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "85% chance to Extinguish Enemies on Hit" }, } },
- ["ExtinguishOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "90% chance to Extinguish Enemies on Hit" }, } },
- ["ExtinguishOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "95% chance to Extinguish Enemies on Hit" }, } },
- ["ExtinguishOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "100% chance to Extinguish Enemies on Hit" }, } },
- ["MaximumColdResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } },
- ["MaximumColdResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } },
- ["MaximumColdResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } },
- ["MaximumColdResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } },
- ["MaximumColdResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } },
- ["MaximumColdResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } },
- ["MaximumColdResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } },
- ["MaximumColdResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } },
- ["MaximumColdResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } },
- ["MaximumColdResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } },
- ["MaximumColdResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [4074358700] = { "" }, } },
- ["MaximumColdResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [4074358700] = { "" }, } },
- ["MaximumColdResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } },
- ["MaximumColdResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } },
- ["MaximumColdResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } },
- ["MaximumColdResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } },
- ["MaximumColdResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [3283106665] = { "" }, } },
- ["MaximumColdResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [3283106665] = { "" }, } },
- ["DamagePerFrenzyChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "4% increased Damage per Frenzy Charge" }, } },
- ["DamagePerFrenzyChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "4% increased Damage per Frenzy Charge" }, } },
- ["DamagePerFrenzyChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "5% increased Damage per Frenzy Charge" }, } },
- ["DamagePerFrenzyChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "5% increased Damage per Frenzy Charge" }, } },
- ["DamagePerFrenzyChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "6% increased Damage per Frenzy Charge" }, } },
- ["DamagePerFrenzyChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "6% increased Damage per Frenzy Charge" }, } },
- ["DamagePerFrenzyChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "5% increased Damage per Frenzy Charge" }, } },
- ["DamagePerFrenzyChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "5% increased Damage per Frenzy Charge" }, } },
- ["DamagePerFrenzyChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "6% increased Damage per Frenzy Charge" }, } },
- ["DamagePerFrenzyChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "6% increased Damage per Frenzy Charge" }, } },
- ["DamagePerFrenzyChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "7% increased Damage per Frenzy Charge" }, } },
- ["DamagePerFrenzyChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "7% increased Damage per Frenzy Charge" }, } },
- ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "6% increased Damage per Frenzy Charge" }, } },
- ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "6% increased Damage per Frenzy Charge" }, } },
- ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "7% increased Damage per Frenzy Charge" }, } },
- ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "7% increased Damage per Frenzy Charge" }, } },
- ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "8% increased Damage per Frenzy Charge" }, } },
- ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "8% increased Damage per Frenzy Charge" }, } },
- ["StrikeSkillsAdditionalTargetEldritchImplicit1"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } },
- ["StrikeSkillsAdditionalTargetEldritchImplicit2"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } },
- ["StrikeSkillsAdditionalTargetEldritchImplicit3"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } },
- ["StrikeSkillsAdditionalTargetEldritchImplicit4"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } },
- ["StrikeSkillsAdditionalTargetEldritchImplicit5"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } },
- ["StrikeSkillsAdditionalTargetEldritchImplicit6"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } },
- ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } },
- ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } },
- ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } },
- ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } },
- ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } },
- ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } },
- ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } },
- ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } },
- ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } },
- ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } },
- ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 4 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 4 additional nearby Enemies" }, } },
- ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 4 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 4 additional nearby Enemies" }, } },
- ["RageOnHitImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } },
- ["RageOnHitImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } },
- ["RageOnHitImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } },
- ["RageOnHitImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } },
- ["RageOnHitImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } },
- ["RageOnHitImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } },
- ["RageOnHitImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } },
- ["RageOnHitImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } },
- ["RageOnHitImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } },
- ["RageOnHitImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } },
- ["RageOnHitImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } },
- ["RageOnHitImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } },
- ["RageOnHitImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } },
- ["RageOnHitImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } },
- ["RageOnHitImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } },
- ["RageOnHitImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } },
- ["RageOnHitImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } },
- ["RageOnHitImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } },
- ["RageOnAttackHitEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 1 Rage on Attack Hit" }, } },
- ["RageOnAttackHitEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 1 Rage on Attack Hit" }, } },
- ["RageOnAttackHitEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 1 Rage on Attack Hit" }, } },
- ["RageOnAttackHitEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 1 Rage on Attack Hit" }, } },
- ["RageOnAttackHitEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain 2 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 2 Rage on Attack Hit" }, } },
- ["RageOnAttackHitEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain 2 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 2 Rage on Attack Hit" }, } },
- ["RageOnAttackHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 2 Rage on Attack Hit" }, } },
- ["RageOnAttackHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 2 Rage on Attack Hit" }, } },
- ["RageOnAttackHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 2 Rage on Attack Hit" }, } },
- ["RageOnAttackHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 2 Rage on Attack Hit" }, } },
- ["RageOnAttackHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } },
- ["RageOnAttackHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } },
- ["RageOnAttackHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } },
- ["RageOnAttackHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } },
- ["RageOnAttackHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } },
- ["RageOnAttackHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } },
- ["RageOnAttackHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 4 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 4 Rage on Attack Hit" }, } },
- ["RageOnAttackHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 4 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 4 Rage on Attack Hit" }, } },
- ["ChanceToIntimidateOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "15% chance to Intimidate Enemies for 4 seconds on Hit" }, } },
- ["ChanceToIntimidateOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "20% chance to Intimidate Enemies for 4 seconds on Hit" }, } },
- ["ChanceToIntimidateOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "25% chance to Intimidate Enemies for 4 seconds on Hit" }, } },
- ["ChanceToIntimidateOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "30% chance to Intimidate Enemies for 4 seconds on Hit" }, } },
- ["ChanceToIntimidateOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "35% chance to Intimidate Enemies for 4 seconds on Hit" }, } },
- ["ChanceToIntimidateOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "40% chance to Intimidate Enemies for 4 seconds on Hit" }, } },
- ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [78985352] = { "45% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } },
- ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "50% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } },
- ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "55% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } },
- ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "60% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } },
- ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "65% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } },
- ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "70% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } },
- ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [78985352] = { "75% chance to Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } },
- ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [78985352] = { "80% chance to Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } },
- ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [78985352] = { "85% chance to Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } },
- ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [78985352] = { "90% chance to Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } },
- ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [78985352] = { "95% chance to Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } },
- ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [78985352] = { "Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } },
- ["ChanceToUnnerveOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "15% chance to Unnerve Enemies for 4 seconds on Hit" }, } },
- ["ChanceToUnnerveOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "20% chance to Unnerve Enemies for 4 seconds on Hit" }, } },
- ["ChanceToUnnerveOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "25% chance to Unnerve Enemies for 4 seconds on Hit" }, } },
- ["ChanceToUnnerveOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "30% chance to Unnerve Enemies for 4 seconds on Hit" }, } },
- ["ChanceToUnnerveOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "35% chance to Unnerve Enemies for 4 seconds on Hit" }, } },
- ["ChanceToUnnerveOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "40% chance to Unnerve Enemies for 4 seconds on Hit" }, } },
- ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [763611529] = { "45% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } },
- ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "50% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } },
- ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "55% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } },
- ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "60% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } },
- ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "65% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } },
- ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "70% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } },
- ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [763611529] = { "75% chance to Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } },
- ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [763611529] = { "80% chance to Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } },
- ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [763611529] = { "85% chance to Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } },
- ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [763611529] = { "90% chance to Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } },
- ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [763611529] = { "95% chance to Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } },
- ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [763611529] = { "Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } },
- ["ChanceToSuppressSpellsEldritchImplicit1"] = { type = "Eater", affix = "", "+5% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+5% chance to Suppress Spell Damage" }, } },
- ["ChanceToSuppressSpellsEldritchImplicit2"] = { type = "Eater", affix = "", "+6% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+6% chance to Suppress Spell Damage" }, } },
- ["ChanceToSuppressSpellsEldritchImplicit3"] = { type = "Eater", affix = "", "+7% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+7% chance to Suppress Spell Damage" }, } },
- ["ChanceToSuppressSpellsEldritchImplicit4"] = { type = "Eater", affix = "", "+8% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+8% chance to Suppress Spell Damage" }, } },
- ["ChanceToSuppressSpellsEldritchImplicit5"] = { type = "Eater", affix = "", "+9% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+9% chance to Suppress Spell Damage" }, } },
- ["ChanceToSuppressSpellsEldritchImplicit6"] = { type = "Eater", affix = "", "+10% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+10% chance to Suppress Spell Damage" }, } },
- ["ChanceToSuppressSpellsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +7% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+7% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } },
- ["ChanceToSuppressSpellsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +8% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+8% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } },
- ["ChanceToSuppressSpellsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +9% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+9% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } },
- ["ChanceToSuppressSpellsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +10% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+10% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } },
- ["ChanceToSuppressSpellsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +11% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+11% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } },
- ["ChanceToSuppressSpellsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +12% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+12% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } },
- ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +10% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+10% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } },
- ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +11% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+11% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } },
- ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +12% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+12% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } },
- ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +13% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+13% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } },
- ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +14% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+14% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } },
- ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +15% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+15% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } },
- ["EvasionRatingHelmetBootsEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(33-35)% increased Evasion Rating from Equipped Helmet and Boots" }, } },
- ["EvasionRatingHelmetBootsEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(36-38)% increased Evasion Rating from Equipped Helmet and Boots" }, } },
- ["EvasionRatingHelmetBootsEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(39-41)% increased Evasion Rating from Equipped Helmet and Boots" }, } },
- ["EvasionRatingHelmetBootsEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(42-44)% increased Evasion Rating from Equipped Helmet and Boots" }, } },
- ["EvasionRatingHelmetBootsEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(45-47)% increased Evasion Rating from Equipped Helmet and Boots" }, } },
- ["EvasionRatingHelmetBootsEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(48-50)% increased Evasion Rating from Equipped Helmet and Boots" }, } },
- ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(42-44)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } },
- ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(45-47)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } },
- ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(48-50)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } },
- ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(51-53)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } },
- ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(54-57)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } },
- ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(58-61)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } },
- ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(51-53)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } },
- ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(54-56)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } },
- ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(57-59)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } },
- ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(60-62)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } },
- ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(63-66)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } },
- ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(67-70)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } },
- ["FireExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -11% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -11% to Fire Resistance" }, } },
- ["FireExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -12% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -12% to Fire Resistance" }, } },
- ["FireExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -13% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -13% to Fire Resistance" }, } },
- ["FireExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -14% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -14% to Fire Resistance" }, } },
- ["FireExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -15% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -15% to Fire Resistance" }, } },
- ["FireExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -16% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -16% to Fire Resistance" }, } },
- ["FireExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -14% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -14% to Fire Resistance" }, } },
- ["FireExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -15% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -15% to Fire Resistance" }, } },
- ["FireExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -16% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -16% to Fire Resistance" }, } },
- ["FireExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -17% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -17% to Fire Resistance" }, } },
- ["FireExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -18% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -18% to Fire Resistance" }, } },
- ["FireExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -19% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -19% to Fire Resistance" }, } },
- ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -17% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -17% to Fire Resistance" }, } },
- ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -18% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -18% to Fire Resistance" }, } },
- ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -19% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -19% to Fire Resistance" }, } },
- ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -20% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -20% to Fire Resistance" }, } },
- ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -21% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -21% to Fire Resistance" }, } },
- ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -22% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -22% to Fire Resistance" }, } },
- ["ColdExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -11% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -11% to Cold Resistance" }, } },
- ["ColdExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -12% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -12% to Cold Resistance" }, } },
- ["ColdExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -13% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -13% to Cold Resistance" }, } },
- ["ColdExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -14% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -14% to Cold Resistance" }, } },
- ["ColdExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -15% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -15% to Cold Resistance" }, } },
- ["ColdExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -16% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -16% to Cold Resistance" }, } },
- ["ColdExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -14% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -14% to Cold Resistance" }, } },
- ["ColdExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -15% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -15% to Cold Resistance" }, } },
- ["ColdExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -16% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -16% to Cold Resistance" }, } },
- ["ColdExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -17% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -17% to Cold Resistance" }, } },
- ["ColdExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -18% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -18% to Cold Resistance" }, } },
- ["ColdExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -19% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -19% to Cold Resistance" }, } },
- ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -17% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -17% to Cold Resistance" }, } },
- ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -18% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -18% to Cold Resistance" }, } },
- ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -19% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -19% to Cold Resistance" }, } },
- ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -20% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -20% to Cold Resistance" }, } },
- ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -21% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -21% to Cold Resistance" }, } },
- ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -22% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -22% to Cold Resistance" }, } },
- ["LightningExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -11% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -11% to Lightning Resistance" }, } },
- ["LightningExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -12% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -12% to Lightning Resistance" }, } },
- ["LightningExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -13% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -13% to Lightning Resistance" }, } },
- ["LightningExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance" }, } },
- ["LightningExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance" }, } },
- ["LightningExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance" }, } },
- ["LightningExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance" }, [4074358700] = { "" }, } },
- ["LightningExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance" }, [4074358700] = { "" }, } },
- ["LightningExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance" }, [4074358700] = { "" }, } },
- ["LightningExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance" }, [4074358700] = { "" }, } },
- ["LightningExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance" }, [4074358700] = { "" }, } },
- ["LightningExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance" }, [4074358700] = { "" }, } },
- ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance" }, [3283106665] = { "" }, } },
- ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance" }, [3283106665] = { "" }, } },
- ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance" }, [3283106665] = { "" }, } },
- ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -20% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -20% to Lightning Resistance" }, [3283106665] = { "" }, } },
- ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -21% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -21% to Lightning Resistance" }, [3283106665] = { "" }, } },
- ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -22% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -22% to Lightning Resistance" }, [3283106665] = { "" }, } },
- ["ArmourPenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Hits have (30-34)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (30-34)% chance to ignore Enemy Physical Damage Reduction" }, } },
- ["ArmourPenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Hits have (35-38)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (35-38)% chance to ignore Enemy Physical Damage Reduction" }, } },
- ["ArmourPenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Hits have (39-42)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (39-42)% chance to ignore Enemy Physical Damage Reduction" }, } },
- ["ArmourPenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction" }, } },
- ["ArmourPenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction" }, } },
- ["ArmourPenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Hits have (49-50)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (49-50)% chance to ignore Enemy Physical Damage Reduction" }, } },
- ["ArmourPenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } },
- ["ArmourPenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } },
- ["ArmourPenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (49-52)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (49-52)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } },
- ["ArmourPenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } },
- ["ArmourPenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } },
- ["ArmourPenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } },
- ["ArmourPenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } },
- ["ArmourPenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } },
- ["ArmourPenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } },
- ["ArmourPenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (64-68)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (64-68)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } },
- ["ArmourPenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (69-73)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (69-73)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } },
- ["ArmourPenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (74-78)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (74-78)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } },
- ["WitherExpireSpeedEldritchImplicit1"] = { type = "Eater", affix = "", "Withered you Inflict expires (10-12)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (10-12)% slower" }, } },
- ["WitherExpireSpeedEldritchImplicit2"] = { type = "Eater", affix = "", "Withered you Inflict expires (13-15)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (13-15)% slower" }, } },
- ["WitherExpireSpeedEldritchImplicit3"] = { type = "Eater", affix = "", "Withered you Inflict expires (16-18)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (16-18)% slower" }, } },
- ["WitherExpireSpeedEldritchImplicit4"] = { type = "Eater", affix = "", "Withered you Inflict expires (19-20)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (19-20)% slower" }, } },
- ["WitherExpireSpeedEldritchImplicit5"] = { type = "Eater", affix = "", "Withered you Inflict expires (21-22)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (21-22)% slower" }, } },
- ["WitherExpireSpeedEldritchImplicit6"] = { type = "Eater", affix = "", "Withered you Inflict expires (23-24)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (23-24)% slower" }, } },
- ["WitherExpireSpeedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (19-21)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (19-21)% slower" }, [4074358700] = { "" }, } },
- ["WitherExpireSpeedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (22-24)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (22-24)% slower" }, [4074358700] = { "" }, } },
- ["WitherExpireSpeedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (25-27)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (25-27)% slower" }, [4074358700] = { "" }, } },
- ["WitherExpireSpeedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (28-29)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (28-29)% slower" }, [4074358700] = { "" }, } },
- ["WitherExpireSpeedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (30-31)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (30-31)% slower" }, [4074358700] = { "" }, } },
- ["WitherExpireSpeedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (32-33)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (32-33)% slower" }, [4074358700] = { "" }, } },
- ["WitherExpireSpeedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (28-30)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (28-30)% slower" }, [3283106665] = { "" }, } },
- ["WitherExpireSpeedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (31-33)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (31-33)% slower" }, [3283106665] = { "" }, } },
- ["WitherExpireSpeedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (34-36)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (34-36)% slower" }, [3283106665] = { "" }, } },
- ["WitherExpireSpeedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (37-39)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (37-39)% slower" }, [3283106665] = { "" }, } },
- ["WitherExpireSpeedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (40-42)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (40-42)% slower" }, [3283106665] = { "" }, } },
- ["WitherExpireSpeedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (43-45)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (43-45)% slower" }, [3283106665] = { "" }, } },
- ["ConvertPhysicalToFireEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "10% of Physical Damage Converted to Fire Damage" }, } },
- ["ConvertPhysicalToFireEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "15% of Physical Damage Converted to Fire Damage" }, } },
- ["ConvertPhysicalToFireEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "20% of Physical Damage Converted to Fire Damage" }, } },
- ["ConvertPhysicalToFireEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, } },
- ["ConvertPhysicalToFireEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "30% of Physical Damage Converted to Fire Damage" }, } },
- ["ConvertPhysicalToFireEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "35% of Physical Damage Converted to Fire Damage" }, } },
- ["ConvertPhysicalToFireEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } },
- ["ConvertPhysicalToFireEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "30% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } },
- ["ConvertPhysicalToFireEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "35% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } },
- ["ConvertPhysicalToFireEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "40% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } },
- ["ConvertPhysicalToFireEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "45% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } },
- ["ConvertPhysicalToFireEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "50% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } },
- ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "40% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } },
- ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "45% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } },
- ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "50% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } },
- ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "55% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } },
- ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "60% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } },
- ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "65% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } },
- ["ConvertPhysicalToColdEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "10% of Physical Damage Converted to Cold Damage" }, } },
- ["ConvertPhysicalToColdEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "15% of Physical Damage Converted to Cold Damage" }, } },
- ["ConvertPhysicalToColdEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "20% of Physical Damage Converted to Cold Damage" }, } },
- ["ConvertPhysicalToColdEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, } },
- ["ConvertPhysicalToColdEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "30% of Physical Damage Converted to Cold Damage" }, } },
- ["ConvertPhysicalToColdEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "35% of Physical Damage Converted to Cold Damage" }, } },
- ["ConvertPhysicalToColdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } },
- ["ConvertPhysicalToColdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "30% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } },
- ["ConvertPhysicalToColdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "35% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } },
- ["ConvertPhysicalToColdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "40% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } },
- ["ConvertPhysicalToColdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "45% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } },
- ["ConvertPhysicalToColdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "50% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } },
- ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "40% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } },
- ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "45% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } },
- ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "50% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } },
- ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "55% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } },
- ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "60% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } },
- ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "65% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } },
- ["ConvertPhysicalToLightningEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "10% of Physical Damage Converted to Lightning Damage" }, } },
- ["ConvertPhysicalToLightningEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "15% of Physical Damage Converted to Lightning Damage" }, } },
- ["ConvertPhysicalToLightningEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "20% of Physical Damage Converted to Lightning Damage" }, } },
- ["ConvertPhysicalToLightningEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } },
- ["ConvertPhysicalToLightningEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "30% of Physical Damage Converted to Lightning Damage" }, } },
- ["ConvertPhysicalToLightningEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "35% of Physical Damage Converted to Lightning Damage" }, } },
- ["ConvertPhysicalToLightningEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } },
- ["ConvertPhysicalToLightningEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "30% of Physical Damage Converted to Lightning Damage" }, } },
- ["ConvertPhysicalToLightningEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "35% of Physical Damage Converted to Lightning Damage" }, } },
- ["ConvertPhysicalToLightningEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "40% of Physical Damage Converted to Lightning Damage" }, } },
- ["ConvertPhysicalToLightningEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "45% of Physical Damage Converted to Lightning Damage" }, } },
- ["ConvertPhysicalToLightningEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "50% of Physical Damage Converted to Lightning Damage" }, } },
- ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "40% of Physical Damage Converted to Lightning Damage" }, } },
- ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "45% of Physical Damage Converted to Lightning Damage" }, } },
- ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "50% of Physical Damage Converted to Lightning Damage" }, } },
- ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "55% of Physical Damage Converted to Lightning Damage" }, } },
- ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "60% of Physical Damage Converted to Lightning Damage" }, } },
- ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "65% of Physical Damage Converted to Lightning Damage" }, } },
- ["ConvertPhysicalToChaosEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "10% of Physical Damage Converted to Chaos Damage" }, } },
- ["ConvertPhysicalToChaosEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "15% of Physical Damage Converted to Chaos Damage" }, } },
- ["ConvertPhysicalToChaosEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "20% of Physical Damage Converted to Chaos Damage" }, } },
- ["ConvertPhysicalToChaosEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "25% of Physical Damage Converted to Chaos Damage" }, } },
- ["ConvertPhysicalToChaosEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "30% of Physical Damage Converted to Chaos Damage" }, } },
- ["ConvertPhysicalToChaosEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "35% of Physical Damage Converted to Chaos Damage" }, } },
- ["ConvertPhysicalToChaosEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "25% of Physical Damage Converted to Chaos Damage" }, } },
- ["ConvertPhysicalToChaosEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "30% of Physical Damage Converted to Chaos Damage" }, } },
- ["ConvertPhysicalToChaosEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "35% of Physical Damage Converted to Chaos Damage" }, } },
- ["ConvertPhysicalToChaosEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "40% of Physical Damage Converted to Chaos Damage" }, } },
- ["ConvertPhysicalToChaosEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "45% of Physical Damage Converted to Chaos Damage" }, } },
- ["ConvertPhysicalToChaosEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "50% of Physical Damage Converted to Chaos Damage" }, } },
- ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "40% of Physical Damage Converted to Chaos Damage" }, } },
- ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "45% of Physical Damage Converted to Chaos Damage" }, } },
- ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "50% of Physical Damage Converted to Chaos Damage" }, } },
- ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "55% of Physical Damage Converted to Chaos Damage" }, } },
- ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "60% of Physical Damage Converted to Chaos Damage" }, } },
- ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "65% of Physical Damage Converted to Chaos Damage" }, } },
- ["FireDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.2% of Fire Damage Leeched as Life" }, } },
- ["FireDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.3% of Fire Damage Leeched as Life" }, } },
- ["FireDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.4% of Fire Damage Leeched as Life" }, } },
- ["FireDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.5% of Fire Damage Leeched as Life" }, } },
- ["FireDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.6% of Fire Damage Leeched as Life" }, } },
- ["FireDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.7% of Fire Damage Leeched as Life" }, } },
- ["FireDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.4% of Fire Damage Leeched as Life" }, } },
- ["FireDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.5% of Fire Damage Leeched as Life" }, } },
- ["FireDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.6% of Fire Damage Leeched as Life" }, } },
- ["FireDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.7% of Fire Damage Leeched as Life" }, } },
- ["FireDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.8% of Fire Damage Leeched as Life" }, } },
- ["FireDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.9% of Fire Damage Leeched as Life" }, } },
- ["FireDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "0.6% of Fire Damage Leeched as Life" }, } },
- ["FireDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "0.7% of Fire Damage Leeched as Life" }, } },
- ["FireDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "0.8% of Fire Damage Leeched as Life" }, } },
- ["FireDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "0.9% of Fire Damage Leeched as Life" }, } },
- ["FireDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "1% of Fire Damage Leeched as Life" }, } },
- ["FireDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "1.1% of Fire Damage Leeched as Life" }, } },
- ["ColdDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.2% of Cold Damage Leeched as Life" }, } },
- ["ColdDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.3% of Cold Damage Leeched as Life" }, } },
- ["ColdDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.4% of Cold Damage Leeched as Life" }, } },
- ["ColdDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.5% of Cold Damage Leeched as Life" }, } },
- ["ColdDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.6% of Cold Damage Leeched as Life" }, } },
- ["ColdDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.7% of Cold Damage Leeched as Life" }, } },
- ["ColdDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.4% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } },
- ["ColdDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.5% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } },
- ["ColdDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.6% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } },
- ["ColdDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.7% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } },
- ["ColdDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.8% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } },
- ["ColdDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.9% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } },
- ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.6% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } },
- ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.7% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } },
- ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.8% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } },
- ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.9% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } },
- ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "1% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } },
- ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "1.1% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } },
- ["LightningDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.2% of Lightning Damage Leeched as Life" }, } },
- ["LightningDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.3% of Lightning Damage Leeched as Life" }, } },
- ["LightningDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.4% of Lightning Damage Leeched as Life" }, } },
- ["LightningDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.5% of Lightning Damage Leeched as Life" }, } },
- ["LightningDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.6% of Lightning Damage Leeched as Life" }, } },
- ["LightningDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.7% of Lightning Damage Leeched as Life" }, } },
- ["LightningDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.4% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } },
- ["LightningDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.5% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } },
- ["LightningDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.6% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } },
- ["LightningDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.7% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } },
- ["LightningDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.8% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } },
- ["LightningDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.9% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } },
- ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.6% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } },
- ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.7% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } },
- ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.8% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } },
- ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.9% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } },
- ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "1% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } },
- ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "1.1% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } },
- ["PhysicalDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.2% of Physical Damage Leeched as Life" }, } },
- ["PhysicalDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.3% of Physical Damage Leeched as Life" }, } },
- ["PhysicalDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.4% of Physical Damage Leeched as Life" }, } },
- ["PhysicalDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.5% of Physical Damage Leeched as Life" }, } },
- ["PhysicalDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.6% of Physical Damage Leeched as Life" }, } },
- ["PhysicalDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.7% of Physical Damage Leeched as Life" }, } },
- ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.4% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } },
- ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.5% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } },
- ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.6% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } },
- ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.7% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } },
- ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.8% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } },
- ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.9% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } },
- ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.6% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } },
- ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.7% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } },
- ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.8% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } },
- ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.9% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } },
- ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "1% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } },
- ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "1.1% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } },
- ["ChaosDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.2% of Chaos Damage Leeched as Life" }, } },
- ["ChaosDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.3% of Chaos Damage Leeched as Life" }, } },
- ["ChaosDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.4% of Chaos Damage Leeched as Life" }, } },
- ["ChaosDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.5% of Chaos Damage Leeched as Life" }, } },
- ["ChaosDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.6% of Chaos Damage Leeched as Life" }, } },
- ["ChaosDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.7% of Chaos Damage Leeched as Life" }, } },
- ["ChaosDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.4% of Chaos Damage Leeched as Life" }, } },
- ["ChaosDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.5% of Chaos Damage Leeched as Life" }, } },
- ["ChaosDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.6% of Chaos Damage Leeched as Life" }, } },
- ["ChaosDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.7% of Chaos Damage Leeched as Life" }, } },
- ["ChaosDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.8% of Chaos Damage Leeched as Life" }, } },
- ["ChaosDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.9% of Chaos Damage Leeched as Life" }, } },
- ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "0.6% of Chaos Damage Leeched as Life" }, } },
- ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "0.7% of Chaos Damage Leeched as Life" }, } },
- ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "0.8% of Chaos Damage Leeched as Life" }, } },
- ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "0.9% of Chaos Damage Leeched as Life" }, } },
- ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "1% of Chaos Damage Leeched as Life" }, } },
- ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "1.1% of Chaos Damage Leeched as Life" }, } },
- ["DamagePer100STREldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "3% increased Damage per 100 Strength" }, } },
- ["DamagePer100STREldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "3% increased Damage per 100 Strength" }, } },
- ["DamagePer100STREldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "3% increased Damage per 100 Strength" }, } },
- ["DamagePer100STREldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "3% increased Damage per 100 Strength" }, } },
- ["DamagePer100STREldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "4% increased Damage per 100 Strength" }, } },
- ["DamagePer100STREldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "4% increased Damage per 100 Strength" }, } },
- ["DamagePer100STREldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "4% increased Damage per 100 Strength" }, } },
- ["DamagePer100STREldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "4% increased Damage per 100 Strength" }, } },
- ["DamagePer100STREldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "4% increased Damage per 100 Strength" }, } },
- ["DamagePer100STREldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "4% increased Damage per 100 Strength" }, } },
- ["DamagePer100STREldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } },
- ["DamagePer100STREldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } },
- ["DamagePer100STREldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } },
- ["DamagePer100STREldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } },
- ["DamagePer100STREldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } },
- ["DamagePer100STREldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } },
- ["DamagePer100STREldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "6% increased Damage per 100 Strength" }, } },
- ["DamagePer100STREldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "6% increased Damage per 100 Strength" }, } },
- ["DamagePer100DEXEldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "3% increased Damage per 100 Dexterity" }, } },
- ["DamagePer100DEXEldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "3% increased Damage per 100 Dexterity" }, } },
- ["DamagePer100DEXEldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "3% increased Damage per 100 Dexterity" }, } },
- ["DamagePer100DEXEldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "3% increased Damage per 100 Dexterity" }, } },
- ["DamagePer100DEXEldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "4% increased Damage per 100 Dexterity" }, } },
- ["DamagePer100DEXEldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "4% increased Damage per 100 Dexterity" }, } },
- ["DamagePer100DEXEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "4% increased Damage per 100 Dexterity" }, } },
- ["DamagePer100DEXEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "4% increased Damage per 100 Dexterity" }, } },
- ["DamagePer100DEXEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "4% increased Damage per 100 Dexterity" }, } },
- ["DamagePer100DEXEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "4% increased Damage per 100 Dexterity" }, } },
- ["DamagePer100DEXEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } },
- ["DamagePer100DEXEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } },
- ["DamagePer100DEXEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } },
- ["DamagePer100DEXEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } },
- ["DamagePer100DEXEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } },
- ["DamagePer100DEXEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } },
- ["DamagePer100DEXEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "6% increased Damage per 100 Dexterity" }, } },
- ["DamagePer100DEXEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "6% increased Damage per 100 Dexterity" }, } },
- ["DamagePer100INTEldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "3% increased Damage per 100 Intelligence" }, } },
- ["DamagePer100INTEldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "3% increased Damage per 100 Intelligence" }, } },
- ["DamagePer100INTEldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "3% increased Damage per 100 Intelligence" }, } },
- ["DamagePer100INTEldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "3% increased Damage per 100 Intelligence" }, } },
- ["DamagePer100INTEldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, } },
- ["DamagePer100INTEldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, } },
- ["DamagePer100INTEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } },
- ["DamagePer100INTEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } },
- ["DamagePer100INTEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } },
- ["DamagePer100INTEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } },
- ["DamagePer100INTEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } },
- ["DamagePer100INTEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } },
- ["DamagePer100INTEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } },
- ["DamagePer100INTEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } },
- ["DamagePer100INTEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } },
- ["DamagePer100INTEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } },
- ["DamagePer100INTEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "6% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } },
- ["DamagePer100INTEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "6% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } },
- ["BlindEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(6-7)% increased Blind Effect" }, } },
- ["BlindEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(8-9)% increased Blind Effect" }, } },
- ["BlindEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(10-11)% increased Blind Effect" }, } },
- ["BlindEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(12-13)% increased Blind Effect" }, } },
- ["BlindEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(14-15)% increased Blind Effect" }, } },
- ["BlindEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(16-17)% increased Blind Effect" }, } },
- ["BlindEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(12-13)% increased Blind Effect" }, } },
- ["BlindEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(14-15)% increased Blind Effect" }, } },
- ["BlindEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(16-17)% increased Blind Effect" }, } },
- ["BlindEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(18-19)% increased Blind Effect" }, } },
- ["BlindEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(20-21)% increased Blind Effect" }, } },
- ["BlindEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(22-23)% increased Blind Effect" }, } },
- ["BlindEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(18-19)% increased Blind Effect" }, } },
- ["BlindEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(20-21)% increased Blind Effect" }, } },
- ["BlindEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(22-23)% increased Blind Effect" }, } },
- ["BlindEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(24-25)% increased Blind Effect" }, } },
- ["BlindEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(26-27)% increased Blind Effect" }, } },
- ["BlindEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(28-29)% increased Blind Effect" }, } },
- ["ExertedAttackDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Exerted Attacks deal (20-22)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (20-22)% increased Damage" }, } },
- ["ExertedAttackDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Exerted Attacks deal (23-25)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (23-25)% increased Damage" }, } },
- ["ExertedAttackDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Exerted Attacks deal (26-28)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (26-28)% increased Damage" }, } },
- ["ExertedAttackDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Exerted Attacks deal (29-31)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (29-31)% increased Damage" }, } },
- ["ExertedAttackDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Exerted Attacks deal (32-33)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (32-33)% increased Damage" }, } },
- ["ExertedAttackDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Exerted Attacks deal (34-35)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (34-35)% increased Damage" }, } },
- ["ExertedAttackDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (26-28)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (26-28)% increased Damage" }, [4074358700] = { "" }, } },
- ["ExertedAttackDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (29-31)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (29-31)% increased Damage" }, [4074358700] = { "" }, } },
- ["ExertedAttackDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (32-34)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (32-34)% increased Damage" }, [4074358700] = { "" }, } },
- ["ExertedAttackDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (35-37)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (35-37)% increased Damage" }, [4074358700] = { "" }, } },
- ["ExertedAttackDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (38-39)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (38-39)% increased Damage" }, [4074358700] = { "" }, } },
- ["ExertedAttackDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (40-41)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (40-41)% increased Damage" }, [4074358700] = { "" }, } },
- ["ExertedAttackDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (32-34)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (32-34)% increased Damage" }, [3283106665] = { "" }, } },
- ["ExertedAttackDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (35-37)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (35-37)% increased Damage" }, [3283106665] = { "" }, } },
- ["ExertedAttackDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (38-40)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (38-40)% increased Damage" }, [3283106665] = { "" }, } },
- ["ExertedAttackDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (41-43)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (41-43)% increased Damage" }, [3283106665] = { "" }, } },
- ["ExertedAttackDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (44-45)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (44-45)% increased Damage" }, [3283106665] = { "" }, } },
- ["ExertedAttackDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (46-47)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (46-47)% increased Damage" }, [3283106665] = { "" }, } },
- ["GlobalMaimOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks have 15% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 15% chance to Maim on Hit" }, } },
- ["GlobalMaimOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks have 20% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 20% chance to Maim on Hit" }, } },
- ["GlobalMaimOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks have 25% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 25% chance to Maim on Hit" }, } },
- ["GlobalMaimOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks have 30% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 30% chance to Maim on Hit" }, } },
- ["GlobalMaimOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks have 35% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 35% chance to Maim on Hit" }, } },
- ["GlobalMaimOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks have 40% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 40% chance to Maim on Hit" }, } },
- ["GlobalMaimOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 45% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 45% chance to Maim on Hit" }, } },
- ["GlobalMaimOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 50% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 50% chance to Maim on Hit" }, } },
- ["GlobalMaimOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 55% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 55% chance to Maim on Hit" }, } },
- ["GlobalMaimOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 60% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 60% chance to Maim on Hit" }, } },
- ["GlobalMaimOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 65% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 65% chance to Maim on Hit" }, } },
- ["GlobalMaimOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 70% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 70% chance to Maim on Hit" }, } },
- ["GlobalMaimOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 75% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks have 75% chance to Maim on Hit" }, } },
- ["GlobalMaimOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 80% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks have 80% chance to Maim on Hit" }, } },
- ["GlobalMaimOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 85% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks have 85% chance to Maim on Hit" }, } },
- ["GlobalMaimOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 90% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks have 90% chance to Maim on Hit" }, } },
- ["GlobalMaimOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 95% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks have 95% chance to Maim on Hit" }, } },
- ["GlobalMaimOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks always Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks always Maim on Hit" }, } },
- ["SpellsHinderOnHitChanceEldritchImplicit1"] = { type = "Eater", affix = "", "15% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "15% chance to Hinder Enemies on Hit with Spells" }, } },
- ["SpellsHinderOnHitChanceEldritchImplicit2"] = { type = "Eater", affix = "", "20% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "20% chance to Hinder Enemies on Hit with Spells" }, } },
- ["SpellsHinderOnHitChanceEldritchImplicit3"] = { type = "Eater", affix = "", "25% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "25% chance to Hinder Enemies on Hit with Spells" }, } },
- ["SpellsHinderOnHitChanceEldritchImplicit4"] = { type = "Eater", affix = "", "30% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "30% chance to Hinder Enemies on Hit with Spells" }, } },
- ["SpellsHinderOnHitChanceEldritchImplicit5"] = { type = "Eater", affix = "", "35% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "35% chance to Hinder Enemies on Hit with Spells" }, } },
- ["SpellsHinderOnHitChanceEldritchImplicit6"] = { type = "Eater", affix = "", "40% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "40% chance to Hinder Enemies on Hit with Spells" }, } },
- ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "45% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } },
- ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "50% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } },
- ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "55% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } },
- ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "60% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } },
- ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "65% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } },
- ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "70% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } },
- ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "75% chance to Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } },
- ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "80% chance to Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } },
- ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "85% chance to Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } },
- ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "90% chance to Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } },
- ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "95% chance to Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } },
- ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } },
- ["IncreasedAccuracyPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(9-10)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(9-10)% increased Global Accuracy Rating" }, } },
- ["IncreasedAccuracyPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(11-12)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(11-12)% increased Global Accuracy Rating" }, } },
- ["IncreasedAccuracyPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(13-14)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(13-14)% increased Global Accuracy Rating" }, } },
- ["IncreasedAccuracyPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(15-16)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(15-16)% increased Global Accuracy Rating" }, } },
- ["IncreasedAccuracyPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(17-18)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(17-18)% increased Global Accuracy Rating" }, } },
- ["IncreasedAccuracyPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(19-20)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(19-20)% increased Global Accuracy Rating" }, } },
- ["IncreasedAccuracyPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (13-14)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(13-14)% increased Global Accuracy Rating" }, } },
- ["IncreasedAccuracyPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (15-16)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(15-16)% increased Global Accuracy Rating" }, } },
- ["IncreasedAccuracyPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(17-18)% increased Global Accuracy Rating" }, } },
- ["IncreasedAccuracyPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(19-20)% increased Global Accuracy Rating" }, } },
- ["IncreasedAccuracyPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(21-22)% increased Global Accuracy Rating" }, } },
- ["IncreasedAccuracyPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(23-24)% increased Global Accuracy Rating" }, } },
- ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (17-18)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(17-18)% increased Global Accuracy Rating" }, } },
- ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(19-20)% increased Global Accuracy Rating" }, } },
- ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(21-22)% increased Global Accuracy Rating" }, } },
- ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(23-24)% increased Global Accuracy Rating" }, } },
- ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(25-26)% increased Global Accuracy Rating" }, } },
- ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(27-28)% increased Global Accuracy Rating" }, } },
- ["MarkEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(6-7)% increased Effect of your Marks" }, } },
- ["MarkEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(8-9)% increased Effect of your Marks" }, } },
- ["MarkEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(10-11)% increased Effect of your Marks" }, } },
- ["MarkEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(12-13)% increased Effect of your Marks" }, } },
- ["MarkEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(14-15)% increased Effect of your Marks" }, } },
- ["MarkEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(16-17)% increased Effect of your Marks" }, } },
- ["MarkEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(12-13)% increased Effect of your Marks" }, } },
- ["MarkEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(14-15)% increased Effect of your Marks" }, } },
- ["MarkEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(16-17)% increased Effect of your Marks" }, } },
- ["MarkEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(18-19)% increased Effect of your Marks" }, } },
- ["MarkEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(20-21)% increased Effect of your Marks" }, } },
- ["MarkEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(22-23)% increased Effect of your Marks" }, } },
- ["MarkEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(18-19)% increased Effect of your Marks" }, } },
- ["MarkEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(20-21)% increased Effect of your Marks" }, } },
- ["MarkEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(22-23)% increased Effect of your Marks" }, } },
- ["MarkEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(24-25)% increased Effect of your Marks" }, } },
- ["MarkEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(26-27)% increased Effect of your Marks" }, } },
- ["MarkEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(28-29)% increased Effect of your Marks" }, } },
- ["FlatAccuracyPerFrenzyChargeEldritchImplicit1"] = { type = "Eater", affix = "", "+(43-45) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(43-45) to Accuracy Rating per Frenzy Charge" }, } },
- ["FlatAccuracyPerFrenzyChargeEldritchImplicit2"] = { type = "Eater", affix = "", "+(46-48) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(46-48) to Accuracy Rating per Frenzy Charge" }, } },
- ["FlatAccuracyPerFrenzyChargeEldritchImplicit3"] = { type = "Eater", affix = "", "+(49-51) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(49-51) to Accuracy Rating per Frenzy Charge" }, } },
- ["FlatAccuracyPerFrenzyChargeEldritchImplicit4"] = { type = "Eater", affix = "", "+(52-54) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(52-54) to Accuracy Rating per Frenzy Charge" }, } },
- ["FlatAccuracyPerFrenzyChargeEldritchImplicit5"] = { type = "Eater", affix = "", "+(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(55-57) to Accuracy Rating per Frenzy Charge" }, } },
- ["FlatAccuracyPerFrenzyChargeEldritchImplicit6"] = { type = "Eater", affix = "", "+(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(58-60) to Accuracy Rating per Frenzy Charge" }, } },
- ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(49-51) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(49-51) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } },
- ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(52-54) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(52-54) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } },
- ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(55-57) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } },
- ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(58-60) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } },
- ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(61-63) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(61-63) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } },
- ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(64-66) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(64-66) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } },
- ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(55-57) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } },
- ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(58-60) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } },
- ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(61-63) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(61-63) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } },
- ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(64-66) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(64-66) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } },
- ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(67-69) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(67-69) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } },
- ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(70-72) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(70-72) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } },
- ["AdditionalPierceEldritchImplicit1"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1795 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } },
- ["AdditionalPierceEldritchImplicit2"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1795 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } },
- ["AdditionalPierceEldritchImplicit3"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1795 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } },
- ["AdditionalPierceEldritchImplicit4"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1795 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } },
- ["AdditionalPierceEldritchImplicit5"] = { type = "Eater", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } },
- ["AdditionalPierceEldritchImplicit6"] = { type = "Eater", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } },
- ["AdditionalPierceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } },
- ["AdditionalPierceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } },
- ["AdditionalPierceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } },
- ["AdditionalPierceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } },
- ["AdditionalPierceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } },
- ["AdditionalPierceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } },
- ["AdditionalPierceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } },
- ["AdditionalPierceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } },
- ["AdditionalPierceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } },
- ["AdditionalPierceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } },
- ["AdditionalPierceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 4 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 4 additional Targets" }, } },
- ["AdditionalPierceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 4 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 4 additional Targets" }, } },
- ["PoisonOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "5% chance to Poison on Hit" }, } },
- ["PoisonOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "10% chance to Poison on Hit" }, } },
- ["PoisonOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "15% chance to Poison on Hit" }, } },
- ["PoisonOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "20% chance to Poison on Hit" }, } },
- ["PoisonOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "25% chance to Poison on Hit" }, } },
- ["PoisonOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "30% chance to Poison on Hit" }, } },
- ["PoisonOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "15% chance to Poison on Hit" }, } },
- ["PoisonOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "20% chance to Poison on Hit" }, } },
- ["PoisonOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "25% chance to Poison on Hit" }, } },
- ["PoisonOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "30% chance to Poison on Hit" }, } },
- ["PoisonOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "35% chance to Poison on Hit" }, } },
- ["PoisonOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "40% chance to Poison on Hit" }, } },
- ["PoisonOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "25% chance to Poison on Hit" }, } },
- ["PoisonOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "30% chance to Poison on Hit" }, } },
- ["PoisonOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "35% chance to Poison on Hit" }, } },
- ["PoisonOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "40% chance to Poison on Hit" }, } },
- ["PoisonOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "45% chance to Poison on Hit" }, } },
- ["PoisonOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "50% chance to Poison on Hit" }, } },
- ["ChanceToBleedEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks have 5% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 5% chance to cause Bleeding" }, } },
- ["ChanceToBleedEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks have 10% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 10% chance to cause Bleeding" }, } },
- ["ChanceToBleedEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks have 15% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 15% chance to cause Bleeding" }, } },
- ["ChanceToBleedEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks have 20% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 20% chance to cause Bleeding" }, } },
- ["ChanceToBleedEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } },
- ["ChanceToBleedEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks have 30% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 30% chance to cause Bleeding" }, } },
- ["ChanceToBleedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 15% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 15% chance to cause Bleeding" }, } },
- ["ChanceToBleedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 20% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 20% chance to cause Bleeding" }, } },
- ["ChanceToBleedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 25% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } },
- ["ChanceToBleedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 30% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 30% chance to cause Bleeding" }, } },
- ["ChanceToBleedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 35% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 35% chance to cause Bleeding" }, } },
- ["ChanceToBleedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 40% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 40% chance to cause Bleeding" }, } },
- ["ChanceToBleedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 25% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } },
- ["ChanceToBleedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 30% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 30% chance to cause Bleeding" }, } },
- ["ChanceToBleedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 35% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 35% chance to cause Bleeding" }, } },
- ["ChanceToBleedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 40% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 40% chance to cause Bleeding" }, } },
- ["ChanceToBleedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 45% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 45% chance to cause Bleeding" }, } },
- ["ChanceToBleedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 50% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 50% chance to cause Bleeding" }, } },
- ["ChanceToAggravateBleedEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "5% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
- ["ChanceToAggravateBleedEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "10% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
- ["ChanceToAggravateBleedEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "15% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
- ["ChanceToAggravateBleedEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "20% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
- ["ChanceToAggravateBleedEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "25% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
- ["ChanceToAggravateBleedEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "30% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
- ["ChanceToAggravateBleedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "15% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
- ["ChanceToAggravateBleedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "20% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
- ["ChanceToAggravateBleedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "25% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
- ["ChanceToAggravateBleedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "30% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
- ["ChanceToAggravateBleedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "35% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
- ["ChanceToAggravateBleedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "40% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
- ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "25% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
- ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "30% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
- ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "35% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
- ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "40% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
- ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "45% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
- ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "50% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
- ["AttackImpaleChanceEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "5% chance to Impale Enemies on Hit with Attacks" }, } },
- ["AttackImpaleChanceEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "10% chance to Impale Enemies on Hit with Attacks" }, } },
- ["AttackImpaleChanceEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "15% chance to Impale Enemies on Hit with Attacks" }, } },
- ["AttackImpaleChanceEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "20% chance to Impale Enemies on Hit with Attacks" }, } },
- ["AttackImpaleChanceEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "25% chance to Impale Enemies on Hit with Attacks" }, } },
- ["AttackImpaleChanceEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "30% chance to Impale Enemies on Hit with Attacks" }, } },
- ["AttackImpaleChanceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "15% chance to Impale Enemies on Hit with Attacks" }, } },
- ["AttackImpaleChanceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "20% chance to Impale Enemies on Hit with Attacks" }, } },
- ["AttackImpaleChanceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "25% chance to Impale Enemies on Hit with Attacks" }, } },
- ["AttackImpaleChanceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "30% chance to Impale Enemies on Hit with Attacks" }, } },
- ["AttackImpaleChanceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "35% chance to Impale Enemies on Hit with Attacks" }, } },
- ["AttackImpaleChanceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "40% chance to Impale Enemies on Hit with Attacks" }, } },
- ["AttackImpaleChanceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "25% chance to Impale Enemies on Hit with Attacks" }, } },
- ["AttackImpaleChanceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "30% chance to Impale Enemies on Hit with Attacks" }, } },
- ["AttackImpaleChanceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "35% chance to Impale Enemies on Hit with Attacks" }, } },
- ["AttackImpaleChanceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "40% chance to Impale Enemies on Hit with Attacks" }, } },
- ["AttackImpaleChanceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "45% chance to Impale Enemies on Hit with Attacks" }, } },
- ["AttackImpaleChanceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "50% chance to Impale Enemies on Hit with Attacks" }, } },
- ["IncreasedCastSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "8% increased Cast Speed" }, } },
- ["IncreasedCastSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "9% increased Cast Speed" }, } },
- ["IncreasedCastSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% increased Cast Speed" }, } },
- ["IncreasedCastSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "11% increased Cast Speed" }, } },
- ["IncreasedCastSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "12% increased Cast Speed" }, } },
- ["IncreasedCastSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "13% increased Cast Speed" }, } },
- ["IncreasedCastSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "12% increased Cast Speed" }, } },
- ["IncreasedCastSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "13% increased Cast Speed" }, } },
- ["IncreasedCastSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "14% increased Cast Speed" }, } },
- ["IncreasedCastSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "15% increased Cast Speed" }, } },
- ["IncreasedCastSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "16% increased Cast Speed" }, } },
- ["IncreasedCastSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "17% increased Cast Speed" }, } },
- ["IncreasedCastSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "16% increased Cast Speed" }, } },
- ["IncreasedCastSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "17% increased Cast Speed" }, } },
- ["IncreasedCastSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "18% increased Cast Speed" }, } },
- ["IncreasedCastSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "19% increased Cast Speed" }, } },
- ["IncreasedCastSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "20% increased Cast Speed" }, } },
- ["IncreasedCastSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "21% increased Cast Speed" }, } },
- ["SpellCriticalStrikeChanceEldritchImplicit1"] = { type = "Exarch", affix = "", "(28-30)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(28-30)% increased Spell Critical Strike Chance" }, } },
- ["SpellCriticalStrikeChanceEldritchImplicit2"] = { type = "Exarch", affix = "", "(31-33)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(31-33)% increased Spell Critical Strike Chance" }, } },
- ["SpellCriticalStrikeChanceEldritchImplicit3"] = { type = "Exarch", affix = "", "(34-36)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(34-36)% increased Spell Critical Strike Chance" }, } },
- ["SpellCriticalStrikeChanceEldritchImplicit4"] = { type = "Exarch", affix = "", "(37-39)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(37-39)% increased Spell Critical Strike Chance" }, } },
- ["SpellCriticalStrikeChanceEldritchImplicit5"] = { type = "Exarch", affix = "", "(40-42)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(40-42)% increased Spell Critical Strike Chance" }, } },
- ["SpellCriticalStrikeChanceEldritchImplicit6"] = { type = "Exarch", affix = "", "(43-45)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(43-45)% increased Spell Critical Strike Chance" }, } },
- ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(40-42)% increased Spell Critical Strike Chance" }, } },
- ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(43-45)% increased Spell Critical Strike Chance" }, } },
- ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(46-48)% increased Spell Critical Strike Chance" }, } },
- ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(49-51)% increased Spell Critical Strike Chance" }, } },
- ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(52-54)% increased Spell Critical Strike Chance" }, } },
- ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(55-57)% increased Spell Critical Strike Chance" }, } },
- ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(52-54)% increased Spell Critical Strike Chance" }, } },
- ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(55-57)% increased Spell Critical Strike Chance" }, } },
- ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(58-60)% increased Spell Critical Strike Chance" }, } },
- ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(61-63)% increased Spell Critical Strike Chance" }, } },
- ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(64-66)% increased Spell Critical Strike Chance" }, } },
- ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(67-69)% increased Spell Critical Strike Chance" }, } },
- ["SpellAddedFireDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (10-13) to (20-23) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-13) to (20-23) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-25) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-14) to (21-25) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (11-15) to (24-27) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (11-15) to (24-27) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (13-16) to (26-30) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-16) to (26-30) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (14-18) to (29-33) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-18) to (29-33) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (15-20) to (32-36) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (15-20) to (32-36) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (26-30) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-16) to (26-30) Fire Damage to Spells" }, [4074358700] = { "" }, } },
- ["SpellAddedFireDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (29-33) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-18) to (29-33) Fire Damage to Spells" }, [4074358700] = { "" }, } },
- ["SpellAddedFireDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (32-36) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (15-20) to (32-36) Fire Damage to Spells" }, [4074358700] = { "" }, } },
- ["SpellAddedFireDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (17-22) to (34-40) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (17-22) to (34-40) Fire Damage to Spells" }, [4074358700] = { "" }, } },
- ["SpellAddedFireDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (19-24) to (38-43) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-24) to (38-43) Fire Damage to Spells" }, [4074358700] = { "" }, } },
- ["SpellAddedFireDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-27) to (41-48) Fire Damage to Spells" }, [4074358700] = { "" }, } },
- ["SpellAddedFireDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (17-22) to (34-40) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (17-22) to (34-40) Fire Damage to Spells" }, [3283106665] = { "" }, } },
- ["SpellAddedFireDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (19-24) to (38-43) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-24) to (38-43) Fire Damage to Spells" }, [3283106665] = { "" }, } },
- ["SpellAddedFireDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-27) to (41-48) Fire Damage to Spells" }, [3283106665] = { "" }, } },
- ["SpellAddedFireDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (23-31) to (47-55) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (23-31) to (47-55) Fire Damage to Spells" }, [3283106665] = { "" }, } },
- ["SpellAddedFireDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (27-35) to (54-63) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (27-35) to (54-63) Fire Damage to Spells" }, [3283106665] = { "" }, } },
- ["SpellAddedFireDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (31-40) to (63-72) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (31-40) to (63-72) Fire Damage to Spells" }, [3283106665] = { "" }, } },
- ["SpellAddedColdDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (9-11) to (17-20) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (9-11) to (17-20) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (10-12) to (19-22) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (10-12) to (19-22) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-24) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (10-14) to (21-24) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (11-15) to (23-27) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (11-15) to (23-27) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (13-16) to (25-30) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (13-16) to (25-30) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (14-18) to (28-32) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (14-18) to (28-32) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-27) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (11-15) to (23-27) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-30) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (13-16) to (25-30) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (28-32) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (14-18) to (28-32) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (30-36) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (15-20) to (30-36) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (17-21) to (34-39) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (17-21) to (34-39) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (18-24) to (37-43) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (18-24) to (37-43) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-20) to (30-36) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (15-20) to (30-36) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (17-21) to (34-39) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (17-21) to (34-39) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-43) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (18-24) to (37-43) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (21-27) to (42-50) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (21-27) to (42-50) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (24-32) to (48-57) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (24-32) to (48-57) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (28-36) to (56-65) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (28-36) to (56-65) Cold Damage to Spells" }, } },
- ["SpellAddedLightningDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (2-4) to (34-36) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-4) to (34-36) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (2-4) to (37-40) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-4) to (37-40) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (2-4) to (41-44) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-4) to (41-44) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (2-5) to (45-48) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (45-48) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (2-5) to (50-53) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (50-53) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (2-6) to (54-59) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (54-59) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (45-48) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (45-48) Lightning Damage to Spells" }, [4074358700] = { "" }, } },
- ["SpellAddedLightningDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (50-53) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (50-53) Lightning Damage to Spells" }, [4074358700] = { "" }, } },
- ["SpellAddedLightningDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-6) to (54-59) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (54-59) Lightning Damage to Spells" }, [4074358700] = { "" }, } },
- ["SpellAddedLightningDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-6) to (60-64) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-6) to (60-64) Lightning Damage to Spells" }, [4074358700] = { "" }, } },
- ["SpellAddedLightningDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-7) to (66-70) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-7) to (66-70) Lightning Damage to Spells" }, [4074358700] = { "" }, } },
- ["SpellAddedLightningDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-8) to (72-78) Lightning Damage to Spells" }, [4074358700] = { "" }, } },
- ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-6) to (60-64) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-6) to (60-64) Lightning Damage to Spells" }, [3283106665] = { "" }, } },
- ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-7) to (66-70) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-7) to (66-70) Lightning Damage to Spells" }, [3283106665] = { "" }, } },
- ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-8) to (72-78) Lightning Damage to Spells" }, [3283106665] = { "" }, } },
- ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (4-8) to (83-90) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-8) to (83-90) Lightning Damage to Spells" }, [3283106665] = { "" }, } },
- ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (4-10) to (96-103) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-10) to (96-103) Lightning Damage to Spells" }, [3283106665] = { "" }, } },
- ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (5-11) to (110-119) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-11) to (110-119) Lightning Damage to Spells" }, [3283106665] = { "" }, } },
- ["SpellAddedPhysicalDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (8-10) to (15-18) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (8-10) to (15-18) Physical Damage to Spells" }, } },
- ["SpellAddedPhysicalDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-20) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (8-11) to (17-20) Physical Damage to Spells" }, } },
- ["SpellAddedPhysicalDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (9-12) to (19-22) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (9-12) to (19-22) Physical Damage to Spells" }, } },
- ["SpellAddedPhysicalDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (10-13) to (21-24) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (10-13) to (21-24) Physical Damage to Spells" }, } },
- ["SpellAddedPhysicalDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (11-15) to (23-26) Physical Damage to Spells" }, } },
- ["SpellAddedPhysicalDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (13-16) to (25-29) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-16) to (25-29) Physical Damage to Spells" }, } },
- ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (21-24) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (10-13) to (21-24) Physical Damage to Spells" }, [4074358700] = { "" }, } },
- ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (11-15) to (23-26) Physical Damage to Spells" }, [4074358700] = { "" }, } },
- ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-29) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-16) to (25-29) Physical Damage to Spells" }, [4074358700] = { "" }, } },
- ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-18) to (28-32) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-18) to (28-32) Physical Damage to Spells" }, [4074358700] = { "" }, } },
- ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-19) to (31-35) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (15-19) to (31-35) Physical Damage to Spells" }, [4074358700] = { "" }, } },
- ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (16-22) to (33-39) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (16-22) to (33-39) Physical Damage to Spells" }, [4074358700] = { "" }, } },
- ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-18) to (28-32) Physical Damage to Spells" }, [3283106665] = { "" }, } },
- ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-19) to (31-35) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (15-19) to (31-35) Physical Damage to Spells" }, [3283106665] = { "" }, } },
- ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-22) to (33-39) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (16-22) to (33-39) Physical Damage to Spells" }, [3283106665] = { "" }, } },
- ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (19-25) to (39-44) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (19-25) to (39-44) Physical Damage to Spells" }, [3283106665] = { "" }, } },
- ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (22-28) to (45-51) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (22-28) to (45-51) Physical Damage to Spells" }, [3283106665] = { "" }, } },
- ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (25-33) to (51-59) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (25-33) to (51-59) Physical Damage to Spells" }, [3283106665] = { "" }, } },
- ["SpellAddedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (7-10) to (15-17) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (7-10) to (15-17) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (8-10) to (16-19) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (8-10) to (16-19) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (9-11) to (18-20) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (9-11) to (18-20) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (10-13) to (20-23) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (10-13) to (20-23) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-25) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (10-14) to (21-25) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (11-15) to (24-27) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (11-15) to (24-27) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (20-23) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (10-13) to (20-23) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-14) to (21-25) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (10-14) to (21-25) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (24-27) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (11-15) to (24-27) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (26-30) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (13-16) to (26-30) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (29-33) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (14-18) to (29-33) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (32-36) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (15-20) to (32-36) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-16) to (26-30) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (13-16) to (26-30) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (14-18) to (29-33) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (14-18) to (29-33) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-20) to (32-36) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (15-20) to (32-36) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-23) to (36-41) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (18-23) to (36-41) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (20-27) to (41-48) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (20-27) to (41-48) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (23-31) to (47-55) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (23-31) to (47-55) Chaos Damage to Spells" }, } },
- ["FireDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(7-8)% of Fire Damage taken Recouped as Life" }, } },
- ["FireDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(9-10)% of Fire Damage taken Recouped as Life" }, } },
- ["FireDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(11-12)% of Fire Damage taken Recouped as Life" }, } },
- ["FireDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(13-14)% of Fire Damage taken Recouped as Life" }, } },
- ["FireDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(15-16)% of Fire Damage taken Recouped as Life" }, } },
- ["FireDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(17-18)% of Fire Damage taken Recouped as Life" }, } },
- ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(13-14)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(15-16)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(17-18)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(19-20)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(21-22)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(23-24)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(19-20)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(21-22)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(23-24)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(25-26)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(27-28)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(29-30)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["ColdDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(7-8)% of Cold Damage taken Recouped as Life" }, } },
- ["ColdDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(9-10)% of Cold Damage taken Recouped as Life" }, } },
- ["ColdDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(11-12)% of Cold Damage taken Recouped as Life" }, } },
- ["ColdDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(13-14)% of Cold Damage taken Recouped as Life" }, } },
- ["ColdDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(15-16)% of Cold Damage taken Recouped as Life" }, } },
- ["ColdDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(17-18)% of Cold Damage taken Recouped as Life" }, } },
- ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(13-14)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(15-16)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(17-18)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(19-20)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(21-22)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(23-24)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(19-20)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(21-22)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(23-24)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(25-26)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(27-28)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(29-30)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["LightningDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(7-8)% of Lightning Damage taken Recouped as Life" }, } },
- ["LightningDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(9-10)% of Lightning Damage taken Recouped as Life" }, } },
- ["LightningDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(11-12)% of Lightning Damage taken Recouped as Life" }, } },
- ["LightningDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(13-14)% of Lightning Damage taken Recouped as Life" }, } },
- ["LightningDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(15-16)% of Lightning Damage taken Recouped as Life" }, } },
- ["LightningDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(17-18)% of Lightning Damage taken Recouped as Life" }, } },
- ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(13-14)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(15-16)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(17-18)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(19-20)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(21-22)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(23-24)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(19-20)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(21-22)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(23-24)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(25-26)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(27-28)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(29-30)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(7-8)% of Physical Damage taken Recouped as Life" }, } },
- ["PhysicalDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(9-10)% of Physical Damage taken Recouped as Life" }, } },
- ["PhysicalDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(11-12)% of Physical Damage taken Recouped as Life" }, } },
- ["PhysicalDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(13-14)% of Physical Damage taken Recouped as Life" }, } },
- ["PhysicalDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(15-16)% of Physical Damage taken Recouped as Life" }, } },
- ["PhysicalDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(17-18)% of Physical Damage taken Recouped as Life" }, } },
- ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(13-14)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(15-16)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(17-18)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(19-20)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(21-22)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(23-24)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(19-20)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(21-22)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(23-24)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(25-26)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(27-28)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(29-30)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["CurseEffectFlammabilityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "10% increased Flammability Curse Effect" }, } },
- ["CurseEffectFlammabilityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "11% increased Flammability Curse Effect" }, } },
- ["CurseEffectFlammabilityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "12% increased Flammability Curse Effect" }, } },
- ["CurseEffectFlammabilityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "13% increased Flammability Curse Effect" }, } },
- ["CurseEffectFlammabilityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "14% increased Flammability Curse Effect" }, } },
- ["CurseEffectFlammabilityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "15% increased Flammability Curse Effect" }, } },
- ["CurseEffectFlammabilityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "14% increased Flammability Curse Effect" }, } },
- ["CurseEffectFlammabilityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "15% increased Flammability Curse Effect" }, } },
- ["CurseEffectFlammabilityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "16% increased Flammability Curse Effect" }, } },
- ["CurseEffectFlammabilityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "17% increased Flammability Curse Effect" }, } },
- ["CurseEffectFlammabilityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "18% increased Flammability Curse Effect" }, } },
- ["CurseEffectFlammabilityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "19% increased Flammability Curse Effect" }, } },
- ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "18% increased Flammability Curse Effect" }, } },
- ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "19% increased Flammability Curse Effect" }, } },
- ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "20% increased Flammability Curse Effect" }, } },
- ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "21% increased Flammability Curse Effect" }, } },
- ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "22% increased Flammability Curse Effect" }, } },
- ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "23% increased Flammability Curse Effect" }, } },
- ["CurseEffectFrostbiteEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "10% increased Frostbite Curse Effect" }, } },
- ["CurseEffectFrostbiteEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "11% increased Frostbite Curse Effect" }, } },
- ["CurseEffectFrostbiteEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "12% increased Frostbite Curse Effect" }, } },
- ["CurseEffectFrostbiteEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "13% increased Frostbite Curse Effect" }, } },
- ["CurseEffectFrostbiteEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "14% increased Frostbite Curse Effect" }, } },
- ["CurseEffectFrostbiteEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "15% increased Frostbite Curse Effect" }, } },
- ["CurseEffectFrostbiteEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "14% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectFrostbiteEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "15% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectFrostbiteEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "16% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectFrostbiteEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "17% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectFrostbiteEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "18% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectFrostbiteEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "19% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "18% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "19% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "20% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "21% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "22% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "23% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectConductivityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "10% increased Conductivity Curse Effect" }, } },
- ["CurseEffectConductivityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "11% increased Conductivity Curse Effect" }, } },
- ["CurseEffectConductivityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "12% increased Conductivity Curse Effect" }, } },
- ["CurseEffectConductivityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "13% increased Conductivity Curse Effect" }, } },
- ["CurseEffectConductivityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "14% increased Conductivity Curse Effect" }, } },
- ["CurseEffectConductivityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "15% increased Conductivity Curse Effect" }, } },
- ["CurseEffectConductivityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "14% increased Conductivity Curse Effect" }, } },
- ["CurseEffectConductivityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "15% increased Conductivity Curse Effect" }, } },
- ["CurseEffectConductivityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "16% increased Conductivity Curse Effect" }, } },
- ["CurseEffectConductivityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "17% increased Conductivity Curse Effect" }, } },
- ["CurseEffectConductivityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "18% increased Conductivity Curse Effect" }, } },
- ["CurseEffectConductivityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "19% increased Conductivity Curse Effect" }, } },
- ["CurseEffectConductivityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "18% increased Conductivity Curse Effect" }, } },
- ["CurseEffectConductivityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "19% increased Conductivity Curse Effect" }, } },
- ["CurseEffectConductivityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "20% increased Conductivity Curse Effect" }, } },
- ["CurseEffectConductivityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "21% increased Conductivity Curse Effect" }, } },
- ["CurseEffectConductivityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "22% increased Conductivity Curse Effect" }, } },
- ["CurseEffectConductivityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "23% increased Conductivity Curse Effect" }, } },
- ["CurseEffectVulnerabilityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "10% increased Vulnerability Curse Effect" }, } },
- ["CurseEffectVulnerabilityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "11% increased Vulnerability Curse Effect" }, } },
- ["CurseEffectVulnerabilityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "12% increased Vulnerability Curse Effect" }, } },
- ["CurseEffectVulnerabilityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "13% increased Vulnerability Curse Effect" }, } },
- ["CurseEffectVulnerabilityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "14% increased Vulnerability Curse Effect" }, } },
- ["CurseEffectVulnerabilityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "15% increased Vulnerability Curse Effect" }, } },
- ["CurseEffectVulnerabilityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "14% increased Vulnerability Curse Effect" }, } },
- ["CurseEffectVulnerabilityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "15% increased Vulnerability Curse Effect" }, } },
- ["CurseEffectVulnerabilityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "16% increased Vulnerability Curse Effect" }, } },
- ["CurseEffectVulnerabilityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "17% increased Vulnerability Curse Effect" }, } },
- ["CurseEffectVulnerabilityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "18% increased Vulnerability Curse Effect" }, } },
- ["CurseEffectVulnerabilityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "19% increased Vulnerability Curse Effect" }, } },
- ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "18% increased Vulnerability Curse Effect" }, } },
- ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "19% increased Vulnerability Curse Effect" }, } },
- ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "20% increased Vulnerability Curse Effect" }, } },
- ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "21% increased Vulnerability Curse Effect" }, } },
- ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "22% increased Vulnerability Curse Effect" }, } },
- ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "23% increased Vulnerability Curse Effect" }, } },
- ["CurseEffectElementalWeaknessEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "10% increased Elemental Weakness Curse Effect" }, } },
- ["CurseEffectElementalWeaknessEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "11% increased Elemental Weakness Curse Effect" }, } },
- ["CurseEffectElementalWeaknessEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "12% increased Elemental Weakness Curse Effect" }, } },
- ["CurseEffectElementalWeaknessEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "13% increased Elemental Weakness Curse Effect" }, } },
- ["CurseEffectElementalWeaknessEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "14% increased Elemental Weakness Curse Effect" }, } },
- ["CurseEffectElementalWeaknessEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "15% increased Elemental Weakness Curse Effect" }, } },
- ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "14% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "15% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "16% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "17% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "18% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "19% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "18% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "19% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "20% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "21% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "22% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "23% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectDespairEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "10% increased Despair Curse Effect" }, } },
- ["CurseEffectDespairEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "11% increased Despair Curse Effect" }, } },
- ["CurseEffectDespairEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "12% increased Despair Curse Effect" }, } },
- ["CurseEffectDespairEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "13% increased Despair Curse Effect" }, } },
- ["CurseEffectDespairEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "14% increased Despair Curse Effect" }, } },
- ["CurseEffectDespairEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "15% increased Despair Curse Effect" }, } },
- ["CurseEffectDespairEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "14% increased Despair Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectDespairEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "15% increased Despair Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectDespairEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "16% increased Despair Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectDespairEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "17% increased Despair Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectDespairEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "18% increased Despair Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectDespairEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "19% increased Despair Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectDespairEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "18% increased Despair Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectDespairEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "19% increased Despair Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectDespairEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "20% increased Despair Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectDespairEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "21% increased Despair Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectDespairEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "22% increased Despair Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectDespairEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "23% increased Despair Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectTemporalChainsEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "10% increased Temporal Chains Curse Effect" }, } },
- ["CurseEffectTemporalChainsEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "11% increased Temporal Chains Curse Effect" }, } },
- ["CurseEffectTemporalChainsEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "12% increased Temporal Chains Curse Effect" }, } },
- ["CurseEffectTemporalChainsEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "13% increased Temporal Chains Curse Effect" }, } },
- ["CurseEffectTemporalChainsEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "14% increased Temporal Chains Curse Effect" }, } },
- ["CurseEffectTemporalChainsEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "15% increased Temporal Chains Curse Effect" }, } },
- ["CurseEffectTemporalChainsEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "14% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectTemporalChainsEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "15% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectTemporalChainsEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "16% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectTemporalChainsEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "17% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectTemporalChainsEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "18% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectTemporalChainsEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "19% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "18% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "19% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "20% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "21% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "22% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "23% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectEnfeebleEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "10% increased Enfeeble Curse Effect" }, } },
- ["CurseEffectEnfeebleEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "11% increased Enfeeble Curse Effect" }, } },
- ["CurseEffectEnfeebleEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "12% increased Enfeeble Curse Effect" }, } },
- ["CurseEffectEnfeebleEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "13% increased Enfeeble Curse Effect" }, } },
- ["CurseEffectEnfeebleEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "14% increased Enfeeble Curse Effect" }, } },
- ["CurseEffectEnfeebleEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "15% increased Enfeeble Curse Effect" }, } },
- ["CurseEffectEnfeebleEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "14% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectEnfeebleEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "15% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectEnfeebleEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "16% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectEnfeebleEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "17% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectEnfeebleEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "18% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectEnfeebleEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "19% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "18% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "19% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "20% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "21% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "22% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "23% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectPunishmentEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "10% increased Punishment Curse Effect" }, } },
- ["CurseEffectPunishmentEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "11% increased Punishment Curse Effect" }, } },
- ["CurseEffectPunishmentEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "12% increased Punishment Curse Effect" }, } },
- ["CurseEffectPunishmentEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "13% increased Punishment Curse Effect" }, } },
- ["CurseEffectPunishmentEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "14% increased Punishment Curse Effect" }, } },
- ["CurseEffectPunishmentEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "15% increased Punishment Curse Effect" }, } },
- ["CurseEffectPunishmentEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "14% increased Punishment Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectPunishmentEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "15% increased Punishment Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectPunishmentEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "16% increased Punishment Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectPunishmentEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "17% increased Punishment Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectPunishmentEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "18% increased Punishment Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectPunishmentEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "19% increased Punishment Curse Effect" }, [4074358700] = { "" }, } },
- ["CurseEffectPunishmentEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "18% increased Punishment Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectPunishmentEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "19% increased Punishment Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectPunishmentEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "20% increased Punishment Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectPunishmentEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "21% increased Punishment Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectPunishmentEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "22% increased Punishment Curse Effect" }, [3283106665] = { "" }, } },
- ["CurseEffectPunishmentEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "23% increased Punishment Curse Effect" }, [3283106665] = { "" }, } },
- ["ReducedAttackManaCostEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-20)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(19-20)% reduced Mana Cost of Attacks" }, } },
- ["ReducedAttackManaCostEldritchImplicit2"] = { type = "Exarch", affix = "", "(21-22)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(21-22)% reduced Mana Cost of Attacks" }, } },
- ["ReducedAttackManaCostEldritchImplicit3"] = { type = "Exarch", affix = "", "(23-24)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(23-24)% reduced Mana Cost of Attacks" }, } },
- ["ReducedAttackManaCostEldritchImplicit4"] = { type = "Exarch", affix = "", "(25-26)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(25-26)% reduced Mana Cost of Attacks" }, } },
- ["ReducedAttackManaCostEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(27-28)% reduced Mana Cost of Attacks" }, } },
- ["ReducedAttackManaCostEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(29-30)% reduced Mana Cost of Attacks" }, } },
- ["ReducedAttackManaCostEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(25-26)% reduced Mana Cost of Attacks" }, } },
- ["ReducedAttackManaCostEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(27-28)% reduced Mana Cost of Attacks" }, } },
- ["ReducedAttackManaCostEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(29-30)% reduced Mana Cost of Attacks" }, } },
- ["ReducedAttackManaCostEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-32)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(31-32)% reduced Mana Cost of Attacks" }, } },
- ["ReducedAttackManaCostEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(33-34)% reduced Mana Cost of Attacks" }, } },
- ["ReducedAttackManaCostEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(35-36)% reduced Mana Cost of Attacks" }, } },
- ["ReducedAttackManaCostEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(31-32)% reduced Mana Cost of Attacks" }, } },
- ["ReducedAttackManaCostEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(33-34)% reduced Mana Cost of Attacks" }, } },
- ["ReducedAttackManaCostEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(35-36)% reduced Mana Cost of Attacks" }, } },
- ["ReducedAttackManaCostEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(37-38)% reduced Mana Cost of Attacks" }, } },
- ["ReducedAttackManaCostEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(39-40)% reduced Mana Cost of Attacks" }, } },
- ["ReducedAttackManaCostEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(41-42)% reduced Mana Cost of Attacks" }, } },
- ["MaximumLightningResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } },
- ["MaximumLightningResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } },
- ["MaximumLightningResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } },
- ["MaximumLightningResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } },
- ["MaximumLightningResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } },
- ["MaximumLightningResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } },
- ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } },
- ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } },
- ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } },
- ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } },
- ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [4074358700] = { "" }, } },
- ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [4074358700] = { "" }, } },
- ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } },
- ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } },
- ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } },
- ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } },
- ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [3283106665] = { "" }, } },
- ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [3283106665] = { "" }, } },
- ["IncreasedDamagePerPowerChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "4% increased Damage per Power Charge" }, } },
- ["IncreasedDamagePerPowerChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "4% increased Damage per Power Charge" }, } },
- ["IncreasedDamagePerPowerChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } },
- ["IncreasedDamagePerPowerChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } },
- ["IncreasedDamagePerPowerChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "6% increased Damage per Power Charge" }, } },
- ["IncreasedDamagePerPowerChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "6% increased Damage per Power Charge" }, } },
- ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "5% increased Damage per Power Charge" }, } },
- ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "5% increased Damage per Power Charge" }, } },
- ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "6% increased Damage per Power Charge" }, } },
- ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "6% increased Damage per Power Charge" }, } },
- ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "7% increased Damage per Power Charge" }, } },
- ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "7% increased Damage per Power Charge" }, } },
- ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "6% increased Damage per Power Charge" }, } },
- ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "6% increased Damage per Power Charge" }, } },
- ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "7% increased Damage per Power Charge" }, } },
- ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "7% increased Damage per Power Charge" }, } },
- ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "8% increased Damage per Power Charge" }, } },
- ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "8% increased Damage per Power Charge" }, } },
- ["MinionLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions have (14-16)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (14-16)% increased maximum Life" }, } },
- ["MinionLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions have (17-19)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (17-19)% increased maximum Life" }, } },
- ["MinionLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions have (20-22)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-22)% increased maximum Life" }, } },
- ["MinionLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions have (23-25)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (23-25)% increased maximum Life" }, } },
- ["MinionLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions have (26-27)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (26-27)% increased maximum Life" }, } },
- ["MinionLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions have (28-29)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (28-29)% increased maximum Life" }, } },
- ["MinionLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (20-22)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (20-22)% increased maximum Life" }, } },
- ["MinionLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (23-25)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (23-25)% increased maximum Life" }, } },
- ["MinionLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (26-28)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (26-28)% increased maximum Life" }, } },
- ["MinionLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (29-31)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (29-31)% increased maximum Life" }, } },
- ["MinionLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (32-33)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (32-33)% increased maximum Life" }, } },
- ["MinionLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (34-35)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (34-35)% increased maximum Life" }, } },
- ["MinionLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (26-28)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (26-28)% increased maximum Life" }, } },
- ["MinionLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (29-31)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (29-31)% increased maximum Life" }, } },
- ["MinionLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (32-34)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (32-34)% increased maximum Life" }, } },
- ["MinionLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (35-37)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (35-37)% increased maximum Life" }, } },
- ["MinionLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (38-39)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (38-39)% increased maximum Life" }, } },
- ["MinionLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (40-41)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (40-41)% increased maximum Life" }, } },
- ["MinionRunSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions have (11-12)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (11-12)% increased Movement Speed" }, } },
- ["MinionRunSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions have (13-14)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (13-14)% increased Movement Speed" }, } },
- ["MinionRunSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions have (15-16)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (15-16)% increased Movement Speed" }, } },
- ["MinionRunSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions have (17-18)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (17-18)% increased Movement Speed" }, } },
- ["MinionRunSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions have (19-20)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (19-20)% increased Movement Speed" }, } },
- ["MinionRunSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions have (21-22)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (21-22)% increased Movement Speed" }, } },
- ["MinionRunSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (13-15)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (13-15)% increased Movement Speed" }, } },
- ["MinionRunSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (16-18)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (16-18)% increased Movement Speed" }, } },
- ["MinionRunSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (19-21)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (19-21)% increased Movement Speed" }, } },
- ["MinionRunSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (22-24)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (22-24)% increased Movement Speed" }, } },
- ["MinionRunSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (25-26)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (25-26)% increased Movement Speed" }, } },
- ["MinionRunSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (27-28)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (27-28)% increased Movement Speed" }, } },
- ["MinionRunSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (19-21)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (19-21)% increased Movement Speed" }, } },
- ["MinionRunSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (22-24)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (22-24)% increased Movement Speed" }, } },
- ["MinionRunSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (25-27)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (25-27)% increased Movement Speed" }, } },
- ["MinionRunSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (28-30)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (28-30)% increased Movement Speed" }, } },
- ["MinionRunSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (31-32)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (31-32)% increased Movement Speed" }, } },
- ["MinionRunSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (33-34)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (33-34)% increased Movement Speed" }, } },
- ["AreaOfEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(7-8)% increased Area of Effect" }, } },
- ["AreaOfEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(9-10)% increased Area of Effect" }, } },
- ["AreaOfEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(11-12)% increased Area of Effect" }, } },
- ["AreaOfEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(13-14)% increased Area of Effect" }, } },
- ["AreaOfEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(15-16)% increased Area of Effect" }, } },
- ["AreaOfEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(17-18)% increased Area of Effect" }, } },
- ["AreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(13-14)% increased Area of Effect" }, } },
- ["AreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(15-16)% increased Area of Effect" }, } },
- ["AreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(17-18)% increased Area of Effect" }, } },
- ["AreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(19-20)% increased Area of Effect" }, } },
- ["AreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(21-22)% increased Area of Effect" }, } },
- ["AreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(23-24)% increased Area of Effect" }, } },
- ["AreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(19-20)% increased Area of Effect" }, } },
- ["AreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(21-22)% increased Area of Effect" }, } },
- ["AreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(23-24)% increased Area of Effect" }, } },
- ["AreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(25-26)% increased Area of Effect" }, } },
- ["AreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(27-28)% increased Area of Effect" }, } },
- ["AreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(29-30)% increased Area of Effect" }, } },
- ["EnergyShieldRegenerationEldritchImplicit1"] = { type = "Eater", affix = "", "21% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "21% increased Energy Shield Recharge Rate" }, } },
- ["EnergyShieldRegenerationEldritchImplicit2"] = { type = "Eater", affix = "", "22% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "22% increased Energy Shield Recharge Rate" }, } },
- ["EnergyShieldRegenerationEldritchImplicit3"] = { type = "Eater", affix = "", "23% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "23% increased Energy Shield Recharge Rate" }, } },
- ["EnergyShieldRegenerationEldritchImplicit4"] = { type = "Eater", affix = "", "24% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "24% increased Energy Shield Recharge Rate" }, } },
- ["EnergyShieldRegenerationEldritchImplicit5"] = { type = "Eater", affix = "", "25% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "25% increased Energy Shield Recharge Rate" }, } },
- ["EnergyShieldRegenerationEldritchImplicit6"] = { type = "Eater", affix = "", "26% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "26% increased Energy Shield Recharge Rate" }, } },
- ["EnergyShieldRegenerationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 24% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "24% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } },
- ["EnergyShieldRegenerationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "25% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } },
- ["EnergyShieldRegenerationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 26% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "26% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } },
- ["EnergyShieldRegenerationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 27% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "27% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } },
- ["EnergyShieldRegenerationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 28% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "28% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } },
- ["EnergyShieldRegenerationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 29% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "29% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } },
- ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 27% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "27% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } },
- ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 28% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "28% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } },
- ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 29% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "29% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } },
- ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "30% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } },
- ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 31% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "31% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } },
- ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 32% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "32% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } },
- ["EnergyShieldFromGlovesBootsEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(33-35)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } },
- ["EnergyShieldFromGlovesBootsEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(36-38)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } },
- ["EnergyShieldFromGlovesBootsEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(39-41)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } },
- ["EnergyShieldFromGlovesBootsEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } },
- ["EnergyShieldFromGlovesBootsEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } },
- ["EnergyShieldFromGlovesBootsEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } },
- ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } },
- ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } },
- ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } },
- ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } },
- ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(54-57)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } },
- ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(58-61)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } },
- ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } },
- ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(54-56)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } },
- ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(57-59)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } },
- ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(60-62)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } },
- ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(63-66)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } },
- ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(67-70)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } },
- ["FireResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } },
- ["FireResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } },
- ["FireResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 5% Fire Resistance" }, } },
- ["FireResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 5% Fire Resistance" }, } },
- ["FireResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } },
- ["FireResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } },
- ["FireResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } },
- ["FireResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } },
- ["FireResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } },
- ["FireResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } },
- ["FireResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } },
- ["FireResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } },
- ["FireResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } },
- ["FireResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } },
- ["FireResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 9% Fire Resistance" }, } },
- ["FireResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 9% Fire Resistance" }, } },
- ["FireResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 10% Fire Resistance" }, } },
- ["FireResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 10% Fire Resistance" }, } },
- ["ColdResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, } },
- ["ColdResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, } },
- ["ColdResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 5% Cold Resistance" }, } },
- ["ColdResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 5% Cold Resistance" }, } },
- ["ColdResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } },
- ["ColdResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } },
- ["ColdResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } },
- ["ColdResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } },
- ["ColdResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } },
- ["ColdResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } },
- ["ColdResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } },
- ["ColdResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } },
- ["ColdResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } },
- ["ColdResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } },
- ["ColdResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 9% Cold Resistance" }, } },
- ["ColdResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 9% Cold Resistance" }, } },
- ["ColdResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 10% Cold Resistance" }, } },
- ["ColdResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 10% Cold Resistance" }, } },
- ["LightningResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } },
- ["LightningResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } },
- ["LightningResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 5% Lightning Resistance" }, } },
- ["LightningResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 5% Lightning Resistance" }, } },
- ["LightningResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } },
- ["LightningResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } },
- ["LightningResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } },
- ["LightningResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } },
- ["LightningResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } },
- ["LightningResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } },
- ["LightningResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } },
- ["LightningResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } },
- ["LightningResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } },
- ["LightningResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } },
- ["LightningResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 9% Lightning Resistance" }, } },
- ["LightningResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 9% Lightning Resistance" }, } },
- ["LightningResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 10% Lightning Resistance" }, } },
- ["LightningResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 10% Lightning Resistance" }, } },
- ["IncreasedAilmentDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(13-14)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(13-14)% increased Duration of Ailments on Enemies" }, } },
- ["IncreasedAilmentDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(15-16)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(15-16)% increased Duration of Ailments on Enemies" }, } },
- ["IncreasedAilmentDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(17-18)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(17-18)% increased Duration of Ailments on Enemies" }, } },
- ["IncreasedAilmentDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(19-20)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(19-20)% increased Duration of Ailments on Enemies" }, } },
- ["IncreasedAilmentDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(21-22)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(21-22)% increased Duration of Ailments on Enemies" }, } },
- ["IncreasedAilmentDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(23-24)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(23-24)% increased Duration of Ailments on Enemies" }, } },
- ["IncreasedAilmentDurationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(19-20)% increased Duration of Ailments on Enemies" }, } },
- ["IncreasedAilmentDurationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(21-22)% increased Duration of Ailments on Enemies" }, } },
- ["IncreasedAilmentDurationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(23-24)% increased Duration of Ailments on Enemies" }, } },
- ["IncreasedAilmentDurationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(25-26)% increased Duration of Ailments on Enemies" }, } },
- ["IncreasedAilmentDurationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(27-28)% increased Duration of Ailments on Enemies" }, } },
- ["IncreasedAilmentDurationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(29-30)% increased Duration of Ailments on Enemies" }, } },
- ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(25-26)% increased Duration of Ailments on Enemies" }, } },
- ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(27-28)% increased Duration of Ailments on Enemies" }, } },
- ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(29-30)% increased Duration of Ailments on Enemies" }, } },
- ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(31-32)% increased Duration of Ailments on Enemies" }, } },
- ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(33-34)% increased Duration of Ailments on Enemies" }, } },
- ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(35-36)% increased Duration of Ailments on Enemies" }, } },
- ["IncreasedAilmentEffectOnEnemiesEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(14-16)% increased Effect of Non-Damaging Ailments" }, } },
- ["IncreasedAilmentEffectOnEnemiesEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(17-19)% increased Effect of Non-Damaging Ailments" }, } },
- ["IncreasedAilmentEffectOnEnemiesEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(20-22)% increased Effect of Non-Damaging Ailments" }, } },
- ["IncreasedAilmentEffectOnEnemiesEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(23-25)% increased Effect of Non-Damaging Ailments" }, } },
- ["IncreasedAilmentEffectOnEnemiesEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(26-27)% increased Effect of Non-Damaging Ailments" }, } },
- ["IncreasedAilmentEffectOnEnemiesEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(28-29)% increased Effect of Non-Damaging Ailments" }, } },
- ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-22)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(20-22)% increased Effect of Non-Damaging Ailments" }, } },
- ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(23-25)% increased Effect of Non-Damaging Ailments" }, } },
- ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(26-28)% increased Effect of Non-Damaging Ailments" }, } },
- ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(29-31)% increased Effect of Non-Damaging Ailments" }, } },
- ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-33)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(32-33)% increased Effect of Non-Damaging Ailments" }, } },
- ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (34-35)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(34-35)% increased Effect of Non-Damaging Ailments" }, } },
- ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-28)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(26-28)% increased Effect of Non-Damaging Ailments" }, } },
- ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-31)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(29-31)% increased Effect of Non-Damaging Ailments" }, } },
- ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (32-34)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(32-34)% increased Effect of Non-Damaging Ailments" }, } },
- ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-37)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(35-37)% increased Effect of Non-Damaging Ailments" }, } },
- ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-39)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(38-39)% increased Effect of Non-Damaging Ailments" }, } },
- ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (40-41)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(40-41)% increased Effect of Non-Damaging Ailments" }, } },
- ["PhysicalDamageTakenAsFireUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "6% of Physical Damage from Hits taken as Fire Damage" }, } },
- ["PhysicalDamageTakenAsFireUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "6% of Physical Damage from Hits taken as Fire Damage" }, } },
- ["PhysicalDamageTakenAsFireUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "7% of Physical Damage from Hits taken as Fire Damage" }, } },
- ["PhysicalDamageTakenAsFireUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "7% of Physical Damage from Hits taken as Fire Damage" }, } },
- ["PhysicalDamageTakenAsFireUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "8% of Physical Damage from Hits taken as Fire Damage" }, } },
- ["PhysicalDamageTakenAsFireUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "8% of Physical Damage from Hits taken as Fire Damage" }, } },
- ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "8% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "8% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "9% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "9% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "11% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "11% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "12% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "12% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsColdUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "6% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "6% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "7% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "7% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "8% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "8% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "8% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "8% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "9% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "9% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "11% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "11% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "12% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "12% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsLightningUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "6% of Physical Damage from Hits taken as Lightning Damage" }, } },
- ["PhysicalDamageTakenAsLightningUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "6% of Physical Damage from Hits taken as Lightning Damage" }, } },
- ["PhysicalDamageTakenAsLightningUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "7% of Physical Damage from Hits taken as Lightning Damage" }, } },
- ["PhysicalDamageTakenAsLightningUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "7% of Physical Damage from Hits taken as Lightning Damage" }, } },
- ["PhysicalDamageTakenAsLightningUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "8% of Physical Damage from Hits taken as Lightning Damage" }, } },
- ["PhysicalDamageTakenAsLightningUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "8% of Physical Damage from Hits taken as Lightning Damage" }, } },
- ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "8% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "8% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "9% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "9% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "11% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "11% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "12% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "12% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsChaosUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "6% of Physical Damage from Hits taken as Chaos Damage" }, } },
- ["PhysicalDamageTakenAsChaosUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "6% of Physical Damage from Hits taken as Chaos Damage" }, } },
- ["PhysicalDamageTakenAsChaosUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "7% of Physical Damage from Hits taken as Chaos Damage" }, } },
- ["PhysicalDamageTakenAsChaosUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "7% of Physical Damage from Hits taken as Chaos Damage" }, } },
- ["PhysicalDamageTakenAsChaosUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "8% of Physical Damage from Hits taken as Chaos Damage" }, } },
- ["PhysicalDamageTakenAsChaosUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "8% of Physical Damage from Hits taken as Chaos Damage" }, } },
- ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "8% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "8% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "9% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "9% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "11% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "11% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "12% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "12% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } },
- ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } },
- ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "11% of Physical Damage from Hits taken as Fire Damage" }, } },
- ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "11% of Physical Damage from Hits taken as Fire Damage" }, } },
- ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "12% of Physical Damage from Hits taken as Fire Damage" }, } },
- ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "12% of Physical Damage from Hits taken as Fire Damage" }, } },
- ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "14% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "14% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "15% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "15% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "16% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "16% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "18% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "18% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "19% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "19% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "20% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "20% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "11% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "11% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "12% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "12% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "14% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "14% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "15% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "15% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "16% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "16% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "18% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "18% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "19% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "19% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "20% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "20% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, } },
- ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, } },
- ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "11% of Physical Damage from Hits taken as Lightning Damage" }, } },
- ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "11% of Physical Damage from Hits taken as Lightning Damage" }, } },
- ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "12% of Physical Damage from Hits taken as Lightning Damage" }, } },
- ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "12% of Physical Damage from Hits taken as Lightning Damage" }, } },
- ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "14% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "14% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "15% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "15% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "16% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "16% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "18% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "18% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "19% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "19% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "20% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "20% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, } },
- ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, } },
- ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "11% of Physical Damage from Hits taken as Chaos Damage" }, } },
- ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "11% of Physical Damage from Hits taken as Chaos Damage" }, } },
- ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "12% of Physical Damage from Hits taken as Chaos Damage" }, } },
- ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "12% of Physical Damage from Hits taken as Chaos Damage" }, } },
- ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "14% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "14% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "15% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "15% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "16% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "16% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } },
- ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "18% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "18% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "19% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "19% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "20% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "20% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } },
- ["ManaReservationEfficiencyEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "7% increased Mana Reservation Efficiency of Skills" }, } },
- ["ManaReservationEfficiencyEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "8% increased Mana Reservation Efficiency of Skills" }, } },
- ["ManaReservationEfficiencyEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "9% increased Mana Reservation Efficiency of Skills" }, } },
- ["ManaReservationEfficiencyEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "10% increased Mana Reservation Efficiency of Skills" }, } },
- ["ManaReservationEfficiencyEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "11% increased Mana Reservation Efficiency of Skills" }, } },
- ["ManaReservationEfficiencyEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "12% increased Mana Reservation Efficiency of Skills" }, } },
- ["ManaReservationEfficiencyEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "10% increased Mana Reservation Efficiency of Skills" }, } },
- ["ManaReservationEfficiencyEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "11% increased Mana Reservation Efficiency of Skills" }, } },
- ["ManaReservationEfficiencyEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "12% increased Mana Reservation Efficiency of Skills" }, } },
- ["ManaReservationEfficiencyEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "13% increased Mana Reservation Efficiency of Skills" }, } },
- ["ManaReservationEfficiencyEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "14% increased Mana Reservation Efficiency of Skills" }, } },
- ["ManaReservationEfficiencyEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "15% increased Mana Reservation Efficiency of Skills" }, } },
- ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "13% increased Mana Reservation Efficiency of Skills" }, } },
- ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "14% increased Mana Reservation Efficiency of Skills" }, } },
- ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "15% increased Mana Reservation Efficiency of Skills" }, } },
- ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "16% increased Mana Reservation Efficiency of Skills" }, } },
- ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "17% increased Mana Reservation Efficiency of Skills" }, } },
- ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "18% increased Mana Reservation Efficiency of Skills" }, } },
- ["ChanceToIgniteEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "5% chance to Ignite" }, } },
- ["ChanceToIgniteEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "10% chance to Ignite" }, } },
- ["ChanceToIgniteEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "15% chance to Ignite" }, } },
- ["ChanceToIgniteEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "20% chance to Ignite" }, } },
- ["ChanceToIgniteEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "25% chance to Ignite" }, } },
- ["ChanceToIgniteEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "30% chance to Ignite" }, } },
- ["ChanceToIgniteEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "15% chance to Ignite" }, [4074358700] = { "" }, } },
- ["ChanceToIgniteEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "20% chance to Ignite" }, [4074358700] = { "" }, } },
- ["ChanceToIgniteEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "25% chance to Ignite" }, [4074358700] = { "" }, } },
- ["ChanceToIgniteEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "30% chance to Ignite" }, [4074358700] = { "" }, } },
- ["ChanceToIgniteEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "35% chance to Ignite" }, [4074358700] = { "" }, } },
- ["ChanceToIgniteEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "40% chance to Ignite" }, [4074358700] = { "" }, } },
- ["ChanceToIgniteEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "25% chance to Ignite" }, [3283106665] = { "" }, } },
- ["ChanceToIgniteEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "30% chance to Ignite" }, [3283106665] = { "" }, } },
- ["ChanceToIgniteEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "35% chance to Ignite" }, [3283106665] = { "" }, } },
- ["ChanceToIgniteEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "40% chance to Ignite" }, [3283106665] = { "" }, } },
- ["ChanceToIgniteEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "45% chance to Ignite" }, [3283106665] = { "" }, } },
- ["ChanceToIgniteEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "50% chance to Ignite" }, [3283106665] = { "" }, } },
- ["ChanceToFreezeEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "5% chance to Freeze" }, } },
- ["ChanceToFreezeEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "10% chance to Freeze" }, } },
- ["ChanceToFreezeEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "15% chance to Freeze" }, } },
- ["ChanceToFreezeEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "20% chance to Freeze" }, } },
- ["ChanceToFreezeEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "25% chance to Freeze" }, } },
- ["ChanceToFreezeEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "30% chance to Freeze" }, } },
- ["ChanceToFreezeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "15% chance to Freeze" }, } },
- ["ChanceToFreezeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "20% chance to Freeze" }, } },
- ["ChanceToFreezeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "25% chance to Freeze" }, } },
- ["ChanceToFreezeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "30% chance to Freeze" }, } },
- ["ChanceToFreezeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "35% chance to Freeze" }, } },
- ["ChanceToFreezeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "40% chance to Freeze" }, } },
- ["ChanceToFreezeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "25% chance to Freeze" }, } },
- ["ChanceToFreezeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "30% chance to Freeze" }, } },
- ["ChanceToFreezeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "35% chance to Freeze" }, } },
- ["ChanceToFreezeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "40% chance to Freeze" }, } },
- ["ChanceToFreezeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "45% chance to Freeze" }, } },
- ["ChanceToFreezeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "50% chance to Freeze" }, } },
- ["ChanceToShockEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "5% chance to Shock" }, } },
- ["ChanceToShockEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "10% chance to Shock" }, } },
- ["ChanceToShockEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "15% chance to Shock" }, } },
- ["ChanceToShockEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "20% chance to Shock" }, } },
- ["ChanceToShockEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "25% chance to Shock" }, } },
- ["ChanceToShockEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "30% chance to Shock" }, } },
- ["ChanceToShockEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "15% chance to Shock" }, } },
- ["ChanceToShockEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "20% chance to Shock" }, } },
- ["ChanceToShockEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "25% chance to Shock" }, } },
- ["ChanceToShockEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "30% chance to Shock" }, } },
- ["ChanceToShockEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "35% chance to Shock" }, } },
- ["ChanceToShockEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "40% chance to Shock" }, } },
- ["ChanceToShockEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "25% chance to Shock" }, } },
- ["ChanceToShockEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "30% chance to Shock" }, } },
- ["ChanceToShockEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "35% chance to Shock" }, } },
- ["ChanceToShockEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "40% chance to Shock" }, } },
- ["ChanceToShockEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "45% chance to Shock" }, } },
- ["ChanceToShockEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "50% chance to Shock" }, } },
- ["ReducedIgniteDurationOnSelfEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(33-35)% reduced Ignite Duration on you" }, } },
- ["ReducedIgniteDurationOnSelfEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(36-38)% reduced Ignite Duration on you" }, } },
- ["ReducedIgniteDurationOnSelfEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(39-41)% reduced Ignite Duration on you" }, } },
- ["ReducedIgniteDurationOnSelfEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(42-44)% reduced Ignite Duration on you" }, } },
- ["ReducedIgniteDurationOnSelfEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(45-47)% reduced Ignite Duration on you" }, } },
- ["ReducedIgniteDurationOnSelfEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(48-50)% reduced Ignite Duration on you" }, } },
- ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(42-44)% reduced Ignite Duration on you" }, } },
- ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(45-47)% reduced Ignite Duration on you" }, } },
- ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(48-50)% reduced Ignite Duration on you" }, } },
- ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(51-53)% reduced Ignite Duration on you" }, } },
- ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(54-57)% reduced Ignite Duration on you" }, } },
- ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(58-61)% reduced Ignite Duration on you" }, } },
- ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(51-53)% reduced Ignite Duration on you" }, } },
- ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(54-56)% reduced Ignite Duration on you" }, } },
- ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(57-59)% reduced Ignite Duration on you" }, } },
- ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(60-62)% reduced Ignite Duration on you" }, } },
- ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(63-66)% reduced Ignite Duration on you" }, } },
- ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(67-70)% reduced Ignite Duration on you" }, } },
- ["ReducedFreezeDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(33-35)% reduced Freeze Duration on you" }, } },
- ["ReducedFreezeDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(36-38)% reduced Freeze Duration on you" }, } },
- ["ReducedFreezeDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(39-41)% reduced Freeze Duration on you" }, } },
- ["ReducedFreezeDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(42-44)% reduced Freeze Duration on you" }, } },
- ["ReducedFreezeDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(45-47)% reduced Freeze Duration on you" }, } },
- ["ReducedFreezeDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(48-50)% reduced Freeze Duration on you" }, } },
- ["ReducedFreezeDurationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(42-44)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } },
- ["ReducedFreezeDurationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(45-47)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } },
- ["ReducedFreezeDurationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(48-50)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } },
- ["ReducedFreezeDurationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-53)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } },
- ["ReducedFreezeDurationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(54-57)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } },
- ["ReducedFreezeDurationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(58-61)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } },
- ["ReducedFreezeDurationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-53)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } },
- ["ReducedFreezeDurationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(54-56)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } },
- ["ReducedFreezeDurationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(57-59)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } },
- ["ReducedFreezeDurationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(60-62)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } },
- ["ReducedFreezeDurationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(63-66)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } },
- ["ReducedFreezeDurationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(67-70)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } },
- ["ReducedShockEffectOnSelfEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(33-35)% reduced Effect of Shock on you" }, } },
- ["ReducedShockEffectOnSelfEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(36-38)% reduced Effect of Shock on you" }, } },
- ["ReducedShockEffectOnSelfEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(39-41)% reduced Effect of Shock on you" }, } },
- ["ReducedShockEffectOnSelfEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(42-44)% reduced Effect of Shock on you" }, } },
- ["ReducedShockEffectOnSelfEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(45-47)% reduced Effect of Shock on you" }, } },
- ["ReducedShockEffectOnSelfEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(48-50)% reduced Effect of Shock on you" }, } },
- ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(42-44)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } },
- ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(45-47)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } },
- ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(48-50)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } },
- ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(51-53)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } },
- ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(54-57)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } },
- ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(58-61)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } },
- ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(51-53)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } },
- ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(54-56)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } },
- ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(57-59)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } },
- ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(60-62)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } },
- ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(63-66)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } },
- ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(67-70)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } },
- ["ManaRegenerationEldritchImplicit1"] = { type = "Eater", affix = "", "(19-21)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(19-21)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationEldritchImplicit2"] = { type = "Eater", affix = "", "(22-24)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(22-24)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationEldritchImplicit3"] = { type = "Eater", affix = "", "(25-27)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-27)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationEldritchImplicit4"] = { type = "Eater", affix = "", "(28-30)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(28-30)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationEldritchImplicit5"] = { type = "Eater", affix = "", "(31-33)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(31-33)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationEldritchImplicit6"] = { type = "Eater", affix = "", "(34-36)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(34-36)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(31-33)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(34-36)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(37-39)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(40-42)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(43-45)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(46-48)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(43-45)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(46-48)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(49-51)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(52-54)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(55-57)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(58-60)% increased Mana Regeneration Rate" }, } },
- ["EnemyLifeRegenerationRateEldritchImplicit1"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (65-67)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (65-67)% reduced Life Regeneration rate" }, } },
- ["EnemyLifeRegenerationRateEldritchImplicit2"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (68-70)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (68-70)% reduced Life Regeneration rate" }, } },
- ["EnemyLifeRegenerationRateEldritchImplicit3"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (71-73)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (71-73)% reduced Life Regeneration rate" }, } },
- ["EnemyLifeRegenerationRateEldritchImplicit4"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate" }, } },
- ["EnemyLifeRegenerationRateEldritchImplicit5"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate" }, } },
- ["EnemyLifeRegenerationRateEldritchImplicit6"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate" }, } },
- ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } },
- ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } },
- ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } },
- ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } },
- ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } },
- ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } },
- ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } },
- ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } },
- ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } },
- ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (92-94)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (92-94)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } },
- ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (95-97)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (95-97)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } },
- ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (98-100)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (98-100)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } },
- ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit1"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "5% increased Mana Regeneration Rate per Power Charge" }, } },
- ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit2"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "5% increased Mana Regeneration Rate per Power Charge" }, } },
- ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit3"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "5% increased Mana Regeneration Rate per Power Charge" }, } },
- ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit4"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "5% increased Mana Regeneration Rate per Power Charge" }, } },
- ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit5"] = { type = "Eater", affix = "", "6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, } },
- ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit6"] = { type = "Eater", affix = "", "6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, } },
- ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } },
- ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } },
- ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } },
- ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } },
- ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } },
- ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } },
- ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } },
- ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } },
- ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } },
- ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } },
- ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "8% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } },
- ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "8% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } },
- ["AttackDamageEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(14-16)% increased Attack Damage" }, } },
- ["AttackDamageEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(17-19)% increased Attack Damage" }, } },
- ["AttackDamageEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(20-22)% increased Attack Damage" }, } },
- ["AttackDamageEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(23-25)% increased Attack Damage" }, } },
- ["AttackDamageEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(26-27)% increased Attack Damage" }, } },
- ["AttackDamageEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(28-29)% increased Attack Damage" }, } },
- ["AttackDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(26-28)% increased Attack Damage" }, } },
- ["AttackDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(29-31)% increased Attack Damage" }, } },
- ["AttackDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-34)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(32-34)% increased Attack Damage" }, } },
- ["AttackDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (35-37)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(35-37)% increased Attack Damage" }, } },
- ["AttackDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (38-39)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(38-39)% increased Attack Damage" }, } },
- ["AttackDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-41)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(40-41)% increased Attack Damage" }, } },
- ["AttackDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-40)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(38-40)% increased Attack Damage" }, } },
- ["AttackDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-43)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(41-43)% increased Attack Damage" }, } },
- ["AttackDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (44-46)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(44-46)% increased Attack Damage" }, } },
- ["AttackDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (47-49)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(47-49)% increased Attack Damage" }, } },
- ["AttackDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (50-51)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(50-51)% increased Attack Damage" }, } },
- ["AttackDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-53)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(52-53)% increased Attack Damage" }, } },
- ["SpellDamageEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(14-16)% increased Spell Damage" }, } },
- ["SpellDamageEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(17-19)% increased Spell Damage" }, } },
- ["SpellDamageEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-22)% increased Spell Damage" }, } },
- ["SpellDamageEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-25)% increased Spell Damage" }, } },
- ["SpellDamageEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(26-27)% increased Spell Damage" }, } },
- ["SpellDamageEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(28-29)% increased Spell Damage" }, } },
- ["SpellDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(26-28)% increased Spell Damage" }, [4074358700] = { "" }, } },
- ["SpellDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(29-31)% increased Spell Damage" }, [4074358700] = { "" }, } },
- ["SpellDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-34)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(32-34)% increased Spell Damage" }, [4074358700] = { "" }, } },
- ["SpellDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (35-37)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-37)% increased Spell Damage" }, [4074358700] = { "" }, } },
- ["SpellDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (38-39)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(38-39)% increased Spell Damage" }, [4074358700] = { "" }, } },
- ["SpellDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-41)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-41)% increased Spell Damage" }, [4074358700] = { "" }, } },
- ["SpellDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-40)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(38-40)% increased Spell Damage" }, [3283106665] = { "" }, } },
- ["SpellDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-43)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(41-43)% increased Spell Damage" }, [3283106665] = { "" }, } },
- ["SpellDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (44-46)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(44-46)% increased Spell Damage" }, [3283106665] = { "" }, } },
- ["SpellDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (47-49)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(47-49)% increased Spell Damage" }, [3283106665] = { "" }, } },
- ["SpellDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (50-51)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-51)% increased Spell Damage" }, [3283106665] = { "" }, } },
- ["SpellDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-53)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(52-53)% increased Spell Damage" }, [3283106665] = { "" }, } },
- ["ArcaneSurgeEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(6-7)% increased Effect of Arcane Surge on you" }, } },
- ["ArcaneSurgeEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(8-9)% increased Effect of Arcane Surge on you" }, } },
- ["ArcaneSurgeEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(10-11)% increased Effect of Arcane Surge on you" }, } },
- ["ArcaneSurgeEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(12-13)% increased Effect of Arcane Surge on you" }, } },
- ["ArcaneSurgeEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(14-15)% increased Effect of Arcane Surge on you" }, } },
- ["ArcaneSurgeEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(16-17)% increased Effect of Arcane Surge on you" }, } },
- ["ArcaneSurgeEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(12-13)% increased Effect of Arcane Surge on you" }, } },
- ["ArcaneSurgeEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(14-15)% increased Effect of Arcane Surge on you" }, } },
- ["ArcaneSurgeEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(16-17)% increased Effect of Arcane Surge on you" }, } },
- ["ArcaneSurgeEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(18-19)% increased Effect of Arcane Surge on you" }, } },
- ["ArcaneSurgeEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(20-21)% increased Effect of Arcane Surge on you" }, } },
- ["ArcaneSurgeEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(22-23)% increased Effect of Arcane Surge on you" }, } },
- ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(18-19)% increased Effect of Arcane Surge on you" }, } },
- ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(20-21)% increased Effect of Arcane Surge on you" }, } },
- ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(22-23)% increased Effect of Arcane Surge on you" }, } },
- ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(24-25)% increased Effect of Arcane Surge on you" }, } },
- ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(26-27)% increased Effect of Arcane Surge on you" }, } },
- ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(28-29)% increased Effect of Arcane Surge on you" }, } },
- ["MovementVelocityEldritchImplicit1"] = { type = "Exarch", affix = "", "5% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } },
- ["MovementVelocityEldritchImplicit2"] = { type = "Exarch", affix = "", "6% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "6% increased Movement Speed" }, } },
- ["MovementVelocityEldritchImplicit3"] = { type = "Exarch", affix = "", "7% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "7% increased Movement Speed" }, } },
- ["MovementVelocityEldritchImplicit4"] = { type = "Exarch", affix = "", "8% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "8% increased Movement Speed" }, } },
- ["MovementVelocityEldritchImplicit5"] = { type = "Exarch", affix = "", "9% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "9% increased Movement Speed" }, } },
- ["MovementVelocityEldritchImplicit6"] = { type = "Exarch", affix = "", "10% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } },
- ["MovementVelocityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 8% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "8% increased Movement Speed" }, } },
- ["MovementVelocityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 9% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "9% increased Movement Speed" }, } },
- ["MovementVelocityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "10% increased Movement Speed" }, } },
- ["MovementVelocityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "11% increased Movement Speed" }, } },
- ["MovementVelocityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "12% increased Movement Speed" }, } },
- ["MovementVelocityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "13% increased Movement Speed" }, } },
- ["MovementVelocityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "11% increased Movement Speed" }, } },
- ["MovementVelocityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "12% increased Movement Speed" }, } },
- ["MovementVelocityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "13% increased Movement Speed" }, } },
- ["MovementVelocityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "14% increased Movement Speed" }, } },
- ["MovementVelocityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "15% increased Movement Speed" }, } },
- ["MovementVelocityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "16% increased Movement Speed" }, } },
- ["ActionSpeedImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "4% increased Action Speed" }, } },
- ["ActionSpeedImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "4% increased Action Speed" }, } },
- ["ActionSpeedImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "5% increased Action Speed" }, } },
- ["ActionSpeedImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "5% increased Action Speed" }, } },
- ["ActionSpeedImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "6% increased Action Speed" }, } },
- ["ActionSpeedImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "6% increased Action Speed" }, } },
- ["ActionSpeedImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "5% increased Action Speed" }, } },
- ["ActionSpeedImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "5% increased Action Speed" }, } },
- ["ActionSpeedImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "6% increased Action Speed" }, } },
- ["ActionSpeedImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "6% increased Action Speed" }, } },
- ["ActionSpeedImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "7% increased Action Speed" }, } },
- ["ActionSpeedImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "7% increased Action Speed" }, } },
- ["ActionSpeedImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "6% increased Action Speed" }, } },
- ["ActionSpeedImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "6% increased Action Speed" }, } },
- ["ActionSpeedImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "7% increased Action Speed" }, } },
- ["ActionSpeedImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "7% increased Action Speed" }, } },
- ["ActionSpeedImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "8% increased Action Speed" }, } },
- ["ActionSpeedImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "8% increased Action Speed" }, } },
- ["ScorchedGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 2 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 2 seconds" }, } },
- ["ScorchedGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 3 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 3 seconds" }, } },
- ["ScorchedGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 4 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 4 seconds" }, } },
- ["ScorchedGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 5 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 5 seconds" }, } },
- ["ScorchedGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 6 seconds" }, } },
- ["ScorchedGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 7 seconds" }, } },
- ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 4 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 4 seconds" }, [4074358700] = { "" }, } },
- ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 5 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 5 seconds" }, [4074358700] = { "" }, } },
- ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 6 seconds" }, [4074358700] = { "" }, } },
- ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 7 seconds" }, [4074358700] = { "" }, } },
- ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 8 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 8 seconds" }, [4074358700] = { "" }, } },
- ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 9 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 9 seconds" }, [4074358700] = { "" }, } },
- ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 6 seconds" }, [3283106665] = { "" }, } },
- ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 7 seconds" }, [3283106665] = { "" }, } },
- ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 8 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 8 seconds" }, [3283106665] = { "" }, } },
- ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 9 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 9 seconds" }, [3283106665] = { "" }, } },
- ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 10 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 10 seconds" }, [3283106665] = { "" }, } },
- ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 11 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 11 seconds" }, [3283106665] = { "" }, } },
- ["BrittleGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 2 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 2 seconds" }, } },
- ["BrittleGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 3 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 3 seconds" }, } },
- ["BrittleGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 4 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 4 seconds" }, } },
- ["BrittleGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 5 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 5 seconds" }, } },
- ["BrittleGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 6 seconds" }, } },
- ["BrittleGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 7 seconds" }, } },
- ["BrittleGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 4 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 4 seconds" }, } },
- ["BrittleGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 5 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 5 seconds" }, } },
- ["BrittleGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 6 seconds" }, } },
- ["BrittleGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 7 seconds" }, } },
- ["BrittleGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 8 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 8 seconds" }, } },
- ["BrittleGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 9 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 9 seconds" }, } },
- ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 6 seconds" }, } },
- ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 7 seconds" }, } },
- ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 8 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 8 seconds" }, } },
- ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 9 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 9 seconds" }, } },
- ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 10 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 10 seconds" }, } },
- ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 11 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 11 seconds" }, } },
- ["SappedGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 2 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 2 seconds" }, } },
- ["SappedGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 3 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 3 seconds" }, } },
- ["SappedGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 4 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 4 seconds" }, } },
- ["SappedGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 5 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 5 seconds" }, } },
- ["SappedGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 6 seconds" }, } },
- ["SappedGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 7 seconds" }, } },
- ["SappedGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 4 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 4 seconds" }, } },
- ["SappedGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 5 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 5 seconds" }, } },
- ["SappedGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 6 seconds" }, } },
- ["SappedGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 7 seconds" }, } },
- ["SappedGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 8 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 8 seconds" }, } },
- ["SappedGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 9 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 9 seconds" }, } },
- ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 6 seconds" }, } },
- ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 7 seconds" }, } },
- ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 8 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 8 seconds" }, } },
- ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 9 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 9 seconds" }, } },
- ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 10 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 10 seconds" }, } },
- ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 11 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 11 seconds" }, } },
- ["FireResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(13-14)% to Fire Resistance" }, } },
- ["FireResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-16)% to Fire Resistance" }, } },
- ["FireResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(17-18)% to Fire Resistance" }, } },
- ["FireResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(19-20)% to Fire Resistance" }, } },
- ["FireResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(21-22)% to Fire Resistance" }, } },
- ["FireResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(23-24)% to Fire Resistance" }, } },
- ["FireResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(19-20)% to Fire Resistance" }, } },
- ["FireResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(21-22)% to Fire Resistance" }, } },
- ["FireResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(23-24)% to Fire Resistance" }, } },
- ["FireResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(25-26)% to Fire Resistance" }, } },
- ["FireResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(27-28)% to Fire Resistance" }, } },
- ["FireResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(29-30)% to Fire Resistance" }, } },
- ["FireResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(25-26)% to Fire Resistance" }, } },
- ["FireResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(27-28)% to Fire Resistance" }, } },
- ["FireResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(29-30)% to Fire Resistance" }, } },
- ["FireResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(31-32)% to Fire Resistance" }, } },
- ["FireResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(33-34)% to Fire Resistance" }, } },
- ["FireResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(35-36)% to Fire Resistance" }, } },
- ["ColdResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(13-14)% to Cold Resistance" }, } },
- ["ColdResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-16)% to Cold Resistance" }, } },
- ["ColdResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(17-18)% to Cold Resistance" }, } },
- ["ColdResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(19-20)% to Cold Resistance" }, } },
- ["ColdResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-22)% to Cold Resistance" }, } },
- ["ColdResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(23-24)% to Cold Resistance" }, } },
- ["ColdResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(19-20)% to Cold Resistance" }, [4074358700] = { "" }, } },
- ["ColdResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-22)% to Cold Resistance" }, [4074358700] = { "" }, } },
- ["ColdResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(23-24)% to Cold Resistance" }, [4074358700] = { "" }, } },
- ["ColdResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-26)% to Cold Resistance" }, [4074358700] = { "" }, } },
- ["ColdResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(27-28)% to Cold Resistance" }, [4074358700] = { "" }, } },
- ["ColdResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(29-30)% to Cold Resistance" }, [4074358700] = { "" }, } },
- ["ColdResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-26)% to Cold Resistance" }, [3283106665] = { "" }, } },
- ["ColdResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(27-28)% to Cold Resistance" }, [3283106665] = { "" }, } },
- ["ColdResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(29-30)% to Cold Resistance" }, [3283106665] = { "" }, } },
- ["ColdResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(31-32)% to Cold Resistance" }, [3283106665] = { "" }, } },
- ["ColdResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(33-34)% to Cold Resistance" }, [3283106665] = { "" }, } },
- ["ColdResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(35-36)% to Cold Resistance" }, [3283106665] = { "" }, } },
- ["LightningResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(13-14)% to Lightning Resistance" }, } },
- ["LightningResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-16)% to Lightning Resistance" }, } },
- ["LightningResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(17-18)% to Lightning Resistance" }, } },
- ["LightningResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(19-20)% to Lightning Resistance" }, } },
- ["LightningResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(21-22)% to Lightning Resistance" }, } },
- ["LightningResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(23-24)% to Lightning Resistance" }, } },
- ["LightningResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(19-20)% to Lightning Resistance" }, } },
- ["LightningResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(21-22)% to Lightning Resistance" }, } },
- ["LightningResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(23-24)% to Lightning Resistance" }, } },
- ["LightningResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(25-26)% to Lightning Resistance" }, } },
- ["LightningResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(27-28)% to Lightning Resistance" }, } },
- ["LightningResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(29-30)% to Lightning Resistance" }, } },
- ["LightningResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(25-26)% to Lightning Resistance" }, } },
- ["LightningResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(27-28)% to Lightning Resistance" }, } },
- ["LightningResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(29-30)% to Lightning Resistance" }, } },
- ["LightningResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(31-32)% to Lightning Resistance" }, } },
- ["LightningResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(33-34)% to Lightning Resistance" }, } },
- ["LightningResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(35-36)% to Lightning Resistance" }, } },
- ["ChaosResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(6-7)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(6-7)% to Chaos Resistance" }, } },
- ["ChaosResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-9)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(8-9)% to Chaos Resistance" }, } },
- ["ChaosResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(10-11)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(10-11)% to Chaos Resistance" }, } },
- ["ChaosResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(12-13)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(12-13)% to Chaos Resistance" }, } },
- ["ChaosResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(14-15)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(14-15)% to Chaos Resistance" }, } },
- ["ChaosResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(16-17)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(16-17)% to Chaos Resistance" }, } },
- ["ChaosResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(12-13)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(12-13)% to Chaos Resistance" }, } },
- ["ChaosResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-15)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(14-15)% to Chaos Resistance" }, } },
- ["ChaosResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(16-17)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(16-17)% to Chaos Resistance" }, } },
- ["ChaosResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(18-19)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(18-19)% to Chaos Resistance" }, } },
- ["ChaosResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-21)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(20-21)% to Chaos Resistance" }, } },
- ["ChaosResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(22-23)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(22-23)% to Chaos Resistance" }, } },
- ["ChaosResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(18-19)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(18-19)% to Chaos Resistance" }, } },
- ["ChaosResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(20-21)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(20-21)% to Chaos Resistance" }, } },
- ["ChaosResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(22-23)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(22-23)% to Chaos Resistance" }, } },
- ["ChaosResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(24-25)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(24-25)% to Chaos Resistance" }, } },
- ["ChaosResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-27)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(26-27)% to Chaos Resistance" }, } },
- ["ChaosResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(28-29)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(28-29)% to Chaos Resistance" }, } },
- ["DamagePerEnduranceChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "4% increased Damage per Endurance Charge" }, } },
- ["DamagePerEnduranceChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "4% increased Damage per Endurance Charge" }, } },
- ["DamagePerEnduranceChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, } },
- ["DamagePerEnduranceChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, } },
- ["DamagePerEnduranceChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, } },
- ["DamagePerEnduranceChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, } },
- ["DamagePerEnduranceChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } },
- ["DamagePerEnduranceChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } },
- ["DamagePerEnduranceChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } },
- ["DamagePerEnduranceChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } },
- ["DamagePerEnduranceChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "7% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } },
- ["DamagePerEnduranceChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "7% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } },
- ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } },
- ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } },
- ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "7% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } },
- ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "7% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } },
- ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "8% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } },
- ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "8% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } },
- ["MaximumFireResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } },
- ["MaximumFireResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } },
- ["MaximumFireResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } },
- ["MaximumFireResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } },
- ["MaximumFireResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } },
- ["MaximumFireResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } },
- ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } },
- ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } },
- ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } },
- ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } },
- ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [4074358700] = { "" }, } },
- ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [4074358700] = { "" }, } },
- ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } },
- ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } },
- ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } },
- ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } },
- ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [3283106665] = { "" }, } },
- ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [3283106665] = { "" }, } },
- ["SummonTotemCastSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "10% increased Totem Placement speed" }, } },
- ["SummonTotemCastSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "11% increased Totem Placement speed" }, } },
- ["SummonTotemCastSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "12% increased Totem Placement speed" }, } },
- ["SummonTotemCastSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "13% increased Totem Placement speed" }, } },
- ["SummonTotemCastSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "14% increased Totem Placement speed" }, } },
- ["SummonTotemCastSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "15% increased Totem Placement speed" }, } },
- ["SummonTotemCastSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "14% increased Totem Placement speed" }, [4074358700] = { "" }, } },
- ["SummonTotemCastSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "15% increased Totem Placement speed" }, [4074358700] = { "" }, } },
- ["SummonTotemCastSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "16% increased Totem Placement speed" }, [4074358700] = { "" }, } },
- ["SummonTotemCastSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "17% increased Totem Placement speed" }, [4074358700] = { "" }, } },
- ["SummonTotemCastSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "18% increased Totem Placement speed" }, [4074358700] = { "" }, } },
- ["SummonTotemCastSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "19% increased Totem Placement speed" }, [4074358700] = { "" }, } },
- ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "18% increased Totem Placement speed" }, [3283106665] = { "" }, } },
- ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "19% increased Totem Placement speed" }, [3283106665] = { "" }, } },
- ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "20% increased Totem Placement speed" }, [3283106665] = { "" }, } },
- ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "21% increased Totem Placement speed" }, [3283106665] = { "" }, } },
- ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "22% increased Totem Placement speed" }, [3283106665] = { "" }, } },
- ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "23% increased Totem Placement speed" }, [3283106665] = { "" }, } },
- ["BrandAttachmentRangeEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "10% increased Brand Attachment range" }, } },
- ["BrandAttachmentRangeEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "11% increased Brand Attachment range" }, } },
- ["BrandAttachmentRangeEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "12% increased Brand Attachment range" }, } },
- ["BrandAttachmentRangeEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "13% increased Brand Attachment range" }, } },
- ["BrandAttachmentRangeEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "14% increased Brand Attachment range" }, } },
- ["BrandAttachmentRangeEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "15% increased Brand Attachment range" }, } },
- ["BrandAttachmentRangeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "14% increased Brand Attachment range" }, [4074358700] = { "" }, } },
- ["BrandAttachmentRangeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "15% increased Brand Attachment range" }, [4074358700] = { "" }, } },
- ["BrandAttachmentRangeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "16% increased Brand Attachment range" }, [4074358700] = { "" }, } },
- ["BrandAttachmentRangeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "17% increased Brand Attachment range" }, [4074358700] = { "" }, } },
- ["BrandAttachmentRangeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "18% increased Brand Attachment range" }, [4074358700] = { "" }, } },
- ["BrandAttachmentRangeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "19% increased Brand Attachment range" }, [4074358700] = { "" }, } },
- ["BrandAttachmentRangeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "18% increased Brand Attachment range" }, [3283106665] = { "" }, } },
- ["BrandAttachmentRangeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "19% increased Brand Attachment range" }, [3283106665] = { "" }, } },
- ["BrandAttachmentRangeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "20% increased Brand Attachment range" }, [3283106665] = { "" }, } },
- ["BrandAttachmentRangeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "21% increased Brand Attachment range" }, [3283106665] = { "" }, } },
- ["BrandAttachmentRangeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "22% increased Brand Attachment range" }, [3283106665] = { "" }, } },
- ["BrandAttachmentRangeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "23% increased Brand Attachment range" }, [3283106665] = { "" }, } },
- ["FireGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(31-33)% increased Effect of the Buff granted by your Flame Golems" }, } },
- ["FireGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(34-36)% increased Effect of the Buff granted by your Flame Golems" }, } },
- ["FireGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(37-39)% increased Effect of the Buff granted by your Flame Golems" }, } },
- ["FireGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(40-42)% increased Effect of the Buff granted by your Flame Golems" }, } },
- ["FireGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(43-45)% increased Effect of the Buff granted by your Flame Golems" }, } },
- ["FireGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(46-48)% increased Effect of the Buff granted by your Flame Golems" }, } },
- ["FireGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(43-45)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } },
- ["FireGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(46-48)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } },
- ["FireGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(49-51)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } },
- ["FireGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(52-54)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } },
- ["FireGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(55-57)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } },
- ["FireGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(58-60)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } },
- ["FireGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(55-57)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } },
- ["FireGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(58-60)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } },
- ["FireGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(61-63)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } },
- ["FireGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(64-66)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } },
- ["FireGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(67-69)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } },
- ["FireGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(70-72)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } },
- ["IceGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(31-33)% increased Effect of the Buff granted by your Ice Golems" }, } },
- ["IceGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(34-36)% increased Effect of the Buff granted by your Ice Golems" }, } },
- ["IceGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(37-39)% increased Effect of the Buff granted by your Ice Golems" }, } },
- ["IceGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(40-42)% increased Effect of the Buff granted by your Ice Golems" }, } },
- ["IceGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(43-45)% increased Effect of the Buff granted by your Ice Golems" }, } },
- ["IceGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(46-48)% increased Effect of the Buff granted by your Ice Golems" }, } },
- ["IceGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(43-45)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } },
- ["IceGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(46-48)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } },
- ["IceGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(49-51)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } },
- ["IceGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(52-54)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } },
- ["IceGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(55-57)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } },
- ["IceGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(58-60)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } },
- ["IceGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(55-57)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } },
- ["IceGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(58-60)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } },
- ["IceGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(61-63)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } },
- ["IceGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(64-66)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } },
- ["IceGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(67-69)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } },
- ["IceGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(70-72)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } },
- ["LightningGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(31-33)% increased Effect of the Buff granted by your Lightning Golems" }, } },
- ["LightningGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(34-36)% increased Effect of the Buff granted by your Lightning Golems" }, } },
- ["LightningGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(37-39)% increased Effect of the Buff granted by your Lightning Golems" }, } },
- ["LightningGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(40-42)% increased Effect of the Buff granted by your Lightning Golems" }, } },
- ["LightningGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(43-45)% increased Effect of the Buff granted by your Lightning Golems" }, } },
- ["LightningGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(46-48)% increased Effect of the Buff granted by your Lightning Golems" }, } },
- ["LightningGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(43-45)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } },
- ["LightningGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(46-48)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } },
- ["LightningGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(49-51)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } },
- ["LightningGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(52-54)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } },
- ["LightningGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(55-57)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } },
- ["LightningGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(58-60)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } },
- ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(55-57)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } },
- ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(58-60)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } },
- ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(61-63)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } },
- ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(64-66)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } },
- ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(67-69)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } },
- ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(70-72)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } },
- ["RockGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(31-33)% increased Effect of the Buff granted by your Stone Golems" }, } },
- ["RockGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(34-36)% increased Effect of the Buff granted by your Stone Golems" }, } },
- ["RockGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(37-39)% increased Effect of the Buff granted by your Stone Golems" }, } },
- ["RockGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(40-42)% increased Effect of the Buff granted by your Stone Golems" }, } },
- ["RockGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(43-45)% increased Effect of the Buff granted by your Stone Golems" }, } },
- ["RockGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(46-48)% increased Effect of the Buff granted by your Stone Golems" }, } },
- ["RockGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(43-45)% increased Effect of the Buff granted by your Stone Golems" }, } },
- ["RockGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(46-48)% increased Effect of the Buff granted by your Stone Golems" }, } },
- ["RockGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(49-51)% increased Effect of the Buff granted by your Stone Golems" }, } },
- ["RockGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(52-54)% increased Effect of the Buff granted by your Stone Golems" }, } },
- ["RockGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(55-57)% increased Effect of the Buff granted by your Stone Golems" }, } },
- ["RockGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(58-60)% increased Effect of the Buff granted by your Stone Golems" }, } },
- ["RockGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(55-57)% increased Effect of the Buff granted by your Stone Golems" }, } },
- ["RockGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(58-60)% increased Effect of the Buff granted by your Stone Golems" }, } },
- ["RockGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(61-63)% increased Effect of the Buff granted by your Stone Golems" }, } },
- ["RockGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(64-66)% increased Effect of the Buff granted by your Stone Golems" }, } },
- ["RockGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(67-69)% increased Effect of the Buff granted by your Stone Golems" }, } },
- ["RockGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(70-72)% increased Effect of the Buff granted by your Stone Golems" }, } },
- ["ChaosGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(31-33)% increased Effect of the Buff granted by your Chaos Golems" }, } },
- ["ChaosGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(34-36)% increased Effect of the Buff granted by your Chaos Golems" }, } },
- ["ChaosGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(37-39)% increased Effect of the Buff granted by your Chaos Golems" }, } },
- ["ChaosGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(40-42)% increased Effect of the Buff granted by your Chaos Golems" }, } },
- ["ChaosGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(43-45)% increased Effect of the Buff granted by your Chaos Golems" }, } },
- ["ChaosGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(46-48)% increased Effect of the Buff granted by your Chaos Golems" }, } },
- ["ChaosGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(43-45)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } },
- ["ChaosGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(46-48)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } },
- ["ChaosGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(49-51)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } },
- ["ChaosGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(52-54)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } },
- ["ChaosGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(55-57)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } },
- ["ChaosGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(58-60)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } },
- ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(55-57)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } },
- ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(58-60)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } },
- ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(61-63)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } },
- ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(64-66)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } },
- ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(67-69)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } },
- ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(70-72)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } },
- ["CarrionGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(31-33)% increased Effect of the Buff granted by your Carrion Golems" }, } },
- ["CarrionGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(34-36)% increased Effect of the Buff granted by your Carrion Golems" }, } },
- ["CarrionGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(37-39)% increased Effect of the Buff granted by your Carrion Golems" }, } },
- ["CarrionGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(40-42)% increased Effect of the Buff granted by your Carrion Golems" }, } },
- ["CarrionGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(43-45)% increased Effect of the Buff granted by your Carrion Golems" }, } },
- ["CarrionGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(46-48)% increased Effect of the Buff granted by your Carrion Golems" }, } },
- ["CarrionGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(43-45)% increased Effect of the Buff granted by your Carrion Golems" }, } },
- ["CarrionGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(46-48)% increased Effect of the Buff granted by your Carrion Golems" }, } },
- ["CarrionGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(49-51)% increased Effect of the Buff granted by your Carrion Golems" }, } },
- ["CarrionGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(52-54)% increased Effect of the Buff granted by your Carrion Golems" }, } },
- ["CarrionGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(55-57)% increased Effect of the Buff granted by your Carrion Golems" }, } },
- ["CarrionGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(58-60)% increased Effect of the Buff granted by your Carrion Golems" }, } },
- ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(55-57)% increased Effect of the Buff granted by your Carrion Golems" }, } },
- ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(58-60)% increased Effect of the Buff granted by your Carrion Golems" }, } },
- ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(61-63)% increased Effect of the Buff granted by your Carrion Golems" }, } },
- ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(64-66)% increased Effect of the Buff granted by your Carrion Golems" }, } },
- ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(67-69)% increased Effect of the Buff granted by your Carrion Golems" }, } },
- ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(70-72)% increased Effect of the Buff granted by your Carrion Golems" }, } },
- ["FleshOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flesh Offering has (6-7)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (6-7)% increased Effect" }, } },
- ["FleshOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flesh Offering has (8-9)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (8-9)% increased Effect" }, } },
- ["FleshOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flesh Offering has (10-11)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (10-11)% increased Effect" }, } },
- ["FleshOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flesh Offering has (12-13)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (12-13)% increased Effect" }, } },
- ["FleshOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flesh Offering has (14-15)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (14-15)% increased Effect" }, } },
- ["FleshOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flesh Offering has (16-17)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (16-17)% increased Effect" }, } },
- ["FleshOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (12-13)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (12-13)% increased Effect" }, [4074358700] = { "" }, } },
- ["FleshOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (14-15)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (14-15)% increased Effect" }, [4074358700] = { "" }, } },
- ["FleshOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (16-17)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (16-17)% increased Effect" }, [4074358700] = { "" }, } },
- ["FleshOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (18-19)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (18-19)% increased Effect" }, [4074358700] = { "" }, } },
- ["FleshOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (20-21)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (20-21)% increased Effect" }, [4074358700] = { "" }, } },
- ["FleshOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (22-23)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (22-23)% increased Effect" }, [4074358700] = { "" }, } },
- ["FleshOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (18-19)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (18-19)% increased Effect" }, [3283106665] = { "" }, } },
- ["FleshOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (20-21)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (20-21)% increased Effect" }, [3283106665] = { "" }, } },
- ["FleshOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (22-23)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (22-23)% increased Effect" }, [3283106665] = { "" }, } },
- ["FleshOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (24-25)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (24-25)% increased Effect" }, [3283106665] = { "" }, } },
- ["FleshOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (26-27)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (26-27)% increased Effect" }, [3283106665] = { "" }, } },
- ["FleshOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (28-29)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (28-29)% increased Effect" }, [3283106665] = { "" }, } },
- ["BoneOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Bone Offering has (6-7)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (6-7)% increased Effect" }, } },
- ["BoneOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Bone Offering has (8-9)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (8-9)% increased Effect" }, } },
- ["BoneOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Bone Offering has (10-11)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (10-11)% increased Effect" }, } },
- ["BoneOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Bone Offering has (12-13)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (12-13)% increased Effect" }, } },
- ["BoneOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Bone Offering has (14-15)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (14-15)% increased Effect" }, } },
- ["BoneOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Bone Offering has (16-17)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (16-17)% increased Effect" }, } },
- ["BoneOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (12-13)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (12-13)% increased Effect" }, [4074358700] = { "" }, } },
- ["BoneOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (14-15)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (14-15)% increased Effect" }, [4074358700] = { "" }, } },
- ["BoneOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (16-17)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (16-17)% increased Effect" }, [4074358700] = { "" }, } },
- ["BoneOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (18-19)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (18-19)% increased Effect" }, [4074358700] = { "" }, } },
- ["BoneOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (20-21)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (20-21)% increased Effect" }, [4074358700] = { "" }, } },
- ["BoneOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (22-23)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (22-23)% increased Effect" }, [4074358700] = { "" }, } },
- ["BoneOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (18-19)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (18-19)% increased Effect" }, [3283106665] = { "" }, } },
- ["BoneOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (20-21)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (20-21)% increased Effect" }, [3283106665] = { "" }, } },
- ["BoneOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (22-23)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (22-23)% increased Effect" }, [3283106665] = { "" }, } },
- ["BoneOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (24-25)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (24-25)% increased Effect" }, [3283106665] = { "" }, } },
- ["BoneOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (26-27)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (26-27)% increased Effect" }, [3283106665] = { "" }, } },
- ["BoneOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (28-29)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (28-29)% increased Effect" }, [3283106665] = { "" }, } },
- ["SpiritOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Spirit Offering has (6-7)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (6-7)% increased Effect" }, } },
- ["SpiritOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Spirit Offering has (8-9)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (8-9)% increased Effect" }, } },
- ["SpiritOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Spirit Offering has (10-11)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (10-11)% increased Effect" }, } },
- ["SpiritOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Spirit Offering has (12-13)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (12-13)% increased Effect" }, } },
- ["SpiritOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Spirit Offering has (14-15)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (14-15)% increased Effect" }, } },
- ["SpiritOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Spirit Offering has (16-17)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (16-17)% increased Effect" }, } },
- ["SpiritOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (12-13)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (12-13)% increased Effect" }, } },
- ["SpiritOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (14-15)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (14-15)% increased Effect" }, } },
- ["SpiritOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (16-17)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (16-17)% increased Effect" }, } },
- ["SpiritOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (18-19)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (18-19)% increased Effect" }, } },
- ["SpiritOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (20-21)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (20-21)% increased Effect" }, } },
- ["SpiritOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (22-23)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (22-23)% increased Effect" }, } },
- ["SpiritOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (18-19)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (18-19)% increased Effect" }, } },
- ["SpiritOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (20-21)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (20-21)% increased Effect" }, } },
- ["SpiritOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (22-23)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (22-23)% increased Effect" }, } },
- ["SpiritOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (24-25)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (24-25)% increased Effect" }, } },
- ["SpiritOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (26-27)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (26-27)% increased Effect" }, } },
- ["SpiritOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (28-29)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (28-29)% increased Effect" }, } },
- ["AvoidIgniteEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(33-35)% chance to Avoid being Ignited" }, } },
- ["AvoidIgniteEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(36-38)% chance to Avoid being Ignited" }, } },
- ["AvoidIgniteEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(39-41)% chance to Avoid being Ignited" }, } },
- ["AvoidIgniteEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(42-44)% chance to Avoid being Ignited" }, } },
- ["AvoidIgniteEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(45-47)% chance to Avoid being Ignited" }, } },
- ["AvoidIgniteEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(48-50)% chance to Avoid being Ignited" }, } },
- ["AvoidIgniteEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(42-44)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } },
- ["AvoidIgniteEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(45-47)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } },
- ["AvoidIgniteEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(48-50)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } },
- ["AvoidIgniteEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-53)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } },
- ["AvoidIgniteEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(54-57)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } },
- ["AvoidIgniteEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(58-61)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } },
- ["AvoidIgniteEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-53)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } },
- ["AvoidIgniteEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(54-56)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } },
- ["AvoidIgniteEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(57-59)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } },
- ["AvoidIgniteEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(60-62)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } },
- ["AvoidIgniteEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(63-66)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } },
- ["AvoidIgniteEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(67-70)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } },
- ["AvoidFreezeEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(33-35)% chance to Avoid being Frozen" }, } },
- ["AvoidFreezeEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(36-38)% chance to Avoid being Frozen" }, } },
- ["AvoidFreezeEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(39-41)% chance to Avoid being Frozen" }, } },
- ["AvoidFreezeEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(42-44)% chance to Avoid being Frozen" }, } },
- ["AvoidFreezeEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(45-47)% chance to Avoid being Frozen" }, } },
- ["AvoidFreezeEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(48-50)% chance to Avoid being Frozen" }, } },
- ["AvoidFreezeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(42-44)% chance to Avoid being Frozen" }, } },
- ["AvoidFreezeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(45-47)% chance to Avoid being Frozen" }, } },
- ["AvoidFreezeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(48-50)% chance to Avoid being Frozen" }, } },
- ["AvoidFreezeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(51-53)% chance to Avoid being Frozen" }, } },
- ["AvoidFreezeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(54-57)% chance to Avoid being Frozen" }, } },
- ["AvoidFreezeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(58-61)% chance to Avoid being Frozen" }, } },
- ["AvoidFreezeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(51-53)% chance to Avoid being Frozen" }, } },
- ["AvoidFreezeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(54-56)% chance to Avoid being Frozen" }, } },
- ["AvoidFreezeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(57-59)% chance to Avoid being Frozen" }, } },
- ["AvoidFreezeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(60-62)% chance to Avoid being Frozen" }, } },
- ["AvoidFreezeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(63-66)% chance to Avoid being Frozen" }, } },
- ["AvoidFreezeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(67-70)% chance to Avoid being Frozen" }, } },
- ["AvoidShockEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(33-35)% chance to Avoid being Shocked" }, } },
- ["AvoidShockEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(36-38)% chance to Avoid being Shocked" }, } },
- ["AvoidShockEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(39-41)% chance to Avoid being Shocked" }, } },
- ["AvoidShockEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(42-44)% chance to Avoid being Shocked" }, } },
- ["AvoidShockEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(45-47)% chance to Avoid being Shocked" }, } },
- ["AvoidShockEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(48-50)% chance to Avoid being Shocked" }, } },
- ["AvoidShockEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(42-44)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } },
- ["AvoidShockEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(45-47)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } },
- ["AvoidShockEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(48-50)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } },
- ["AvoidShockEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-53)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } },
- ["AvoidShockEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(54-57)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } },
- ["AvoidShockEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(58-61)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } },
- ["AvoidShockEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-53)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } },
- ["AvoidShockEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(54-56)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } },
- ["AvoidShockEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(57-59)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } },
- ["AvoidShockEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(60-62)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } },
- ["AvoidShockEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(63-66)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } },
- ["AvoidShockEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(67-70)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } },
- ["AvoidStunEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(15-17)% chance to Avoid being Stunned" }, } },
- ["AvoidStunEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(18-20)% chance to Avoid being Stunned" }, } },
- ["AvoidStunEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(21-23)% chance to Avoid being Stunned" }, } },
- ["AvoidStunEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(24-26)% chance to Avoid being Stunned" }, } },
- ["AvoidStunEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-29)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(27-29)% chance to Avoid being Stunned" }, } },
- ["AvoidStunEldritchImplicit6"] = { type = "Exarch", affix = "", "(30-32)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(30-32)% chance to Avoid being Stunned" }, } },
- ["AvoidStunEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(24-26)% chance to Avoid being Stunned" }, } },
- ["AvoidStunEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(27-29)% chance to Avoid being Stunned" }, } },
- ["AvoidStunEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(30-32)% chance to Avoid being Stunned" }, } },
- ["AvoidStunEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-35)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(33-35)% chance to Avoid being Stunned" }, } },
- ["AvoidStunEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (36-38)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(36-38)% chance to Avoid being Stunned" }, } },
- ["AvoidStunEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (39-41)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(39-41)% chance to Avoid being Stunned" }, } },
- ["AvoidStunEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(33-35)% chance to Avoid being Stunned" }, } },
- ["AvoidStunEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(36-38)% chance to Avoid being Stunned" }, } },
- ["AvoidStunEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(39-41)% chance to Avoid being Stunned" }, } },
- ["AvoidStunEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(42-44)% chance to Avoid being Stunned" }, } },
- ["AvoidStunEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(45-47)% chance to Avoid being Stunned" }, } },
- ["AvoidStunEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(48-50)% chance to Avoid being Stunned" }, } },
- ["OnslaughtEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(6-7)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(6-7)% increased Effect of Onslaught on you" }, } },
- ["OnslaughtEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(8-9)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(8-9)% increased Effect of Onslaught on you" }, } },
- ["OnslaughtEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(10-11)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(10-11)% increased Effect of Onslaught on you" }, } },
- ["OnslaughtEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(12-13)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(12-13)% increased Effect of Onslaught on you" }, } },
- ["OnslaughtEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(14-15)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(14-15)% increased Effect of Onslaught on you" }, } },
- ["OnslaughtEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(16-17)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(16-17)% increased Effect of Onslaught on you" }, } },
- ["OnslaughtEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(12-13)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } },
- ["OnslaughtEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(14-15)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } },
- ["OnslaughtEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(16-17)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } },
- ["OnslaughtEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(18-19)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } },
- ["OnslaughtEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(20-21)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } },
- ["OnslaughtEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(22-23)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } },
- ["OnslaughtEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(18-19)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } },
- ["OnslaughtEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(20-21)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } },
- ["OnslaughtEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(22-23)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } },
- ["OnslaughtEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(24-25)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } },
- ["OnslaughtEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(26-27)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } },
- ["OnslaughtEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(28-29)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } },
- ["LifeRegenerationRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "7% increased Life Regeneration rate" }, } },
- ["LifeRegenerationRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "8% increased Life Regeneration rate" }, } },
- ["LifeRegenerationRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "9% increased Life Regeneration rate" }, } },
- ["LifeRegenerationRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "10% increased Life Regeneration rate" }, } },
- ["LifeRegenerationRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "11% increased Life Regeneration rate" }, } },
- ["LifeRegenerationRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "12% increased Life Regeneration rate" }, } },
- ["LifeRegenerationRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "10% increased Life Regeneration rate" }, [4074358700] = { "" }, } },
- ["LifeRegenerationRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "11% increased Life Regeneration rate" }, [4074358700] = { "" }, } },
- ["LifeRegenerationRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "12% increased Life Regeneration rate" }, [4074358700] = { "" }, } },
- ["LifeRegenerationRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "13% increased Life Regeneration rate" }, [4074358700] = { "" }, } },
- ["LifeRegenerationRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "14% increased Life Regeneration rate" }, [4074358700] = { "" }, } },
- ["LifeRegenerationRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "15% increased Life Regeneration rate" }, [4074358700] = { "" }, } },
- ["LifeRegenerationRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "13% increased Life Regeneration rate" }, [3283106665] = { "" }, } },
- ["LifeRegenerationRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "14% increased Life Regeneration rate" }, [3283106665] = { "" }, } },
- ["LifeRegenerationRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "15% increased Life Regeneration rate" }, [3283106665] = { "" }, } },
- ["LifeRegenerationRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "16% increased Life Regeneration rate" }, [3283106665] = { "" }, } },
- ["LifeRegenerationRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "17% increased Life Regeneration rate" }, [3283106665] = { "" }, } },
- ["LifeRegenerationRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "18% increased Life Regeneration rate" }, [3283106665] = { "" }, } },
- ["ArmourFromHelmetGlovesEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(33-35)% increased Armour from Equipped Helmet and Gloves" }, } },
- ["ArmourFromHelmetGlovesEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(36-38)% increased Armour from Equipped Helmet and Gloves" }, } },
- ["ArmourFromHelmetGlovesEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(39-41)% increased Armour from Equipped Helmet and Gloves" }, } },
- ["ArmourFromHelmetGlovesEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(42-44)% increased Armour from Equipped Helmet and Gloves" }, } },
- ["ArmourFromHelmetGlovesEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(45-47)% increased Armour from Equipped Helmet and Gloves" }, } },
- ["ArmourFromHelmetGlovesEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(48-50)% increased Armour from Equipped Helmet and Gloves" }, } },
- ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(42-44)% increased Armour from Equipped Helmet and Gloves" }, } },
- ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(45-47)% increased Armour from Equipped Helmet and Gloves" }, } },
- ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(48-50)% increased Armour from Equipped Helmet and Gloves" }, } },
- ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(51-53)% increased Armour from Equipped Helmet and Gloves" }, } },
- ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(54-57)% increased Armour from Equipped Helmet and Gloves" }, } },
- ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(58-61)% increased Armour from Equipped Helmet and Gloves" }, } },
- ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(51-53)% increased Armour from Equipped Helmet and Gloves" }, } },
- ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(54-56)% increased Armour from Equipped Helmet and Gloves" }, } },
- ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(57-59)% increased Armour from Equipped Helmet and Gloves" }, } },
- ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(60-62)% increased Armour from Equipped Helmet and Gloves" }, } },
- ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(63-66)% increased Armour from Equipped Helmet and Gloves" }, } },
- ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(67-70)% increased Armour from Equipped Helmet and Gloves" }, } },
- ["FasterIgniteDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 5% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 5% faster" }, } },
- ["FasterIgniteDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 6% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 6% faster" }, } },
- ["FasterIgniteDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 7% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 7% faster" }, } },
- ["FasterIgniteDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 8% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 8% faster" }, } },
- ["FasterIgniteDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 9% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 9% faster" }, } },
- ["FasterIgniteDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 10% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 10% faster" }, } },
- ["FasterIgniteDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 8% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 8% faster" }, } },
- ["FasterIgniteDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 9% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 9% faster" }, } },
- ["FasterIgniteDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 10% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 10% faster" }, } },
- ["FasterIgniteDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 11% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 11% faster" }, } },
- ["FasterIgniteDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 12% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 12% faster" }, } },
- ["FasterIgniteDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 13% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 13% faster" }, } },
- ["FasterIgniteDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 11% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 11% faster" }, } },
- ["FasterIgniteDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 12% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 12% faster" }, } },
- ["FasterIgniteDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 13% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 13% faster" }, } },
- ["FasterIgniteDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 14% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 14% faster" }, } },
- ["FasterIgniteDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 15% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 15% faster" }, } },
- ["FasterIgniteDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 16% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 16% faster" }, } },
- ["FasterPoisonDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 5% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 5% faster" }, } },
- ["FasterPoisonDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 6% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 6% faster" }, } },
- ["FasterPoisonDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 7% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 7% faster" }, } },
- ["FasterPoisonDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 8% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 8% faster" }, } },
- ["FasterPoisonDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 9% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 9% faster" }, } },
- ["FasterPoisonDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 10% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 10% faster" }, } },
- ["FasterPoisonDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 8% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 8% faster" }, [4074358700] = { "" }, } },
- ["FasterPoisonDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 9% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 9% faster" }, [4074358700] = { "" }, } },
- ["FasterPoisonDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 10% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 10% faster" }, [4074358700] = { "" }, } },
- ["FasterPoisonDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 11% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 11% faster" }, [4074358700] = { "" }, } },
- ["FasterPoisonDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 12% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 12% faster" }, [4074358700] = { "" }, } },
- ["FasterPoisonDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 13% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 13% faster" }, [4074358700] = { "" }, } },
- ["FasterPoisonDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 11% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 11% faster" }, [3283106665] = { "" }, } },
- ["FasterPoisonDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 12% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 12% faster" }, [3283106665] = { "" }, } },
- ["FasterPoisonDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 13% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 13% faster" }, [3283106665] = { "" }, } },
- ["FasterPoisonDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 14% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 14% faster" }, [3283106665] = { "" }, } },
- ["FasterPoisonDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 15% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 15% faster" }, [3283106665] = { "" }, } },
- ["FasterPoisonDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 16% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 16% faster" }, [3283106665] = { "" }, } },
- ["FasterBleedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 5% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 5% faster" }, } },
- ["FasterBleedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 6% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 6% faster" }, } },
- ["FasterBleedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 7% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 7% faster" }, } },
- ["FasterBleedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 8% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 8% faster" }, } },
- ["FasterBleedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 9% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 9% faster" }, } },
- ["FasterBleedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 10% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 10% faster" }, } },
- ["FasterBleedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 8% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 8% faster" }, [4074358700] = { "" }, } },
- ["FasterBleedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 9% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 9% faster" }, [4074358700] = { "" }, } },
- ["FasterBleedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 10% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 10% faster" }, [4074358700] = { "" }, } },
- ["FasterBleedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 11% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 11% faster" }, [4074358700] = { "" }, } },
- ["FasterBleedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 12% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 12% faster" }, [4074358700] = { "" }, } },
- ["FasterBleedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 13% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 13% faster" }, [4074358700] = { "" }, } },
- ["FasterBleedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 11% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 11% faster" }, [3283106665] = { "" }, } },
- ["FasterBleedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 12% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 12% faster" }, [3283106665] = { "" }, } },
- ["FasterBleedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 13% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 13% faster" }, [3283106665] = { "" }, } },
- ["FasterBleedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 14% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 14% faster" }, [3283106665] = { "" }, } },
- ["FasterBleedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 15% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 15% faster" }, [3283106665] = { "" }, } },
- ["FasterBleedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 16% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 16% faster" }, [3283106665] = { "" }, } },
- ["PhysicalAddedAsFireEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 4% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsFireEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 4% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsFireEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 5% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsFireEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 5% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsFireEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 6% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsFireEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 6% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsFireEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 6% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsFireEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 6% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsFireEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 7% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsFireEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 7% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsFireEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 8% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsFireEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 8% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 8% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 8% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 9% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 9% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 10% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 10% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsColdEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 4% of Physical Damage as Extra Cold Damage" }, } },
- ["PhysicalAddedAsColdEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 4% of Physical Damage as Extra Cold Damage" }, } },
- ["PhysicalAddedAsColdEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 5% of Physical Damage as Extra Cold Damage" }, } },
- ["PhysicalAddedAsColdEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 5% of Physical Damage as Extra Cold Damage" }, } },
- ["PhysicalAddedAsColdEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 6% of Physical Damage as Extra Cold Damage" }, } },
- ["PhysicalAddedAsColdEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 6% of Physical Damage as Extra Cold Damage" }, } },
- ["PhysicalAddedAsColdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 6% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } },
- ["PhysicalAddedAsColdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 6% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } },
- ["PhysicalAddedAsColdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 7% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } },
- ["PhysicalAddedAsColdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 7% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } },
- ["PhysicalAddedAsColdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 8% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } },
- ["PhysicalAddedAsColdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 8% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } },
- ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 8% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } },
- ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 8% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } },
- ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 9% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } },
- ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 9% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } },
- ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 10% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } },
- ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 10% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } },
- ["PhysicalAddedAsLightningEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 4% of Physical Damage as Extra Lightning Damage" }, } },
- ["PhysicalAddedAsLightningEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 4% of Physical Damage as Extra Lightning Damage" }, } },
- ["PhysicalAddedAsLightningEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 5% of Physical Damage as Extra Lightning Damage" }, } },
- ["PhysicalAddedAsLightningEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 5% of Physical Damage as Extra Lightning Damage" }, } },
- ["PhysicalAddedAsLightningEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 6% of Physical Damage as Extra Lightning Damage" }, } },
- ["PhysicalAddedAsLightningEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 6% of Physical Damage as Extra Lightning Damage" }, } },
- ["PhysicalAddedAsLightningEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 6% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } },
- ["PhysicalAddedAsLightningEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 6% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } },
- ["PhysicalAddedAsLightningEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 7% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } },
- ["PhysicalAddedAsLightningEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 7% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } },
- ["PhysicalAddedAsLightningEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 8% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } },
- ["PhysicalAddedAsLightningEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 8% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } },
- ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 8% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } },
- ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 8% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } },
- ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 9% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } },
- ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 9% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } },
- ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 10% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } },
- ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 10% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamageAddedAsChaosEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 4% of Physical Damage as Extra Chaos Damage" }, } },
- ["PhysicalDamageAddedAsChaosEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 4% of Physical Damage as Extra Chaos Damage" }, } },
- ["PhysicalDamageAddedAsChaosEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 5% of Physical Damage as Extra Chaos Damage" }, } },
- ["PhysicalDamageAddedAsChaosEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 5% of Physical Damage as Extra Chaos Damage" }, } },
- ["PhysicalDamageAddedAsChaosEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 6% of Physical Damage as Extra Chaos Damage" }, } },
- ["PhysicalDamageAddedAsChaosEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 6% of Physical Damage as Extra Chaos Damage" }, } },
- ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 6% of Physical Damage as Extra Chaos Damage" }, } },
- ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 6% of Physical Damage as Extra Chaos Damage" }, } },
- ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 7% of Physical Damage as Extra Chaos Damage" }, } },
- ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 7% of Physical Damage as Extra Chaos Damage" }, } },
- ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 8% of Physical Damage as Extra Chaos Damage" }, } },
- ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 8% of Physical Damage as Extra Chaos Damage" }, } },
- ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 8% of Physical Damage as Extra Chaos Damage" }, } },
- ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 8% of Physical Damage as Extra Chaos Damage" }, } },
- ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 9% of Physical Damage as Extra Chaos Damage" }, } },
- ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 9% of Physical Damage as Extra Chaos Damage" }, } },
- ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 10% of Physical Damage as Extra Chaos Damage" }, } },
- ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 10% of Physical Damage as Extra Chaos Damage" }, } },
- ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit1"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } },
- ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit2"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } },
- ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit3"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } },
- ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit4"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } },
- ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit5"] = { type = "Eater", affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } },
- ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit6"] = { type = "Eater", affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } },
- ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } },
- ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } },
- ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } },
- ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } },
- ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } },
- ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } },
- ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } },
- ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } },
- ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } },
- ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } },
- ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.5% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.5% of Life per second per Endurance Charge" }, } },
- ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.5% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.5% of Life per second per Endurance Charge" }, } },
- ["IncreasedStunThresholdEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(15-17)% increased Stun Threshold" }, } },
- ["IncreasedStunThresholdEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(18-20)% increased Stun Threshold" }, } },
- ["IncreasedStunThresholdEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(21-23)% increased Stun Threshold" }, } },
- ["IncreasedStunThresholdEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(24-26)% increased Stun Threshold" }, } },
- ["IncreasedStunThresholdEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(27-29)% increased Stun Threshold" }, } },
- ["IncreasedStunThresholdEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(30-32)% increased Stun Threshold" }, } },
- ["IncreasedStunThresholdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(24-26)% increased Stun Threshold" }, [4074358700] = { "" }, } },
- ["IncreasedStunThresholdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(27-29)% increased Stun Threshold" }, [4074358700] = { "" }, } },
- ["IncreasedStunThresholdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(30-32)% increased Stun Threshold" }, [4074358700] = { "" }, } },
- ["IncreasedStunThresholdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(33-35)% increased Stun Threshold" }, [4074358700] = { "" }, } },
- ["IncreasedStunThresholdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(36-38)% increased Stun Threshold" }, [4074358700] = { "" }, } },
- ["IncreasedStunThresholdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(39-41)% increased Stun Threshold" }, [4074358700] = { "" }, } },
- ["IncreasedStunThresholdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(33-35)% increased Stun Threshold" }, [3283106665] = { "" }, } },
- ["IncreasedStunThresholdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(36-38)% increased Stun Threshold" }, [3283106665] = { "" }, } },
- ["IncreasedStunThresholdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(39-41)% increased Stun Threshold" }, [3283106665] = { "" }, } },
- ["IncreasedStunThresholdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(42-44)% increased Stun Threshold" }, [3283106665] = { "" }, } },
- ["IncreasedStunThresholdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(45-47)% increased Stun Threshold" }, [3283106665] = { "" }, } },
- ["IncreasedStunThresholdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(48-50)% increased Stun Threshold" }, [3283106665] = { "" }, } },
- ["TravelSkillCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(15-17)% increased Cooldown Recovery Rate of Travel Skills" }, } },
- ["TravelSkillCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(18-20)% increased Cooldown Recovery Rate of Travel Skills" }, } },
- ["TravelSkillCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(21-23)% increased Cooldown Recovery Rate of Travel Skills" }, } },
- ["TravelSkillCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(24-26)% increased Cooldown Recovery Rate of Travel Skills" }, } },
- ["TravelSkillCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(27-29)% increased Cooldown Recovery Rate of Travel Skills" }, } },
- ["TravelSkillCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(30-32)% increased Cooldown Recovery Rate of Travel Skills" }, } },
- ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(24-26)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } },
- ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(27-29)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } },
- ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(30-32)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } },
- ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(33-35)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } },
- ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(36-38)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } },
- ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(39-41)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } },
- ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(33-35)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } },
- ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(36-38)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } },
- ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(39-41)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } },
- ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(42-44)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } },
- ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(45-47)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } },
- ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(48-50)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } },
- ["WarcrySpeedEldritchImplicit1"] = { type = "Eater", affix = "", "(15-16)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(15-16)% increased Warcry Speed" }, } },
- ["WarcrySpeedEldritchImplicit2"] = { type = "Eater", affix = "", "(17-18)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(17-18)% increased Warcry Speed" }, } },
- ["WarcrySpeedEldritchImplicit3"] = { type = "Eater", affix = "", "(19-20)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(19-20)% increased Warcry Speed" }, } },
- ["WarcrySpeedEldritchImplicit4"] = { type = "Eater", affix = "", "(21-22)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(21-22)% increased Warcry Speed" }, } },
- ["WarcrySpeedEldritchImplicit5"] = { type = "Eater", affix = "", "(23-24)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(23-24)% increased Warcry Speed" }, } },
- ["WarcrySpeedEldritchImplicit6"] = { type = "Eater", affix = "", "(25-26)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(25-26)% increased Warcry Speed" }, } },
- ["WarcrySpeedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(19-20)% increased Warcry Speed" }, } },
- ["WarcrySpeedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(21-22)% increased Warcry Speed" }, } },
- ["WarcrySpeedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(23-24)% increased Warcry Speed" }, } },
- ["WarcrySpeedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(25-26)% increased Warcry Speed" }, } },
- ["WarcrySpeedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(27-28)% increased Warcry Speed" }, } },
- ["WarcrySpeedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(29-30)% increased Warcry Speed" }, } },
- ["WarcrySpeedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(23-24)% increased Warcry Speed" }, } },
- ["WarcrySpeedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(25-26)% increased Warcry Speed" }, } },
- ["WarcrySpeedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(27-28)% increased Warcry Speed" }, } },
- ["WarcrySpeedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(29-30)% increased Warcry Speed" }, } },
- ["WarcrySpeedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(31-32)% increased Warcry Speed" }, } },
- ["WarcrySpeedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(33-34)% increased Warcry Speed" }, } },
- ["EnduringCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "Enduring Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (15-17)% increased Cooldown Recovery Rate" }, } },
- ["EnduringCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "Enduring Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (18-20)% increased Cooldown Recovery Rate" }, } },
- ["EnduringCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "Enduring Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (21-23)% increased Cooldown Recovery Rate" }, } },
- ["EnduringCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "Enduring Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (24-26)% increased Cooldown Recovery Rate" }, } },
- ["EnduringCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "Enduring Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (27-29)% increased Cooldown Recovery Rate" }, } },
- ["EnduringCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "Enduring Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (30-32)% increased Cooldown Recovery Rate" }, } },
- ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (24-26)% increased Cooldown Recovery Rate" }, } },
- ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (27-29)% increased Cooldown Recovery Rate" }, } },
- ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (30-32)% increased Cooldown Recovery Rate" }, } },
- ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (33-35)% increased Cooldown Recovery Rate" }, } },
- ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (36-38)% increased Cooldown Recovery Rate" }, } },
- ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (39-41)% increased Cooldown Recovery Rate" }, } },
- ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (33-35)% increased Cooldown Recovery Rate" }, } },
- ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (36-38)% increased Cooldown Recovery Rate" }, } },
- ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (39-41)% increased Cooldown Recovery Rate" }, } },
- ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (42-44)% increased Cooldown Recovery Rate" }, } },
- ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (45-47)% increased Cooldown Recovery Rate" }, } },
- ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (48-50)% increased Cooldown Recovery Rate" }, } },
- ["IntimidatingCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "Intimidating Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (15-17)% increased Cooldown Recovery Rate" }, } },
- ["IntimidatingCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "Intimidating Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (18-20)% increased Cooldown Recovery Rate" }, } },
- ["IntimidatingCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "Intimidating Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (21-23)% increased Cooldown Recovery Rate" }, } },
- ["IntimidatingCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "Intimidating Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (24-26)% increased Cooldown Recovery Rate" }, } },
- ["IntimidatingCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "Intimidating Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (27-29)% increased Cooldown Recovery Rate" }, } },
- ["IntimidatingCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "Intimidating Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (30-32)% increased Cooldown Recovery Rate" }, } },
- ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (24-26)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } },
- ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (27-29)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } },
- ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (30-32)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } },
- ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (33-35)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } },
- ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (36-38)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } },
- ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (39-41)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } },
- ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (33-35)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } },
- ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (36-38)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } },
- ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (39-41)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } },
- ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (42-44)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } },
- ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (45-47)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } },
- ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (48-50)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } },
- ["SeismicCryExertedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (20-22)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (20-22)% increased Damage" }, } },
- ["SeismicCryExertedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (23-25)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (23-25)% increased Damage" }, } },
- ["SeismicCryExertedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (26-28)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (26-28)% increased Damage" }, } },
- ["SeismicCryExertedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (29-31)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (29-31)% increased Damage" }, } },
- ["SeismicCryExertedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (32-33)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (32-33)% increased Damage" }, } },
- ["SeismicCryExertedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (34-35)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (34-35)% increased Damage" }, } },
- ["SeismicCryExertedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (26-28)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (26-28)% increased Damage" }, [4074358700] = { "" }, } },
- ["SeismicCryExertedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (29-31)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (29-31)% increased Damage" }, [4074358700] = { "" }, } },
- ["SeismicCryExertedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (32-34)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (32-34)% increased Damage" }, [4074358700] = { "" }, } },
- ["SeismicCryExertedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (35-37)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (35-37)% increased Damage" }, [4074358700] = { "" }, } },
- ["SeismicCryExertedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (38-39)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (38-39)% increased Damage" }, [4074358700] = { "" }, } },
- ["SeismicCryExertedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (40-41)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (40-41)% increased Damage" }, [4074358700] = { "" }, } },
- ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (32-34)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (32-34)% increased Damage" }, [3283106665] = { "" }, } },
- ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (35-37)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (35-37)% increased Damage" }, [3283106665] = { "" }, } },
- ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (38-40)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (38-40)% increased Damage" }, [3283106665] = { "" }, } },
- ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (41-43)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (41-43)% increased Damage" }, [3283106665] = { "" }, } },
- ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (44-45)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (44-45)% increased Damage" }, [3283106665] = { "" }, } },
- ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (46-47)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (46-47)% increased Damage" }, [3283106665] = { "" }, } },
- ["AncestralCryExertedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (20-22)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (20-22)% increased Damage" }, } },
- ["AncestralCryExertedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (23-25)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (23-25)% increased Damage" }, } },
- ["AncestralCryExertedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage" }, } },
- ["AncestralCryExertedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage" }, } },
- ["AncestralCryExertedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (32-33)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (32-33)% increased Damage" }, } },
- ["AncestralCryExertedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (34-35)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (34-35)% increased Damage" }, } },
- ["AncestralCryExertedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage" }, [4074358700] = { "" }, } },
- ["AncestralCryExertedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage" }, [4074358700] = { "" }, } },
- ["AncestralCryExertedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage" }, [4074358700] = { "" }, } },
- ["AncestralCryExertedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage" }, [4074358700] = { "" }, } },
- ["AncestralCryExertedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (38-39)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (38-39)% increased Damage" }, [4074358700] = { "" }, } },
- ["AncestralCryExertedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (40-41)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (40-41)% increased Damage" }, [4074358700] = { "" }, } },
- ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage" }, [3283106665] = { "" }, } },
- ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage" }, [3283106665] = { "" }, } },
- ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (38-40)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (38-40)% increased Damage" }, [3283106665] = { "" }, } },
- ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (41-43)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (41-43)% increased Damage" }, [3283106665] = { "" }, } },
- ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (44-45)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (44-45)% increased Damage" }, [3283106665] = { "" }, } },
- ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (46-47)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (46-47)% increased Damage" }, [3283106665] = { "" }, } },
- ["RallyingCryWarcryEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(6-7)% increased Rallying Cry Buff Effect" }, } },
- ["RallyingCryWarcryEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(8-9)% increased Rallying Cry Buff Effect" }, } },
- ["RallyingCryWarcryEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(10-11)% increased Rallying Cry Buff Effect" }, } },
- ["RallyingCryWarcryEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(12-13)% increased Rallying Cry Buff Effect" }, } },
- ["RallyingCryWarcryEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(14-15)% increased Rallying Cry Buff Effect" }, } },
- ["RallyingCryWarcryEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(16-17)% increased Rallying Cry Buff Effect" }, } },
- ["RallyingCryWarcryEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(12-13)% increased Rallying Cry Buff Effect" }, } },
- ["RallyingCryWarcryEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(14-15)% increased Rallying Cry Buff Effect" }, } },
- ["RallyingCryWarcryEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(16-17)% increased Rallying Cry Buff Effect" }, } },
- ["RallyingCryWarcryEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(18-19)% increased Rallying Cry Buff Effect" }, } },
- ["RallyingCryWarcryEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(20-21)% increased Rallying Cry Buff Effect" }, } },
- ["RallyingCryWarcryEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(22-23)% increased Rallying Cry Buff Effect" }, } },
- ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(18-19)% increased Rallying Cry Buff Effect" }, } },
- ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(20-21)% increased Rallying Cry Buff Effect" }, } },
- ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(22-23)% increased Rallying Cry Buff Effect" }, } },
- ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(24-25)% increased Rallying Cry Buff Effect" }, } },
- ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(26-27)% increased Rallying Cry Buff Effect" }, } },
- ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(28-29)% increased Rallying Cry Buff Effect" }, } },
- ["BattlemagesCryWarcryEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(6-7)% increased Battlemage's Cry Buff Effect" }, } },
- ["BattlemagesCryWarcryEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(8-9)% increased Battlemage's Cry Buff Effect" }, } },
- ["BattlemagesCryWarcryEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(10-11)% increased Battlemage's Cry Buff Effect" }, } },
- ["BattlemagesCryWarcryEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(12-13)% increased Battlemage's Cry Buff Effect" }, } },
- ["BattlemagesCryWarcryEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(14-15)% increased Battlemage's Cry Buff Effect" }, } },
- ["BattlemagesCryWarcryEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(16-17)% increased Battlemage's Cry Buff Effect" }, } },
- ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(12-13)% increased Battlemage's Cry Buff Effect" }, } },
- ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(14-15)% increased Battlemage's Cry Buff Effect" }, } },
- ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(16-17)% increased Battlemage's Cry Buff Effect" }, } },
- ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(18-19)% increased Battlemage's Cry Buff Effect" }, } },
- ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(20-21)% increased Battlemage's Cry Buff Effect" }, } },
- ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(22-23)% increased Battlemage's Cry Buff Effect" }, } },
- ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(18-19)% increased Battlemage's Cry Buff Effect" }, } },
- ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(20-21)% increased Battlemage's Cry Buff Effect" }, } },
- ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(22-23)% increased Battlemage's Cry Buff Effect" }, } },
- ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(24-25)% increased Battlemage's Cry Buff Effect" }, } },
- ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(26-27)% increased Battlemage's Cry Buff Effect" }, } },
- ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(28-29)% increased Battlemage's Cry Buff Effect" }, } },
- ["InfernalCryWarcryAreaOfEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Infernal Cry has (15-17)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (15-17)% increased Area of Effect" }, } },
- ["InfernalCryWarcryAreaOfEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Infernal Cry has (18-20)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (18-20)% increased Area of Effect" }, } },
- ["InfernalCryWarcryAreaOfEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Infernal Cry has (21-23)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (21-23)% increased Area of Effect" }, } },
- ["InfernalCryWarcryAreaOfEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Infernal Cry has (24-26)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (24-26)% increased Area of Effect" }, } },
- ["InfernalCryWarcryAreaOfEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Infernal Cry has (27-29)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (27-29)% increased Area of Effect" }, } },
- ["InfernalCryWarcryAreaOfEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Infernal Cry has (30-32)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (30-32)% increased Area of Effect" }, } },
- ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (24-26)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (24-26)% increased Area of Effect" }, } },
- ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (27-29)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (27-29)% increased Area of Effect" }, } },
- ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (30-32)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (30-32)% increased Area of Effect" }, } },
- ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (33-35)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (33-35)% increased Area of Effect" }, } },
- ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (36-38)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (36-38)% increased Area of Effect" }, } },
- ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (39-41)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (39-41)% increased Area of Effect" }, } },
- ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (33-35)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (33-35)% increased Area of Effect" }, } },
- ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (36-38)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (36-38)% increased Area of Effect" }, } },
- ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (39-41)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (39-41)% increased Area of Effect" }, } },
- ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (42-44)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (42-44)% increased Area of Effect" }, } },
- ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (45-47)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (45-47)% increased Area of Effect" }, } },
- ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (48-50)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (48-50)% increased Area of Effect" }, } },
- ["GeneralsCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "General's Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (15-17)% increased Cooldown Recovery Rate" }, } },
- ["GeneralsCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "General's Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (18-20)% increased Cooldown Recovery Rate" }, } },
- ["GeneralsCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "General's Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (21-23)% increased Cooldown Recovery Rate" }, } },
- ["GeneralsCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "General's Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (24-26)% increased Cooldown Recovery Rate" }, } },
- ["GeneralsCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "General's Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (27-29)% increased Cooldown Recovery Rate" }, } },
- ["GeneralsCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "General's Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (30-32)% increased Cooldown Recovery Rate" }, } },
- ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (24-26)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } },
- ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (27-29)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } },
- ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (30-32)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } },
- ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (33-35)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } },
- ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (36-38)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } },
- ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (39-41)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } },
- ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (33-35)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } },
- ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (36-38)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } },
- ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (39-41)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } },
- ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (42-44)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } },
- ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (45-47)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } },
- ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (48-50)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } },
- ["AvoidElementalStatusAilmentsEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(15-17)% chance to Avoid Elemental Ailments" }, } },
- ["AvoidElementalStatusAilmentsEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(18-20)% chance to Avoid Elemental Ailments" }, } },
- ["AvoidElementalStatusAilmentsEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(21-23)% chance to Avoid Elemental Ailments" }, } },
- ["AvoidElementalStatusAilmentsEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(24-26)% chance to Avoid Elemental Ailments" }, } },
- ["AvoidElementalStatusAilmentsEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(27-29)% chance to Avoid Elemental Ailments" }, } },
- ["AvoidElementalStatusAilmentsEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(30-32)% chance to Avoid Elemental Ailments" }, } },
- ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(24-26)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } },
- ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(27-29)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } },
- ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(30-32)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } },
- ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(33-35)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } },
- ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(36-38)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } },
- ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(39-41)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } },
- ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(33-35)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } },
- ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(36-38)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } },
- ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(39-41)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } },
- ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(42-44)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } },
- ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(45-47)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } },
- ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(48-50)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } },
- ["ChanceToAvoidBleedingEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(33-35)% chance to Avoid Bleeding" }, } },
- ["ChanceToAvoidBleedingEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(36-38)% chance to Avoid Bleeding" }, } },
- ["ChanceToAvoidBleedingEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(39-41)% chance to Avoid Bleeding" }, } },
- ["ChanceToAvoidBleedingEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(42-44)% chance to Avoid Bleeding" }, } },
- ["ChanceToAvoidBleedingEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(45-47)% chance to Avoid Bleeding" }, } },
- ["ChanceToAvoidBleedingEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(48-50)% chance to Avoid Bleeding" }, } },
- ["ChanceToAvoidBleedingEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(42-44)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } },
- ["ChanceToAvoidBleedingEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(45-47)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } },
- ["ChanceToAvoidBleedingEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(48-50)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } },
- ["ChanceToAvoidBleedingEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(51-53)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } },
- ["ChanceToAvoidBleedingEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(54-57)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } },
- ["ChanceToAvoidBleedingEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(58-61)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } },
- ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(51-53)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } },
- ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(54-56)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } },
- ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(57-59)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } },
- ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(60-62)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } },
- ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(63-66)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } },
- ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(67-70)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } },
- ["ChanceToAvoidPoisonEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(33-35)% chance to Avoid being Poisoned" }, } },
- ["ChanceToAvoidPoisonEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(36-38)% chance to Avoid being Poisoned" }, } },
- ["ChanceToAvoidPoisonEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(39-41)% chance to Avoid being Poisoned" }, } },
- ["ChanceToAvoidPoisonEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(42-44)% chance to Avoid being Poisoned" }, } },
- ["ChanceToAvoidPoisonEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(45-47)% chance to Avoid being Poisoned" }, } },
- ["ChanceToAvoidPoisonEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(48-50)% chance to Avoid being Poisoned" }, } },
- ["ChanceToAvoidPoisonEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(42-44)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } },
- ["ChanceToAvoidPoisonEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(45-47)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } },
- ["ChanceToAvoidPoisonEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(48-50)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } },
- ["ChanceToAvoidPoisonEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(51-53)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } },
- ["ChanceToAvoidPoisonEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(54-57)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } },
- ["ChanceToAvoidPoisonEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(58-61)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } },
- ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(51-53)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } },
- ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(54-56)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } },
- ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(57-59)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } },
- ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(60-62)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } },
- ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(63-66)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } },
- ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(67-70)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } },
- ["GlobalCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "5% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "5% increased Cooldown Recovery Rate" }, } },
- ["GlobalCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "6% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "6% increased Cooldown Recovery Rate" }, } },
- ["GlobalCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "7% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "7% increased Cooldown Recovery Rate" }, } },
- ["GlobalCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "8% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "8% increased Cooldown Recovery Rate" }, } },
- ["GlobalCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "9% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "9% increased Cooldown Recovery Rate" }, } },
- ["GlobalCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "10% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "10% increased Cooldown Recovery Rate" }, } },
- ["GlobalCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "8% increased Cooldown Recovery Rate" }, } },
- ["GlobalCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "9% increased Cooldown Recovery Rate" }, } },
- ["GlobalCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "10% increased Cooldown Recovery Rate" }, } },
- ["GlobalCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "11% increased Cooldown Recovery Rate" }, } },
- ["GlobalCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "12% increased Cooldown Recovery Rate" }, } },
- ["GlobalCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "13% increased Cooldown Recovery Rate" }, } },
- ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "11% increased Cooldown Recovery Rate" }, } },
- ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "12% increased Cooldown Recovery Rate" }, } },
- ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "13% increased Cooldown Recovery Rate" }, } },
- ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "14% increased Cooldown Recovery Rate" }, } },
- ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "15% increased Cooldown Recovery Rate" }, } },
- ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "16% increased Cooldown Recovery Rate" }, } },
- ["ElusiveEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(6-7)% increased Elusive Effect" }, } },
- ["ElusiveEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(8-9)% increased Elusive Effect" }, } },
- ["ElusiveEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(10-11)% increased Elusive Effect" }, } },
- ["ElusiveEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(12-13)% increased Elusive Effect" }, } },
- ["ElusiveEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(14-15)% increased Elusive Effect" }, } },
- ["ElusiveEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(16-17)% increased Elusive Effect" }, } },
- ["ElusiveEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(12-13)% increased Elusive Effect" }, } },
- ["ElusiveEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(14-15)% increased Elusive Effect" }, } },
- ["ElusiveEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(16-17)% increased Elusive Effect" }, } },
- ["ElusiveEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(18-19)% increased Elusive Effect" }, } },
- ["ElusiveEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(20-21)% increased Elusive Effect" }, } },
- ["ElusiveEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(22-23)% increased Elusive Effect" }, } },
- ["ElusiveEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(18-19)% increased Elusive Effect" }, } },
- ["ElusiveEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(20-21)% increased Elusive Effect" }, } },
- ["ElusiveEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(22-23)% increased Elusive Effect" }, } },
- ["ElusiveEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(24-25)% increased Elusive Effect" }, } },
- ["ElusiveEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(26-27)% increased Elusive Effect" }, } },
- ["ElusiveEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(28-29)% increased Elusive Effect" }, } },
- ["SpellCriticalStrikeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(20-21)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(20-21)% to Critical Strike Multiplier for Spell Damage" }, } },
- ["SpellCriticalStrikeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(22-23)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(22-23)% to Critical Strike Multiplier for Spell Damage" }, } },
- ["SpellCriticalStrikeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(24-25)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(24-25)% to Critical Strike Multiplier for Spell Damage" }, } },
- ["SpellCriticalStrikeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(26-27)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(26-27)% to Critical Strike Multiplier for Spell Damage" }, } },
- ["SpellCriticalStrikeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(28-29)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(28-29)% to Critical Strike Multiplier for Spell Damage" }, } },
- ["SpellCriticalStrikeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(30-31)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(30-31)% to Critical Strike Multiplier for Spell Damage" }, } },
- ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(26-27)% to Critical Strike Multiplier for Spell Damage" }, } },
- ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(28-29)% to Critical Strike Multiplier for Spell Damage" }, } },
- ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(30-31)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(30-31)% to Critical Strike Multiplier for Spell Damage" }, } },
- ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(32-33)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(32-33)% to Critical Strike Multiplier for Spell Damage" }, } },
- ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(34-35)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(34-35)% to Critical Strike Multiplier for Spell Damage" }, } },
- ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(36-37)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(36-37)% to Critical Strike Multiplier for Spell Damage" }, } },
- ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-33)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(32-33)% to Critical Strike Multiplier for Spell Damage" }, } },
- ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(34-35)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(34-35)% to Critical Strike Multiplier for Spell Damage" }, } },
- ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(36-37)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(36-37)% to Critical Strike Multiplier for Spell Damage" }, } },
- ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(38-39)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(38-39)% to Critical Strike Multiplier for Spell Damage" }, } },
- ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(40-41)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(40-41)% to Critical Strike Multiplier for Spell Damage" }, } },
- ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(42-43)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(42-43)% to Critical Strike Multiplier for Spell Damage" }, } },
- ["AttackCriticalStrikeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(20-21)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(20-21)% to Critical Strike Multiplier for Attack Damage" }, } },
- ["AttackCriticalStrikeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(22-23)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(22-23)% to Critical Strike Multiplier for Attack Damage" }, } },
- ["AttackCriticalStrikeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(24-25)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(24-25)% to Critical Strike Multiplier for Attack Damage" }, } },
- ["AttackCriticalStrikeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(26-27)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(26-27)% to Critical Strike Multiplier for Attack Damage" }, } },
- ["AttackCriticalStrikeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(28-29)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(28-29)% to Critical Strike Multiplier for Attack Damage" }, } },
- ["AttackCriticalStrikeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(30-31)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(30-31)% to Critical Strike Multiplier for Attack Damage" }, } },
- ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(26-27)% to Critical Strike Multiplier for Attack Damage" }, } },
- ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(28-29)% to Critical Strike Multiplier for Attack Damage" }, } },
- ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(30-31)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(30-31)% to Critical Strike Multiplier for Attack Damage" }, } },
- ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(32-33)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(32-33)% to Critical Strike Multiplier for Attack Damage" }, } },
- ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(34-35)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(34-35)% to Critical Strike Multiplier for Attack Damage" }, } },
- ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(36-37)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(36-37)% to Critical Strike Multiplier for Attack Damage" }, } },
- ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-33)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(32-33)% to Critical Strike Multiplier for Attack Damage" }, } },
- ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(34-35)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(34-35)% to Critical Strike Multiplier for Attack Damage" }, } },
- ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(36-37)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(36-37)% to Critical Strike Multiplier for Attack Damage" }, } },
- ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(38-39)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(38-39)% to Critical Strike Multiplier for Attack Damage" }, } },
- ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(40-41)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(40-41)% to Critical Strike Multiplier for Attack Damage" }, } },
- ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(42-43)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(42-43)% to Critical Strike Multiplier for Attack Damage" }, } },
- ["FireDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(15-17)% increased Fire Damage" }, } },
- ["FireDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(18-20)% increased Fire Damage" }, } },
- ["FireDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(21-23)% increased Fire Damage" }, } },
- ["FireDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(24-26)% increased Fire Damage" }, } },
- ["FireDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-28)% increased Fire Damage" }, } },
- ["FireDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(29-30)% increased Fire Damage" }, } },
- ["FireDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(21-23)% increased Fire Damage" }, [4074358700] = { "" }, } },
- ["FireDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(24-26)% increased Fire Damage" }, [4074358700] = { "" }, } },
- ["FireDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-29)% increased Fire Damage" }, [4074358700] = { "" }, } },
- ["FireDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-32)% increased Fire Damage" }, [4074358700] = { "" }, } },
- ["FireDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(33-34)% increased Fire Damage" }, [4074358700] = { "" }, } },
- ["FireDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(35-36)% increased Fire Damage" }, [4074358700] = { "" }, } },
- ["FireDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-29)% increased Fire Damage" }, [3283106665] = { "" }, } },
- ["FireDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-32)% increased Fire Damage" }, [3283106665] = { "" }, } },
- ["FireDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(33-35)% increased Fire Damage" }, [3283106665] = { "" }, } },
- ["FireDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(36-38)% increased Fire Damage" }, [3283106665] = { "" }, } },
- ["FireDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(39-40)% increased Fire Damage" }, [3283106665] = { "" }, } },
- ["FireDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(41-42)% increased Fire Damage" }, [3283106665] = { "" }, } },
- ["ColdDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(15-17)% increased Cold Damage" }, } },
- ["ColdDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(18-20)% increased Cold Damage" }, } },
- ["ColdDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(21-23)% increased Cold Damage" }, } },
- ["ColdDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(24-26)% increased Cold Damage" }, } },
- ["ColdDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-28)% increased Cold Damage" }, } },
- ["ColdDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(29-30)% increased Cold Damage" }, } },
- ["ColdDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(21-23)% increased Cold Damage" }, [4074358700] = { "" }, } },
- ["ColdDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(24-26)% increased Cold Damage" }, [4074358700] = { "" }, } },
- ["ColdDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-29)% increased Cold Damage" }, [4074358700] = { "" }, } },
- ["ColdDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-32)% increased Cold Damage" }, [4074358700] = { "" }, } },
- ["ColdDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(33-34)% increased Cold Damage" }, [4074358700] = { "" }, } },
- ["ColdDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(35-36)% increased Cold Damage" }, [4074358700] = { "" }, } },
- ["ColdDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-29)% increased Cold Damage" }, [3283106665] = { "" }, } },
- ["ColdDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-32)% increased Cold Damage" }, [3283106665] = { "" }, } },
- ["ColdDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(33-35)% increased Cold Damage" }, [3283106665] = { "" }, } },
- ["ColdDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(36-38)% increased Cold Damage" }, [3283106665] = { "" }, } },
- ["ColdDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(39-40)% increased Cold Damage" }, [3283106665] = { "" }, } },
- ["ColdDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(41-42)% increased Cold Damage" }, [3283106665] = { "" }, } },
- ["LightningDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(15-17)% increased Lightning Damage" }, } },
- ["LightningDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(18-20)% increased Lightning Damage" }, } },
- ["LightningDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(21-23)% increased Lightning Damage" }, } },
- ["LightningDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(24-26)% increased Lightning Damage" }, } },
- ["LightningDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(27-28)% increased Lightning Damage" }, } },
- ["LightningDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(29-30)% increased Lightning Damage" }, } },
- ["LightningDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(21-23)% increased Lightning Damage" }, } },
- ["LightningDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(24-26)% increased Lightning Damage" }, } },
- ["LightningDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(27-29)% increased Lightning Damage" }, } },
- ["LightningDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(30-32)% increased Lightning Damage" }, } },
- ["LightningDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(33-34)% increased Lightning Damage" }, } },
- ["LightningDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(35-36)% increased Lightning Damage" }, } },
- ["LightningDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(27-29)% increased Lightning Damage" }, } },
- ["LightningDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(30-32)% increased Lightning Damage" }, } },
- ["LightningDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(33-35)% increased Lightning Damage" }, } },
- ["LightningDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(36-38)% increased Lightning Damage" }, } },
- ["LightningDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(39-40)% increased Lightning Damage" }, } },
- ["LightningDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(41-42)% increased Lightning Damage" }, } },
- ["IncreasedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(15-17)% increased Chaos Damage" }, } },
- ["IncreasedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(18-20)% increased Chaos Damage" }, } },
- ["IncreasedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(21-23)% increased Chaos Damage" }, } },
- ["IncreasedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(24-26)% increased Chaos Damage" }, } },
- ["IncreasedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-28)% increased Chaos Damage" }, } },
- ["IncreasedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(29-30)% increased Chaos Damage" }, } },
- ["IncreasedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(21-23)% increased Chaos Damage" }, [4074358700] = { "" }, } },
- ["IncreasedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(24-26)% increased Chaos Damage" }, [4074358700] = { "" }, } },
- ["IncreasedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-29)% increased Chaos Damage" }, [4074358700] = { "" }, } },
- ["IncreasedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(30-32)% increased Chaos Damage" }, [4074358700] = { "" }, } },
- ["IncreasedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(33-34)% increased Chaos Damage" }, [4074358700] = { "" }, } },
- ["IncreasedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(35-36)% increased Chaos Damage" }, [4074358700] = { "" }, } },
- ["IncreasedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-29)% increased Chaos Damage" }, [3283106665] = { "" }, } },
- ["IncreasedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(30-32)% increased Chaos Damage" }, [3283106665] = { "" }, } },
- ["IncreasedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(33-35)% increased Chaos Damage" }, [3283106665] = { "" }, } },
- ["IncreasedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(36-38)% increased Chaos Damage" }, [3283106665] = { "" }, } },
- ["IncreasedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(39-40)% increased Chaos Damage" }, [3283106665] = { "" }, } },
- ["IncreasedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(41-42)% increased Chaos Damage" }, [3283106665] = { "" }, } },
- ["PhysicalDamagePercentEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(15-17)% increased Global Physical Damage" }, } },
- ["PhysicalDamagePercentEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(18-20)% increased Global Physical Damage" }, } },
- ["PhysicalDamagePercentEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(21-23)% increased Global Physical Damage" }, } },
- ["PhysicalDamagePercentEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(24-26)% increased Global Physical Damage" }, } },
- ["PhysicalDamagePercentEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(27-28)% increased Global Physical Damage" }, } },
- ["PhysicalDamagePercentEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(29-30)% increased Global Physical Damage" }, } },
- ["PhysicalDamagePercentEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(21-23)% increased Global Physical Damage" }, } },
- ["PhysicalDamagePercentEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(24-26)% increased Global Physical Damage" }, } },
- ["PhysicalDamagePercentEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(27-29)% increased Global Physical Damage" }, } },
- ["PhysicalDamagePercentEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(30-32)% increased Global Physical Damage" }, } },
- ["PhysicalDamagePercentEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(33-34)% increased Global Physical Damage" }, } },
- ["PhysicalDamagePercentEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(35-36)% increased Global Physical Damage" }, } },
- ["PhysicalDamagePercentEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(27-29)% increased Global Physical Damage" }, } },
- ["PhysicalDamagePercentEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(30-32)% increased Global Physical Damage" }, } },
- ["PhysicalDamagePercentEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(33-35)% increased Global Physical Damage" }, } },
- ["PhysicalDamagePercentEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(36-38)% increased Global Physical Damage" }, } },
- ["PhysicalDamagePercentEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(39-40)% increased Global Physical Damage" }, } },
- ["PhysicalDamagePercentEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(41-42)% increased Global Physical Damage" }, } },
- ["ArcticArmourBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(15-17)% increased Arctic Armour Buff Effect" }, } },
- ["ArcticArmourBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(18-20)% increased Arctic Armour Buff Effect" }, } },
- ["ArcticArmourBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(21-23)% increased Arctic Armour Buff Effect" }, } },
- ["ArcticArmourBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(24-26)% increased Arctic Armour Buff Effect" }, } },
- ["ArcticArmourBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-29)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(27-29)% increased Arctic Armour Buff Effect" }, } },
- ["ArcticArmourBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(30-32)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(30-32)% increased Arctic Armour Buff Effect" }, } },
- ["ArcticArmourBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(24-26)% increased Arctic Armour Buff Effect" }, } },
- ["ArcticArmourBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(27-29)% increased Arctic Armour Buff Effect" }, } },
- ["ArcticArmourBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(30-32)% increased Arctic Armour Buff Effect" }, } },
- ["ArcticArmourBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(33-35)% increased Arctic Armour Buff Effect" }, } },
- ["ArcticArmourBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(36-38)% increased Arctic Armour Buff Effect" }, } },
- ["ArcticArmourBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(39-41)% increased Arctic Armour Buff Effect" }, } },
- ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(33-35)% increased Arctic Armour Buff Effect" }, } },
- ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(36-38)% increased Arctic Armour Buff Effect" }, } },
- ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(39-41)% increased Arctic Armour Buff Effect" }, } },
- ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(42-44)% increased Arctic Armour Buff Effect" }, } },
- ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(45-47)% increased Arctic Armour Buff Effect" }, } },
- ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(48-50)% increased Arctic Armour Buff Effect" }, } },
- ["FleshAndStoneAreaOfEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flesh and Stone has (15-17)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (15-17)% increased Area of Effect" }, } },
- ["FleshAndStoneAreaOfEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flesh and Stone has (18-20)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (18-20)% increased Area of Effect" }, } },
- ["FleshAndStoneAreaOfEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flesh and Stone has (21-23)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (21-23)% increased Area of Effect" }, } },
- ["FleshAndStoneAreaOfEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flesh and Stone has (24-26)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (24-26)% increased Area of Effect" }, } },
- ["FleshAndStoneAreaOfEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flesh and Stone has (27-29)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (27-29)% increased Area of Effect" }, } },
- ["FleshAndStoneAreaOfEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flesh and Stone has (30-32)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (30-32)% increased Area of Effect" }, } },
- ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (24-26)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (24-26)% increased Area of Effect" }, } },
- ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (27-29)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (27-29)% increased Area of Effect" }, } },
- ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (30-32)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (30-32)% increased Area of Effect" }, } },
- ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (33-35)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (33-35)% increased Area of Effect" }, } },
- ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (36-38)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (36-38)% increased Area of Effect" }, } },
- ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (39-41)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (39-41)% increased Area of Effect" }, } },
- ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (33-35)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (33-35)% increased Area of Effect" }, } },
- ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (36-38)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (36-38)% increased Area of Effect" }, } },
- ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (39-41)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (39-41)% increased Area of Effect" }, } },
- ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (42-44)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (42-44)% increased Area of Effect" }, } },
- ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (45-47)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (45-47)% increased Area of Effect" }, } },
- ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (48-50)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (48-50)% increased Area of Effect" }, } },
- ["TempestShieldBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Tempest Shield has (15-17)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (15-17)% increased Buff Effect" }, } },
- ["TempestShieldBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Tempest Shield has (18-20)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (18-20)% increased Buff Effect" }, } },
- ["TempestShieldBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Tempest Shield has (21-23)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (21-23)% increased Buff Effect" }, } },
- ["TempestShieldBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Tempest Shield has (24-26)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (24-26)% increased Buff Effect" }, } },
- ["TempestShieldBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Tempest Shield has (27-29)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (27-29)% increased Buff Effect" }, } },
- ["TempestShieldBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Tempest Shield has (30-32)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (30-32)% increased Buff Effect" }, } },
- ["TempestShieldBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (24-26)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (24-26)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["TempestShieldBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (27-29)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (27-29)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["TempestShieldBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (30-32)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (30-32)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["TempestShieldBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (33-35)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (33-35)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["TempestShieldBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (36-38)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (36-38)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["TempestShieldBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (39-41)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (39-41)% increased Buff Effect" }, [4074358700] = { "" }, } },
- ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (33-35)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (33-35)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (36-38)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (36-38)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (39-41)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (39-41)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (42-44)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (42-44)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (45-47)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (45-47)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (48-50)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (48-50)% increased Buff Effect" }, [3283106665] = { "" }, } },
- ["DamageRemovedFromManaBeforeLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "5% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "5% of Damage is taken from Mana before Life" }, } },
- ["DamageRemovedFromManaBeforeLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "6% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "6% of Damage is taken from Mana before Life" }, } },
- ["DamageRemovedFromManaBeforeLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "7% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "7% of Damage is taken from Mana before Life" }, } },
- ["DamageRemovedFromManaBeforeLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "8% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "8% of Damage is taken from Mana before Life" }, } },
- ["DamageRemovedFromManaBeforeLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "9% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "9% of Damage is taken from Mana before Life" }, } },
- ["DamageRemovedFromManaBeforeLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "10% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "10% of Damage is taken from Mana before Life" }, } },
- ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "7% of Damage is taken from Mana before Life" }, } },
- ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 8% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "8% of Damage is taken from Mana before Life" }, } },
- ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 9% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "9% of Damage is taken from Mana before Life" }, } },
- ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "10% of Damage is taken from Mana before Life" }, } },
- ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "11% of Damage is taken from Mana before Life" }, } },
- ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "12% of Damage is taken from Mana before Life" }, } },
- ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "9% of Damage is taken from Mana before Life" }, } },
- ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "10% of Damage is taken from Mana before Life" }, } },
- ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "11% of Damage is taken from Mana before Life" }, } },
- ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "12% of Damage is taken from Mana before Life" }, } },
- ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "13% of Damage is taken from Mana before Life" }, } },
- ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "14% of Damage is taken from Mana before Life" }, } },
- ["GolemBuffEffectUniqueEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-21)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(19-21)% increased Effect of Buffs granted by your Golems" }, } },
- ["GolemBuffEffectUniqueEldritchImplicit2"] = { type = "Exarch", affix = "", "(22-24)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(22-24)% increased Effect of Buffs granted by your Golems" }, } },
- ["GolemBuffEffectUniqueEldritchImplicit3"] = { type = "Exarch", affix = "", "(25-27)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(25-27)% increased Effect of Buffs granted by your Golems" }, } },
- ["GolemBuffEffectUniqueEldritchImplicit4"] = { type = "Exarch", affix = "", "(28-30)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(28-30)% increased Effect of Buffs granted by your Golems" }, } },
- ["GolemBuffEffectUniqueEldritchImplicit5"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(31-33)% increased Effect of Buffs granted by your Golems" }, } },
- ["GolemBuffEffectUniqueEldritchImplicit6"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(34-36)% increased Effect of Buffs granted by your Golems" }, } },
- ["GolemBuffEffectUniqueEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(31-33)% increased Effect of Buffs granted by your Golems" }, } },
- ["GolemBuffEffectUniqueEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(34-36)% increased Effect of Buffs granted by your Golems" }, } },
- ["GolemBuffEffectUniqueEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(37-39)% increased Effect of Buffs granted by your Golems" }, } },
- ["GolemBuffEffectUniqueEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(40-42)% increased Effect of Buffs granted by your Golems" }, } },
- ["GolemBuffEffectUniqueEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(43-45)% increased Effect of Buffs granted by your Golems" }, } },
- ["GolemBuffEffectUniqueEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(46-48)% increased Effect of Buffs granted by your Golems" }, } },
- ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(43-45)% increased Effect of Buffs granted by your Golems" }, } },
- ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(46-48)% increased Effect of Buffs granted by your Golems" }, } },
- ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(49-51)% increased Effect of Buffs granted by your Golems" }, } },
- ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(52-54)% increased Effect of Buffs granted by your Golems" }, } },
- ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(55-57)% increased Effect of Buffs granted by your Golems" }, } },
- ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(58-60)% increased Effect of Buffs granted by your Golems" }, } },
- ["AuraEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(9-10)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(9-10)% increased effect of Non-Curse Auras from your Skills" }, } },
- ["AuraEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(11-12)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(11-12)% increased effect of Non-Curse Auras from your Skills" }, } },
- ["AuraEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(13-14)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(13-14)% increased effect of Non-Curse Auras from your Skills" }, } },
- ["AuraEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(15-16)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(15-16)% increased effect of Non-Curse Auras from your Skills" }, } },
- ["AuraEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(17-18)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(17-18)% increased effect of Non-Curse Auras from your Skills" }, } },
- ["AuraEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(19-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(19-20)% increased effect of Non-Curse Auras from your Skills" }, } },
- ["AuraEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(17-18)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } },
- ["AuraEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(19-20)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } },
- ["AuraEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(21-22)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } },
- ["AuraEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(23-24)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } },
- ["AuraEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(25-26)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } },
- ["AuraEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(27-28)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } },
- ["AuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(25-26)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } },
- ["AuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(27-28)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } },
- ["AuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(29-30)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } },
- ["AuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(31-32)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } },
- ["AuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(33-34)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } },
- ["AuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(35-36)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } },
- ["CurseEffectivenessEldritchImplicit1"] = { type = "Exarch", affix = "", "7% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "7% increased Effect of your Curses" }, } },
- ["CurseEffectivenessEldritchImplicit2"] = { type = "Exarch", affix = "", "8% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "8% increased Effect of your Curses" }, } },
- ["CurseEffectivenessEldritchImplicit3"] = { type = "Exarch", affix = "", "9% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "9% increased Effect of your Curses" }, } },
- ["CurseEffectivenessEldritchImplicit4"] = { type = "Exarch", affix = "", "10% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "10% increased Effect of your Curses" }, } },
- ["CurseEffectivenessEldritchImplicit5"] = { type = "Exarch", affix = "", "11% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "11% increased Effect of your Curses" }, } },
- ["CurseEffectivenessEldritchImplicit6"] = { type = "Exarch", affix = "", "12% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "12% increased Effect of your Curses" }, } },
- ["CurseEffectivenessEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "10% increased Effect of your Curses" }, [4074358700] = { "" }, } },
- ["CurseEffectivenessEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "11% increased Effect of your Curses" }, [4074358700] = { "" }, } },
- ["CurseEffectivenessEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "12% increased Effect of your Curses" }, [4074358700] = { "" }, } },
- ["CurseEffectivenessEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "13% increased Effect of your Curses" }, [4074358700] = { "" }, } },
- ["CurseEffectivenessEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "14% increased Effect of your Curses" }, [4074358700] = { "" }, } },
- ["CurseEffectivenessEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "15% increased Effect of your Curses" }, [4074358700] = { "" }, } },
- ["CurseEffectivenessEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "13% increased Effect of your Curses" }, [3283106665] = { "" }, } },
- ["CurseEffectivenessEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "14% increased Effect of your Curses" }, [3283106665] = { "" }, } },
- ["CurseEffectivenessEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "15% increased Effect of your Curses" }, [3283106665] = { "" }, } },
- ["CurseEffectivenessEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "16% increased Effect of your Curses" }, [3283106665] = { "" }, } },
- ["CurseEffectivenessEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "17% increased Effect of your Curses" }, [3283106665] = { "" }, } },
- ["CurseEffectivenessEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "18% increased Effect of your Curses" }, [3283106665] = { "" }, } },
- ["OfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(13-14)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(13-14)% increased effect of Offerings" }, } },
- ["OfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(15-16)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(15-16)% increased effect of Offerings" }, } },
- ["OfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(17-18)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(17-18)% increased effect of Offerings" }, } },
- ["OfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(19-20)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(19-20)% increased effect of Offerings" }, } },
- ["OfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(21-22)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(21-22)% increased effect of Offerings" }, } },
- ["OfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(23-24)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(23-24)% increased effect of Offerings" }, } },
- ["OfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(19-20)% increased effect of Offerings" }, [4074358700] = { "" }, } },
- ["OfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(21-22)% increased effect of Offerings" }, [4074358700] = { "" }, } },
- ["OfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(23-24)% increased effect of Offerings" }, [4074358700] = { "" }, } },
- ["OfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(25-26)% increased effect of Offerings" }, [4074358700] = { "" }, } },
- ["OfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(27-28)% increased effect of Offerings" }, [4074358700] = { "" }, } },
- ["OfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(29-30)% increased effect of Offerings" }, [4074358700] = { "" }, } },
- ["OfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(25-26)% increased effect of Offerings" }, [3283106665] = { "" }, } },
- ["OfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(27-28)% increased effect of Offerings" }, [3283106665] = { "" }, } },
- ["OfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(29-30)% increased effect of Offerings" }, [3283106665] = { "" }, } },
- ["OfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(31-32)% increased effect of Offerings" }, [3283106665] = { "" }, } },
- ["OfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(33-34)% increased effect of Offerings" }, [3283106665] = { "" }, } },
- ["OfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(35-36)% increased effect of Offerings" }, [3283106665] = { "" }, } },
- ["WarcryEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-20)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(19-20)% increased Warcry Buff Effect" }, } },
- ["WarcryEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(21-22)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(21-22)% increased Warcry Buff Effect" }, } },
- ["WarcryEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(23-24)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(23-24)% increased Warcry Buff Effect" }, } },
- ["WarcryEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(25-26)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(25-26)% increased Warcry Buff Effect" }, } },
- ["WarcryEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(27-28)% increased Warcry Buff Effect" }, } },
- ["WarcryEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(29-30)% increased Warcry Buff Effect" }, } },
- ["WarcryEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(25-26)% increased Warcry Buff Effect" }, } },
- ["WarcryEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(27-28)% increased Warcry Buff Effect" }, } },
- ["WarcryEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(29-30)% increased Warcry Buff Effect" }, } },
- ["WarcryEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(31-32)% increased Warcry Buff Effect" }, } },
- ["WarcryEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(33-34)% increased Warcry Buff Effect" }, } },
- ["WarcryEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(35-36)% increased Warcry Buff Effect" }, } },
- ["WarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(31-32)% increased Warcry Buff Effect" }, } },
- ["WarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(33-34)% increased Warcry Buff Effect" }, } },
- ["WarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(35-36)% increased Warcry Buff Effect" }, } },
- ["WarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(37-38)% increased Warcry Buff Effect" }, } },
- ["WarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(39-40)% increased Warcry Buff Effect" }, } },
- ["WarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(41-42)% increased Warcry Buff Effect" }, } },
- ["FlaskEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flasks applied to you have (6-7)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (6-7)% increased Effect" }, } },
- ["FlaskEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flasks applied to you have (8-9)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (8-9)% increased Effect" }, } },
- ["FlaskEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flasks applied to you have (10-11)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (10-11)% increased Effect" }, } },
- ["FlaskEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flasks applied to you have (12-13)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (12-13)% increased Effect" }, } },
- ["FlaskEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flasks applied to you have (14-15)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (14-15)% increased Effect" }, } },
- ["FlaskEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flasks applied to you have (16-17)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (16-17)% increased Effect" }, } },
- ["FlaskEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (12-13)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (12-13)% increased Effect" }, } },
- ["FlaskEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (14-15)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (14-15)% increased Effect" }, } },
- ["FlaskEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (16-17)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (16-17)% increased Effect" }, } },
- ["FlaskEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (18-19)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (18-19)% increased Effect" }, } },
- ["FlaskEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (20-21)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (20-21)% increased Effect" }, } },
- ["FlaskEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (22-23)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (22-23)% increased Effect" }, } },
- ["FlaskEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (18-19)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (18-19)% increased Effect" }, } },
- ["FlaskEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (20-21)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (20-21)% increased Effect" }, } },
- ["FlaskEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (22-23)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (22-23)% increased Effect" }, } },
- ["FlaskEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (24-25)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (24-25)% increased Effect" }, } },
- ["FlaskEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (26-27)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (26-27)% increased Effect" }, } },
- ["FlaskEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (28-29)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (28-29)% increased Effect" }, } },
- ["DamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(8-9)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(8-9)% of Damage taken Recouped as Life" }, } },
- ["DamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(10-11)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-11)% of Damage taken Recouped as Life" }, } },
- ["DamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(12-13)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(12-13)% of Damage taken Recouped as Life" }, } },
- ["DamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(14-15)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(14-15)% of Damage taken Recouped as Life" }, } },
- ["DamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(16-17)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(16-17)% of Damage taken Recouped as Life" }, } },
- ["DamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(18-19)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(18-19)% of Damage taken Recouped as Life" }, } },
- ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(14-15)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(16-17)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(18-19)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(20-21)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(22-23)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-25)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(24-25)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
- ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(20-21)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(22-23)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(24-25)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(26-27)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(28-29)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-31)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(30-31)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
- ["FlaskGainPerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } },
- ["FlaskGainPerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } },
- ["FlaskGainPerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } },
- ["FlaskGainPerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } },
- ["FlaskGainPerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Flasks gain 2 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, } },
- ["FlaskGainPerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Flasks gain 2 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, } },
- ["FlaskGainPerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, [4074358700] = { "" }, } },
- ["FlaskGainPerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, [4074358700] = { "" }, } },
- ["FlaskGainPerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, [4074358700] = { "" }, } },
- ["FlaskGainPerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, [4074358700] = { "" }, } },
- ["FlaskGainPerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [4074358700] = { "" }, } },
- ["FlaskGainPerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [4074358700] = { "" }, } },
- ["FlaskGainPerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [3283106665] = { "" }, } },
- ["FlaskGainPerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [3283106665] = { "" }, } },
- ["FlaskGainPerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [3283106665] = { "" }, } },
- ["FlaskGainPerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [3283106665] = { "" }, } },
- ["FlaskGainPerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 4 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 4 Charges every 3 seconds" }, [3283106665] = { "" }, } },
- ["FlaskGainPerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 4 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 4 Charges every 3 seconds" }, [3283106665] = { "" }, } },
- ["MaximumResistancesEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } },
- ["MaximumResistancesEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } },
- ["MaximumResistancesEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } },
- ["MaximumResistancesEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } },
- ["MaximumResistancesEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } },
- ["MaximumResistancesEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } },
- ["MaximumResistancesEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, [4074358700] = { "" }, } },
- ["MaximumResistancesEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, [4074358700] = { "" }, } },
- ["MaximumResistancesEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, [4074358700] = { "" }, } },
- ["MaximumResistancesEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, [4074358700] = { "" }, } },
- ["MaximumResistancesEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [4074358700] = { "" }, } },
- ["MaximumResistancesEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [4074358700] = { "" }, } },
- ["MaximumResistancesEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [3283106665] = { "" }, } },
- ["MaximumResistancesEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [3283106665] = { "" }, } },
- ["MaximumResistancesEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [3283106665] = { "" }, } },
- ["MaximumResistancesEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [3283106665] = { "" }, } },
- ["MaximumResistancesEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+4% to all maximum Resistances" }, [3283106665] = { "" }, } },
- ["MaximumResistancesEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+4% to all maximum Resistances" }, [3283106665] = { "" }, } },
- ["MaximumFireResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } },
- ["MaximumFireResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } },
- ["MaximumFireResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } },
- ["MaximumFireResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } },
- ["MaximumFireResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } },
- ["MaximumFireResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } },
- ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } },
- ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } },
- ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [4074358700] = { "" }, } },
- ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [4074358700] = { "" }, } },
- ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [4074358700] = { "" }, } },
- ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [4074358700] = { "" }, } },
- ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } },
- ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } },
- ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [3283106665] = { "" }, } },
- ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [3283106665] = { "" }, } },
- ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+5% to maximum Fire Resistance" }, [3283106665] = { "" }, } },
- ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+5% to maximum Fire Resistance" }, [3283106665] = { "" }, } },
- ["MaximumColdResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } },
- ["MaximumColdResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } },
- ["MaximumColdResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } },
- ["MaximumColdResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } },
- ["MaximumColdResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } },
- ["MaximumColdResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } },
- ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } },
- ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } },
- ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [4074358700] = { "" }, } },
- ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [4074358700] = { "" }, } },
- ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [4074358700] = { "" }, } },
- ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [4074358700] = { "" }, } },
- ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } },
- ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } },
- ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [3283106665] = { "" }, } },
- ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [3283106665] = { "" }, } },
- ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to maximum Cold Resistance" }, [3283106665] = { "" }, } },
- ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to maximum Cold Resistance" }, [3283106665] = { "" }, } },
- ["MaximumLightningResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } },
- ["MaximumLightningResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } },
- ["MaximumLightningResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } },
- ["MaximumLightningResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } },
- ["MaximumLightningResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } },
- ["MaximumLightningResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } },
- ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } },
- ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } },
- ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [4074358700] = { "" }, } },
- ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [4074358700] = { "" }, } },
- ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [4074358700] = { "" }, } },
- ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [4074358700] = { "" }, } },
- ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } },
- ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } },
- ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [3283106665] = { "" }, } },
- ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [3283106665] = { "" }, } },
- ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+5% to maximum Lightning Resistance" }, [3283106665] = { "" }, } },
- ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+5% to maximum Lightning Resistance" }, [3283106665] = { "" }, } },
- ["MaximumChaosResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to maximum Chaos Resistance" }, } },
- ["MaximumChaosResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to maximum Chaos Resistance" }, } },
- ["MaximumChaosResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, } },
- ["MaximumChaosResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, } },
- ["MaximumChaosResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } },
- ["MaximumChaosResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } },
- ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, [4074358700] = { "" }, } },
- ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, [4074358700] = { "" }, } },
- ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, [4074358700] = { "" }, } },
- ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, [4074358700] = { "" }, } },
- ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, [4074358700] = { "" }, } },
- ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, [4074358700] = { "" }, } },
- ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, [3283106665] = { "" }, } },
- ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, [3283106665] = { "" }, } },
- ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, [3283106665] = { "" }, } },
- ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, [3283106665] = { "" }, } },
- ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+5% to maximum Chaos Resistance" }, [3283106665] = { "" }, } },
- ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+5% to maximum Chaos Resistance" }, [3283106665] = { "" }, } },
- ["EnduranceChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 15 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 15 seconds" }, } },
- ["EnduranceChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 14 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 14 seconds" }, } },
- ["EnduranceChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 13 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 13 seconds" }, } },
- ["EnduranceChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 12 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 12 seconds" }, } },
- ["EnduranceChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 11 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 11 seconds" }, } },
- ["EnduranceChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 10 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 10 seconds" }, } },
- ["EnduranceChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 11 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 11 seconds" }, [4074358700] = { "" }, } },
- ["EnduranceChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 10 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 10 seconds" }, [4074358700] = { "" }, } },
- ["EnduranceChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 9 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 9 seconds" }, [4074358700] = { "" }, } },
- ["EnduranceChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 8 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 8 seconds" }, [4074358700] = { "" }, } },
- ["EnduranceChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 7 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 7 seconds" }, [4074358700] = { "" }, } },
- ["EnduranceChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 6 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 6 seconds" }, [4074358700] = { "" }, } },
- ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 7 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 7 seconds" }, [3283106665] = { "" }, } },
- ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 6 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 6 seconds" }, [3283106665] = { "" }, } },
- ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 5 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 5 seconds" }, [3283106665] = { "" }, } },
- ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 4 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 4 seconds" }, [3283106665] = { "" }, } },
- ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 3 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 3 seconds" }, [3283106665] = { "" }, } },
- ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 2 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 2 seconds" }, [3283106665] = { "" }, } },
- ["FrenzyChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 15 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 15 seconds" }, } },
- ["FrenzyChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 14 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 14 seconds" }, } },
- ["FrenzyChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 13 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 13 seconds" }, } },
- ["FrenzyChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 12 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 12 seconds" }, } },
- ["FrenzyChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 11 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 11 seconds" }, } },
- ["FrenzyChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 10 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 10 seconds" }, } },
- ["FrenzyChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 11 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 11 seconds" }, [4074358700] = { "" }, } },
- ["FrenzyChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 10 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 10 seconds" }, [4074358700] = { "" }, } },
- ["FrenzyChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 9 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 9 seconds" }, [4074358700] = { "" }, } },
- ["FrenzyChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 8 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 8 seconds" }, [4074358700] = { "" }, } },
- ["FrenzyChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 7 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 7 seconds" }, [4074358700] = { "" }, } },
- ["FrenzyChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 6 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 6 seconds" }, [4074358700] = { "" }, } },
- ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 7 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 7 seconds" }, [3283106665] = { "" }, } },
- ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 6 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 6 seconds" }, [3283106665] = { "" }, } },
- ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 5 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 5 seconds" }, [3283106665] = { "" }, } },
- ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 4 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 4 seconds" }, [3283106665] = { "" }, } },
- ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 3 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 3 seconds" }, [3283106665] = { "" }, } },
- ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 2 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 2 seconds" }, [3283106665] = { "" }, } },
- ["PowerChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain a Power Charge every 15 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 15 seconds" }, } },
- ["PowerChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain a Power Charge every 14 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 14 seconds" }, } },
- ["PowerChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain a Power Charge every 13 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 13 seconds" }, } },
- ["PowerChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain a Power Charge every 12 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 12 seconds" }, } },
- ["PowerChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain a Power Charge every 11 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 11 seconds" }, } },
- ["PowerChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain a Power Charge every 10 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 10 seconds" }, } },
- ["PowerChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 11 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 11 seconds" }, [4074358700] = { "" }, } },
- ["PowerChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 10 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 10 seconds" }, [4074358700] = { "" }, } },
- ["PowerChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 9 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 9 seconds" }, [4074358700] = { "" }, } },
- ["PowerChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 8 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 8 seconds" }, [4074358700] = { "" }, } },
- ["PowerChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 7 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 7 seconds" }, [4074358700] = { "" }, } },
- ["PowerChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 6 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 6 seconds" }, [4074358700] = { "" }, } },
- ["PowerChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 7 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 7 seconds" }, [3283106665] = { "" }, } },
- ["PowerChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 6 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 6 seconds" }, [3283106665] = { "" }, } },
- ["PowerChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 5 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 5 seconds" }, [3283106665] = { "" }, } },
- ["PowerChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 4 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 4 seconds" }, [3283106665] = { "" }, } },
- ["PowerChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 3 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 3 seconds" }, [3283106665] = { "" }, } },
- ["PowerChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 2 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 2 seconds" }, [3283106665] = { "" }, } },
- ["BlockPercentEldritchImplicit1"] = { type = "Eater", affix = "", "5% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "5% Chance to Block Attack Damage" }, } },
- ["BlockPercentEldritchImplicit2"] = { type = "Eater", affix = "", "6% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "6% Chance to Block Attack Damage" }, } },
- ["BlockPercentEldritchImplicit3"] = { type = "Eater", affix = "", "7% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "7% Chance to Block Attack Damage" }, } },
- ["BlockPercentEldritchImplicit4"] = { type = "Eater", affix = "", "8% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "8% Chance to Block Attack Damage" }, } },
- ["BlockPercentEldritchImplicit5"] = { type = "Eater", affix = "", "9% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "9% Chance to Block Attack Damage" }, } },
- ["BlockPercentEldritchImplicit6"] = { type = "Eater", affix = "", "10% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "10% Chance to Block Attack Damage" }, } },
- ["BlockPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "7% Chance to Block Attack Damage" }, } },
- ["BlockPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "8% Chance to Block Attack Damage" }, } },
- ["BlockPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "9% Chance to Block Attack Damage" }, } },
- ["BlockPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "10% Chance to Block Attack Damage" }, } },
- ["BlockPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "11% Chance to Block Attack Damage" }, } },
- ["BlockPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "12% Chance to Block Attack Damage" }, } },
- ["BlockPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "9% Chance to Block Attack Damage" }, } },
- ["BlockPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "10% Chance to Block Attack Damage" }, } },
- ["BlockPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "11% Chance to Block Attack Damage" }, } },
- ["BlockPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "12% Chance to Block Attack Damage" }, } },
- ["BlockPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "13% Chance to Block Attack Damage" }, } },
- ["BlockPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "14% Chance to Block Attack Damage" }, } },
- ["SpellBlockPercentageEldritchImplicit1"] = { type = "Eater", affix = "", "5% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "5% Chance to Block Spell Damage" }, } },
- ["SpellBlockPercentageEldritchImplicit2"] = { type = "Eater", affix = "", "6% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "6% Chance to Block Spell Damage" }, } },
- ["SpellBlockPercentageEldritchImplicit3"] = { type = "Eater", affix = "", "7% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "7% Chance to Block Spell Damage" }, } },
- ["SpellBlockPercentageEldritchImplicit4"] = { type = "Eater", affix = "", "8% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "8% Chance to Block Spell Damage" }, } },
- ["SpellBlockPercentageEldritchImplicit5"] = { type = "Eater", affix = "", "9% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "9% Chance to Block Spell Damage" }, } },
- ["SpellBlockPercentageEldritchImplicit6"] = { type = "Eater", affix = "", "10% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "10% Chance to Block Spell Damage" }, } },
- ["SpellBlockPercentageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [561307714] = { "7% Chance to Block Spell Damage" }, [4074358700] = { "" }, } },
- ["SpellBlockPercentageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "8% Chance to Block Spell Damage" }, [4074358700] = { "" }, } },
- ["SpellBlockPercentageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "9% Chance to Block Spell Damage" }, [4074358700] = { "" }, } },
- ["SpellBlockPercentageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "10% Chance to Block Spell Damage" }, [4074358700] = { "" }, } },
- ["SpellBlockPercentageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "11% Chance to Block Spell Damage" }, [4074358700] = { "" }, } },
- ["SpellBlockPercentageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "12% Chance to Block Spell Damage" }, [4074358700] = { "" }, } },
- ["SpellBlockPercentageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [561307714] = { "9% Chance to Block Spell Damage" }, [3283106665] = { "" }, } },
- ["SpellBlockPercentageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [561307714] = { "10% Chance to Block Spell Damage" }, [3283106665] = { "" }, } },
- ["SpellBlockPercentageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [561307714] = { "11% Chance to Block Spell Damage" }, [3283106665] = { "" }, } },
- ["SpellBlockPercentageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [561307714] = { "12% Chance to Block Spell Damage" }, [3283106665] = { "" }, } },
- ["SpellBlockPercentageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [561307714] = { "13% Chance to Block Spell Damage" }, [3283106665] = { "" }, } },
- ["SpellBlockPercentageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [561307714] = { "14% Chance to Block Spell Damage" }, [3283106665] = { "" }, } },
- ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(17-18)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(17-18)% increased Armour" }, } },
- ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(19-20)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(19-20)% increased Armour" }, } },
- ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(21-22)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(21-22)% increased Armour" }, } },
- ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(23-24)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(23-24)% increased Armour" }, } },
- ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(25-26)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(25-26)% increased Armour" }, } },
- ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(27-28)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(27-28)% increased Armour" }, } },
- ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(23-24)% increased Armour" }, } },
- ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(25-26)% increased Armour" }, } },
- ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(27-28)% increased Armour" }, } },
- ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(29-30)% increased Armour" }, } },
- ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(31-32)% increased Armour" }, } },
- ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(33-34)% increased Armour" }, } },
- ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(29-30)% increased Armour" }, } },
- ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(31-32)% increased Armour" }, } },
- ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(33-34)% increased Armour" }, } },
- ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(35-36)% increased Armour" }, } },
- ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(37-38)% increased Armour" }, } },
- ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(39-40)% increased Armour" }, } },
- ["GlobalEvasionRatingPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(17-18)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(17-18)% increased Evasion Rating" }, } },
- ["GlobalEvasionRatingPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(19-20)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(19-20)% increased Evasion Rating" }, } },
- ["GlobalEvasionRatingPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(21-22)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(21-22)% increased Evasion Rating" }, } },
- ["GlobalEvasionRatingPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(23-24)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(23-24)% increased Evasion Rating" }, } },
- ["GlobalEvasionRatingPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(25-26)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(25-26)% increased Evasion Rating" }, } },
- ["GlobalEvasionRatingPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(27-28)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(27-28)% increased Evasion Rating" }, } },
- ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(23-24)% increased Evasion Rating" }, [4074358700] = { "" }, } },
- ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(25-26)% increased Evasion Rating" }, [4074358700] = { "" }, } },
- ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(27-28)% increased Evasion Rating" }, [4074358700] = { "" }, } },
- ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(29-30)% increased Evasion Rating" }, [4074358700] = { "" }, } },
- ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(31-32)% increased Evasion Rating" }, [4074358700] = { "" }, } },
- ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(33-34)% increased Evasion Rating" }, [4074358700] = { "" }, } },
- ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(29-30)% increased Evasion Rating" }, [3283106665] = { "" }, } },
- ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(31-32)% increased Evasion Rating" }, [3283106665] = { "" }, } },
- ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(33-34)% increased Evasion Rating" }, [3283106665] = { "" }, } },
- ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(35-36)% increased Evasion Rating" }, [3283106665] = { "" }, } },
- ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(37-38)% increased Evasion Rating" }, [3283106665] = { "" }, } },
- ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(39-40)% increased Evasion Rating" }, [3283106665] = { "" }, } },
- ["GlobalEnergyShieldPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(6-7)% increased maximum Energy Shield" }, } },
- ["GlobalEnergyShieldPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(8-9)% increased maximum Energy Shield" }, } },
- ["GlobalEnergyShieldPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(10-11)% increased maximum Energy Shield" }, } },
- ["GlobalEnergyShieldPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(12-13)% increased maximum Energy Shield" }, } },
- ["GlobalEnergyShieldPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(14-15)% increased maximum Energy Shield" }, } },
- ["GlobalEnergyShieldPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(16-17)% increased maximum Energy Shield" }, } },
- ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(12-13)% increased maximum Energy Shield" }, } },
- ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(14-15)% increased maximum Energy Shield" }, } },
- ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(16-17)% increased maximum Energy Shield" }, } },
- ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(18-19)% increased maximum Energy Shield" }, } },
- ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(20-21)% increased maximum Energy Shield" }, } },
- ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(22-23)% increased maximum Energy Shield" }, } },
- ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(18-19)% increased maximum Energy Shield" }, } },
- ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(20-21)% increased maximum Energy Shield" }, } },
- ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(22-23)% increased maximum Energy Shield" }, } },
- ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(24-25)% increased maximum Energy Shield" }, } },
- ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(26-27)% increased maximum Energy Shield" }, } },
- ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(28-29)% increased maximum Energy Shield" }, } },
- ["PlayerReflectedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "45% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "45% of Damage from your Hits cannot be Reflected" }, } },
- ["PlayerReflectedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "50% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "50% of Damage from your Hits cannot be Reflected" }, } },
- ["PlayerReflectedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "55% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "55% of Damage from your Hits cannot be Reflected" }, } },
- ["PlayerReflectedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "60% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "60% of Damage from your Hits cannot be Reflected" }, } },
- ["PlayerReflectedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "65% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "65% of Damage from your Hits cannot be Reflected" }, } },
- ["PlayerReflectedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "70% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "70% of Damage from your Hits cannot be Reflected" }, } },
- ["PlayerReflectedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "60% of Damage from your Hits cannot be Reflected" }, } },
- ["PlayerReflectedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "65% of Damage from your Hits cannot be Reflected" }, } },
- ["PlayerReflectedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "70% of Damage from your Hits cannot be Reflected" }, } },
- ["PlayerReflectedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 75% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "75% of Damage from your Hits cannot be Reflected" }, } },
- ["PlayerReflectedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 80% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "80% of Damage from your Hits cannot be Reflected" }, } },
- ["PlayerReflectedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 85% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "85% of Damage from your Hits cannot be Reflected" }, } },
- ["PlayerReflectedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "75% of Damage from your Hits cannot be Reflected" }, } },
- ["PlayerReflectedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "80% of Damage from your Hits cannot be Reflected" }, } },
- ["PlayerReflectedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "85% of Damage from your Hits cannot be Reflected" }, } },
- ["PlayerReflectedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "90% of Damage from your Hits cannot be Reflected" }, } },
- ["PlayerReflectedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "95% of Damage from your Hits cannot be Reflected" }, } },
- ["PlayerReflectedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "100% of Damage from your Hits cannot be Reflected" }, } },
- ["MinionReflectedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "45% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "45% of Hit Damage from your Minions cannot be Reflected" }, } },
- ["MinionReflectedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "50% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "50% of Hit Damage from your Minions cannot be Reflected" }, } },
- ["MinionReflectedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "55% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "55% of Hit Damage from your Minions cannot be Reflected" }, } },
- ["MinionReflectedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "60% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "60% of Hit Damage from your Minions cannot be Reflected" }, } },
- ["MinionReflectedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "65% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "65% of Hit Damage from your Minions cannot be Reflected" }, } },
- ["MinionReflectedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "70% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "70% of Hit Damage from your Minions cannot be Reflected" }, } },
- ["MinionReflectedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "60% of Hit Damage from your Minions cannot be Reflected" }, [4074358700] = { "" }, } },
- ["MinionReflectedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "65% of Hit Damage from your Minions cannot be Reflected" }, [4074358700] = { "" }, } },
- ["MinionReflectedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "70% of Hit Damage from your Minions cannot be Reflected" }, [4074358700] = { "" }, } },
- ["MinionReflectedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 75% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "75% of Hit Damage from your Minions cannot be Reflected" }, [4074358700] = { "" }, } },
- ["MinionReflectedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 80% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "80% of Hit Damage from your Minions cannot be Reflected" }, [4074358700] = { "" }, } },
- ["MinionReflectedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 85% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "85% of Hit Damage from your Minions cannot be Reflected" }, [4074358700] = { "" }, } },
- ["MinionReflectedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "75% of Hit Damage from your Minions cannot be Reflected" }, [3283106665] = { "" }, } },
- ["MinionReflectedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "80% of Hit Damage from your Minions cannot be Reflected" }, [3283106665] = { "" }, } },
- ["MinionReflectedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "85% of Hit Damage from your Minions cannot be Reflected" }, [3283106665] = { "" }, } },
- ["MinionReflectedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "90% of Hit Damage from your Minions cannot be Reflected" }, [3283106665] = { "" }, } },
- ["MinionReflectedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "95% of Hit Damage from your Minions cannot be Reflected" }, [3283106665] = { "" }, } },
- ["MinionReflectedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "100% of Hit Damage from your Minions cannot be Reflected" }, [3283106665] = { "" }, } },
- ["AngerAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Anger has (19-21)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (19-21)% increased Aura Effect" }, } },
- ["AngerAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Anger has (22-24)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (22-24)% increased Aura Effect" }, } },
- ["AngerAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Anger has (25-27)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (25-27)% increased Aura Effect" }, } },
- ["AngerAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Anger has (28-30)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (28-30)% increased Aura Effect" }, } },
- ["AngerAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Anger has (31-33)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (31-33)% increased Aura Effect" }, } },
- ["AngerAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Anger has (34-36)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (34-36)% increased Aura Effect" }, } },
- ["AngerAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (31-33)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (31-33)% increased Aura Effect" }, [4074358700] = { "" }, } },
- ["AngerAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (34-36)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (34-36)% increased Aura Effect" }, [4074358700] = { "" }, } },
- ["AngerAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (37-39)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (37-39)% increased Aura Effect" }, [4074358700] = { "" }, } },
- ["AngerAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (40-42)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (40-42)% increased Aura Effect" }, [4074358700] = { "" }, } },
- ["AngerAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (43-45)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (43-45)% increased Aura Effect" }, [4074358700] = { "" }, } },
- ["AngerAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (46-48)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (46-48)% increased Aura Effect" }, [4074358700] = { "" }, } },
- ["AngerAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (43-45)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (43-45)% increased Aura Effect" }, [3283106665] = { "" }, } },
- ["AngerAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (46-48)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (46-48)% increased Aura Effect" }, [3283106665] = { "" }, } },
- ["AngerAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (49-51)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (49-51)% increased Aura Effect" }, [3283106665] = { "" }, } },
- ["AngerAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (52-54)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (52-54)% increased Aura Effect" }, [3283106665] = { "" }, } },
- ["AngerAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (55-57)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (55-57)% increased Aura Effect" }, [3283106665] = { "" }, } },
- ["AngerAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (58-60)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (58-60)% increased Aura Effect" }, [3283106665] = { "" }, } },
- ["HatredAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Hatred has (19-21)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (19-21)% increased Aura Effect" }, } },
- ["HatredAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Hatred has (22-24)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (22-24)% increased Aura Effect" }, } },
- ["HatredAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Hatred has (25-27)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (25-27)% increased Aura Effect" }, } },
- ["HatredAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Hatred has (28-30)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (28-30)% increased Aura Effect" }, } },
- ["HatredAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Hatred has (31-33)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (31-33)% increased Aura Effect" }, } },
- ["HatredAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Hatred has (34-36)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (34-36)% increased Aura Effect" }, } },
- ["HatredAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (31-33)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (31-33)% increased Aura Effect" }, [4074358700] = { "" }, } },
- ["HatredAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (34-36)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (34-36)% increased Aura Effect" }, [4074358700] = { "" }, } },
- ["HatredAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (37-39)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (37-39)% increased Aura Effect" }, [4074358700] = { "" }, } },
- ["HatredAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (40-42)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (40-42)% increased Aura Effect" }, [4074358700] = { "" }, } },
- ["HatredAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (43-45)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (43-45)% increased Aura Effect" }, [4074358700] = { "" }, } },
- ["HatredAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (46-48)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (46-48)% increased Aura Effect" }, [4074358700] = { "" }, } },
- ["HatredAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (43-45)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (43-45)% increased Aura Effect" }, [3283106665] = { "" }, } },
- ["HatredAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (46-48)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (46-48)% increased Aura Effect" }, [3283106665] = { "" }, } },
- ["HatredAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (49-51)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (49-51)% increased Aura Effect" }, [3283106665] = { "" }, } },
- ["HatredAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (52-54)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (52-54)% increased Aura Effect" }, [3283106665] = { "" }, } },
- ["HatredAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (55-57)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (55-57)% increased Aura Effect" }, [3283106665] = { "" }, } },
- ["HatredAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (58-60)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (58-60)% increased Aura Effect" }, [3283106665] = { "" }, } },
- ["WrathAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Wrath has (19-21)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (19-21)% increased Aura Effect" }, } },
- ["WrathAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Wrath has (22-24)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (22-24)% increased Aura Effect" }, } },
- ["WrathAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Wrath has (25-27)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (25-27)% increased Aura Effect" }, } },
- ["WrathAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Wrath has (28-30)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (28-30)% increased Aura Effect" }, } },
- ["WrathAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Wrath has (31-33)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (31-33)% increased Aura Effect" }, } },
- ["WrathAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Wrath has (34-36)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (34-36)% increased Aura Effect" }, } },
- ["WrathAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (31-33)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (31-33)% increased Aura Effect" }, } },
- ["WrathAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (34-36)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (34-36)% increased Aura Effect" }, } },
- ["WrathAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (37-39)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (37-39)% increased Aura Effect" }, } },
- ["WrathAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (40-42)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (40-42)% increased Aura Effect" }, } },
- ["WrathAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (43-45)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (43-45)% increased Aura Effect" }, } },
- ["WrathAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (46-48)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (46-48)% increased Aura Effect" }, } },
- ["WrathAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (43-45)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (43-45)% increased Aura Effect" }, } },
- ["WrathAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (46-48)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (46-48)% increased Aura Effect" }, } },
- ["WrathAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (49-51)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (49-51)% increased Aura Effect" }, } },
- ["WrathAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (52-54)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (52-54)% increased Aura Effect" }, } },
- ["WrathAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (55-57)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (55-57)% increased Aura Effect" }, } },
- ["WrathAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (58-60)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (58-60)% increased Aura Effect" }, } },
- ["MalevolenceAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Malevolence has (19-21)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (19-21)% increased Aura Effect" }, } },
- ["MalevolenceAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Malevolence has (22-24)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (22-24)% increased Aura Effect" }, } },
- ["MalevolenceAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Malevolence has (25-27)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (25-27)% increased Aura Effect" }, } },
- ["MalevolenceAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Malevolence has (28-30)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (28-30)% increased Aura Effect" }, } },
- ["MalevolenceAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Malevolence has (31-33)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (31-33)% increased Aura Effect" }, } },
- ["MalevolenceAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Malevolence has (34-36)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (34-36)% increased Aura Effect" }, } },
- ["MalevolenceAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (31-33)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (31-33)% increased Aura Effect" }, [4074358700] = { "" }, } },
- ["MalevolenceAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (34-36)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (34-36)% increased Aura Effect" }, [4074358700] = { "" }, } },
- ["MalevolenceAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (37-39)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (37-39)% increased Aura Effect" }, [4074358700] = { "" }, } },
- ["MalevolenceAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (40-42)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (40-42)% increased Aura Effect" }, [4074358700] = { "" }, } },
- ["MalevolenceAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (43-45)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (43-45)% increased Aura Effect" }, [4074358700] = { "" }, } },
- ["MalevolenceAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (46-48)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (46-48)% increased Aura Effect" }, [4074358700] = { "" }, } },
- ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (43-45)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (43-45)% increased Aura Effect" }, [3283106665] = { "" }, } },
- ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (46-48)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (46-48)% increased Aura Effect" }, [3283106665] = { "" }, } },
- ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (49-51)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (49-51)% increased Aura Effect" }, [3283106665] = { "" }, } },
- ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (52-54)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (52-54)% increased Aura Effect" }, [3283106665] = { "" }, } },
- ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (55-57)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (55-57)% increased Aura Effect" }, [3283106665] = { "" }, } },
- ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (58-60)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (58-60)% increased Aura Effect" }, [3283106665] = { "" }, } },
- ["ZealotryAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Zealotry has (19-21)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (19-21)% increased Aura Effect" }, } },
- ["ZealotryAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Zealotry has (22-24)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (22-24)% increased Aura Effect" }, } },
- ["ZealotryAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Zealotry has (25-27)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (25-27)% increased Aura Effect" }, } },
- ["ZealotryAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Zealotry has (28-30)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (28-30)% increased Aura Effect" }, } },
- ["ZealotryAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Zealotry has (31-33)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (31-33)% increased Aura Effect" }, } },
- ["ZealotryAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Zealotry has (34-36)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (34-36)% increased Aura Effect" }, } },
- ["ZealotryAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (31-33)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (31-33)% increased Aura Effect" }, } },
- ["ZealotryAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (34-36)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (34-36)% increased Aura Effect" }, } },
- ["ZealotryAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (37-39)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (37-39)% increased Aura Effect" }, } },
- ["ZealotryAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (40-42)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (40-42)% increased Aura Effect" }, } },
- ["ZealotryAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (43-45)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (43-45)% increased Aura Effect" }, } },
- ["ZealotryAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (46-48)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (46-48)% increased Aura Effect" }, } },
- ["ZealotryAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (43-45)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (43-45)% increased Aura Effect" }, } },
- ["ZealotryAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (46-48)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (46-48)% increased Aura Effect" }, } },
- ["ZealotryAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (49-51)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (49-51)% increased Aura Effect" }, } },
- ["ZealotryAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (52-54)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (52-54)% increased Aura Effect" }, } },
- ["ZealotryAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (55-57)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (55-57)% increased Aura Effect" }, } },
- ["ZealotryAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (58-60)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (58-60)% increased Aura Effect" }, } },
- ["PrideAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Pride has (19-21)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (19-21)% increased Aura Effect" }, } },
- ["PrideAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Pride has (22-24)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (22-24)% increased Aura Effect" }, } },
- ["PrideAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Pride has (25-27)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (25-27)% increased Aura Effect" }, } },
- ["PrideAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Pride has (28-30)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (28-30)% increased Aura Effect" }, } },
- ["PrideAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Pride has (31-33)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (31-33)% increased Aura Effect" }, } },
- ["PrideAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Pride has (34-36)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (34-36)% increased Aura Effect" }, } },
- ["PrideAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (31-33)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (31-33)% increased Aura Effect" }, } },
- ["PrideAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (34-36)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (34-36)% increased Aura Effect" }, } },
- ["PrideAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (37-39)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (37-39)% increased Aura Effect" }, } },
- ["PrideAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (40-42)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (40-42)% increased Aura Effect" }, } },
- ["PrideAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (43-45)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (43-45)% increased Aura Effect" }, } },
- ["PrideAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (46-48)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (46-48)% increased Aura Effect" }, } },
- ["PrideAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (43-45)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (43-45)% increased Aura Effect" }, } },
- ["PrideAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (46-48)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (46-48)% increased Aura Effect" }, } },
- ["PrideAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (49-51)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (49-51)% increased Aura Effect" }, } },
- ["PrideAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (52-54)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (52-54)% increased Aura Effect" }, } },
- ["PrideAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (55-57)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (55-57)% increased Aura Effect" }, } },
- ["PrideAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (58-60)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (58-60)% increased Aura Effect" }, } },
- ["DeterminationAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Determination has (19-21)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (19-21)% increased Aura Effect" }, } },
- ["DeterminationAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Determination has (22-24)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (22-24)% increased Aura Effect" }, } },
- ["DeterminationAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Determination has (25-27)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (25-27)% increased Aura Effect" }, } },
- ["DeterminationAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Determination has (28-30)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (28-30)% increased Aura Effect" }, } },
- ["DeterminationAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Determination has (31-33)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (31-33)% increased Aura Effect" }, } },
- ["DeterminationAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Determination has (34-36)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (34-36)% increased Aura Effect" }, } },
- ["DeterminationAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (31-33)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (31-33)% increased Aura Effect" }, } },
- ["DeterminationAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (34-36)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (34-36)% increased Aura Effect" }, } },
- ["DeterminationAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (37-39)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (37-39)% increased Aura Effect" }, } },
- ["DeterminationAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (40-42)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (40-42)% increased Aura Effect" }, } },
- ["DeterminationAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (43-45)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (43-45)% increased Aura Effect" }, } },
- ["DeterminationAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (46-48)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (46-48)% increased Aura Effect" }, } },
- ["DeterminationAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (43-45)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (43-45)% increased Aura Effect" }, } },
- ["DeterminationAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (46-48)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (46-48)% increased Aura Effect" }, } },
- ["DeterminationAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (49-51)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (49-51)% increased Aura Effect" }, } },
- ["DeterminationAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (52-54)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (52-54)% increased Aura Effect" }, } },
- ["DeterminationAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (55-57)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (55-57)% increased Aura Effect" }, } },
- ["DeterminationAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (58-60)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (58-60)% increased Aura Effect" }, } },
- ["GraceAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Grace has (19-21)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (19-21)% increased Aura Effect" }, } },
- ["GraceAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Grace has (22-24)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (22-24)% increased Aura Effect" }, } },
- ["GraceAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Grace has (25-27)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (25-27)% increased Aura Effect" }, } },
- ["GraceAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Grace has (28-30)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (28-30)% increased Aura Effect" }, } },
- ["GraceAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Grace has (31-33)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (31-33)% increased Aura Effect" }, } },
- ["GraceAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Grace has (34-36)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (34-36)% increased Aura Effect" }, } },
- ["GraceAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (31-33)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (31-33)% increased Aura Effect" }, } },
- ["GraceAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (34-36)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (34-36)% increased Aura Effect" }, } },
- ["GraceAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (37-39)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (37-39)% increased Aura Effect" }, } },
- ["GraceAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (40-42)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (40-42)% increased Aura Effect" }, } },
- ["GraceAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (43-45)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (43-45)% increased Aura Effect" }, } },
- ["GraceAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (46-48)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (46-48)% increased Aura Effect" }, } },
- ["GraceAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (43-45)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (43-45)% increased Aura Effect" }, } },
- ["GraceAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (46-48)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (46-48)% increased Aura Effect" }, } },
- ["GraceAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (49-51)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (49-51)% increased Aura Effect" }, } },
- ["GraceAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (52-54)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (52-54)% increased Aura Effect" }, } },
- ["GraceAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (55-57)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (55-57)% increased Aura Effect" }, } },
- ["GraceAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (58-60)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (58-60)% increased Aura Effect" }, } },
- ["DisciplineAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Discipline has (19-21)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (19-21)% increased Aura Effect" }, } },
- ["DisciplineAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Discipline has (22-24)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (22-24)% increased Aura Effect" }, } },
- ["DisciplineAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Discipline has (25-27)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (25-27)% increased Aura Effect" }, } },
- ["DisciplineAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Discipline has (28-30)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (28-30)% increased Aura Effect" }, } },
- ["DisciplineAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Discipline has (31-33)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (31-33)% increased Aura Effect" }, } },
- ["DisciplineAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Discipline has (34-36)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (34-36)% increased Aura Effect" }, } },
- ["DisciplineAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (31-33)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (31-33)% increased Aura Effect" }, } },
- ["DisciplineAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (34-36)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (34-36)% increased Aura Effect" }, } },
- ["DisciplineAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (37-39)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (37-39)% increased Aura Effect" }, } },
- ["DisciplineAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (40-42)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (40-42)% increased Aura Effect" }, } },
- ["DisciplineAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (43-45)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (43-45)% increased Aura Effect" }, } },
- ["DisciplineAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (46-48)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (46-48)% increased Aura Effect" }, } },
- ["DisciplineAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (43-45)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (43-45)% increased Aura Effect" }, } },
- ["DisciplineAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (46-48)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (46-48)% increased Aura Effect" }, } },
- ["DisciplineAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (49-51)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (49-51)% increased Aura Effect" }, } },
- ["DisciplineAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (52-54)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (52-54)% increased Aura Effect" }, } },
- ["DisciplineAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (55-57)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (55-57)% increased Aura Effect" }, } },
- ["DisciplineAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (58-60)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (58-60)% increased Aura Effect" }, } },
- ["HasteAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Haste has (19-21)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (19-21)% increased Aura Effect" }, } },
- ["HasteAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Haste has (22-24)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (22-24)% increased Aura Effect" }, } },
- ["HasteAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Haste has (25-27)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (25-27)% increased Aura Effect" }, } },
- ["HasteAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Haste has (28-30)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (28-30)% increased Aura Effect" }, } },
- ["HasteAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Haste has (31-33)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (31-33)% increased Aura Effect" }, } },
- ["HasteAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Haste has (34-36)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (34-36)% increased Aura Effect" }, } },
- ["HasteAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (31-33)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (31-33)% increased Aura Effect" }, } },
- ["HasteAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (34-36)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (34-36)% increased Aura Effect" }, } },
- ["HasteAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (37-39)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (37-39)% increased Aura Effect" }, } },
- ["HasteAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (40-42)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (40-42)% increased Aura Effect" }, } },
- ["HasteAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (43-45)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (43-45)% increased Aura Effect" }, } },
- ["HasteAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (46-48)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (46-48)% increased Aura Effect" }, } },
- ["HasteAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (43-45)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (43-45)% increased Aura Effect" }, } },
- ["HasteAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (46-48)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (46-48)% increased Aura Effect" }, } },
- ["HasteAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (49-51)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (49-51)% increased Aura Effect" }, } },
- ["HasteAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (52-54)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (52-54)% increased Aura Effect" }, } },
- ["HasteAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (55-57)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (55-57)% increased Aura Effect" }, } },
- ["HasteAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (58-60)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (58-60)% increased Aura Effect" }, } },
- ["PurityOfElementsEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Elements has (19-21)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (19-21)% increased Aura Effect" }, } },
- ["PurityOfElementsEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Elements has (22-24)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (22-24)% increased Aura Effect" }, } },
- ["PurityOfElementsEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Elements has (25-27)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (25-27)% increased Aura Effect" }, } },
- ["PurityOfElementsEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Elements has (28-30)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (28-30)% increased Aura Effect" }, } },
- ["PurityOfElementsEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Elements has (31-33)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (31-33)% increased Aura Effect" }, } },
- ["PurityOfElementsEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Elements has (34-36)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (34-36)% increased Aura Effect" }, } },
- ["PurityOfElementsEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (31-33)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (31-33)% increased Aura Effect" }, } },
- ["PurityOfElementsEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (34-36)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (34-36)% increased Aura Effect" }, } },
- ["PurityOfElementsEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (37-39)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (37-39)% increased Aura Effect" }, } },
- ["PurityOfElementsEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (40-42)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (40-42)% increased Aura Effect" }, } },
- ["PurityOfElementsEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (43-45)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (43-45)% increased Aura Effect" }, } },
- ["PurityOfElementsEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (46-48)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (46-48)% increased Aura Effect" }, } },
- ["PurityOfElementsEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (43-45)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (43-45)% increased Aura Effect" }, } },
- ["PurityOfElementsEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (46-48)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (46-48)% increased Aura Effect" }, } },
- ["PurityOfElementsEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (49-51)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (49-51)% increased Aura Effect" }, } },
- ["PurityOfElementsEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (52-54)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (52-54)% increased Aura Effect" }, } },
- ["PurityOfElementsEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (55-57)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (55-57)% increased Aura Effect" }, } },
- ["PurityOfElementsEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (58-60)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (58-60)% increased Aura Effect" }, } },
- ["PurityOfFireEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Fire has (19-21)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (19-21)% increased Aura Effect" }, } },
- ["PurityOfFireEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Fire has (22-24)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (22-24)% increased Aura Effect" }, } },
- ["PurityOfFireEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Fire has (25-27)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (25-27)% increased Aura Effect" }, } },
- ["PurityOfFireEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Fire has (28-30)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (28-30)% increased Aura Effect" }, } },
- ["PurityOfFireEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Fire has (31-33)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (31-33)% increased Aura Effect" }, } },
- ["PurityOfFireEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Fire has (34-36)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (34-36)% increased Aura Effect" }, } },
- ["PurityOfFireEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (31-33)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (31-33)% increased Aura Effect" }, } },
- ["PurityOfFireEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (34-36)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (34-36)% increased Aura Effect" }, } },
- ["PurityOfFireEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (37-39)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (37-39)% increased Aura Effect" }, } },
- ["PurityOfFireEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (40-42)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (40-42)% increased Aura Effect" }, } },
- ["PurityOfFireEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (43-45)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (43-45)% increased Aura Effect" }, } },
- ["PurityOfFireEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (46-48)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (46-48)% increased Aura Effect" }, } },
- ["PurityOfFireEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (43-45)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (43-45)% increased Aura Effect" }, } },
- ["PurityOfFireEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (46-48)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (46-48)% increased Aura Effect" }, } },
- ["PurityOfFireEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (49-51)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (49-51)% increased Aura Effect" }, } },
- ["PurityOfFireEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (52-54)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (52-54)% increased Aura Effect" }, } },
- ["PurityOfFireEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (55-57)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (55-57)% increased Aura Effect" }, } },
- ["PurityOfFireEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (58-60)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (58-60)% increased Aura Effect" }, } },
- ["PurityOfIceEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Ice has (19-21)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (19-21)% increased Aura Effect" }, } },
- ["PurityOfIceEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Ice has (22-24)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (22-24)% increased Aura Effect" }, } },
- ["PurityOfIceEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Ice has (25-27)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (25-27)% increased Aura Effect" }, } },
- ["PurityOfIceEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Ice has (28-30)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (28-30)% increased Aura Effect" }, } },
- ["PurityOfIceEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Ice has (31-33)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (31-33)% increased Aura Effect" }, } },
- ["PurityOfIceEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Ice has (34-36)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (34-36)% increased Aura Effect" }, } },
- ["PurityOfIceEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (31-33)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (31-33)% increased Aura Effect" }, [4074358700] = { "" }, } },
- ["PurityOfIceEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (34-36)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (34-36)% increased Aura Effect" }, [4074358700] = { "" }, } },
- ["PurityOfIceEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (37-39)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (37-39)% increased Aura Effect" }, [4074358700] = { "" }, } },
- ["PurityOfIceEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (40-42)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (40-42)% increased Aura Effect" }, [4074358700] = { "" }, } },
- ["PurityOfIceEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (43-45)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (43-45)% increased Aura Effect" }, [4074358700] = { "" }, } },
- ["PurityOfIceEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (46-48)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (46-48)% increased Aura Effect" }, [4074358700] = { "" }, } },
- ["PurityOfIceEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (43-45)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (43-45)% increased Aura Effect" }, [3283106665] = { "" }, } },
- ["PurityOfIceEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (46-48)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (46-48)% increased Aura Effect" }, [3283106665] = { "" }, } },
- ["PurityOfIceEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (49-51)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (49-51)% increased Aura Effect" }, [3283106665] = { "" }, } },
- ["PurityOfIceEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (52-54)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (52-54)% increased Aura Effect" }, [3283106665] = { "" }, } },
- ["PurityOfIceEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (55-57)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (55-57)% increased Aura Effect" }, [3283106665] = { "" }, } },
- ["PurityOfIceEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (58-60)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (58-60)% increased Aura Effect" }, [3283106665] = { "" }, } },
- ["PurityOfLightningEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Lightning has (19-21)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (19-21)% increased Aura Effect" }, } },
- ["PurityOfLightningEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Lightning has (22-24)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (22-24)% increased Aura Effect" }, } },
- ["PurityOfLightningEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Lightning has (25-27)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (25-27)% increased Aura Effect" }, } },
- ["PurityOfLightningEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Lightning has (28-30)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (28-30)% increased Aura Effect" }, } },
- ["PurityOfLightningEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Lightning has (31-33)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (31-33)% increased Aura Effect" }, } },
- ["PurityOfLightningEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Lightning has (34-36)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (34-36)% increased Aura Effect" }, } },
- ["PurityOfLightningEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (31-33)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (31-33)% increased Aura Effect" }, } },
- ["PurityOfLightningEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (34-36)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (34-36)% increased Aura Effect" }, } },
- ["PurityOfLightningEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (37-39)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (37-39)% increased Aura Effect" }, } },
- ["PurityOfLightningEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (40-42)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (40-42)% increased Aura Effect" }, } },
- ["PurityOfLightningEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (43-45)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (43-45)% increased Aura Effect" }, } },
- ["PurityOfLightningEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (46-48)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (46-48)% increased Aura Effect" }, } },
- ["PurityOfLightningEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (43-45)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (43-45)% increased Aura Effect" }, } },
- ["PurityOfLightningEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (46-48)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (46-48)% increased Aura Effect" }, } },
- ["PurityOfLightningEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (49-51)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (49-51)% increased Aura Effect" }, } },
- ["PurityOfLightningEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (52-54)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (52-54)% increased Aura Effect" }, } },
- ["PurityOfLightningEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (55-57)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (55-57)% increased Aura Effect" }, } },
- ["PurityOfLightningEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (58-60)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (58-60)% increased Aura Effect" }, } },
- ["FortifyOnMeleeHitEldritchImplicit1"] = { type = "Eater", affix = "", "Melee Hits have (6-7)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (6-7)% chance to Fortify" }, } },
- ["FortifyOnMeleeHitEldritchImplicit2"] = { type = "Eater", affix = "", "Melee Hits have (8-9)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (8-9)% chance to Fortify" }, } },
- ["FortifyOnMeleeHitEldritchImplicit3"] = { type = "Eater", affix = "", "Melee Hits have (10-11)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (10-11)% chance to Fortify" }, } },
- ["FortifyOnMeleeHitEldritchImplicit4"] = { type = "Eater", affix = "", "Melee Hits have (12-13)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (12-13)% chance to Fortify" }, } },
- ["FortifyOnMeleeHitEldritchImplicit5"] = { type = "Eater", affix = "", "Melee Hits have (14-15)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (14-15)% chance to Fortify" }, } },
- ["FortifyOnMeleeHitEldritchImplicit6"] = { type = "Eater", affix = "", "Melee Hits have (16-17)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (16-17)% chance to Fortify" }, } },
- ["FortifyOnMeleeHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (12-13)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (12-13)% chance to Fortify" }, } },
- ["FortifyOnMeleeHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (14-15)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (14-15)% chance to Fortify" }, } },
- ["FortifyOnMeleeHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (16-17)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (16-17)% chance to Fortify" }, } },
- ["FortifyOnMeleeHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (18-19)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (18-19)% chance to Fortify" }, } },
- ["FortifyOnMeleeHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (20-21)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (20-21)% chance to Fortify" }, } },
- ["FortifyOnMeleeHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (22-23)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (22-23)% chance to Fortify" }, } },
- ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (18-19)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (18-19)% chance to Fortify" }, } },
- ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (20-21)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (20-21)% chance to Fortify" }, } },
- ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (22-23)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (22-23)% chance to Fortify" }, } },
- ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (24-25)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (24-25)% chance to Fortify" }, } },
- ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (26-27)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (26-27)% chance to Fortify" }, } },
- ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (28-29)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (28-29)% chance to Fortify" }, } },
- ["AllResistancesEldritchImplicit1"] = { type = "Eater", affix = "", "+(5-6)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistances", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-6)% to all Elemental Resistances" }, } },
- ["AllResistancesEldritchImplicit2"] = { type = "Eater", affix = "", "+(7-8)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistances", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(7-8)% to all Elemental Resistances" }, } },
- ["AllResistancesEldritchImplicit3"] = { type = "Eater", affix = "", "+(9-10)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistances", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(9-10)% to all Elemental Resistances" }, } },
- ["AllResistancesEldritchImplicit4"] = { type = "Eater", affix = "", "+(11-12)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistances", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(11-12)% to all Elemental Resistances" }, } },
- ["AllResistancesEldritchImplicit5"] = { type = "Eater", affix = "", "+(13-14)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistances", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(13-14)% to all Elemental Resistances" }, } },
- ["AllResistancesEldritchImplicit6"] = { type = "Eater", affix = "", "+(15-16)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistances", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-16)% to all Elemental Resistances" }, } },
- ["AllResistancesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(11-12)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(11-12)% to all Elemental Resistances" }, [4074358700] = { "" }, } },
- ["AllResistancesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(13-14)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(13-14)% to all Elemental Resistances" }, [4074358700] = { "" }, } },
- ["AllResistancesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(15-16)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-16)% to all Elemental Resistances" }, [4074358700] = { "" }, } },
- ["AllResistancesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(17-18)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(17-18)% to all Elemental Resistances" }, [4074358700] = { "" }, } },
- ["AllResistancesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(19-20)% to all Elemental Resistances" }, [4074358700] = { "" }, } },
- ["AllResistancesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(21-22)% to all Elemental Resistances" }, [4074358700] = { "" }, } },
- ["AllResistancesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(17-18)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(17-18)% to all Elemental Resistances" }, [3283106665] = { "" }, } },
- ["AllResistancesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(19-20)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(19-20)% to all Elemental Resistances" }, [3283106665] = { "" }, } },
- ["AllResistancesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(21-22)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(21-22)% to all Elemental Resistances" }, [3283106665] = { "" }, } },
- ["AllResistancesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-24)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(23-24)% to all Elemental Resistances" }, [3283106665] = { "" }, } },
- ["AllResistancesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(25-26)% to all Elemental Resistances" }, [3283106665] = { "" }, } },
- ["AllResistancesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(27-28)% to all Elemental Resistances" }, [3283106665] = { "" }, } },
- ["LifeRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "7% increased Life Recovery rate" }, } },
- ["LifeRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "8% increased Life Recovery rate" }, } },
- ["LifeRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "9% increased Life Recovery rate" }, } },
- ["LifeRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "10% increased Life Recovery rate" }, } },
- ["LifeRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "11% increased Life Recovery rate" }, } },
- ["LifeRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "12% increased Life Recovery rate" }, } },
- ["LifeRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "9% increased Life Recovery rate" }, [4074358700] = { "" }, } },
- ["LifeRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "10% increased Life Recovery rate" }, [4074358700] = { "" }, } },
- ["LifeRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "11% increased Life Recovery rate" }, [4074358700] = { "" }, } },
- ["LifeRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "12% increased Life Recovery rate" }, [4074358700] = { "" }, } },
- ["LifeRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "13% increased Life Recovery rate" }, [4074358700] = { "" }, } },
- ["LifeRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "14% increased Life Recovery rate" }, [4074358700] = { "" }, } },
- ["LifeRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "11% increased Life Recovery rate" }, [3283106665] = { "" }, } },
- ["LifeRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "12% increased Life Recovery rate" }, [3283106665] = { "" }, } },
- ["LifeRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "13% increased Life Recovery rate" }, [3283106665] = { "" }, } },
- ["LifeRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "14% increased Life Recovery rate" }, [3283106665] = { "" }, } },
- ["LifeRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "15% increased Life Recovery rate" }, [3283106665] = { "" }, } },
- ["LifeRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "16% increased Life Recovery rate" }, [3283106665] = { "" }, } },
- ["ManaRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "7% increased Mana Recovery rate" }, } },
- ["ManaRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "8% increased Mana Recovery rate" }, } },
- ["ManaRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "9% increased Mana Recovery rate" }, } },
- ["ManaRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "10% increased Mana Recovery rate" }, } },
- ["ManaRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "11% increased Mana Recovery rate" }, } },
- ["ManaRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "12% increased Mana Recovery rate" }, } },
- ["ManaRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "9% increased Mana Recovery rate" }, } },
- ["ManaRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "10% increased Mana Recovery rate" }, } },
- ["ManaRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "11% increased Mana Recovery rate" }, } },
- ["ManaRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "12% increased Mana Recovery rate" }, } },
- ["ManaRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "13% increased Mana Recovery rate" }, } },
- ["ManaRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "14% increased Mana Recovery rate" }, } },
- ["ManaRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "11% increased Mana Recovery rate" }, } },
- ["ManaRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "12% increased Mana Recovery rate" }, } },
- ["ManaRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "13% increased Mana Recovery rate" }, } },
- ["ManaRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "14% increased Mana Recovery rate" }, } },
- ["ManaRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "15% increased Mana Recovery rate" }, } },
- ["ManaRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "16% increased Mana Recovery rate" }, } },
- ["EnergyShieldRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "7% increased Energy Shield Recovery rate" }, } },
- ["EnergyShieldRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "8% increased Energy Shield Recovery rate" }, } },
- ["EnergyShieldRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "9% increased Energy Shield Recovery rate" }, } },
- ["EnergyShieldRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "10% increased Energy Shield Recovery rate" }, } },
- ["EnergyShieldRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "11% increased Energy Shield Recovery rate" }, } },
- ["EnergyShieldRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "12% increased Energy Shield Recovery rate" }, } },
- ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "9% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } },
- ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "10% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } },
- ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "11% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } },
- ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "12% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } },
- ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "13% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } },
- ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "14% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } },
- ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "11% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } },
- ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "12% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } },
- ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "13% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } },
- ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "14% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } },
- ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "15% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } },
- ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "16% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } },
- ["DamageTakenPerStrengthEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 230 Strength" }, } },
- ["DamageTakenPerStrengthEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 220 Strength" }, } },
- ["DamageTakenPerStrengthEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 210 Strength" }, } },
- ["DamageTakenPerStrengthEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 200 Strength" }, } },
- ["DamageTakenPerStrengthEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 190 Strength" }, } },
- ["DamageTakenPerStrengthEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 180 Strength" }, } },
- ["DamageTakenPerStrengthEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 210 Strength" }, } },
- ["DamageTakenPerStrengthEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 200 Strength" }, } },
- ["DamageTakenPerStrengthEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 190 Strength" }, } },
- ["DamageTakenPerStrengthEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 180 Strength" }, } },
- ["DamageTakenPerStrengthEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 170 Strength" }, } },
- ["DamageTakenPerStrengthEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 160 Strength" }, } },
- ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 190 Strength" }, } },
- ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 180 Strength" }, } },
- ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 170 Strength" }, } },
- ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 160 Strength" }, } },
- ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 150 Strength" }, } },
- ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 140 Strength" }, } },
- ["DamageTakenPerDexterityEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 230 Dexterity" }, } },
- ["DamageTakenPerDexterityEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 220 Dexterity" }, } },
- ["DamageTakenPerDexterityEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 210 Dexterity" }, } },
- ["DamageTakenPerDexterityEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 200 Dexterity" }, } },
- ["DamageTakenPerDexterityEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 190 Dexterity" }, } },
- ["DamageTakenPerDexterityEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 180 Dexterity" }, } },
- ["DamageTakenPerDexterityEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 210 Dexterity" }, [4074358700] = { "" }, } },
- ["DamageTakenPerDexterityEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 200 Dexterity" }, [4074358700] = { "" }, } },
- ["DamageTakenPerDexterityEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 190 Dexterity" }, [4074358700] = { "" }, } },
- ["DamageTakenPerDexterityEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 180 Dexterity" }, [4074358700] = { "" }, } },
- ["DamageTakenPerDexterityEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 170 Dexterity" }, [4074358700] = { "" }, } },
- ["DamageTakenPerDexterityEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 160 Dexterity" }, [4074358700] = { "" }, } },
- ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 190 Dexterity" }, [3283106665] = { "" }, } },
- ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 180 Dexterity" }, [3283106665] = { "" }, } },
- ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 170 Dexterity" }, [3283106665] = { "" }, } },
- ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 160 Dexterity" }, [3283106665] = { "" }, } },
- ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 150 Dexterity" }, [3283106665] = { "" }, } },
- ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 140 Dexterity" }, [3283106665] = { "" }, } },
- ["DamageTakenPerIntelligenceEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 230 Intelligence" }, } },
- ["DamageTakenPerIntelligenceEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 220 Intelligence" }, } },
- ["DamageTakenPerIntelligenceEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 210 Intelligence" }, } },
- ["DamageTakenPerIntelligenceEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 200 Intelligence" }, } },
- ["DamageTakenPerIntelligenceEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 190 Intelligence" }, } },
- ["DamageTakenPerIntelligenceEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 180 Intelligence" }, } },
- ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 210 Intelligence" }, [4074358700] = { "" }, } },
- ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 200 Intelligence" }, [4074358700] = { "" }, } },
- ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 190 Intelligence" }, [4074358700] = { "" }, } },
- ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 180 Intelligence" }, [4074358700] = { "" }, } },
- ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 170 Intelligence" }, [4074358700] = { "" }, } },
- ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 160 Intelligence" }, [4074358700] = { "" }, } },
- ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 190 Intelligence" }, [3283106665] = { "" }, } },
- ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 180 Intelligence" }, [3283106665] = { "" }, } },
- ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 170 Intelligence" }, [3283106665] = { "" }, } },
- ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 160 Intelligence" }, [3283106665] = { "" }, } },
- ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 150 Intelligence" }, [3283106665] = { "" }, } },
- ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 140 Intelligence" }, [3283106665] = { "" }, } },
- ["SkillEffectDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(7-8)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(7-8)% increased Skill Effect Duration" }, } },
- ["SkillEffectDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(9-10)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(9-10)% increased Skill Effect Duration" }, } },
- ["SkillEffectDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(11-12)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(11-12)% increased Skill Effect Duration" }, } },
- ["SkillEffectDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(13-14)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(13-14)% increased Skill Effect Duration" }, } },
- ["SkillEffectDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(15-16)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(15-16)% increased Skill Effect Duration" }, } },
- ["SkillEffectDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(17-18)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(17-18)% increased Skill Effect Duration" }, } },
- ["SkillEffectDurationUniquePresence1"] = { type = "Eater", affix = "", "(13-14)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(13-14)% increased Skill Effect Duration" }, } },
- ["SkillEffectDurationUniquePresence2"] = { type = "Eater", affix = "", "(15-16)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(15-16)% increased Skill Effect Duration" }, } },
- ["SkillEffectDurationUniquePresence3"] = { type = "Eater", affix = "", "(17-18)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(17-18)% increased Skill Effect Duration" }, } },
- ["SkillEffectDurationUniquePresence4"] = { type = "Eater", affix = "", "(19-20)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(19-20)% increased Skill Effect Duration" }, } },
- ["SkillEffectDurationUniquePresence5"] = { type = "Eater", affix = "", "(21-22)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(21-22)% increased Skill Effect Duration" }, } },
- ["SkillEffectDurationUniquePresence6"] = { type = "Eater", affix = "", "(23-24)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(23-24)% increased Skill Effect Duration" }, } },
- ["SkillEffectDurationPinnaclePresence1"] = { type = "Eater", affix = "", "(19-20)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(19-20)% increased Skill Effect Duration" }, } },
- ["SkillEffectDurationPinnaclePresence2"] = { type = "Eater", affix = "", "(21-22)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(21-22)% increased Skill Effect Duration" }, } },
- ["SkillEffectDurationPinnaclePresence3"] = { type = "Eater", affix = "", "(23-24)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(23-24)% increased Skill Effect Duration" }, } },
- ["SkillEffectDurationPinnaclePresence4"] = { type = "Eater", affix = "", "(25-26)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(25-26)% increased Skill Effect Duration" }, } },
- ["SkillEffectDurationPinnaclePresence5"] = { type = "Eater", affix = "", "(27-28)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(27-28)% increased Skill Effect Duration" }, } },
- ["SkillEffectDurationPinnaclePresence6"] = { type = "Eater", affix = "", "(29-30)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(29-30)% increased Skill Effect Duration" }, } },
+ ["IncreasedAttackSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "8% increased Attack Speed" }, } },
+ ["IncreasedAttackSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "9% increased Attack Speed" }, } },
+ ["IncreasedAttackSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "10% increased Attack Speed" }, } },
+ ["IncreasedAttackSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "11% increased Attack Speed" }, } },
+ ["IncreasedAttackSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "12% increased Attack Speed" }, } },
+ ["IncreasedAttackSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "13% increased Attack Speed" }, } },
+ ["IncreasedAttackSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "12% increased Attack Speed" }, [4074358700] = { "" }, } },
+ ["IncreasedAttackSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "13% increased Attack Speed" }, [4074358700] = { "" }, } },
+ ["IncreasedAttackSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "14% increased Attack Speed" }, [4074358700] = { "" }, } },
+ ["IncreasedAttackSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "15% increased Attack Speed" }, [4074358700] = { "" }, } },
+ ["IncreasedAttackSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "16% increased Attack Speed" }, [4074358700] = { "" }, } },
+ ["IncreasedAttackSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "17% increased Attack Speed" }, [4074358700] = { "" }, } },
+ ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "16% increased Attack Speed" }, [3283106665] = { "" }, } },
+ ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "17% increased Attack Speed" }, [3283106665] = { "" }, } },
+ ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "18% increased Attack Speed" }, [3283106665] = { "" }, } },
+ ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "19% increased Attack Speed" }, [3283106665] = { "" }, } },
+ ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "20% increased Attack Speed" }, [3283106665] = { "" }, } },
+ ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "21% increased Attack Speed" }, [3283106665] = { "" }, } },
+ ["AttackCriticalStrikeChanceEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-21)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(19-21)% increased Critical Strike Chance for Attacks" }, } },
+ ["AttackCriticalStrikeChanceEldritchImplicit2"] = { type = "Exarch", affix = "", "(22-24)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(22-24)% increased Critical Strike Chance for Attacks" }, } },
+ ["AttackCriticalStrikeChanceEldritchImplicit3"] = { type = "Exarch", affix = "", "(25-27)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(25-27)% increased Critical Strike Chance for Attacks" }, } },
+ ["AttackCriticalStrikeChanceEldritchImplicit4"] = { type = "Exarch", affix = "", "(28-30)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(28-30)% increased Critical Strike Chance for Attacks" }, } },
+ ["AttackCriticalStrikeChanceEldritchImplicit5"] = { type = "Exarch", affix = "", "(31-33)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(31-33)% increased Critical Strike Chance for Attacks" }, } },
+ ["AttackCriticalStrikeChanceEldritchImplicit6"] = { type = "Exarch", affix = "", "(34-36)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(34-36)% increased Critical Strike Chance for Attacks" }, } },
+ ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(31-33)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } },
+ ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(34-36)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } },
+ ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(37-39)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } },
+ ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(40-42)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } },
+ ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(43-45)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } },
+ ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(46-48)% increased Critical Strike Chance for Attacks" }, [4074358700] = { "" }, } },
+ ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(43-45)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } },
+ ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(46-48)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } },
+ ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(49-51)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } },
+ ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(52-54)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } },
+ ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(55-57)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } },
+ ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(58-60)% increased Critical Strike Chance for Attacks" }, [3283106665] = { "" }, } },
+ ["AddedPhysicalDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (3-5) to (7-9) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-5) to (7-9) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (4-5) to (8-9) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-5) to (8-9) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (4-6) to (9-10) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-6) to (9-10) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (5-6) to (10-11) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-6) to (10-11) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (11-12) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (6-7) to (12-14) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-7) to (12-14) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (5-6) to (10-11) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (5-6) to (10-11) Physical Damage to Attacks" }, [4074358700] = { "" }, } },
+ ["AddedPhysicalDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (11-12) Physical Damage to Attacks" }, [4074358700] = { "" }, } },
+ ["AddedPhysicalDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-7) to (12-14) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (6-7) to (12-14) Physical Damage to Attacks" }, [4074358700] = { "" }, } },
+ ["AddedPhysicalDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (6-9) to (13-15) Physical Damage to Attacks" }, [4074358700] = { "" }, } },
+ ["AddedPhysicalDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-9) to (14-17) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (7-9) to (14-17) Physical Damage to Attacks" }, [4074358700] = { "" }, } },
+ ["AddedPhysicalDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-10) to (16-18) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (8-10) to (16-18) Physical Damage to Attacks" }, [4074358700] = { "" }, } },
+ ["AddedPhysicalDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (6-9) to (13-15) Physical Damage to Attacks" }, [3283106665] = { "" }, } },
+ ["AddedPhysicalDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (7-9) to (14-17) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (7-9) to (14-17) Physical Damage to Attacks" }, [3283106665] = { "" }, } },
+ ["AddedPhysicalDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (8-10) to (16-18) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (8-10) to (16-18) Physical Damage to Attacks" }, [3283106665] = { "" }, } },
+ ["AddedPhysicalDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (9-12) to (18-21) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (9-12) to (18-21) Physical Damage to Attacks" }, [3283106665] = { "" }, } },
+ ["AddedPhysicalDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-14) to (21-24) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (10-14) to (21-24) Physical Damage to Attacks" }, [3283106665] = { "" }, } },
+ ["AddedPhysicalDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-15) to (24-28) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3032590688] = { "Adds (12-15) to (24-28) Physical Damage to Attacks" }, [3283106665] = { "" }, } },
+ ["AddedFireDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (6-8) to (13-15) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (6-8) to (13-15) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (7-9) to (14-16) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (7-9) to (14-16) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (8-10) to (15-18) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-10) to (15-18) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-20) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-11) to (17-20) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (9-12) to (19-22) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (10-13) to (21-24) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (10-13) to (21-24) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-11) to (17-20) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (8-11) to (17-20) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (9-12) to (19-22) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (21-24) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (10-13) to (21-24) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-26) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (11-15) to (23-26) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-29) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (13-16) to (25-29) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-18) to (28-32) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1573130764] = { "Adds (13-18) to (28-32) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (11-15) to (23-26) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (11-15) to (23-26) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-16) to (25-29) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (13-16) to (25-29) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (13-18) to (28-32) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-20) to (32-37) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (16-20) to (32-37) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-42) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (18-24) to (37-42) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (21-27) to (42-49) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1573130764] = { "Adds (21-27) to (42-49) Fire Damage to Attacks" }, } },
+ ["AddedColdDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (6-7) to (11-13) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (6-7) to (11-13) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (6-8) to (12-15) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (6-8) to (12-15) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (7-9) to (13-16) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (7-9) to (13-16) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (7-10) to (15-18) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (7-10) to (15-18) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-19) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (8-11) to (17-19) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (9-12) to (18-22) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (9-12) to (18-22) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-10) to (15-18) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (7-10) to (15-18) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-11) to (17-19) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (8-11) to (17-19) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-12) to (18-22) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (9-12) to (18-22) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (10-13) to (20-24) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (22-26) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (11-15) to (22-26) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (12-16) to (24-29) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [4067062424] = { "Adds (12-16) to (24-29) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (10-13) to (20-24) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (11-15) to (22-26) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (11-15) to (22-26) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-16) to (24-29) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (12-16) to (24-29) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (14-18) to (28-33) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (14-18) to (28-33) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-21) to (32-38) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (16-21) to (32-38) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-44) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [4067062424] = { "Adds (18-24) to (37-44) Cold Damage to Attacks" }, } },
+ ["AddedLightningDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (1-2) to (22-24) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (22-24) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (1-3) to (24-26) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (24-26) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (1-3) to (27-28) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (27-28) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (29-32) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (2-4) to (32-35) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (32-35) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (2-4) to (36-38) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (36-38) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (29-32) Lightning Damage to Attacks" }, [4074358700] = { "" }, } },
+ ["AddedLightningDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (32-35) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (32-35) Lightning Damage to Attacks" }, [4074358700] = { "" }, } },
+ ["AddedLightningDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (36-38) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (36-38) Lightning Damage to Attacks" }, [4074358700] = { "" }, } },
+ ["AddedLightningDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (39-42) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (39-42) Lightning Damage to Attacks" }, [4074358700] = { "" }, } },
+ ["AddedLightningDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (43-47) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (43-47) Lightning Damage to Attacks" }, [4074358700] = { "" }, } },
+ ["AddedLightningDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (48-51) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-5) to (48-51) Lightning Damage to Attacks" }, [4074358700] = { "" }, } },
+ ["AddedLightningDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-4) to (39-42) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (39-42) Lightning Damage to Attacks" }, [3283106665] = { "" }, } },
+ ["AddedLightningDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-4) to (43-47) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (43-47) Lightning Damage to Attacks" }, [3283106665] = { "" }, } },
+ ["AddedLightningDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-5) to (48-51) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-5) to (48-51) Lightning Damage to Attacks" }, [3283106665] = { "" }, } },
+ ["AddedLightningDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-6) to (55-59) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (2-6) to (55-59) Lightning Damage to Attacks" }, [3283106665] = { "" }, } },
+ ["AddedLightningDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-6) to (63-68) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (3-6) to (63-68) Lightning Damage to Attacks" }, [3283106665] = { "" }, } },
+ ["AddedLightningDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1754445556] = { "Adds (3-8) to (72-78) Lightning Damage to Attacks" }, [3283106665] = { "" }, } },
+ ["AddedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (5-6) to (10-11) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (5-6) to (10-11) Chaos Damage to Attacks" }, } },
+ ["AddedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (5-7) to (11-12) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (5-7) to (11-12) Chaos Damage to Attacks" }, } },
+ ["AddedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (6-7) to (12-14) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (6-7) to (12-14) Chaos Damage to Attacks" }, } },
+ ["AddedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (6-9) to (13-15) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (6-9) to (13-15) Chaos Damage to Attacks" }, } },
+ ["AddedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (7-9) to (14-17) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (7-9) to (14-17) Chaos Damage to Attacks" }, } },
+ ["AddedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (8-10) to (16-18) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (8-10) to (16-18) Chaos Damage to Attacks" }, } },
+ ["AddedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-9) to (13-15) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (6-9) to (13-15) Chaos Damage to Attacks" }, } },
+ ["AddedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-9) to (14-17) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (7-9) to (14-17) Chaos Damage to Attacks" }, } },
+ ["AddedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-10) to (16-18) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (8-10) to (16-18) Chaos Damage to Attacks" }, } },
+ ["AddedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-11) to (17-20) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (9-11) to (17-20) Chaos Damage to Attacks" }, } },
+ ["AddedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (19-22) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (10-13) to (19-22) Chaos Damage to Attacks" }, } },
+ ["AddedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-14) to (21-24) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [674553446] = { "Adds (10-14) to (21-24) Chaos Damage to Attacks" }, } },
+ ["AddedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (9-11) to (17-20) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (9-11) to (17-20) Chaos Damage to Attacks" }, } },
+ ["AddedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-13) to (19-22) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (10-13) to (19-22) Chaos Damage to Attacks" }, } },
+ ["AddedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-14) to (21-24) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (10-14) to (21-24) Chaos Damage to Attacks" }, } },
+ ["AddedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-15) to (24-28) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (12-15) to (24-28) Chaos Damage to Attacks" }, } },
+ ["AddedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (13-18) to (28-32) Chaos Damage to Attacks" }, } },
+ ["AddedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-20) to (32-37) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [674553446] = { "Adds (16-20) to (32-37) Chaos Damage to Attacks" }, } },
+ ["FireDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(5-7)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(8-10)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(11-13)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(14-16)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(17-18)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(19-20)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(14-16)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } },
+ ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(17-19)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } },
+ ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(20-22)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } },
+ ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(23-25)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } },
+ ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(26-27)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } },
+ ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(28-29)% to Fire Damage over Time Multiplier" }, [4074358700] = { "" }, } },
+ ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(23-25)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } },
+ ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(26-28)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } },
+ ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(29-31)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } },
+ ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(32-34)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } },
+ ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(35-36)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } },
+ ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(37-38)% to Fire Damage over Time Multiplier" }, [3283106665] = { "" }, } },
+ ["ColdDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(5-7)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(8-10)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(11-13)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(14-16)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(17-18)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(19-20)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(14-16)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } },
+ ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(17-19)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } },
+ ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(20-22)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } },
+ ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(23-25)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } },
+ ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(26-27)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } },
+ ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(28-29)% to Cold Damage over Time Multiplier" }, [4074358700] = { "" }, } },
+ ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(23-25)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } },
+ ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(26-28)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } },
+ ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(29-31)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } },
+ ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(32-34)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } },
+ ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(35-36)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } },
+ ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(37-38)% to Cold Damage over Time Multiplier" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(5-7)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(8-10)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(11-13)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(14-16)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(17-18)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(19-20)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(14-16)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(17-19)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(20-22)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(23-25)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(26-27)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1314617696] = { "+(28-29)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(23-25)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(26-28)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(29-31)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(32-34)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(35-36)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1314617696] = { "+(37-38)% to Physical Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(5-7)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(8-10)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(11-13)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(14-16)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(17-18)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(19-20)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(14-16)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(17-19)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(20-22)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(23-25)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(26-27)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4074358700] = { "" }, [4055307827] = { "+(28-29)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(23-25)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(26-28)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(29-31)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(32-34)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(35-36)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [3283106665] = { "" }, [4055307827] = { "+(37-38)% to Chaos Damage over Time Multiplier" }, } },
+ ["HeraldBonusAshEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Ash has (15-17)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (15-17)% increased Buff Effect" }, } },
+ ["HeraldBonusAshEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Ash has (18-20)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (18-20)% increased Buff Effect" }, } },
+ ["HeraldBonusAshEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Ash has (21-23)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (21-23)% increased Buff Effect" }, } },
+ ["HeraldBonusAshEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Ash has (24-26)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (24-26)% increased Buff Effect" }, } },
+ ["HeraldBonusAshEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Ash has (27-28)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (27-28)% increased Buff Effect" }, } },
+ ["HeraldBonusAshEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Ash has (29-30)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (29-30)% increased Buff Effect" }, } },
+ ["HeraldBonusAshEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (24-26)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (24-26)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["HeraldBonusAshEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (27-29)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (27-29)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["HeraldBonusAshEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (30-32)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (30-32)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["HeraldBonusAshEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (33-35)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (33-35)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["HeraldBonusAshEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (36-37)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (36-37)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["HeraldBonusAshEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (38-39)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (38-39)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (33-35)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (33-35)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (36-38)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (36-38)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (39-41)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (39-41)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (42-44)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (42-44)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (45-46)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (45-46)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (47-48)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (47-48)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["HeraldBonusIceEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Ice has (15-17)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (15-17)% increased Buff Effect" }, } },
+ ["HeraldBonusIceEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Ice has (18-20)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (18-20)% increased Buff Effect" }, } },
+ ["HeraldBonusIceEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Ice has (21-23)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (21-23)% increased Buff Effect" }, } },
+ ["HeraldBonusIceEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Ice has (24-26)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (24-26)% increased Buff Effect" }, } },
+ ["HeraldBonusIceEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Ice has (27-28)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (27-28)% increased Buff Effect" }, } },
+ ["HeraldBonusIceEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Ice has (29-30)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (29-30)% increased Buff Effect" }, } },
+ ["HeraldBonusIceEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (24-26)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (24-26)% increased Buff Effect" }, } },
+ ["HeraldBonusIceEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (27-29)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (27-29)% increased Buff Effect" }, } },
+ ["HeraldBonusIceEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (30-32)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (30-32)% increased Buff Effect" }, } },
+ ["HeraldBonusIceEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (33-35)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (33-35)% increased Buff Effect" }, } },
+ ["HeraldBonusIceEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (36-37)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (36-37)% increased Buff Effect" }, } },
+ ["HeraldBonusIceEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (38-39)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1862926389] = { "Herald of Ice has (38-39)% increased Buff Effect" }, } },
+ ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (33-35)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (33-35)% increased Buff Effect" }, } },
+ ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (36-38)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (36-38)% increased Buff Effect" }, } },
+ ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (39-41)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (39-41)% increased Buff Effect" }, } },
+ ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (42-44)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (42-44)% increased Buff Effect" }, } },
+ ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (45-46)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (45-46)% increased Buff Effect" }, } },
+ ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (47-48)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1862926389] = { "Herald of Ice has (47-48)% increased Buff Effect" }, } },
+ ["HeraldBonusThunderEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Thunder has (15-17)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (15-17)% increased Buff Effect" }, } },
+ ["HeraldBonusThunderEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Thunder has (18-20)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (18-20)% increased Buff Effect" }, } },
+ ["HeraldBonusThunderEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Thunder has (21-23)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (21-23)% increased Buff Effect" }, } },
+ ["HeraldBonusThunderEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Thunder has (24-26)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (24-26)% increased Buff Effect" }, } },
+ ["HeraldBonusThunderEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Thunder has (27-28)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (27-28)% increased Buff Effect" }, } },
+ ["HeraldBonusThunderEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Thunder has (29-30)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (29-30)% increased Buff Effect" }, } },
+ ["HeraldBonusThunderEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (24-26)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (24-26)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["HeraldBonusThunderEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (27-29)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (27-29)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["HeraldBonusThunderEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (30-32)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (30-32)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["HeraldBonusThunderEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (33-35)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (33-35)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["HeraldBonusThunderEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (36-37)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (36-37)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["HeraldBonusThunderEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (38-39)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (38-39)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (33-35)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (33-35)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (36-38)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (36-38)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (39-41)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (39-41)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (42-44)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (42-44)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (45-46)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (45-46)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (47-48)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (47-48)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["HeraldBonusPurityEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Purity has (15-17)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (15-17)% increased Buff Effect" }, } },
+ ["HeraldBonusPurityEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Purity has (18-20)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (18-20)% increased Buff Effect" }, } },
+ ["HeraldBonusPurityEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Purity has (21-23)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (21-23)% increased Buff Effect" }, } },
+ ["HeraldBonusPurityEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Purity has (24-26)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (24-26)% increased Buff Effect" }, } },
+ ["HeraldBonusPurityEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Purity has (27-28)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (27-28)% increased Buff Effect" }, } },
+ ["HeraldBonusPurityEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Purity has (29-30)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (29-30)% increased Buff Effect" }, } },
+ ["HeraldBonusPurityEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (24-26)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (24-26)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["HeraldBonusPurityEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (27-29)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (27-29)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["HeraldBonusPurityEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (30-32)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (30-32)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["HeraldBonusPurityEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (33-35)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (33-35)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["HeraldBonusPurityEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (36-37)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (36-37)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["HeraldBonusPurityEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (38-39)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (38-39)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (33-35)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (33-35)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (36-38)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (36-38)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (39-41)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (39-41)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (42-44)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (42-44)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (45-46)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (45-46)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (47-48)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (47-48)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["HeraldBonusAgonyEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Agony has (15-17)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (15-17)% increased Buff Effect" }, } },
+ ["HeraldBonusAgonyEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Agony has (18-20)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (18-20)% increased Buff Effect" }, } },
+ ["HeraldBonusAgonyEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Agony has (21-23)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (21-23)% increased Buff Effect" }, } },
+ ["HeraldBonusAgonyEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Agony has (24-26)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (24-26)% increased Buff Effect" }, } },
+ ["HeraldBonusAgonyEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Agony has (27-28)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (27-28)% increased Buff Effect" }, } },
+ ["HeraldBonusAgonyEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Agony has (29-30)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (29-30)% increased Buff Effect" }, } },
+ ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (24-26)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (24-26)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (27-29)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (27-29)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (30-32)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (30-32)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (33-35)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (33-35)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (36-37)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (36-37)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (38-39)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (38-39)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (33-35)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (33-35)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (36-38)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (36-38)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (39-41)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (39-41)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (42-44)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (42-44)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (45-46)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (45-46)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (47-48)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (47-48)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["IgniteProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.2 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.2 metres" }, } },
+ ["IgniteProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.3 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.3 metres" }, } },
+ ["IgniteProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.4 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.4 metres" }, } },
+ ["IgniteProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.5 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.5 metres" }, } },
+ ["IgniteProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.6 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.6 metres" }, } },
+ ["IgniteProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.7 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.7 metres" }, } },
+ ["IgniteProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.5 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.5 metres" }, [4074358700] = { "" }, } },
+ ["IgniteProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.6 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.6 metres" }, [4074358700] = { "" }, } },
+ ["IgniteProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.7 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.7 metres" }, [4074358700] = { "" }, } },
+ ["IgniteProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.8 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.8 metres" }, [4074358700] = { "" }, } },
+ ["IgniteProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.9 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.9 metres" }, [4074358700] = { "" }, } },
+ ["IgniteProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 2 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2 metres" }, [4074358700] = { "" }, } },
+ ["IgniteProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 1.8 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.8 metres" }, [3283106665] = { "" }, } },
+ ["IgniteProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 1.9 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 1.9 metres" }, [3283106665] = { "" }, } },
+ ["IgniteProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2 metres" }, [3283106665] = { "" }, } },
+ ["IgniteProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.1 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2.1 metres" }, [3283106665] = { "" }, } },
+ ["IgniteProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.2 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2.2 metres" }, [3283106665] = { "" }, } },
+ ["IgniteProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.3 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2011785027] = { "Ignites you inflict spread to other Enemies within 2.3 metres" }, [3283106665] = { "" }, } },
+ ["FreezeProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.2 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.2 metres" }, } },
+ ["FreezeProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.3 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.3 metres" }, } },
+ ["FreezeProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.4 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.4 metres" }, } },
+ ["FreezeProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.5 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.5 metres" }, } },
+ ["FreezeProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.6 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.6 metres" }, } },
+ ["FreezeProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.7 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1623640288] = { "Freezes you inflict spread to other Enemies within 1.7 metres" }, } },
+ ["FreezeProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.5 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.5 metres" }, } },
+ ["FreezeProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.6 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.6 metres" }, } },
+ ["FreezeProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.7 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.7 metres" }, } },
+ ["FreezeProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.8 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.8 metres" }, } },
+ ["FreezeProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.9 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.9 metres" }, } },
+ ["FreezeProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 2 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 2 metres" }, } },
+ ["FreezeProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 1.8 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.8 metres" }, } },
+ ["FreezeProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 1.9 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 1.9 metres" }, } },
+ ["FreezeProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 2 metres" }, } },
+ ["FreezeProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.1 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 2.1 metres" }, } },
+ ["FreezeProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.2 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 2.2 metres" }, } },
+ ["FreezeProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.3 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1623640288] = { "Freezes you inflict spread to other Enemies within 2.3 metres" }, } },
+ ["ShockProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.2 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.2 metres" }, } },
+ ["ShockProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.3 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.3 metres" }, } },
+ ["ShockProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.4 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.4 metres" }, } },
+ ["ShockProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.5 metres" }, } },
+ ["ShockProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.6 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.6 metres" }, } },
+ ["ShockProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.7 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.7 metres" }, } },
+ ["ShockProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.5 metres" }, [4074358700] = { "" }, } },
+ ["ShockProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.6 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.6 metres" }, [4074358700] = { "" }, } },
+ ["ShockProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.7 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.7 metres" }, [4074358700] = { "" }, } },
+ ["ShockProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.8 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.8 metres" }, [4074358700] = { "" }, } },
+ ["ShockProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.9 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.9 metres" }, [4074358700] = { "" }, } },
+ ["ShockProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 2 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2 metres" }, [4074358700] = { "" }, } },
+ ["ShockProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 1.8 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.8 metres" }, [3283106665] = { "" }, } },
+ ["ShockProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 1.9 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 1.9 metres" }, [3283106665] = { "" }, } },
+ ["ShockProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2 metres" }, [3283106665] = { "" }, } },
+ ["ShockProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.1 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2.1 metres" }, [3283106665] = { "" }, } },
+ ["ShockProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.2 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2.2 metres" }, [3283106665] = { "" }, } },
+ ["ShockProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.3 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [424549222] = { "Shocks you inflict spread to other Enemies within 2.3 metres" }, [3283106665] = { "" }, } },
+ ["StunThresholdReductionEldritchImplicit1"] = { type = "Exarch", affix = "", "(6-7)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(6-7)% reduced Enemy Stun Threshold" }, } },
+ ["StunThresholdReductionEldritchImplicit2"] = { type = "Exarch", affix = "", "(8-9)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(8-9)% reduced Enemy Stun Threshold" }, } },
+ ["StunThresholdReductionEldritchImplicit3"] = { type = "Exarch", affix = "", "(10-11)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(10-11)% reduced Enemy Stun Threshold" }, } },
+ ["StunThresholdReductionEldritchImplicit4"] = { type = "Exarch", affix = "", "(12-13)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(12-13)% reduced Enemy Stun Threshold" }, } },
+ ["StunThresholdReductionEldritchImplicit5"] = { type = "Exarch", affix = "", "(14-15)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(14-15)% reduced Enemy Stun Threshold" }, } },
+ ["StunThresholdReductionEldritchImplicit6"] = { type = "Exarch", affix = "", "(16-17)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(16-17)% reduced Enemy Stun Threshold" }, } },
+ ["StunThresholdReductionEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (12-13)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(12-13)% reduced Enemy Stun Threshold" }, } },
+ ["StunThresholdReductionEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(14-15)% reduced Enemy Stun Threshold" }, } },
+ ["StunThresholdReductionEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(16-17)% reduced Enemy Stun Threshold" }, } },
+ ["StunThresholdReductionEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(18-19)% reduced Enemy Stun Threshold" }, } },
+ ["StunThresholdReductionEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(20-21)% reduced Enemy Stun Threshold" }, } },
+ ["StunThresholdReductionEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1443060084] = { "(22-23)% reduced Enemy Stun Threshold" }, } },
+ ["StunThresholdReductionEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(18-19)% reduced Enemy Stun Threshold" }, } },
+ ["StunThresholdReductionEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(20-21)% reduced Enemy Stun Threshold" }, } },
+ ["StunThresholdReductionEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(22-23)% reduced Enemy Stun Threshold" }, } },
+ ["StunThresholdReductionEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(24-25)% reduced Enemy Stun Threshold" }, } },
+ ["StunThresholdReductionEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(26-27)% reduced Enemy Stun Threshold" }, } },
+ ["StunThresholdReductionEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1443060084] = { "(28-29)% reduced Enemy Stun Threshold" }, } },
+ ["MinionDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions deal (14-16)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (14-16)% increased Damage" }, } },
+ ["MinionDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions deal (17-19)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (17-19)% increased Damage" }, } },
+ ["MinionDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions deal (20-22)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-22)% increased Damage" }, } },
+ ["MinionDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions deal (23-25)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (23-25)% increased Damage" }, } },
+ ["MinionDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions deal (26-27)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (26-27)% increased Damage" }, } },
+ ["MinionDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions deal (28-29)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (28-29)% increased Damage" }, } },
+ ["MinionDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (26-28)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (26-28)% increased Damage" }, } },
+ ["MinionDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (29-31)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (29-31)% increased Damage" }, } },
+ ["MinionDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (32-34)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (32-34)% increased Damage" }, } },
+ ["MinionDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (35-37)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (35-37)% increased Damage" }, } },
+ ["MinionDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (38-39)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (38-39)% increased Damage" }, } },
+ ["MinionDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (40-41)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [4074358700] = { "" }, [1589917703] = { "Minions deal (40-41)% increased Damage" }, } },
+ ["MinionDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (38-40)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (38-40)% increased Damage" }, } },
+ ["MinionDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (41-43)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (41-43)% increased Damage" }, } },
+ ["MinionDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (44-46)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (44-46)% increased Damage" }, } },
+ ["MinionDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (47-49)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (47-49)% increased Damage" }, } },
+ ["MinionDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (50-51)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (50-51)% increased Damage" }, } },
+ ["MinionDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (52-53)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [3283106665] = { "" }, [1589917703] = { "Minions deal (52-53)% increased Damage" }, } },
+ ["TrapThrowSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "8% increased Trap Throwing Speed" }, } },
+ ["TrapThrowSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "9% increased Trap Throwing Speed" }, } },
+ ["TrapThrowSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "10% increased Trap Throwing Speed" }, } },
+ ["TrapThrowSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "11% increased Trap Throwing Speed" }, } },
+ ["TrapThrowSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "12% increased Trap Throwing Speed" }, } },
+ ["TrapThrowSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "13% increased Trap Throwing Speed" }, } },
+ ["TrapThrowSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "12% increased Trap Throwing Speed" }, [4074358700] = { "" }, } },
+ ["TrapThrowSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "13% increased Trap Throwing Speed" }, [4074358700] = { "" }, } },
+ ["TrapThrowSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "14% increased Trap Throwing Speed" }, [4074358700] = { "" }, } },
+ ["TrapThrowSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "15% increased Trap Throwing Speed" }, [4074358700] = { "" }, } },
+ ["TrapThrowSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "16% increased Trap Throwing Speed" }, [4074358700] = { "" }, } },
+ ["TrapThrowSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "17% increased Trap Throwing Speed" }, [4074358700] = { "" }, } },
+ ["TrapThrowSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "16% increased Trap Throwing Speed" }, [3283106665] = { "" }, } },
+ ["TrapThrowSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "17% increased Trap Throwing Speed" }, [3283106665] = { "" }, } },
+ ["TrapThrowSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "18% increased Trap Throwing Speed" }, [3283106665] = { "" }, } },
+ ["TrapThrowSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "19% increased Trap Throwing Speed" }, [3283106665] = { "" }, } },
+ ["TrapThrowSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "20% increased Trap Throwing Speed" }, [3283106665] = { "" }, } },
+ ["TrapThrowSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "21% increased Trap Throwing Speed" }, [3283106665] = { "" }, } },
+ ["MineLayingSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "8% increased Mine Throwing Speed" }, } },
+ ["MineLayingSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "9% increased Mine Throwing Speed" }, } },
+ ["MineLayingSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "10% increased Mine Throwing Speed" }, } },
+ ["MineLayingSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "11% increased Mine Throwing Speed" }, } },
+ ["MineLayingSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "12% increased Mine Throwing Speed" }, } },
+ ["MineLayingSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "13% increased Mine Throwing Speed" }, } },
+ ["MineLayingSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "12% increased Mine Throwing Speed" }, } },
+ ["MineLayingSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "13% increased Mine Throwing Speed" }, } },
+ ["MineLayingSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "14% increased Mine Throwing Speed" }, } },
+ ["MineLayingSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "15% increased Mine Throwing Speed" }, } },
+ ["MineLayingSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "16% increased Mine Throwing Speed" }, } },
+ ["MineLayingSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1896971621] = { "17% increased Mine Throwing Speed" }, } },
+ ["MineLayingSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "16% increased Mine Throwing Speed" }, } },
+ ["MineLayingSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "17% increased Mine Throwing Speed" }, } },
+ ["MineLayingSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "18% increased Mine Throwing Speed" }, } },
+ ["MineLayingSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "19% increased Mine Throwing Speed" }, } },
+ ["MineLayingSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "20% increased Mine Throwing Speed" }, } },
+ ["MineLayingSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1896971621] = { "21% increased Mine Throwing Speed" }, } },
+ ["ExtinguishOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "15% chance to Extinguish Enemies on Hit" }, } },
+ ["ExtinguishOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "20% chance to Extinguish Enemies on Hit" }, } },
+ ["ExtinguishOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "25% chance to Extinguish Enemies on Hit" }, } },
+ ["ExtinguishOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "30% chance to Extinguish Enemies on Hit" }, } },
+ ["ExtinguishOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "35% chance to Extinguish Enemies on Hit" }, } },
+ ["ExtinguishOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [49183689] = { "40% chance to Extinguish Enemies on Hit" }, } },
+ ["ExtinguishOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "45% chance to Extinguish Enemies on Hit" }, } },
+ ["ExtinguishOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "50% chance to Extinguish Enemies on Hit" }, } },
+ ["ExtinguishOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "55% chance to Extinguish Enemies on Hit" }, } },
+ ["ExtinguishOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "60% chance to Extinguish Enemies on Hit" }, } },
+ ["ExtinguishOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "65% chance to Extinguish Enemies on Hit" }, } },
+ ["ExtinguishOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [49183689] = { "70% chance to Extinguish Enemies on Hit" }, } },
+ ["ExtinguishOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "75% chance to Extinguish Enemies on Hit" }, } },
+ ["ExtinguishOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "80% chance to Extinguish Enemies on Hit" }, } },
+ ["ExtinguishOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "85% chance to Extinguish Enemies on Hit" }, } },
+ ["ExtinguishOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "90% chance to Extinguish Enemies on Hit" }, } },
+ ["ExtinguishOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "95% chance to Extinguish Enemies on Hit" }, } },
+ ["ExtinguishOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [49183689] = { "100% chance to Extinguish Enemies on Hit" }, } },
+ ["MaximumColdResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } },
+ ["MaximumColdResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } },
+ ["MaximumColdResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } },
+ ["MaximumColdResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } },
+ ["MaximumColdResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } },
+ ["MaximumColdResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } },
+ ["MaximumColdResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumColdResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumColdResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumColdResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumColdResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumColdResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumColdResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumColdResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumColdResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumColdResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumColdResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumColdResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [3283106665] = { "" }, } },
+ ["DamagePerFrenzyChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "4% increased Damage per Frenzy Charge" }, } },
+ ["DamagePerFrenzyChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "4% increased Damage per Frenzy Charge" }, } },
+ ["DamagePerFrenzyChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "5% increased Damage per Frenzy Charge" }, } },
+ ["DamagePerFrenzyChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "5% increased Damage per Frenzy Charge" }, } },
+ ["DamagePerFrenzyChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "6% increased Damage per Frenzy Charge" }, } },
+ ["DamagePerFrenzyChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [902747843] = { "6% increased Damage per Frenzy Charge" }, } },
+ ["DamagePerFrenzyChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "5% increased Damage per Frenzy Charge" }, } },
+ ["DamagePerFrenzyChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "5% increased Damage per Frenzy Charge" }, } },
+ ["DamagePerFrenzyChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "6% increased Damage per Frenzy Charge" }, } },
+ ["DamagePerFrenzyChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "6% increased Damage per Frenzy Charge" }, } },
+ ["DamagePerFrenzyChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "7% increased Damage per Frenzy Charge" }, } },
+ ["DamagePerFrenzyChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [902747843] = { "7% increased Damage per Frenzy Charge" }, } },
+ ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "6% increased Damage per Frenzy Charge" }, } },
+ ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "6% increased Damage per Frenzy Charge" }, } },
+ ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "7% increased Damage per Frenzy Charge" }, } },
+ ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "7% increased Damage per Frenzy Charge" }, } },
+ ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "8% increased Damage per Frenzy Charge" }, } },
+ ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [902747843] = { "8% increased Damage per Frenzy Charge" }, } },
+ ["StrikeSkillsAdditionalTargetEldritchImplicit1"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } },
+ ["StrikeSkillsAdditionalTargetEldritchImplicit2"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } },
+ ["StrikeSkillsAdditionalTargetEldritchImplicit3"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } },
+ ["StrikeSkillsAdditionalTargetEldritchImplicit4"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } },
+ ["StrikeSkillsAdditionalTargetEldritchImplicit5"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } },
+ ["StrikeSkillsAdditionalTargetEldritchImplicit6"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } },
+ ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } },
+ ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } },
+ ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } },
+ ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } },
+ ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } },
+ ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } },
+ ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } },
+ ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } },
+ ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } },
+ ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 3 additional nearby Enemies" }, } },
+ ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 4 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 4 additional nearby Enemies" }, } },
+ ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 4 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1661253443] = { "Non-Vaal Strike Skills target 4 additional nearby Enemies" }, } },
+ ["RageOnHitImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } },
+ ["RageOnHitImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } },
+ ["RageOnHitImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } },
+ ["RageOnHitImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } },
+ ["RageOnHitImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } },
+ ["RageOnHitImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, } },
+ ["RageOnHitImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } },
+ ["RageOnHitImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } },
+ ["RageOnHitImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } },
+ ["RageOnHitImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } },
+ ["RageOnHitImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } },
+ ["RageOnHitImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [4074358700] = { "" }, } },
+ ["RageOnHitImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } },
+ ["RageOnHitImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } },
+ ["RageOnHitImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } },
+ ["RageOnHitImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } },
+ ["RageOnHitImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } },
+ ["RageOnHitImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2802161115] = { "Gain 1 Rage on Hit with Attacks" }, [3283106665] = { "" }, } },
+ ["RageOnAttackHitEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 1 Rage on Attack Hit" }, } },
+ ["RageOnAttackHitEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 1 Rage on Attack Hit" }, } },
+ ["RageOnAttackHitEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 1 Rage on Attack Hit" }, } },
+ ["RageOnAttackHitEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 1 Rage on Attack Hit" }, } },
+ ["RageOnAttackHitEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain 2 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 2 Rage on Attack Hit" }, } },
+ ["RageOnAttackHitEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain 2 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2676601655] = { "Gain 2 Rage on Attack Hit" }, } },
+ ["RageOnAttackHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 2 Rage on Attack Hit" }, } },
+ ["RageOnAttackHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 2 Rage on Attack Hit" }, } },
+ ["RageOnAttackHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 2 Rage on Attack Hit" }, } },
+ ["RageOnAttackHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 2 Rage on Attack Hit" }, } },
+ ["RageOnAttackHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } },
+ ["RageOnAttackHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } },
+ ["RageOnAttackHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } },
+ ["RageOnAttackHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } },
+ ["RageOnAttackHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } },
+ ["RageOnAttackHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 3 Rage on Attack Hit" }, } },
+ ["RageOnAttackHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 4 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 4 Rage on Attack Hit" }, } },
+ ["RageOnAttackHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 4 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [2676601655] = { "Gain 4 Rage on Attack Hit" }, } },
+ ["ChanceToIntimidateOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "15% chance to Intimidate Enemies for 4 seconds on Hit" }, } },
+ ["ChanceToIntimidateOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "20% chance to Intimidate Enemies for 4 seconds on Hit" }, } },
+ ["ChanceToIntimidateOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "25% chance to Intimidate Enemies for 4 seconds on Hit" }, } },
+ ["ChanceToIntimidateOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "30% chance to Intimidate Enemies for 4 seconds on Hit" }, } },
+ ["ChanceToIntimidateOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "35% chance to Intimidate Enemies for 4 seconds on Hit" }, } },
+ ["ChanceToIntimidateOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [78985352] = { "40% chance to Intimidate Enemies for 4 seconds on Hit" }, } },
+ ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [78985352] = { "45% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } },
+ ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "50% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } },
+ ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "55% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } },
+ ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "60% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } },
+ ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "65% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } },
+ ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [78985352] = { "70% chance to Intimidate Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } },
+ ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [78985352] = { "75% chance to Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } },
+ ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [78985352] = { "80% chance to Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } },
+ ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [78985352] = { "85% chance to Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } },
+ ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [78985352] = { "90% chance to Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } },
+ ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [78985352] = { "95% chance to Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } },
+ ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [78985352] = { "Intimidate Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } },
+ ["ChanceToUnnerveOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "15% chance to Unnerve Enemies for 4 seconds on Hit" }, } },
+ ["ChanceToUnnerveOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "20% chance to Unnerve Enemies for 4 seconds on Hit" }, } },
+ ["ChanceToUnnerveOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "25% chance to Unnerve Enemies for 4 seconds on Hit" }, } },
+ ["ChanceToUnnerveOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "30% chance to Unnerve Enemies for 4 seconds on Hit" }, } },
+ ["ChanceToUnnerveOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "35% chance to Unnerve Enemies for 4 seconds on Hit" }, } },
+ ["ChanceToUnnerveOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [763611529] = { "40% chance to Unnerve Enemies for 4 seconds on Hit" }, } },
+ ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [763611529] = { "45% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } },
+ ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "50% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } },
+ ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "55% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } },
+ ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "60% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } },
+ ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "65% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } },
+ ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [763611529] = { "70% chance to Unnerve Enemies for 4 seconds on Hit" }, [4074358700] = { "" }, } },
+ ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [763611529] = { "75% chance to Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } },
+ ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [763611529] = { "80% chance to Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } },
+ ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [763611529] = { "85% chance to Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } },
+ ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [763611529] = { "90% chance to Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } },
+ ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [763611529] = { "95% chance to Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } },
+ ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [763611529] = { "Unnerve Enemies for 4 seconds on Hit" }, [3283106665] = { "" }, } },
+ ["ChanceToSuppressSpellsEldritchImplicit1"] = { type = "Eater", affix = "", "+5% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+5% chance to Suppress Spell Damage" }, } },
+ ["ChanceToSuppressSpellsEldritchImplicit2"] = { type = "Eater", affix = "", "+6% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+6% chance to Suppress Spell Damage" }, } },
+ ["ChanceToSuppressSpellsEldritchImplicit3"] = { type = "Eater", affix = "", "+7% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+7% chance to Suppress Spell Damage" }, } },
+ ["ChanceToSuppressSpellsEldritchImplicit4"] = { type = "Eater", affix = "", "+8% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+8% chance to Suppress Spell Damage" }, } },
+ ["ChanceToSuppressSpellsEldritchImplicit5"] = { type = "Eater", affix = "", "+9% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+9% chance to Suppress Spell Damage" }, } },
+ ["ChanceToSuppressSpellsEldritchImplicit6"] = { type = "Eater", affix = "", "+10% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+10% chance to Suppress Spell Damage" }, } },
+ ["ChanceToSuppressSpellsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +7% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+7% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } },
+ ["ChanceToSuppressSpellsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +8% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+8% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } },
+ ["ChanceToSuppressSpellsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +9% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+9% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } },
+ ["ChanceToSuppressSpellsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +10% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+10% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } },
+ ["ChanceToSuppressSpellsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +11% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+11% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } },
+ ["ChanceToSuppressSpellsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +12% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+12% chance to Suppress Spell Damage" }, [4074358700] = { "" }, } },
+ ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +10% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+10% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } },
+ ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +11% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+11% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } },
+ ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +12% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+12% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } },
+ ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +13% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+13% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } },
+ ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +14% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+14% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } },
+ ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +15% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+15% chance to Suppress Spell Damage" }, [3283106665] = { "" }, } },
+ ["EvasionRatingHelmetBootsEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(33-35)% increased Evasion Rating from Equipped Helmet and Boots" }, } },
+ ["EvasionRatingHelmetBootsEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(36-38)% increased Evasion Rating from Equipped Helmet and Boots" }, } },
+ ["EvasionRatingHelmetBootsEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(39-41)% increased Evasion Rating from Equipped Helmet and Boots" }, } },
+ ["EvasionRatingHelmetBootsEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(42-44)% increased Evasion Rating from Equipped Helmet and Boots" }, } },
+ ["EvasionRatingHelmetBootsEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(45-47)% increased Evasion Rating from Equipped Helmet and Boots" }, } },
+ ["EvasionRatingHelmetBootsEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [623823763] = { "(48-50)% increased Evasion Rating from Equipped Helmet and Boots" }, } },
+ ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(42-44)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } },
+ ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(45-47)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } },
+ ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(48-50)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } },
+ ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(51-53)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } },
+ ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(54-57)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } },
+ ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(58-61)% increased Evasion Rating from Equipped Helmet and Boots" }, [4074358700] = { "" }, } },
+ ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(51-53)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } },
+ ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(54-56)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } },
+ ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(57-59)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } },
+ ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(60-62)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } },
+ ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(63-66)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } },
+ ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [623823763] = { "(67-70)% increased Evasion Rating from Equipped Helmet and Boots" }, [3283106665] = { "" }, } },
+ ["FireExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -11% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -11% to Fire Resistance" }, } },
+ ["FireExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -12% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -12% to Fire Resistance" }, } },
+ ["FireExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -13% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -13% to Fire Resistance" }, } },
+ ["FireExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -14% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -14% to Fire Resistance" }, } },
+ ["FireExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -15% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -15% to Fire Resistance" }, } },
+ ["FireExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -16% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1309840354] = { "Inflict Fire Exposure on Hit, applying -16% to Fire Resistance" }, } },
+ ["FireExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -14% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -14% to Fire Resistance" }, } },
+ ["FireExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -15% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -15% to Fire Resistance" }, } },
+ ["FireExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -16% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -16% to Fire Resistance" }, } },
+ ["FireExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -17% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -17% to Fire Resistance" }, } },
+ ["FireExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -18% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -18% to Fire Resistance" }, } },
+ ["FireExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -19% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -19% to Fire Resistance" }, } },
+ ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -17% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -17% to Fire Resistance" }, } },
+ ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -18% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -18% to Fire Resistance" }, } },
+ ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -19% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -19% to Fire Resistance" }, } },
+ ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -20% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -20% to Fire Resistance" }, } },
+ ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -21% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -21% to Fire Resistance" }, } },
+ ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -22% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [1309840354] = { "Inflict Fire Exposure on Hit, applying -22% to Fire Resistance" }, } },
+ ["ColdExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -11% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -11% to Cold Resistance" }, } },
+ ["ColdExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -12% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -12% to Cold Resistance" }, } },
+ ["ColdExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -13% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -13% to Cold Resistance" }, } },
+ ["ColdExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -14% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -14% to Cold Resistance" }, } },
+ ["ColdExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -15% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -15% to Cold Resistance" }, } },
+ ["ColdExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -16% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3005701891] = { "Inflict Cold Exposure on Hit, applying -16% to Cold Resistance" }, } },
+ ["ColdExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -14% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -14% to Cold Resistance" }, } },
+ ["ColdExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -15% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -15% to Cold Resistance" }, } },
+ ["ColdExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -16% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -16% to Cold Resistance" }, } },
+ ["ColdExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -17% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -17% to Cold Resistance" }, } },
+ ["ColdExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -18% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -18% to Cold Resistance" }, } },
+ ["ColdExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -19% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -19% to Cold Resistance" }, } },
+ ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -17% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -17% to Cold Resistance" }, } },
+ ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -18% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -18% to Cold Resistance" }, } },
+ ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -19% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -19% to Cold Resistance" }, } },
+ ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -20% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -20% to Cold Resistance" }, } },
+ ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -21% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -21% to Cold Resistance" }, } },
+ ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -22% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3005701891] = { "Inflict Cold Exposure on Hit, applying -22% to Cold Resistance" }, } },
+ ["LightningExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -11% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -11% to Lightning Resistance" }, } },
+ ["LightningExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -12% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -12% to Lightning Resistance" }, } },
+ ["LightningExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -13% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -13% to Lightning Resistance" }, } },
+ ["LightningExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance" }, } },
+ ["LightningExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance" }, } },
+ ["LightningExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance" }, } },
+ ["LightningExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance" }, [4074358700] = { "" }, } },
+ ["LightningExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance" }, [4074358700] = { "" }, } },
+ ["LightningExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance" }, [4074358700] = { "" }, } },
+ ["LightningExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance" }, [4074358700] = { "" }, } },
+ ["LightningExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance" }, [4074358700] = { "" }, } },
+ ["LightningExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance" }, [4074358700] = { "" }, } },
+ ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance" }, [3283106665] = { "" }, } },
+ ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance" }, [3283106665] = { "" }, } },
+ ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance" }, [3283106665] = { "" }, } },
+ ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -20% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -20% to Lightning Resistance" }, [3283106665] = { "" }, } },
+ ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -21% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -21% to Lightning Resistance" }, [3283106665] = { "" }, } },
+ ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -22% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [981753179] = { "Inflict Lightning Exposure on Hit, applying -22% to Lightning Resistance" }, [3283106665] = { "" }, } },
+ ["ArmourPenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Hits have (30-34)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (30-34)% chance to ignore Enemy Physical Damage Reduction" }, } },
+ ["ArmourPenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Hits have (35-38)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (35-38)% chance to ignore Enemy Physical Damage Reduction" }, } },
+ ["ArmourPenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Hits have (39-42)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (39-42)% chance to ignore Enemy Physical Damage Reduction" }, } },
+ ["ArmourPenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction" }, } },
+ ["ArmourPenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction" }, } },
+ ["ArmourPenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Hits have (49-50)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (49-50)% chance to ignore Enemy Physical Damage Reduction" }, } },
+ ["ArmourPenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } },
+ ["ArmourPenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } },
+ ["ArmourPenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (49-52)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (49-52)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } },
+ ["ArmourPenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } },
+ ["ArmourPenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } },
+ ["ArmourPenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction" }, [4074358700] = { "" }, } },
+ ["ArmourPenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } },
+ ["ArmourPenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } },
+ ["ArmourPenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } },
+ ["ArmourPenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (64-68)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (64-68)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } },
+ ["ArmourPenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (69-73)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (69-73)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } },
+ ["ArmourPenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (74-78)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (74-78)% chance to ignore Enemy Physical Damage Reduction" }, [3283106665] = { "" }, } },
+ ["WitherExpireSpeedEldritchImplicit1"] = { type = "Eater", affix = "", "Withered you Inflict expires (10-12)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (10-12)% slower" }, } },
+ ["WitherExpireSpeedEldritchImplicit2"] = { type = "Eater", affix = "", "Withered you Inflict expires (13-15)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (13-15)% slower" }, } },
+ ["WitherExpireSpeedEldritchImplicit3"] = { type = "Eater", affix = "", "Withered you Inflict expires (16-18)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (16-18)% slower" }, } },
+ ["WitherExpireSpeedEldritchImplicit4"] = { type = "Eater", affix = "", "Withered you Inflict expires (19-20)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (19-20)% slower" }, } },
+ ["WitherExpireSpeedEldritchImplicit5"] = { type = "Eater", affix = "", "Withered you Inflict expires (21-22)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (21-22)% slower" }, } },
+ ["WitherExpireSpeedEldritchImplicit6"] = { type = "Eater", affix = "", "Withered you Inflict expires (23-24)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (23-24)% slower" }, } },
+ ["WitherExpireSpeedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (19-21)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (19-21)% slower" }, [4074358700] = { "" }, } },
+ ["WitherExpireSpeedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (22-24)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (22-24)% slower" }, [4074358700] = { "" }, } },
+ ["WitherExpireSpeedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (25-27)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (25-27)% slower" }, [4074358700] = { "" }, } },
+ ["WitherExpireSpeedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (28-29)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (28-29)% slower" }, [4074358700] = { "" }, } },
+ ["WitherExpireSpeedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (30-31)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (30-31)% slower" }, [4074358700] = { "" }, } },
+ ["WitherExpireSpeedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (32-33)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (32-33)% slower" }, [4074358700] = { "" }, } },
+ ["WitherExpireSpeedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (28-30)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (28-30)% slower" }, [3283106665] = { "" }, } },
+ ["WitherExpireSpeedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (31-33)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (31-33)% slower" }, [3283106665] = { "" }, } },
+ ["WitherExpireSpeedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (34-36)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (34-36)% slower" }, [3283106665] = { "" }, } },
+ ["WitherExpireSpeedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (37-39)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (37-39)% slower" }, [3283106665] = { "" }, } },
+ ["WitherExpireSpeedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (40-42)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (40-42)% slower" }, [3283106665] = { "" }, } },
+ ["WitherExpireSpeedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (43-45)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, tradeHashes = { [1625982517] = { "Withered you Inflict expires (43-45)% slower" }, [3283106665] = { "" }, } },
+ ["ConvertPhysicalToFireEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "10% of Physical Damage Converted to Fire Damage" }, } },
+ ["ConvertPhysicalToFireEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "15% of Physical Damage Converted to Fire Damage" }, } },
+ ["ConvertPhysicalToFireEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "20% of Physical Damage Converted to Fire Damage" }, } },
+ ["ConvertPhysicalToFireEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, } },
+ ["ConvertPhysicalToFireEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "30% of Physical Damage Converted to Fire Damage" }, } },
+ ["ConvertPhysicalToFireEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "35% of Physical Damage Converted to Fire Damage" }, } },
+ ["ConvertPhysicalToFireEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } },
+ ["ConvertPhysicalToFireEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "30% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } },
+ ["ConvertPhysicalToFireEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "35% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } },
+ ["ConvertPhysicalToFireEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "40% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } },
+ ["ConvertPhysicalToFireEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "45% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } },
+ ["ConvertPhysicalToFireEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "50% of Physical Damage Converted to Fire Damage" }, [4074358700] = { "" }, } },
+ ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "40% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } },
+ ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "45% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } },
+ ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "50% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } },
+ ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "55% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } },
+ ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "60% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } },
+ ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [1533563525] = { "65% of Physical Damage Converted to Fire Damage" }, [3283106665] = { "" }, } },
+ ["ConvertPhysicalToColdEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "10% of Physical Damage Converted to Cold Damage" }, } },
+ ["ConvertPhysicalToColdEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "15% of Physical Damage Converted to Cold Damage" }, } },
+ ["ConvertPhysicalToColdEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "20% of Physical Damage Converted to Cold Damage" }, } },
+ ["ConvertPhysicalToColdEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, } },
+ ["ConvertPhysicalToColdEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "30% of Physical Damage Converted to Cold Damage" }, } },
+ ["ConvertPhysicalToColdEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "35% of Physical Damage Converted to Cold Damage" }, } },
+ ["ConvertPhysicalToColdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } },
+ ["ConvertPhysicalToColdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "30% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } },
+ ["ConvertPhysicalToColdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "35% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } },
+ ["ConvertPhysicalToColdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "40% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } },
+ ["ConvertPhysicalToColdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "45% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } },
+ ["ConvertPhysicalToColdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "50% of Physical Damage Converted to Cold Damage" }, [4074358700] = { "" }, } },
+ ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "40% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } },
+ ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "45% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } },
+ ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "50% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } },
+ ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "55% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } },
+ ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "60% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } },
+ ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2133341901] = { "65% of Physical Damage Converted to Cold Damage" }, [3283106665] = { "" }, } },
+ ["ConvertPhysicalToLightningEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "10% of Physical Damage Converted to Lightning Damage" }, } },
+ ["ConvertPhysicalToLightningEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "15% of Physical Damage Converted to Lightning Damage" }, } },
+ ["ConvertPhysicalToLightningEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "20% of Physical Damage Converted to Lightning Damage" }, } },
+ ["ConvertPhysicalToLightningEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } },
+ ["ConvertPhysicalToLightningEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "30% of Physical Damage Converted to Lightning Damage" }, } },
+ ["ConvertPhysicalToLightningEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "35% of Physical Damage Converted to Lightning Damage" }, } },
+ ["ConvertPhysicalToLightningEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } },
+ ["ConvertPhysicalToLightningEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "30% of Physical Damage Converted to Lightning Damage" }, } },
+ ["ConvertPhysicalToLightningEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "35% of Physical Damage Converted to Lightning Damage" }, } },
+ ["ConvertPhysicalToLightningEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "40% of Physical Damage Converted to Lightning Damage" }, } },
+ ["ConvertPhysicalToLightningEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "45% of Physical Damage Converted to Lightning Damage" }, } },
+ ["ConvertPhysicalToLightningEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3240769289] = { "50% of Physical Damage Converted to Lightning Damage" }, } },
+ ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "40% of Physical Damage Converted to Lightning Damage" }, } },
+ ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "45% of Physical Damage Converted to Lightning Damage" }, } },
+ ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "50% of Physical Damage Converted to Lightning Damage" }, } },
+ ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "55% of Physical Damage Converted to Lightning Damage" }, } },
+ ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "60% of Physical Damage Converted to Lightning Damage" }, } },
+ ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3240769289] = { "65% of Physical Damage Converted to Lightning Damage" }, } },
+ ["ConvertPhysicalToChaosEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "10% of Physical Damage Converted to Chaos Damage" }, } },
+ ["ConvertPhysicalToChaosEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "15% of Physical Damage Converted to Chaos Damage" }, } },
+ ["ConvertPhysicalToChaosEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "20% of Physical Damage Converted to Chaos Damage" }, } },
+ ["ConvertPhysicalToChaosEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "25% of Physical Damage Converted to Chaos Damage" }, } },
+ ["ConvertPhysicalToChaosEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "30% of Physical Damage Converted to Chaos Damage" }, } },
+ ["ConvertPhysicalToChaosEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "35% of Physical Damage Converted to Chaos Damage" }, } },
+ ["ConvertPhysicalToChaosEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "25% of Physical Damage Converted to Chaos Damage" }, } },
+ ["ConvertPhysicalToChaosEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "30% of Physical Damage Converted to Chaos Damage" }, } },
+ ["ConvertPhysicalToChaosEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "35% of Physical Damage Converted to Chaos Damage" }, } },
+ ["ConvertPhysicalToChaosEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "40% of Physical Damage Converted to Chaos Damage" }, } },
+ ["ConvertPhysicalToChaosEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "45% of Physical Damage Converted to Chaos Damage" }, } },
+ ["ConvertPhysicalToChaosEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [490098963] = { "50% of Physical Damage Converted to Chaos Damage" }, } },
+ ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "40% of Physical Damage Converted to Chaos Damage" }, } },
+ ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "45% of Physical Damage Converted to Chaos Damage" }, } },
+ ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "50% of Physical Damage Converted to Chaos Damage" }, } },
+ ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "55% of Physical Damage Converted to Chaos Damage" }, } },
+ ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "60% of Physical Damage Converted to Chaos Damage" }, } },
+ ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [490098963] = { "65% of Physical Damage Converted to Chaos Damage" }, } },
+ ["FireDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.2% of Fire Damage Leeched as Life" }, } },
+ ["FireDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.3% of Fire Damage Leeched as Life" }, } },
+ ["FireDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.4% of Fire Damage Leeched as Life" }, } },
+ ["FireDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.5% of Fire Damage Leeched as Life" }, } },
+ ["FireDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.6% of Fire Damage Leeched as Life" }, } },
+ ["FireDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1743742391] = { "0.7% of Fire Damage Leeched as Life" }, } },
+ ["FireDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.4% of Fire Damage Leeched as Life" }, } },
+ ["FireDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.5% of Fire Damage Leeched as Life" }, } },
+ ["FireDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.6% of Fire Damage Leeched as Life" }, } },
+ ["FireDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.7% of Fire Damage Leeched as Life" }, } },
+ ["FireDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.8% of Fire Damage Leeched as Life" }, } },
+ ["FireDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1743742391] = { "0.9% of Fire Damage Leeched as Life" }, } },
+ ["FireDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "0.6% of Fire Damage Leeched as Life" }, } },
+ ["FireDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "0.7% of Fire Damage Leeched as Life" }, } },
+ ["FireDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "0.8% of Fire Damage Leeched as Life" }, } },
+ ["FireDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "0.9% of Fire Damage Leeched as Life" }, } },
+ ["FireDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "1% of Fire Damage Leeched as Life" }, } },
+ ["FireDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1743742391] = { "1.1% of Fire Damage Leeched as Life" }, } },
+ ["ColdDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.2% of Cold Damage Leeched as Life" }, } },
+ ["ColdDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.3% of Cold Damage Leeched as Life" }, } },
+ ["ColdDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.4% of Cold Damage Leeched as Life" }, } },
+ ["ColdDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.5% of Cold Damage Leeched as Life" }, } },
+ ["ColdDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.6% of Cold Damage Leeched as Life" }, } },
+ ["ColdDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.7% of Cold Damage Leeched as Life" }, } },
+ ["ColdDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.4% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } },
+ ["ColdDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.5% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } },
+ ["ColdDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.6% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } },
+ ["ColdDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.7% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } },
+ ["ColdDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.8% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } },
+ ["ColdDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.9% of Cold Damage Leeched as Life" }, [4074358700] = { "" }, } },
+ ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.6% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } },
+ ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.7% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } },
+ ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.8% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } },
+ ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "0.9% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } },
+ ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "1% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } },
+ ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2459451600] = { "1.1% of Cold Damage Leeched as Life" }, [3283106665] = { "" }, } },
+ ["LightningDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.2% of Lightning Damage Leeched as Life" }, } },
+ ["LightningDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.3% of Lightning Damage Leeched as Life" }, } },
+ ["LightningDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.4% of Lightning Damage Leeched as Life" }, } },
+ ["LightningDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.5% of Lightning Damage Leeched as Life" }, } },
+ ["LightningDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.6% of Lightning Damage Leeched as Life" }, } },
+ ["LightningDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.7% of Lightning Damage Leeched as Life" }, } },
+ ["LightningDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.4% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } },
+ ["LightningDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.5% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } },
+ ["LightningDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.6% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } },
+ ["LightningDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.7% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } },
+ ["LightningDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.8% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } },
+ ["LightningDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.9% of Lightning Damage Leeched as Life" }, [4074358700] = { "" }, } },
+ ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.6% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } },
+ ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.7% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } },
+ ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.8% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } },
+ ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "0.9% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } },
+ ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "1% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } },
+ ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2696663331] = { "1.1% of Lightning Damage Leeched as Life" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.2% of Physical Damage Leeched as Life" }, } },
+ ["PhysicalDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.3% of Physical Damage Leeched as Life" }, } },
+ ["PhysicalDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.4% of Physical Damage Leeched as Life" }, } },
+ ["PhysicalDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.5% of Physical Damage Leeched as Life" }, } },
+ ["PhysicalDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.6% of Physical Damage Leeched as Life" }, } },
+ ["PhysicalDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.7% of Physical Damage Leeched as Life" }, } },
+ ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.4% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.5% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.6% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.7% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.8% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.9% of Physical Damage Leeched as Life" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.6% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.7% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.8% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "0.9% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "1% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [2508100173] = { "1.1% of Physical Damage Leeched as Life" }, [3283106665] = { "" }, } },
+ ["ChaosDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.2% of Chaos Damage Leeched as Life" }, } },
+ ["ChaosDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.3% of Chaos Damage Leeched as Life" }, } },
+ ["ChaosDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.4% of Chaos Damage Leeched as Life" }, } },
+ ["ChaosDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.5% of Chaos Damage Leeched as Life" }, } },
+ ["ChaosDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.6% of Chaos Damage Leeched as Life" }, } },
+ ["ChaosDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [2238792070] = { "0.7% of Chaos Damage Leeched as Life" }, } },
+ ["ChaosDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.4% of Chaos Damage Leeched as Life" }, } },
+ ["ChaosDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.5% of Chaos Damage Leeched as Life" }, } },
+ ["ChaosDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.6% of Chaos Damage Leeched as Life" }, } },
+ ["ChaosDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.7% of Chaos Damage Leeched as Life" }, } },
+ ["ChaosDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.8% of Chaos Damage Leeched as Life" }, } },
+ ["ChaosDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2238792070] = { "0.9% of Chaos Damage Leeched as Life" }, } },
+ ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "0.6% of Chaos Damage Leeched as Life" }, } },
+ ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "0.7% of Chaos Damage Leeched as Life" }, } },
+ ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "0.8% of Chaos Damage Leeched as Life" }, } },
+ ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "0.9% of Chaos Damage Leeched as Life" }, } },
+ ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "1% of Chaos Damage Leeched as Life" }, } },
+ ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2238792070] = { "1.1% of Chaos Damage Leeched as Life" }, } },
+ ["DamagePer100STREldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "3% increased Damage per 100 Strength" }, } },
+ ["DamagePer100STREldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "3% increased Damage per 100 Strength" }, } },
+ ["DamagePer100STREldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "3% increased Damage per 100 Strength" }, } },
+ ["DamagePer100STREldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "3% increased Damage per 100 Strength" }, } },
+ ["DamagePer100STREldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "4% increased Damage per 100 Strength" }, } },
+ ["DamagePer100STREldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [4274080377] = { "4% increased Damage per 100 Strength" }, } },
+ ["DamagePer100STREldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "4% increased Damage per 100 Strength" }, } },
+ ["DamagePer100STREldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "4% increased Damage per 100 Strength" }, } },
+ ["DamagePer100STREldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "4% increased Damage per 100 Strength" }, } },
+ ["DamagePer100STREldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "4% increased Damage per 100 Strength" }, } },
+ ["DamagePer100STREldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } },
+ ["DamagePer100STREldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } },
+ ["DamagePer100STREldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } },
+ ["DamagePer100STREldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } },
+ ["DamagePer100STREldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } },
+ ["DamagePer100STREldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "5% increased Damage per 100 Strength" }, } },
+ ["DamagePer100STREldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "6% increased Damage per 100 Strength" }, } },
+ ["DamagePer100STREldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [4274080377] = { "6% increased Damage per 100 Strength" }, } },
+ ["DamagePer100DEXEldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "3% increased Damage per 100 Dexterity" }, } },
+ ["DamagePer100DEXEldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "3% increased Damage per 100 Dexterity" }, } },
+ ["DamagePer100DEXEldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "3% increased Damage per 100 Dexterity" }, } },
+ ["DamagePer100DEXEldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "3% increased Damage per 100 Dexterity" }, } },
+ ["DamagePer100DEXEldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "4% increased Damage per 100 Dexterity" }, } },
+ ["DamagePer100DEXEldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [342670903] = { "4% increased Damage per 100 Dexterity" }, } },
+ ["DamagePer100DEXEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "4% increased Damage per 100 Dexterity" }, } },
+ ["DamagePer100DEXEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "4% increased Damage per 100 Dexterity" }, } },
+ ["DamagePer100DEXEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "4% increased Damage per 100 Dexterity" }, } },
+ ["DamagePer100DEXEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "4% increased Damage per 100 Dexterity" }, } },
+ ["DamagePer100DEXEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } },
+ ["DamagePer100DEXEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } },
+ ["DamagePer100DEXEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } },
+ ["DamagePer100DEXEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } },
+ ["DamagePer100DEXEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } },
+ ["DamagePer100DEXEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "5% increased Damage per 100 Dexterity" }, } },
+ ["DamagePer100DEXEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "6% increased Damage per 100 Dexterity" }, } },
+ ["DamagePer100DEXEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [342670903] = { "6% increased Damage per 100 Dexterity" }, } },
+ ["DamagePer100INTEldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "3% increased Damage per 100 Intelligence" }, } },
+ ["DamagePer100INTEldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "3% increased Damage per 100 Intelligence" }, } },
+ ["DamagePer100INTEldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "3% increased Damage per 100 Intelligence" }, } },
+ ["DamagePer100INTEldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "3% increased Damage per 100 Intelligence" }, } },
+ ["DamagePer100INTEldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, } },
+ ["DamagePer100INTEldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, } },
+ ["DamagePer100INTEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } },
+ ["DamagePer100INTEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } },
+ ["DamagePer100INTEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } },
+ ["DamagePer100INTEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "4% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } },
+ ["DamagePer100INTEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } },
+ ["DamagePer100INTEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [4074358700] = { "" }, } },
+ ["DamagePer100INTEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } },
+ ["DamagePer100INTEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } },
+ ["DamagePer100INTEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } },
+ ["DamagePer100INTEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "5% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } },
+ ["DamagePer100INTEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "6% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } },
+ ["DamagePer100INTEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, tradeHashes = { [3966666111] = { "6% increased Damage per 100 Intelligence" }, [3283106665] = { "" }, } },
+ ["BlindEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(6-7)% increased Blind Effect" }, } },
+ ["BlindEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(8-9)% increased Blind Effect" }, } },
+ ["BlindEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(10-11)% increased Blind Effect" }, } },
+ ["BlindEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(12-13)% increased Blind Effect" }, } },
+ ["BlindEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(14-15)% increased Blind Effect" }, } },
+ ["BlindEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(16-17)% increased Blind Effect" }, } },
+ ["BlindEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(12-13)% increased Blind Effect" }, } },
+ ["BlindEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(14-15)% increased Blind Effect" }, } },
+ ["BlindEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(16-17)% increased Blind Effect" }, } },
+ ["BlindEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(18-19)% increased Blind Effect" }, } },
+ ["BlindEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(20-21)% increased Blind Effect" }, } },
+ ["BlindEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1585769763] = { "(22-23)% increased Blind Effect" }, } },
+ ["BlindEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(18-19)% increased Blind Effect" }, } },
+ ["BlindEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(20-21)% increased Blind Effect" }, } },
+ ["BlindEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(22-23)% increased Blind Effect" }, } },
+ ["BlindEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(24-25)% increased Blind Effect" }, } },
+ ["BlindEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(26-27)% increased Blind Effect" }, } },
+ ["BlindEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1585769763] = { "(28-29)% increased Blind Effect" }, } },
+ ["ExertedAttackDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Exerted Attacks deal (20-22)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (20-22)% increased Damage" }, } },
+ ["ExertedAttackDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Exerted Attacks deal (23-25)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (23-25)% increased Damage" }, } },
+ ["ExertedAttackDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Exerted Attacks deal (26-28)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (26-28)% increased Damage" }, } },
+ ["ExertedAttackDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Exerted Attacks deal (29-31)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (29-31)% increased Damage" }, } },
+ ["ExertedAttackDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Exerted Attacks deal (32-33)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (32-33)% increased Damage" }, } },
+ ["ExertedAttackDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Exerted Attacks deal (34-35)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (34-35)% increased Damage" }, } },
+ ["ExertedAttackDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (26-28)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (26-28)% increased Damage" }, [4074358700] = { "" }, } },
+ ["ExertedAttackDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (29-31)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (29-31)% increased Damage" }, [4074358700] = { "" }, } },
+ ["ExertedAttackDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (32-34)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (32-34)% increased Damage" }, [4074358700] = { "" }, } },
+ ["ExertedAttackDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (35-37)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (35-37)% increased Damage" }, [4074358700] = { "" }, } },
+ ["ExertedAttackDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (38-39)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (38-39)% increased Damage" }, [4074358700] = { "" }, } },
+ ["ExertedAttackDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (40-41)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (40-41)% increased Damage" }, [4074358700] = { "" }, } },
+ ["ExertedAttackDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (32-34)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (32-34)% increased Damage" }, [3283106665] = { "" }, } },
+ ["ExertedAttackDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (35-37)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (35-37)% increased Damage" }, [3283106665] = { "" }, } },
+ ["ExertedAttackDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (38-40)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (38-40)% increased Damage" }, [3283106665] = { "" }, } },
+ ["ExertedAttackDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (41-43)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (41-43)% increased Damage" }, [3283106665] = { "" }, } },
+ ["ExertedAttackDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (44-45)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (44-45)% increased Damage" }, [3283106665] = { "" }, } },
+ ["ExertedAttackDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (46-47)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (46-47)% increased Damage" }, [3283106665] = { "" }, } },
+ ["GlobalMaimOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks have 15% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 15% chance to Maim on Hit" }, } },
+ ["GlobalMaimOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks have 20% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 20% chance to Maim on Hit" }, } },
+ ["GlobalMaimOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks have 25% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 25% chance to Maim on Hit" }, } },
+ ["GlobalMaimOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks have 30% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 30% chance to Maim on Hit" }, } },
+ ["GlobalMaimOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks have 35% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 35% chance to Maim on Hit" }, } },
+ ["GlobalMaimOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks have 40% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, tradeHashes = { [1510714129] = { "Attacks have 40% chance to Maim on Hit" }, } },
+ ["GlobalMaimOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 45% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 45% chance to Maim on Hit" }, } },
+ ["GlobalMaimOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 50% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 50% chance to Maim on Hit" }, } },
+ ["GlobalMaimOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 55% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 55% chance to Maim on Hit" }, } },
+ ["GlobalMaimOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 60% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 60% chance to Maim on Hit" }, } },
+ ["GlobalMaimOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 65% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 65% chance to Maim on Hit" }, } },
+ ["GlobalMaimOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 70% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1510714129] = { "Attacks have 70% chance to Maim on Hit" }, } },
+ ["GlobalMaimOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 75% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks have 75% chance to Maim on Hit" }, } },
+ ["GlobalMaimOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 80% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks have 80% chance to Maim on Hit" }, } },
+ ["GlobalMaimOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 85% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks have 85% chance to Maim on Hit" }, } },
+ ["GlobalMaimOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 90% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks have 90% chance to Maim on Hit" }, } },
+ ["GlobalMaimOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 95% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks have 95% chance to Maim on Hit" }, } },
+ ["GlobalMaimOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks always Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1510714129] = { "Attacks always Maim on Hit" }, } },
+ ["SpellsHinderOnHitChanceEldritchImplicit1"] = { type = "Eater", affix = "", "15% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "15% chance to Hinder Enemies on Hit with Spells" }, } },
+ ["SpellsHinderOnHitChanceEldritchImplicit2"] = { type = "Eater", affix = "", "20% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "20% chance to Hinder Enemies on Hit with Spells" }, } },
+ ["SpellsHinderOnHitChanceEldritchImplicit3"] = { type = "Eater", affix = "", "25% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "25% chance to Hinder Enemies on Hit with Spells" }, } },
+ ["SpellsHinderOnHitChanceEldritchImplicit4"] = { type = "Eater", affix = "", "30% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "30% chance to Hinder Enemies on Hit with Spells" }, } },
+ ["SpellsHinderOnHitChanceEldritchImplicit5"] = { type = "Eater", affix = "", "35% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "35% chance to Hinder Enemies on Hit with Spells" }, } },
+ ["SpellsHinderOnHitChanceEldritchImplicit6"] = { type = "Eater", affix = "", "40% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "40% chance to Hinder Enemies on Hit with Spells" }, } },
+ ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "45% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } },
+ ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "50% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } },
+ ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "55% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } },
+ ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "60% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } },
+ ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "65% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } },
+ ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "70% chance to Hinder Enemies on Hit with Spells" }, [4074358700] = { "" }, } },
+ ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "75% chance to Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } },
+ ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "80% chance to Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } },
+ ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "85% chance to Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } },
+ ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "90% chance to Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } },
+ ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "95% chance to Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } },
+ ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, tradeHashes = { [3002506763] = { "Hinder Enemies on Hit with Spells" }, [3283106665] = { "" }, } },
+ ["IncreasedAccuracyPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(9-10)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(9-10)% increased Global Accuracy Rating" }, } },
+ ["IncreasedAccuracyPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(11-12)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(11-12)% increased Global Accuracy Rating" }, } },
+ ["IncreasedAccuracyPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(13-14)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(13-14)% increased Global Accuracy Rating" }, } },
+ ["IncreasedAccuracyPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(15-16)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(15-16)% increased Global Accuracy Rating" }, } },
+ ["IncreasedAccuracyPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(17-18)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(17-18)% increased Global Accuracy Rating" }, } },
+ ["IncreasedAccuracyPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(19-20)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(19-20)% increased Global Accuracy Rating" }, } },
+ ["IncreasedAccuracyPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (13-14)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(13-14)% increased Global Accuracy Rating" }, } },
+ ["IncreasedAccuracyPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (15-16)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(15-16)% increased Global Accuracy Rating" }, } },
+ ["IncreasedAccuracyPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(17-18)% increased Global Accuracy Rating" }, } },
+ ["IncreasedAccuracyPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(19-20)% increased Global Accuracy Rating" }, } },
+ ["IncreasedAccuracyPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(21-22)% increased Global Accuracy Rating" }, } },
+ ["IncreasedAccuracyPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [624954515] = { "(23-24)% increased Global Accuracy Rating" }, } },
+ ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (17-18)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(17-18)% increased Global Accuracy Rating" }, } },
+ ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(19-20)% increased Global Accuracy Rating" }, } },
+ ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(21-22)% increased Global Accuracy Rating" }, } },
+ ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(23-24)% increased Global Accuracy Rating" }, } },
+ ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(25-26)% increased Global Accuracy Rating" }, } },
+ ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [624954515] = { "(27-28)% increased Global Accuracy Rating" }, } },
+ ["MarkEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(6-7)% increased Effect of your Marks" }, } },
+ ["MarkEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(8-9)% increased Effect of your Marks" }, } },
+ ["MarkEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(10-11)% increased Effect of your Marks" }, } },
+ ["MarkEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(12-13)% increased Effect of your Marks" }, } },
+ ["MarkEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(14-15)% increased Effect of your Marks" }, } },
+ ["MarkEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(16-17)% increased Effect of your Marks" }, } },
+ ["MarkEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(12-13)% increased Effect of your Marks" }, } },
+ ["MarkEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(14-15)% increased Effect of your Marks" }, } },
+ ["MarkEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(16-17)% increased Effect of your Marks" }, } },
+ ["MarkEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(18-19)% increased Effect of your Marks" }, } },
+ ["MarkEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(20-21)% increased Effect of your Marks" }, } },
+ ["MarkEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [803185500] = { "(22-23)% increased Effect of your Marks" }, } },
+ ["MarkEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(18-19)% increased Effect of your Marks" }, } },
+ ["MarkEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(20-21)% increased Effect of your Marks" }, } },
+ ["MarkEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(22-23)% increased Effect of your Marks" }, } },
+ ["MarkEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(24-25)% increased Effect of your Marks" }, } },
+ ["MarkEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(26-27)% increased Effect of your Marks" }, } },
+ ["MarkEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [803185500] = { "(28-29)% increased Effect of your Marks" }, } },
+ ["FlatAccuracyPerFrenzyChargeEldritchImplicit1"] = { type = "Eater", affix = "", "+(43-45) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(43-45) to Accuracy Rating per Frenzy Charge" }, } },
+ ["FlatAccuracyPerFrenzyChargeEldritchImplicit2"] = { type = "Eater", affix = "", "+(46-48) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(46-48) to Accuracy Rating per Frenzy Charge" }, } },
+ ["FlatAccuracyPerFrenzyChargeEldritchImplicit3"] = { type = "Eater", affix = "", "+(49-51) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(49-51) to Accuracy Rating per Frenzy Charge" }, } },
+ ["FlatAccuracyPerFrenzyChargeEldritchImplicit4"] = { type = "Eater", affix = "", "+(52-54) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(52-54) to Accuracy Rating per Frenzy Charge" }, } },
+ ["FlatAccuracyPerFrenzyChargeEldritchImplicit5"] = { type = "Eater", affix = "", "+(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(55-57) to Accuracy Rating per Frenzy Charge" }, } },
+ ["FlatAccuracyPerFrenzyChargeEldritchImplicit6"] = { type = "Eater", affix = "", "+(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [3126680545] = { "+(58-60) to Accuracy Rating per Frenzy Charge" }, } },
+ ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(49-51) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(49-51) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } },
+ ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(52-54) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(52-54) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } },
+ ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(55-57) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } },
+ ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(58-60) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } },
+ ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(61-63) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(61-63) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } },
+ ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(64-66) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(64-66) to Accuracy Rating per Frenzy Charge" }, [4074358700] = { "" }, } },
+ ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(55-57) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } },
+ ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(58-60) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } },
+ ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(61-63) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(61-63) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } },
+ ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(64-66) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(64-66) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } },
+ ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(67-69) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(67-69) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } },
+ ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(70-72) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, tradeHashes = { [3126680545] = { "+(70-72) to Accuracy Rating per Frenzy Charge" }, [3283106665] = { "" }, } },
+ ["AdditionalPierceEldritchImplicit1"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } },
+ ["AdditionalPierceEldritchImplicit2"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } },
+ ["AdditionalPierceEldritchImplicit3"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } },
+ ["AdditionalPierceEldritchImplicit4"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } },
+ ["AdditionalPierceEldritchImplicit5"] = { type = "Eater", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } },
+ ["AdditionalPierceEldritchImplicit6"] = { type = "Eater", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } },
+ ["AdditionalPierceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } },
+ ["AdditionalPierceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } },
+ ["AdditionalPierceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } },
+ ["AdditionalPierceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } },
+ ["AdditionalPierceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } },
+ ["AdditionalPierceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } },
+ ["AdditionalPierceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } },
+ ["AdditionalPierceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } },
+ ["AdditionalPierceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } },
+ ["AdditionalPierceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 3 additional Targets" }, } },
+ ["AdditionalPierceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 4 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 4 additional Targets" }, } },
+ ["AdditionalPierceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 4 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2067062068] = { "Projectiles Pierce 4 additional Targets" }, } },
+ ["PoisonOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "5% chance to Poison on Hit" }, } },
+ ["PoisonOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "10% chance to Poison on Hit" }, } },
+ ["PoisonOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "15% chance to Poison on Hit" }, } },
+ ["PoisonOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "20% chance to Poison on Hit" }, } },
+ ["PoisonOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "25% chance to Poison on Hit" }, } },
+ ["PoisonOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "30% chance to Poison on Hit" }, } },
+ ["PoisonOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "15% chance to Poison on Hit" }, } },
+ ["PoisonOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "20% chance to Poison on Hit" }, } },
+ ["PoisonOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "25% chance to Poison on Hit" }, } },
+ ["PoisonOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "30% chance to Poison on Hit" }, } },
+ ["PoisonOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "35% chance to Poison on Hit" }, } },
+ ["PoisonOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4074358700] = { "" }, [795138349] = { "40% chance to Poison on Hit" }, } },
+ ["PoisonOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "25% chance to Poison on Hit" }, } },
+ ["PoisonOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "30% chance to Poison on Hit" }, } },
+ ["PoisonOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "35% chance to Poison on Hit" }, } },
+ ["PoisonOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "40% chance to Poison on Hit" }, } },
+ ["PoisonOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "45% chance to Poison on Hit" }, } },
+ ["PoisonOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3283106665] = { "" }, [795138349] = { "50% chance to Poison on Hit" }, } },
+ ["ChanceToBleedEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks have 5% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 5% chance to cause Bleeding" }, } },
+ ["ChanceToBleedEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks have 10% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 10% chance to cause Bleeding" }, } },
+ ["ChanceToBleedEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks have 15% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 15% chance to cause Bleeding" }, } },
+ ["ChanceToBleedEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks have 20% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 20% chance to cause Bleeding" }, } },
+ ["ChanceToBleedEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } },
+ ["ChanceToBleedEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks have 30% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 30% chance to cause Bleeding" }, } },
+ ["ChanceToBleedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 15% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 15% chance to cause Bleeding" }, } },
+ ["ChanceToBleedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 20% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 20% chance to cause Bleeding" }, } },
+ ["ChanceToBleedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 25% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } },
+ ["ChanceToBleedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 30% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 30% chance to cause Bleeding" }, } },
+ ["ChanceToBleedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 35% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 35% chance to cause Bleeding" }, } },
+ ["ChanceToBleedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 40% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [3204820200] = { "Attacks have 40% chance to cause Bleeding" }, } },
+ ["ChanceToBleedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 25% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } },
+ ["ChanceToBleedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 30% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 30% chance to cause Bleeding" }, } },
+ ["ChanceToBleedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 35% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 35% chance to cause Bleeding" }, } },
+ ["ChanceToBleedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 40% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 40% chance to cause Bleeding" }, } },
+ ["ChanceToBleedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 45% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 45% chance to cause Bleeding" }, } },
+ ["ChanceToBleedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 50% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [3204820200] = { "Attacks have 50% chance to cause Bleeding" }, } },
+ ["ChanceToAggravateBleedEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "5% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
+ ["ChanceToAggravateBleedEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "10% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
+ ["ChanceToAggravateBleedEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "15% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
+ ["ChanceToAggravateBleedEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "20% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
+ ["ChanceToAggravateBleedEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "25% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
+ ["ChanceToAggravateBleedEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "30% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
+ ["ChanceToAggravateBleedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "15% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
+ ["ChanceToAggravateBleedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "20% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
+ ["ChanceToAggravateBleedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "25% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
+ ["ChanceToAggravateBleedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "30% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
+ ["ChanceToAggravateBleedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "35% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
+ ["ChanceToAggravateBleedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2705185939] = { "40% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
+ ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "25% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
+ ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "30% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
+ ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "35% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
+ ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "40% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
+ ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "45% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
+ ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2705185939] = { "50% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
+ ["AttackImpaleChanceEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "5% chance to Impale Enemies on Hit with Attacks" }, } },
+ ["AttackImpaleChanceEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "10% chance to Impale Enemies on Hit with Attacks" }, } },
+ ["AttackImpaleChanceEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "15% chance to Impale Enemies on Hit with Attacks" }, } },
+ ["AttackImpaleChanceEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "20% chance to Impale Enemies on Hit with Attacks" }, } },
+ ["AttackImpaleChanceEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "25% chance to Impale Enemies on Hit with Attacks" }, } },
+ ["AttackImpaleChanceEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "30% chance to Impale Enemies on Hit with Attacks" }, } },
+ ["AttackImpaleChanceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "15% chance to Impale Enemies on Hit with Attacks" }, } },
+ ["AttackImpaleChanceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "20% chance to Impale Enemies on Hit with Attacks" }, } },
+ ["AttackImpaleChanceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "25% chance to Impale Enemies on Hit with Attacks" }, } },
+ ["AttackImpaleChanceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "30% chance to Impale Enemies on Hit with Attacks" }, } },
+ ["AttackImpaleChanceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "35% chance to Impale Enemies on Hit with Attacks" }, } },
+ ["AttackImpaleChanceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [3739863694] = { "40% chance to Impale Enemies on Hit with Attacks" }, } },
+ ["AttackImpaleChanceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "25% chance to Impale Enemies on Hit with Attacks" }, } },
+ ["AttackImpaleChanceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "30% chance to Impale Enemies on Hit with Attacks" }, } },
+ ["AttackImpaleChanceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "35% chance to Impale Enemies on Hit with Attacks" }, } },
+ ["AttackImpaleChanceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "40% chance to Impale Enemies on Hit with Attacks" }, } },
+ ["AttackImpaleChanceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "45% chance to Impale Enemies on Hit with Attacks" }, } },
+ ["AttackImpaleChanceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [3739863694] = { "50% chance to Impale Enemies on Hit with Attacks" }, } },
+ ["IncreasedCastSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "8% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "9% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "10% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "11% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "12% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "13% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "12% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "13% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "14% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "15% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "16% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [4074358700] = { "" }, [2891184298] = { "17% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "16% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "17% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "18% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "19% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "20% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [3283106665] = { "" }, [2891184298] = { "21% increased Cast Speed" }, } },
+ ["SpellCriticalStrikeChanceEldritchImplicit1"] = { type = "Exarch", affix = "", "(28-30)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(28-30)% increased Spell Critical Strike Chance" }, } },
+ ["SpellCriticalStrikeChanceEldritchImplicit2"] = { type = "Exarch", affix = "", "(31-33)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(31-33)% increased Spell Critical Strike Chance" }, } },
+ ["SpellCriticalStrikeChanceEldritchImplicit3"] = { type = "Exarch", affix = "", "(34-36)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(34-36)% increased Spell Critical Strike Chance" }, } },
+ ["SpellCriticalStrikeChanceEldritchImplicit4"] = { type = "Exarch", affix = "", "(37-39)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(37-39)% increased Spell Critical Strike Chance" }, } },
+ ["SpellCriticalStrikeChanceEldritchImplicit5"] = { type = "Exarch", affix = "", "(40-42)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(40-42)% increased Spell Critical Strike Chance" }, } },
+ ["SpellCriticalStrikeChanceEldritchImplicit6"] = { type = "Exarch", affix = "", "(43-45)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(43-45)% increased Spell Critical Strike Chance" }, } },
+ ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(40-42)% increased Spell Critical Strike Chance" }, } },
+ ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(43-45)% increased Spell Critical Strike Chance" }, } },
+ ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(46-48)% increased Spell Critical Strike Chance" }, } },
+ ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(49-51)% increased Spell Critical Strike Chance" }, } },
+ ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(52-54)% increased Spell Critical Strike Chance" }, } },
+ ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [4074358700] = { "" }, [737908626] = { "(55-57)% increased Spell Critical Strike Chance" }, } },
+ ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(52-54)% increased Spell Critical Strike Chance" }, } },
+ ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(55-57)% increased Spell Critical Strike Chance" }, } },
+ ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(58-60)% increased Spell Critical Strike Chance" }, } },
+ ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(61-63)% increased Spell Critical Strike Chance" }, } },
+ ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(64-66)% increased Spell Critical Strike Chance" }, } },
+ ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [3283106665] = { "" }, [737908626] = { "(67-69)% increased Spell Critical Strike Chance" }, } },
+ ["SpellAddedFireDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (10-13) to (20-23) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-13) to (20-23) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-25) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-14) to (21-25) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (11-15) to (24-27) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (11-15) to (24-27) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (13-16) to (26-30) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-16) to (26-30) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (14-18) to (29-33) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-18) to (29-33) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (15-20) to (32-36) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (15-20) to (32-36) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (26-30) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-16) to (26-30) Fire Damage to Spells" }, [4074358700] = { "" }, } },
+ ["SpellAddedFireDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (29-33) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-18) to (29-33) Fire Damage to Spells" }, [4074358700] = { "" }, } },
+ ["SpellAddedFireDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (32-36) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (15-20) to (32-36) Fire Damage to Spells" }, [4074358700] = { "" }, } },
+ ["SpellAddedFireDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (17-22) to (34-40) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (17-22) to (34-40) Fire Damage to Spells" }, [4074358700] = { "" }, } },
+ ["SpellAddedFireDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (19-24) to (38-43) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-24) to (38-43) Fire Damage to Spells" }, [4074358700] = { "" }, } },
+ ["SpellAddedFireDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-27) to (41-48) Fire Damage to Spells" }, [4074358700] = { "" }, } },
+ ["SpellAddedFireDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (17-22) to (34-40) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (17-22) to (34-40) Fire Damage to Spells" }, [3283106665] = { "" }, } },
+ ["SpellAddedFireDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (19-24) to (38-43) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-24) to (38-43) Fire Damage to Spells" }, [3283106665] = { "" }, } },
+ ["SpellAddedFireDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-27) to (41-48) Fire Damage to Spells" }, [3283106665] = { "" }, } },
+ ["SpellAddedFireDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (23-31) to (47-55) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (23-31) to (47-55) Fire Damage to Spells" }, [3283106665] = { "" }, } },
+ ["SpellAddedFireDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (27-35) to (54-63) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (27-35) to (54-63) Fire Damage to Spells" }, [3283106665] = { "" }, } },
+ ["SpellAddedFireDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (31-40) to (63-72) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (31-40) to (63-72) Fire Damage to Spells" }, [3283106665] = { "" }, } },
+ ["SpellAddedColdDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (9-11) to (17-20) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (9-11) to (17-20) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (10-12) to (19-22) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (10-12) to (19-22) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-24) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (10-14) to (21-24) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (11-15) to (23-27) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (11-15) to (23-27) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (13-16) to (25-30) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (13-16) to (25-30) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (14-18) to (28-32) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (14-18) to (28-32) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-27) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (11-15) to (23-27) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-30) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (13-16) to (25-30) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (28-32) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (14-18) to (28-32) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (30-36) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (15-20) to (30-36) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (17-21) to (34-39) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (17-21) to (34-39) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (18-24) to (37-43) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [4074358700] = { "" }, [2469416729] = { "Adds (18-24) to (37-43) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-20) to (30-36) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (15-20) to (30-36) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (17-21) to (34-39) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (17-21) to (34-39) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-43) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (18-24) to (37-43) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (21-27) to (42-50) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (21-27) to (42-50) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (24-32) to (48-57) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (24-32) to (48-57) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (28-36) to (56-65) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3283106665] = { "" }, [2469416729] = { "Adds (28-36) to (56-65) Cold Damage to Spells" }, } },
+ ["SpellAddedLightningDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (2-4) to (34-36) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-4) to (34-36) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (2-4) to (37-40) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-4) to (37-40) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (2-4) to (41-44) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-4) to (41-44) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (2-5) to (45-48) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (45-48) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (2-5) to (50-53) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (50-53) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (2-6) to (54-59) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (54-59) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (45-48) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (45-48) Lightning Damage to Spells" }, [4074358700] = { "" }, } },
+ ["SpellAddedLightningDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (50-53) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (50-53) Lightning Damage to Spells" }, [4074358700] = { "" }, } },
+ ["SpellAddedLightningDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-6) to (54-59) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (54-59) Lightning Damage to Spells" }, [4074358700] = { "" }, } },
+ ["SpellAddedLightningDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-6) to (60-64) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-6) to (60-64) Lightning Damage to Spells" }, [4074358700] = { "" }, } },
+ ["SpellAddedLightningDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-7) to (66-70) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-7) to (66-70) Lightning Damage to Spells" }, [4074358700] = { "" }, } },
+ ["SpellAddedLightningDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-8) to (72-78) Lightning Damage to Spells" }, [4074358700] = { "" }, } },
+ ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-6) to (60-64) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-6) to (60-64) Lightning Damage to Spells" }, [3283106665] = { "" }, } },
+ ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-7) to (66-70) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-7) to (66-70) Lightning Damage to Spells" }, [3283106665] = { "" }, } },
+ ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-8) to (72-78) Lightning Damage to Spells" }, [3283106665] = { "" }, } },
+ ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (4-8) to (83-90) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-8) to (83-90) Lightning Damage to Spells" }, [3283106665] = { "" }, } },
+ ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (4-10) to (96-103) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-10) to (96-103) Lightning Damage to Spells" }, [3283106665] = { "" }, } },
+ ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (5-11) to (110-119) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-11) to (110-119) Lightning Damage to Spells" }, [3283106665] = { "" }, } },
+ ["SpellAddedPhysicalDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (8-10) to (15-18) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (8-10) to (15-18) Physical Damage to Spells" }, } },
+ ["SpellAddedPhysicalDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-20) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (8-11) to (17-20) Physical Damage to Spells" }, } },
+ ["SpellAddedPhysicalDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (9-12) to (19-22) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (9-12) to (19-22) Physical Damage to Spells" }, } },
+ ["SpellAddedPhysicalDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (10-13) to (21-24) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (10-13) to (21-24) Physical Damage to Spells" }, } },
+ ["SpellAddedPhysicalDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (11-15) to (23-26) Physical Damage to Spells" }, } },
+ ["SpellAddedPhysicalDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (13-16) to (25-29) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-16) to (25-29) Physical Damage to Spells" }, } },
+ ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (21-24) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (10-13) to (21-24) Physical Damage to Spells" }, [4074358700] = { "" }, } },
+ ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (11-15) to (23-26) Physical Damage to Spells" }, [4074358700] = { "" }, } },
+ ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-29) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-16) to (25-29) Physical Damage to Spells" }, [4074358700] = { "" }, } },
+ ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-18) to (28-32) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-18) to (28-32) Physical Damage to Spells" }, [4074358700] = { "" }, } },
+ ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-19) to (31-35) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (15-19) to (31-35) Physical Damage to Spells" }, [4074358700] = { "" }, } },
+ ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (16-22) to (33-39) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (16-22) to (33-39) Physical Damage to Spells" }, [4074358700] = { "" }, } },
+ ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (13-18) to (28-32) Physical Damage to Spells" }, [3283106665] = { "" }, } },
+ ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-19) to (31-35) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (15-19) to (31-35) Physical Damage to Spells" }, [3283106665] = { "" }, } },
+ ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-22) to (33-39) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (16-22) to (33-39) Physical Damage to Spells" }, [3283106665] = { "" }, } },
+ ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (19-25) to (39-44) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (19-25) to (39-44) Physical Damage to Spells" }, [3283106665] = { "" }, } },
+ ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (22-28) to (45-51) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (22-28) to (45-51) Physical Damage to Spells" }, [3283106665] = { "" }, } },
+ ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (25-33) to (51-59) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (25-33) to (51-59) Physical Damage to Spells" }, [3283106665] = { "" }, } },
+ ["SpellAddedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (7-10) to (15-17) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (7-10) to (15-17) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (8-10) to (16-19) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (8-10) to (16-19) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (9-11) to (18-20) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (9-11) to (18-20) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (10-13) to (20-23) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (10-13) to (20-23) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-25) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (10-14) to (21-25) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (11-15) to (24-27) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (11-15) to (24-27) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (20-23) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (10-13) to (20-23) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-14) to (21-25) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (10-14) to (21-25) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (24-27) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (11-15) to (24-27) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (26-30) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (13-16) to (26-30) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (29-33) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (14-18) to (29-33) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (32-36) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [4074358700] = { "" }, [2300399854] = { "Adds (15-20) to (32-36) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-16) to (26-30) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (13-16) to (26-30) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (14-18) to (29-33) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (14-18) to (29-33) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-20) to (32-36) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (15-20) to (32-36) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-23) to (36-41) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (18-23) to (36-41) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (20-27) to (41-48) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (20-27) to (41-48) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (23-31) to (47-55) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [3283106665] = { "" }, [2300399854] = { "Adds (23-31) to (47-55) Chaos Damage to Spells" }, } },
+ ["FireDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(7-8)% of Fire Damage taken Recouped as Life" }, } },
+ ["FireDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(9-10)% of Fire Damage taken Recouped as Life" }, } },
+ ["FireDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(11-12)% of Fire Damage taken Recouped as Life" }, } },
+ ["FireDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(13-14)% of Fire Damage taken Recouped as Life" }, } },
+ ["FireDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(15-16)% of Fire Damage taken Recouped as Life" }, } },
+ ["FireDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1742651309] = { "(17-18)% of Fire Damage taken Recouped as Life" }, } },
+ ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(13-14)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(15-16)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(17-18)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(19-20)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(21-22)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(23-24)% of Fire Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(19-20)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(21-22)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(23-24)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(25-26)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(27-28)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(29-30)% of Fire Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["ColdDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(7-8)% of Cold Damage taken Recouped as Life" }, } },
+ ["ColdDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(9-10)% of Cold Damage taken Recouped as Life" }, } },
+ ["ColdDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(11-12)% of Cold Damage taken Recouped as Life" }, } },
+ ["ColdDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(13-14)% of Cold Damage taken Recouped as Life" }, } },
+ ["ColdDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(15-16)% of Cold Damage taken Recouped as Life" }, } },
+ ["ColdDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3679418014] = { "(17-18)% of Cold Damage taken Recouped as Life" }, } },
+ ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(13-14)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(15-16)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(17-18)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(19-20)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(21-22)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(23-24)% of Cold Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(19-20)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(21-22)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(23-24)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(25-26)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(27-28)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(29-30)% of Cold Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["LightningDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(7-8)% of Lightning Damage taken Recouped as Life" }, } },
+ ["LightningDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(9-10)% of Lightning Damage taken Recouped as Life" }, } },
+ ["LightningDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(11-12)% of Lightning Damage taken Recouped as Life" }, } },
+ ["LightningDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(13-14)% of Lightning Damage taken Recouped as Life" }, } },
+ ["LightningDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(15-16)% of Lightning Damage taken Recouped as Life" }, } },
+ ["LightningDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [2970621759] = { "(17-18)% of Lightning Damage taken Recouped as Life" }, } },
+ ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(13-14)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(15-16)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(17-18)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(19-20)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(21-22)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(23-24)% of Lightning Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(19-20)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(21-22)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(23-24)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(25-26)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(27-28)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(29-30)% of Lightning Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(7-8)% of Physical Damage taken Recouped as Life" }, } },
+ ["PhysicalDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(9-10)% of Physical Damage taken Recouped as Life" }, } },
+ ["PhysicalDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(11-12)% of Physical Damage taken Recouped as Life" }, } },
+ ["PhysicalDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(13-14)% of Physical Damage taken Recouped as Life" }, } },
+ ["PhysicalDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(15-16)% of Physical Damage taken Recouped as Life" }, } },
+ ["PhysicalDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4021566756] = { "(17-18)% of Physical Damage taken Recouped as Life" }, } },
+ ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(13-14)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(15-16)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(17-18)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(19-20)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(21-22)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(23-24)% of Physical Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(19-20)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(21-22)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(23-24)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(25-26)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(27-28)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [4021566756] = { "(29-30)% of Physical Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["CurseEffectFlammabilityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "10% increased Flammability Curse Effect" }, } },
+ ["CurseEffectFlammabilityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "11% increased Flammability Curse Effect" }, } },
+ ["CurseEffectFlammabilityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "12% increased Flammability Curse Effect" }, } },
+ ["CurseEffectFlammabilityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "13% increased Flammability Curse Effect" }, } },
+ ["CurseEffectFlammabilityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "14% increased Flammability Curse Effect" }, } },
+ ["CurseEffectFlammabilityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [282417259] = { "15% increased Flammability Curse Effect" }, } },
+ ["CurseEffectFlammabilityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "14% increased Flammability Curse Effect" }, } },
+ ["CurseEffectFlammabilityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "15% increased Flammability Curse Effect" }, } },
+ ["CurseEffectFlammabilityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "16% increased Flammability Curse Effect" }, } },
+ ["CurseEffectFlammabilityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "17% increased Flammability Curse Effect" }, } },
+ ["CurseEffectFlammabilityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "18% increased Flammability Curse Effect" }, } },
+ ["CurseEffectFlammabilityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [282417259] = { "19% increased Flammability Curse Effect" }, } },
+ ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "18% increased Flammability Curse Effect" }, } },
+ ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "19% increased Flammability Curse Effect" }, } },
+ ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "20% increased Flammability Curse Effect" }, } },
+ ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "21% increased Flammability Curse Effect" }, } },
+ ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "22% increased Flammability Curse Effect" }, } },
+ ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [282417259] = { "23% increased Flammability Curse Effect" }, } },
+ ["CurseEffectFrostbiteEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "10% increased Frostbite Curse Effect" }, } },
+ ["CurseEffectFrostbiteEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "11% increased Frostbite Curse Effect" }, } },
+ ["CurseEffectFrostbiteEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "12% increased Frostbite Curse Effect" }, } },
+ ["CurseEffectFrostbiteEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "13% increased Frostbite Curse Effect" }, } },
+ ["CurseEffectFrostbiteEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "14% increased Frostbite Curse Effect" }, } },
+ ["CurseEffectFrostbiteEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1443215722] = { "15% increased Frostbite Curse Effect" }, } },
+ ["CurseEffectFrostbiteEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "14% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectFrostbiteEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "15% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectFrostbiteEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "16% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectFrostbiteEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "17% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectFrostbiteEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "18% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectFrostbiteEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "19% increased Frostbite Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "18% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "19% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "20% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "21% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "22% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1443215722] = { "23% increased Frostbite Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectConductivityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "10% increased Conductivity Curse Effect" }, } },
+ ["CurseEffectConductivityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "11% increased Conductivity Curse Effect" }, } },
+ ["CurseEffectConductivityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "12% increased Conductivity Curse Effect" }, } },
+ ["CurseEffectConductivityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "13% increased Conductivity Curse Effect" }, } },
+ ["CurseEffectConductivityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "14% increased Conductivity Curse Effect" }, } },
+ ["CurseEffectConductivityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3395908304] = { "15% increased Conductivity Curse Effect" }, } },
+ ["CurseEffectConductivityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "14% increased Conductivity Curse Effect" }, } },
+ ["CurseEffectConductivityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "15% increased Conductivity Curse Effect" }, } },
+ ["CurseEffectConductivityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "16% increased Conductivity Curse Effect" }, } },
+ ["CurseEffectConductivityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "17% increased Conductivity Curse Effect" }, } },
+ ["CurseEffectConductivityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "18% increased Conductivity Curse Effect" }, } },
+ ["CurseEffectConductivityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [3395908304] = { "19% increased Conductivity Curse Effect" }, } },
+ ["CurseEffectConductivityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "18% increased Conductivity Curse Effect" }, } },
+ ["CurseEffectConductivityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "19% increased Conductivity Curse Effect" }, } },
+ ["CurseEffectConductivityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "20% increased Conductivity Curse Effect" }, } },
+ ["CurseEffectConductivityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "21% increased Conductivity Curse Effect" }, } },
+ ["CurseEffectConductivityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "22% increased Conductivity Curse Effect" }, } },
+ ["CurseEffectConductivityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [3395908304] = { "23% increased Conductivity Curse Effect" }, } },
+ ["CurseEffectVulnerabilityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "10% increased Vulnerability Curse Effect" }, } },
+ ["CurseEffectVulnerabilityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "11% increased Vulnerability Curse Effect" }, } },
+ ["CurseEffectVulnerabilityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "12% increased Vulnerability Curse Effect" }, } },
+ ["CurseEffectVulnerabilityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "13% increased Vulnerability Curse Effect" }, } },
+ ["CurseEffectVulnerabilityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "14% increased Vulnerability Curse Effect" }, } },
+ ["CurseEffectVulnerabilityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1065909420] = { "15% increased Vulnerability Curse Effect" }, } },
+ ["CurseEffectVulnerabilityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "14% increased Vulnerability Curse Effect" }, } },
+ ["CurseEffectVulnerabilityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "15% increased Vulnerability Curse Effect" }, } },
+ ["CurseEffectVulnerabilityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "16% increased Vulnerability Curse Effect" }, } },
+ ["CurseEffectVulnerabilityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "17% increased Vulnerability Curse Effect" }, } },
+ ["CurseEffectVulnerabilityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "18% increased Vulnerability Curse Effect" }, } },
+ ["CurseEffectVulnerabilityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [4074358700] = { "" }, [1065909420] = { "19% increased Vulnerability Curse Effect" }, } },
+ ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "18% increased Vulnerability Curse Effect" }, } },
+ ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "19% increased Vulnerability Curse Effect" }, } },
+ ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "20% increased Vulnerability Curse Effect" }, } },
+ ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "21% increased Vulnerability Curse Effect" }, } },
+ ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "22% increased Vulnerability Curse Effect" }, } },
+ ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3283106665] = { "" }, [1065909420] = { "23% increased Vulnerability Curse Effect" }, } },
+ ["CurseEffectElementalWeaknessEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "10% increased Elemental Weakness Curse Effect" }, } },
+ ["CurseEffectElementalWeaknessEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "11% increased Elemental Weakness Curse Effect" }, } },
+ ["CurseEffectElementalWeaknessEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "12% increased Elemental Weakness Curse Effect" }, } },
+ ["CurseEffectElementalWeaknessEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "13% increased Elemental Weakness Curse Effect" }, } },
+ ["CurseEffectElementalWeaknessEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "14% increased Elemental Weakness Curse Effect" }, } },
+ ["CurseEffectElementalWeaknessEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3348324479] = { "15% increased Elemental Weakness Curse Effect" }, } },
+ ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "14% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "15% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "16% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "17% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "18% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "19% increased Elemental Weakness Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "18% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "19% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "20% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "21% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "22% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3348324479] = { "23% increased Elemental Weakness Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectDespairEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "10% increased Despair Curse Effect" }, } },
+ ["CurseEffectDespairEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "11% increased Despair Curse Effect" }, } },
+ ["CurseEffectDespairEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "12% increased Despair Curse Effect" }, } },
+ ["CurseEffectDespairEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "13% increased Despair Curse Effect" }, } },
+ ["CurseEffectDespairEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "14% increased Despair Curse Effect" }, } },
+ ["CurseEffectDespairEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3185156108] = { "15% increased Despair Curse Effect" }, } },
+ ["CurseEffectDespairEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "14% increased Despair Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectDespairEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "15% increased Despair Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectDespairEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "16% increased Despair Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectDespairEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "17% increased Despair Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectDespairEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "18% increased Despair Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectDespairEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "19% increased Despair Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectDespairEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "18% increased Despair Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectDespairEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "19% increased Despair Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectDespairEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "20% increased Despair Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectDespairEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "21% increased Despair Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectDespairEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "22% increased Despair Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectDespairEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3185156108] = { "23% increased Despair Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectTemporalChainsEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "10% increased Temporal Chains Curse Effect" }, } },
+ ["CurseEffectTemporalChainsEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "11% increased Temporal Chains Curse Effect" }, } },
+ ["CurseEffectTemporalChainsEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "12% increased Temporal Chains Curse Effect" }, } },
+ ["CurseEffectTemporalChainsEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "13% increased Temporal Chains Curse Effect" }, } },
+ ["CurseEffectTemporalChainsEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "14% increased Temporal Chains Curse Effect" }, } },
+ ["CurseEffectTemporalChainsEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1662974426] = { "15% increased Temporal Chains Curse Effect" }, } },
+ ["CurseEffectTemporalChainsEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "14% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectTemporalChainsEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "15% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectTemporalChainsEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "16% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectTemporalChainsEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "17% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectTemporalChainsEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "18% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectTemporalChainsEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "19% increased Temporal Chains Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "18% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "19% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "20% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "21% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "22% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [1662974426] = { "23% increased Temporal Chains Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectEnfeebleEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "10% increased Enfeeble Curse Effect" }, } },
+ ["CurseEffectEnfeebleEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "11% increased Enfeeble Curse Effect" }, } },
+ ["CurseEffectEnfeebleEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "12% increased Enfeeble Curse Effect" }, } },
+ ["CurseEffectEnfeebleEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "13% increased Enfeeble Curse Effect" }, } },
+ ["CurseEffectEnfeebleEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "14% increased Enfeeble Curse Effect" }, } },
+ ["CurseEffectEnfeebleEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3293830776] = { "15% increased Enfeeble Curse Effect" }, } },
+ ["CurseEffectEnfeebleEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "14% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectEnfeebleEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "15% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectEnfeebleEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "16% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectEnfeebleEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "17% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectEnfeebleEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "18% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectEnfeebleEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "19% increased Enfeeble Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "18% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "19% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "20% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "21% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "22% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [3293830776] = { "23% increased Enfeeble Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectPunishmentEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "10% increased Punishment Curse Effect" }, } },
+ ["CurseEffectPunishmentEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "11% increased Punishment Curse Effect" }, } },
+ ["CurseEffectPunishmentEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "12% increased Punishment Curse Effect" }, } },
+ ["CurseEffectPunishmentEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "13% increased Punishment Curse Effect" }, } },
+ ["CurseEffectPunishmentEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "14% increased Punishment Curse Effect" }, } },
+ ["CurseEffectPunishmentEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2844206732] = { "15% increased Punishment Curse Effect" }, } },
+ ["CurseEffectPunishmentEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "14% increased Punishment Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectPunishmentEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "15% increased Punishment Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectPunishmentEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "16% increased Punishment Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectPunishmentEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "17% increased Punishment Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectPunishmentEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "18% increased Punishment Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectPunishmentEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "19% increased Punishment Curse Effect" }, [4074358700] = { "" }, } },
+ ["CurseEffectPunishmentEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "18% increased Punishment Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectPunishmentEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "19% increased Punishment Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectPunishmentEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "20% increased Punishment Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectPunishmentEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "21% increased Punishment Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectPunishmentEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "22% increased Punishment Curse Effect" }, [3283106665] = { "" }, } },
+ ["CurseEffectPunishmentEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, tradeHashes = { [2844206732] = { "23% increased Punishment Curse Effect" }, [3283106665] = { "" }, } },
+ ["ReducedAttackManaCostEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-20)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(19-20)% reduced Mana Cost of Attacks" }, } },
+ ["ReducedAttackManaCostEldritchImplicit2"] = { type = "Exarch", affix = "", "(21-22)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(21-22)% reduced Mana Cost of Attacks" }, } },
+ ["ReducedAttackManaCostEldritchImplicit3"] = { type = "Exarch", affix = "", "(23-24)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(23-24)% reduced Mana Cost of Attacks" }, } },
+ ["ReducedAttackManaCostEldritchImplicit4"] = { type = "Exarch", affix = "", "(25-26)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(25-26)% reduced Mana Cost of Attacks" }, } },
+ ["ReducedAttackManaCostEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(27-28)% reduced Mana Cost of Attacks" }, } },
+ ["ReducedAttackManaCostEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(29-30)% reduced Mana Cost of Attacks" }, } },
+ ["ReducedAttackManaCostEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(25-26)% reduced Mana Cost of Attacks" }, } },
+ ["ReducedAttackManaCostEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(27-28)% reduced Mana Cost of Attacks" }, } },
+ ["ReducedAttackManaCostEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(29-30)% reduced Mana Cost of Attacks" }, } },
+ ["ReducedAttackManaCostEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-32)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(31-32)% reduced Mana Cost of Attacks" }, } },
+ ["ReducedAttackManaCostEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(33-34)% reduced Mana Cost of Attacks" }, } },
+ ["ReducedAttackManaCostEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4074358700] = { "" }, [2859471749] = { "(35-36)% reduced Mana Cost of Attacks" }, } },
+ ["ReducedAttackManaCostEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(31-32)% reduced Mana Cost of Attacks" }, } },
+ ["ReducedAttackManaCostEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(33-34)% reduced Mana Cost of Attacks" }, } },
+ ["ReducedAttackManaCostEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(35-36)% reduced Mana Cost of Attacks" }, } },
+ ["ReducedAttackManaCostEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(37-38)% reduced Mana Cost of Attacks" }, } },
+ ["ReducedAttackManaCostEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(39-40)% reduced Mana Cost of Attacks" }, } },
+ ["ReducedAttackManaCostEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3283106665] = { "" }, [2859471749] = { "(41-42)% reduced Mana Cost of Attacks" }, } },
+ ["MaximumLightningResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } },
+ ["MaximumLightningResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } },
+ ["MaximumLightningResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } },
+ ["MaximumLightningResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } },
+ ["MaximumLightningResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } },
+ ["MaximumLightningResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } },
+ ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [3283106665] = { "" }, } },
+ ["IncreasedDamagePerPowerChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "4% increased Damage per Power Charge" }, } },
+ ["IncreasedDamagePerPowerChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "4% increased Damage per Power Charge" }, } },
+ ["IncreasedDamagePerPowerChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } },
+ ["IncreasedDamagePerPowerChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } },
+ ["IncreasedDamagePerPowerChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "6% increased Damage per Power Charge" }, } },
+ ["IncreasedDamagePerPowerChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "6% increased Damage per Power Charge" }, } },
+ ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "5% increased Damage per Power Charge" }, } },
+ ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "5% increased Damage per Power Charge" }, } },
+ ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "6% increased Damage per Power Charge" }, } },
+ ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "6% increased Damage per Power Charge" }, } },
+ ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "7% increased Damage per Power Charge" }, } },
+ ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [4074358700] = { "" }, [2034658008] = { "7% increased Damage per Power Charge" }, } },
+ ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "6% increased Damage per Power Charge" }, } },
+ ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "6% increased Damage per Power Charge" }, } },
+ ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "7% increased Damage per Power Charge" }, } },
+ ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "7% increased Damage per Power Charge" }, } },
+ ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "8% increased Damage per Power Charge" }, } },
+ ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3283106665] = { "" }, [2034658008] = { "8% increased Damage per Power Charge" }, } },
+ ["MinionLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions have (14-16)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (14-16)% increased maximum Life" }, } },
+ ["MinionLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions have (17-19)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (17-19)% increased maximum Life" }, } },
+ ["MinionLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions have (20-22)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (20-22)% increased maximum Life" }, } },
+ ["MinionLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions have (23-25)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (23-25)% increased maximum Life" }, } },
+ ["MinionLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions have (26-27)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (26-27)% increased maximum Life" }, } },
+ ["MinionLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions have (28-29)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (28-29)% increased maximum Life" }, } },
+ ["MinionLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (20-22)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (20-22)% increased maximum Life" }, } },
+ ["MinionLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (23-25)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (23-25)% increased maximum Life" }, } },
+ ["MinionLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (26-28)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (26-28)% increased maximum Life" }, } },
+ ["MinionLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (29-31)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (29-31)% increased maximum Life" }, } },
+ ["MinionLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (32-33)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (32-33)% increased maximum Life" }, } },
+ ["MinionLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (34-35)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4074358700] = { "" }, [770672621] = { "Minions have (34-35)% increased maximum Life" }, } },
+ ["MinionLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (26-28)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (26-28)% increased maximum Life" }, } },
+ ["MinionLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (29-31)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (29-31)% increased maximum Life" }, } },
+ ["MinionLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (32-34)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (32-34)% increased maximum Life" }, } },
+ ["MinionLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (35-37)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (35-37)% increased maximum Life" }, } },
+ ["MinionLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (38-39)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (38-39)% increased maximum Life" }, } },
+ ["MinionLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (40-41)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3283106665] = { "" }, [770672621] = { "Minions have (40-41)% increased maximum Life" }, } },
+ ["MinionRunSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions have (11-12)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (11-12)% increased Movement Speed" }, } },
+ ["MinionRunSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions have (13-14)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (13-14)% increased Movement Speed" }, } },
+ ["MinionRunSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions have (15-16)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (15-16)% increased Movement Speed" }, } },
+ ["MinionRunSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions have (17-18)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (17-18)% increased Movement Speed" }, } },
+ ["MinionRunSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions have (19-20)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (19-20)% increased Movement Speed" }, } },
+ ["MinionRunSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions have (21-22)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (21-22)% increased Movement Speed" }, } },
+ ["MinionRunSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (13-15)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (13-15)% increased Movement Speed" }, } },
+ ["MinionRunSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (16-18)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (16-18)% increased Movement Speed" }, } },
+ ["MinionRunSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (19-21)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (19-21)% increased Movement Speed" }, } },
+ ["MinionRunSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (22-24)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (22-24)% increased Movement Speed" }, } },
+ ["MinionRunSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (25-26)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (25-26)% increased Movement Speed" }, } },
+ ["MinionRunSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (27-28)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [4074358700] = { "" }, [174664100] = { "Minions have (27-28)% increased Movement Speed" }, } },
+ ["MinionRunSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (19-21)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (19-21)% increased Movement Speed" }, } },
+ ["MinionRunSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (22-24)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (22-24)% increased Movement Speed" }, } },
+ ["MinionRunSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (25-27)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (25-27)% increased Movement Speed" }, } },
+ ["MinionRunSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (28-30)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (28-30)% increased Movement Speed" }, } },
+ ["MinionRunSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (31-32)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (31-32)% increased Movement Speed" }, } },
+ ["MinionRunSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (33-34)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [3283106665] = { "" }, [174664100] = { "Minions have (33-34)% increased Movement Speed" }, } },
+ ["AreaOfEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(7-8)% increased Area of Effect" }, } },
+ ["AreaOfEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(9-10)% increased Area of Effect" }, } },
+ ["AreaOfEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(11-12)% increased Area of Effect" }, } },
+ ["AreaOfEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(13-14)% increased Area of Effect" }, } },
+ ["AreaOfEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(15-16)% increased Area of Effect" }, } },
+ ["AreaOfEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(17-18)% increased Area of Effect" }, } },
+ ["AreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(13-14)% increased Area of Effect" }, } },
+ ["AreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(15-16)% increased Area of Effect" }, } },
+ ["AreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(17-18)% increased Area of Effect" }, } },
+ ["AreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(19-20)% increased Area of Effect" }, } },
+ ["AreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(21-22)% increased Area of Effect" }, } },
+ ["AreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [280731498] = { "(23-24)% increased Area of Effect" }, } },
+ ["AreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(19-20)% increased Area of Effect" }, } },
+ ["AreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(21-22)% increased Area of Effect" }, } },
+ ["AreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(23-24)% increased Area of Effect" }, } },
+ ["AreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(25-26)% increased Area of Effect" }, } },
+ ["AreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(27-28)% increased Area of Effect" }, } },
+ ["AreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [280731498] = { "(29-30)% increased Area of Effect" }, } },
+ ["EnergyShieldRegenerationEldritchImplicit1"] = { type = "Eater", affix = "", "21% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "21% increased Energy Shield Recharge Rate" }, } },
+ ["EnergyShieldRegenerationEldritchImplicit2"] = { type = "Eater", affix = "", "22% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "22% increased Energy Shield Recharge Rate" }, } },
+ ["EnergyShieldRegenerationEldritchImplicit3"] = { type = "Eater", affix = "", "23% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "23% increased Energy Shield Recharge Rate" }, } },
+ ["EnergyShieldRegenerationEldritchImplicit4"] = { type = "Eater", affix = "", "24% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "24% increased Energy Shield Recharge Rate" }, } },
+ ["EnergyShieldRegenerationEldritchImplicit5"] = { type = "Eater", affix = "", "25% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "25% increased Energy Shield Recharge Rate" }, } },
+ ["EnergyShieldRegenerationEldritchImplicit6"] = { type = "Eater", affix = "", "26% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "26% increased Energy Shield Recharge Rate" }, } },
+ ["EnergyShieldRegenerationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 24% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "24% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } },
+ ["EnergyShieldRegenerationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "25% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } },
+ ["EnergyShieldRegenerationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 26% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "26% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } },
+ ["EnergyShieldRegenerationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 27% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "27% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } },
+ ["EnergyShieldRegenerationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 28% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "28% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } },
+ ["EnergyShieldRegenerationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 29% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "29% increased Energy Shield Recharge Rate" }, [4074358700] = { "" }, } },
+ ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 27% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "27% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } },
+ ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 28% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "28% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } },
+ ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 29% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "29% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } },
+ ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "30% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } },
+ ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 31% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "31% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } },
+ ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 32% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "32% increased Energy Shield Recharge Rate" }, [3283106665] = { "" }, } },
+ ["EnergyShieldFromGlovesBootsEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(33-35)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } },
+ ["EnergyShieldFromGlovesBootsEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(36-38)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } },
+ ["EnergyShieldFromGlovesBootsEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(39-41)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } },
+ ["EnergyShieldFromGlovesBootsEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } },
+ ["EnergyShieldFromGlovesBootsEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } },
+ ["EnergyShieldFromGlovesBootsEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [1234687045] = { "(48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, } },
+ ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } },
+ ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } },
+ ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } },
+ ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } },
+ ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(54-57)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } },
+ ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(58-61)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [4074358700] = { "" }, } },
+ ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } },
+ ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(54-56)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } },
+ ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(57-59)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } },
+ ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(60-62)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } },
+ ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(63-66)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } },
+ ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1234687045] = { "(67-70)% increased Maximum Energy Shield from Equipped Gloves and Boots" }, [3283106665] = { "" }, } },
+ ["FireResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } },
+ ["FireResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } },
+ ["FireResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 5% Fire Resistance" }, } },
+ ["FireResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 5% Fire Resistance" }, } },
+ ["FireResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } },
+ ["FireResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } },
+ ["FireResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } },
+ ["FireResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } },
+ ["FireResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } },
+ ["FireResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } },
+ ["FireResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } },
+ ["FireResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } },
+ ["FireResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } },
+ ["FireResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } },
+ ["FireResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 9% Fire Resistance" }, } },
+ ["FireResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 9% Fire Resistance" }, } },
+ ["FireResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 10% Fire Resistance" }, } },
+ ["FireResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [2653955271] = { "Damage Penetrates 10% Fire Resistance" }, } },
+ ["ColdResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, } },
+ ["ColdResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, } },
+ ["ColdResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 5% Cold Resistance" }, } },
+ ["ColdResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 5% Cold Resistance" }, } },
+ ["ColdResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } },
+ ["ColdResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } },
+ ["ColdResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } },
+ ["ColdResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } },
+ ["ColdResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } },
+ ["ColdResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } },
+ ["ColdResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } },
+ ["ColdResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } },
+ ["ColdResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } },
+ ["ColdResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } },
+ ["ColdResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 9% Cold Resistance" }, } },
+ ["ColdResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 9% Cold Resistance" }, } },
+ ["ColdResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 10% Cold Resistance" }, } },
+ ["ColdResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [3417711605] = { "Damage Penetrates 10% Cold Resistance" }, } },
+ ["LightningResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 5% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 5% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 9% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 9% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 10% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [818778753] = { "Damage Penetrates 10% Lightning Resistance" }, } },
+ ["IncreasedAilmentDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(13-14)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(13-14)% increased Duration of Ailments on Enemies" }, } },
+ ["IncreasedAilmentDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(15-16)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(15-16)% increased Duration of Ailments on Enemies" }, } },
+ ["IncreasedAilmentDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(17-18)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(17-18)% increased Duration of Ailments on Enemies" }, } },
+ ["IncreasedAilmentDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(19-20)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(19-20)% increased Duration of Ailments on Enemies" }, } },
+ ["IncreasedAilmentDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(21-22)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(21-22)% increased Duration of Ailments on Enemies" }, } },
+ ["IncreasedAilmentDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(23-24)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(23-24)% increased Duration of Ailments on Enemies" }, } },
+ ["IncreasedAilmentDurationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(19-20)% increased Duration of Ailments on Enemies" }, } },
+ ["IncreasedAilmentDurationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(21-22)% increased Duration of Ailments on Enemies" }, } },
+ ["IncreasedAilmentDurationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(23-24)% increased Duration of Ailments on Enemies" }, } },
+ ["IncreasedAilmentDurationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(25-26)% increased Duration of Ailments on Enemies" }, } },
+ ["IncreasedAilmentDurationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(27-28)% increased Duration of Ailments on Enemies" }, } },
+ ["IncreasedAilmentDurationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [2419712247] = { "(29-30)% increased Duration of Ailments on Enemies" }, } },
+ ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(25-26)% increased Duration of Ailments on Enemies" }, } },
+ ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(27-28)% increased Duration of Ailments on Enemies" }, } },
+ ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(29-30)% increased Duration of Ailments on Enemies" }, } },
+ ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(31-32)% increased Duration of Ailments on Enemies" }, } },
+ ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(33-34)% increased Duration of Ailments on Enemies" }, } },
+ ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [2419712247] = { "(35-36)% increased Duration of Ailments on Enemies" }, } },
+ ["IncreasedAilmentEffectOnEnemiesEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(14-16)% increased Effect of Non-Damaging Ailments" }, } },
+ ["IncreasedAilmentEffectOnEnemiesEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(17-19)% increased Effect of Non-Damaging Ailments" }, } },
+ ["IncreasedAilmentEffectOnEnemiesEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(20-22)% increased Effect of Non-Damaging Ailments" }, } },
+ ["IncreasedAilmentEffectOnEnemiesEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(23-25)% increased Effect of Non-Damaging Ailments" }, } },
+ ["IncreasedAilmentEffectOnEnemiesEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(26-27)% increased Effect of Non-Damaging Ailments" }, } },
+ ["IncreasedAilmentEffectOnEnemiesEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(28-29)% increased Effect of Non-Damaging Ailments" }, } },
+ ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-22)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(20-22)% increased Effect of Non-Damaging Ailments" }, } },
+ ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(23-25)% increased Effect of Non-Damaging Ailments" }, } },
+ ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(26-28)% increased Effect of Non-Damaging Ailments" }, } },
+ ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(29-31)% increased Effect of Non-Damaging Ailments" }, } },
+ ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-33)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(32-33)% increased Effect of Non-Damaging Ailments" }, } },
+ ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (34-35)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, tradeHashes = { [4074358700] = { "" }, [782230869] = { "(34-35)% increased Effect of Non-Damaging Ailments" }, } },
+ ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-28)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(26-28)% increased Effect of Non-Damaging Ailments" }, } },
+ ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-31)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(29-31)% increased Effect of Non-Damaging Ailments" }, } },
+ ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (32-34)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(32-34)% increased Effect of Non-Damaging Ailments" }, } },
+ ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-37)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(35-37)% increased Effect of Non-Damaging Ailments" }, } },
+ ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-39)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(38-39)% increased Effect of Non-Damaging Ailments" }, } },
+ ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (40-41)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, tradeHashes = { [3283106665] = { "" }, [782230869] = { "(40-41)% increased Effect of Non-Damaging Ailments" }, } },
+ ["PhysicalDamageTakenAsFireUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "6% of Physical Damage from Hits taken as Fire Damage" }, } },
+ ["PhysicalDamageTakenAsFireUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "6% of Physical Damage from Hits taken as Fire Damage" }, } },
+ ["PhysicalDamageTakenAsFireUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "7% of Physical Damage from Hits taken as Fire Damage" }, } },
+ ["PhysicalDamageTakenAsFireUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "7% of Physical Damage from Hits taken as Fire Damage" }, } },
+ ["PhysicalDamageTakenAsFireUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "8% of Physical Damage from Hits taken as Fire Damage" }, } },
+ ["PhysicalDamageTakenAsFireUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "8% of Physical Damage from Hits taken as Fire Damage" }, } },
+ ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "8% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "8% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "9% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "9% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "11% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "11% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "12% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "12% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsColdUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "6% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "6% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "7% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "7% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "8% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "8% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "8% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "8% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "9% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "9% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "11% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "11% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "12% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "12% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsLightningUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "6% of Physical Damage from Hits taken as Lightning Damage" }, } },
+ ["PhysicalDamageTakenAsLightningUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "6% of Physical Damage from Hits taken as Lightning Damage" }, } },
+ ["PhysicalDamageTakenAsLightningUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "7% of Physical Damage from Hits taken as Lightning Damage" }, } },
+ ["PhysicalDamageTakenAsLightningUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "7% of Physical Damage from Hits taken as Lightning Damage" }, } },
+ ["PhysicalDamageTakenAsLightningUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "8% of Physical Damage from Hits taken as Lightning Damage" }, } },
+ ["PhysicalDamageTakenAsLightningUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "8% of Physical Damage from Hits taken as Lightning Damage" }, } },
+ ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "8% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "8% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "9% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "9% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "11% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "11% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "12% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "12% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsChaosUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "6% of Physical Damage from Hits taken as Chaos Damage" }, } },
+ ["PhysicalDamageTakenAsChaosUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "6% of Physical Damage from Hits taken as Chaos Damage" }, } },
+ ["PhysicalDamageTakenAsChaosUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "7% of Physical Damage from Hits taken as Chaos Damage" }, } },
+ ["PhysicalDamageTakenAsChaosUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "7% of Physical Damage from Hits taken as Chaos Damage" }, } },
+ ["PhysicalDamageTakenAsChaosUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "8% of Physical Damage from Hits taken as Chaos Damage" }, } },
+ ["PhysicalDamageTakenAsChaosUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "8% of Physical Damage from Hits taken as Chaos Damage" }, } },
+ ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "8% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "8% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "9% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "9% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "11% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "11% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "12% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "12% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } },
+ ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } },
+ ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "11% of Physical Damage from Hits taken as Fire Damage" }, } },
+ ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "11% of Physical Damage from Hits taken as Fire Damage" }, } },
+ ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "12% of Physical Damage from Hits taken as Fire Damage" }, } },
+ ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "12% of Physical Damage from Hits taken as Fire Damage" }, } },
+ ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "14% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "14% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "15% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "15% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "16% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "16% of Physical Damage from Hits taken as Fire Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "18% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "18% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "19% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "19% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "20% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "20% of Physical Damage from Hits taken as Fire Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "11% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "11% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "12% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "12% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "14% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "14% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "15% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "15% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "16% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [4074358700] = { "" }, [1871056256] = { "16% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "18% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "18% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "19% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "19% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "20% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [3283106665] = { "" }, [1871056256] = { "20% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, } },
+ ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, } },
+ ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "11% of Physical Damage from Hits taken as Lightning Damage" }, } },
+ ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "11% of Physical Damage from Hits taken as Lightning Damage" }, } },
+ ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "12% of Physical Damage from Hits taken as Lightning Damage" }, } },
+ ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "12% of Physical Damage from Hits taken as Lightning Damage" }, } },
+ ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "14% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "14% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "15% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "15% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "16% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "16% of Physical Damage from Hits taken as Lightning Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "18% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "18% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "19% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "19% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "20% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "20% of Physical Damage from Hits taken as Lightning Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, } },
+ ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, } },
+ ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "11% of Physical Damage from Hits taken as Chaos Damage" }, } },
+ ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "11% of Physical Damage from Hits taken as Chaos Damage" }, } },
+ ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "12% of Physical Damage from Hits taken as Chaos Damage" }, } },
+ ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "12% of Physical Damage from Hits taken as Chaos Damage" }, } },
+ ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "14% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "14% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "15% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "15% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "16% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "16% of Physical Damage from Hits taken as Chaos Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "18% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "18% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "19% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "19% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "20% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "20% of Physical Damage from Hits taken as Chaos Damage" }, [3283106665] = { "" }, } },
+ ["ManaReservationEfficiencyEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "7% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ManaReservationEfficiencyEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "8% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ManaReservationEfficiencyEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "9% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ManaReservationEfficiencyEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "10% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ManaReservationEfficiencyEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "11% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ManaReservationEfficiencyEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "12% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ManaReservationEfficiencyEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "10% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ManaReservationEfficiencyEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "11% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ManaReservationEfficiencyEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "12% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ManaReservationEfficiencyEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "13% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ManaReservationEfficiencyEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "14% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ManaReservationEfficiencyEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [4237190083] = { "15% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "13% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "14% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "15% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "16% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "17% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [4237190083] = { "18% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ChanceToIgniteEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "5% chance to Ignite" }, } },
+ ["ChanceToIgniteEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "10% chance to Ignite" }, } },
+ ["ChanceToIgniteEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "15% chance to Ignite" }, } },
+ ["ChanceToIgniteEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "20% chance to Ignite" }, } },
+ ["ChanceToIgniteEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "25% chance to Ignite" }, } },
+ ["ChanceToIgniteEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "30% chance to Ignite" }, } },
+ ["ChanceToIgniteEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "15% chance to Ignite" }, [4074358700] = { "" }, } },
+ ["ChanceToIgniteEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "20% chance to Ignite" }, [4074358700] = { "" }, } },
+ ["ChanceToIgniteEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "25% chance to Ignite" }, [4074358700] = { "" }, } },
+ ["ChanceToIgniteEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "30% chance to Ignite" }, [4074358700] = { "" }, } },
+ ["ChanceToIgniteEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "35% chance to Ignite" }, [4074358700] = { "" }, } },
+ ["ChanceToIgniteEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "40% chance to Ignite" }, [4074358700] = { "" }, } },
+ ["ChanceToIgniteEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "25% chance to Ignite" }, [3283106665] = { "" }, } },
+ ["ChanceToIgniteEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "30% chance to Ignite" }, [3283106665] = { "" }, } },
+ ["ChanceToIgniteEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "35% chance to Ignite" }, [3283106665] = { "" }, } },
+ ["ChanceToIgniteEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "40% chance to Ignite" }, [3283106665] = { "" }, } },
+ ["ChanceToIgniteEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "45% chance to Ignite" }, [3283106665] = { "" }, } },
+ ["ChanceToIgniteEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "50% chance to Ignite" }, [3283106665] = { "" }, } },
+ ["ChanceToFreezeEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "5% chance to Freeze" }, } },
+ ["ChanceToFreezeEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "10% chance to Freeze" }, } },
+ ["ChanceToFreezeEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "15% chance to Freeze" }, } },
+ ["ChanceToFreezeEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "20% chance to Freeze" }, } },
+ ["ChanceToFreezeEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "25% chance to Freeze" }, } },
+ ["ChanceToFreezeEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "30% chance to Freeze" }, } },
+ ["ChanceToFreezeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "15% chance to Freeze" }, } },
+ ["ChanceToFreezeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "20% chance to Freeze" }, } },
+ ["ChanceToFreezeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "25% chance to Freeze" }, } },
+ ["ChanceToFreezeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "30% chance to Freeze" }, } },
+ ["ChanceToFreezeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "35% chance to Freeze" }, } },
+ ["ChanceToFreezeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [44571480] = { "40% chance to Freeze" }, } },
+ ["ChanceToFreezeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "25% chance to Freeze" }, } },
+ ["ChanceToFreezeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "30% chance to Freeze" }, } },
+ ["ChanceToFreezeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "35% chance to Freeze" }, } },
+ ["ChanceToFreezeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "40% chance to Freeze" }, } },
+ ["ChanceToFreezeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "45% chance to Freeze" }, } },
+ ["ChanceToFreezeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [44571480] = { "50% chance to Freeze" }, } },
+ ["ChanceToShockEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "5% chance to Shock" }, } },
+ ["ChanceToShockEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "10% chance to Shock" }, } },
+ ["ChanceToShockEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "15% chance to Shock" }, } },
+ ["ChanceToShockEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "20% chance to Shock" }, } },
+ ["ChanceToShockEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "25% chance to Shock" }, } },
+ ["ChanceToShockEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "30% chance to Shock" }, } },
+ ["ChanceToShockEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "15% chance to Shock" }, } },
+ ["ChanceToShockEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "20% chance to Shock" }, } },
+ ["ChanceToShockEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "25% chance to Shock" }, } },
+ ["ChanceToShockEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "30% chance to Shock" }, } },
+ ["ChanceToShockEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "35% chance to Shock" }, } },
+ ["ChanceToShockEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1538773178] = { "40% chance to Shock" }, } },
+ ["ChanceToShockEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "25% chance to Shock" }, } },
+ ["ChanceToShockEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "30% chance to Shock" }, } },
+ ["ChanceToShockEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "35% chance to Shock" }, } },
+ ["ChanceToShockEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "40% chance to Shock" }, } },
+ ["ChanceToShockEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "45% chance to Shock" }, } },
+ ["ChanceToShockEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1538773178] = { "50% chance to Shock" }, } },
+ ["ReducedIgniteDurationOnSelfEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(33-35)% reduced Ignite Duration on you" }, } },
+ ["ReducedIgniteDurationOnSelfEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(36-38)% reduced Ignite Duration on you" }, } },
+ ["ReducedIgniteDurationOnSelfEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(39-41)% reduced Ignite Duration on you" }, } },
+ ["ReducedIgniteDurationOnSelfEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(42-44)% reduced Ignite Duration on you" }, } },
+ ["ReducedIgniteDurationOnSelfEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(45-47)% reduced Ignite Duration on you" }, } },
+ ["ReducedIgniteDurationOnSelfEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(48-50)% reduced Ignite Duration on you" }, } },
+ ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(42-44)% reduced Ignite Duration on you" }, } },
+ ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(45-47)% reduced Ignite Duration on you" }, } },
+ ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(48-50)% reduced Ignite Duration on you" }, } },
+ ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(51-53)% reduced Ignite Duration on you" }, } },
+ ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(54-57)% reduced Ignite Duration on you" }, } },
+ ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [986397080] = { "(58-61)% reduced Ignite Duration on you" }, } },
+ ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(51-53)% reduced Ignite Duration on you" }, } },
+ ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(54-56)% reduced Ignite Duration on you" }, } },
+ ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(57-59)% reduced Ignite Duration on you" }, } },
+ ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(60-62)% reduced Ignite Duration on you" }, } },
+ ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(63-66)% reduced Ignite Duration on you" }, } },
+ ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [986397080] = { "(67-70)% reduced Ignite Duration on you" }, } },
+ ["ReducedFreezeDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(33-35)% reduced Freeze Duration on you" }, } },
+ ["ReducedFreezeDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(36-38)% reduced Freeze Duration on you" }, } },
+ ["ReducedFreezeDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(39-41)% reduced Freeze Duration on you" }, } },
+ ["ReducedFreezeDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(42-44)% reduced Freeze Duration on you" }, } },
+ ["ReducedFreezeDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(45-47)% reduced Freeze Duration on you" }, } },
+ ["ReducedFreezeDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(48-50)% reduced Freeze Duration on you" }, } },
+ ["ReducedFreezeDurationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(42-44)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } },
+ ["ReducedFreezeDurationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(45-47)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } },
+ ["ReducedFreezeDurationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(48-50)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } },
+ ["ReducedFreezeDurationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-53)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } },
+ ["ReducedFreezeDurationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(54-57)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } },
+ ["ReducedFreezeDurationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(58-61)% reduced Freeze Duration on you" }, [4074358700] = { "" }, } },
+ ["ReducedFreezeDurationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-53)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } },
+ ["ReducedFreezeDurationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(54-56)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } },
+ ["ReducedFreezeDurationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(57-59)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } },
+ ["ReducedFreezeDurationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(60-62)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } },
+ ["ReducedFreezeDurationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(63-66)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } },
+ ["ReducedFreezeDurationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(67-70)% reduced Freeze Duration on you" }, [3283106665] = { "" }, } },
+ ["ReducedShockEffectOnSelfEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(33-35)% reduced Effect of Shock on you" }, } },
+ ["ReducedShockEffectOnSelfEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(36-38)% reduced Effect of Shock on you" }, } },
+ ["ReducedShockEffectOnSelfEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(39-41)% reduced Effect of Shock on you" }, } },
+ ["ReducedShockEffectOnSelfEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(42-44)% reduced Effect of Shock on you" }, } },
+ ["ReducedShockEffectOnSelfEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(45-47)% reduced Effect of Shock on you" }, } },
+ ["ReducedShockEffectOnSelfEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(48-50)% reduced Effect of Shock on you" }, } },
+ ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(42-44)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } },
+ ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(45-47)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } },
+ ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(48-50)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } },
+ ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(51-53)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } },
+ ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(54-57)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } },
+ ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(58-61)% reduced Effect of Shock on you" }, [4074358700] = { "" }, } },
+ ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(51-53)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } },
+ ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(54-56)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } },
+ ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(57-59)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } },
+ ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(60-62)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } },
+ ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(63-66)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } },
+ ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(67-70)% reduced Effect of Shock on you" }, [3283106665] = { "" }, } },
+ ["ManaRegenerationEldritchImplicit1"] = { type = "Eater", affix = "", "(19-21)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(19-21)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationEldritchImplicit2"] = { type = "Eater", affix = "", "(22-24)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(22-24)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationEldritchImplicit3"] = { type = "Eater", affix = "", "(25-27)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(25-27)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationEldritchImplicit4"] = { type = "Eater", affix = "", "(28-30)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(28-30)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationEldritchImplicit5"] = { type = "Eater", affix = "", "(31-33)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(31-33)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationEldritchImplicit6"] = { type = "Eater", affix = "", "(34-36)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(34-36)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(31-33)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(34-36)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(37-39)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(40-42)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(43-45)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [789117908] = { "(46-48)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(43-45)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(46-48)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(49-51)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(52-54)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(55-57)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [789117908] = { "(58-60)% increased Mana Regeneration Rate" }, } },
+ ["EnemyLifeRegenerationRateEldritchImplicit1"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (65-67)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (65-67)% reduced Life Regeneration rate" }, } },
+ ["EnemyLifeRegenerationRateEldritchImplicit2"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (68-70)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (68-70)% reduced Life Regeneration rate" }, } },
+ ["EnemyLifeRegenerationRateEldritchImplicit3"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (71-73)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (71-73)% reduced Life Regeneration rate" }, } },
+ ["EnemyLifeRegenerationRateEldritchImplicit4"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate" }, } },
+ ["EnemyLifeRegenerationRateEldritchImplicit5"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate" }, } },
+ ["EnemyLifeRegenerationRateEldritchImplicit6"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate" }, } },
+ ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } },
+ ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } },
+ ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } },
+ ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } },
+ ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } },
+ ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate" }, [4074358700] = { "" }, } },
+ ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } },
+ ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } },
+ ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } },
+ ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (92-94)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (92-94)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } },
+ ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (95-97)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (95-97)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } },
+ ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (98-100)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3903907406] = { "Enemies you've Hit Recently have (98-100)% reduced Life Regeneration rate" }, [3283106665] = { "" }, } },
+ ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit1"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "5% increased Mana Regeneration Rate per Power Charge" }, } },
+ ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit2"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "5% increased Mana Regeneration Rate per Power Charge" }, } },
+ ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit3"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "5% increased Mana Regeneration Rate per Power Charge" }, } },
+ ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit4"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "5% increased Mana Regeneration Rate per Power Charge" }, } },
+ ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit5"] = { type = "Eater", affix = "", "6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, } },
+ ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit6"] = { type = "Eater", affix = "", "6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, } },
+ ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } },
+ ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } },
+ ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } },
+ ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "6% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } },
+ ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } },
+ ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [4074358700] = { "" }, } },
+ ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } },
+ ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } },
+ ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } },
+ ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "7% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } },
+ ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "8% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } },
+ ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2847548062] = { "8% increased Mana Regeneration Rate per Power Charge" }, [3283106665] = { "" }, } },
+ ["AttackDamageEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(14-16)% increased Attack Damage" }, } },
+ ["AttackDamageEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(17-19)% increased Attack Damage" }, } },
+ ["AttackDamageEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(20-22)% increased Attack Damage" }, } },
+ ["AttackDamageEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(23-25)% increased Attack Damage" }, } },
+ ["AttackDamageEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(26-27)% increased Attack Damage" }, } },
+ ["AttackDamageEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(28-29)% increased Attack Damage" }, } },
+ ["AttackDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(26-28)% increased Attack Damage" }, } },
+ ["AttackDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(29-31)% increased Attack Damage" }, } },
+ ["AttackDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-34)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(32-34)% increased Attack Damage" }, } },
+ ["AttackDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (35-37)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(35-37)% increased Attack Damage" }, } },
+ ["AttackDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (38-39)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(38-39)% increased Attack Damage" }, } },
+ ["AttackDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-41)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4074358700] = { "" }, [2843214518] = { "(40-41)% increased Attack Damage" }, } },
+ ["AttackDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-40)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(38-40)% increased Attack Damage" }, } },
+ ["AttackDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-43)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(41-43)% increased Attack Damage" }, } },
+ ["AttackDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (44-46)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(44-46)% increased Attack Damage" }, } },
+ ["AttackDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (47-49)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(47-49)% increased Attack Damage" }, } },
+ ["AttackDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (50-51)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(50-51)% increased Attack Damage" }, } },
+ ["AttackDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-53)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3283106665] = { "" }, [2843214518] = { "(52-53)% increased Attack Damage" }, } },
+ ["SpellDamageEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(14-16)% increased Spell Damage" }, } },
+ ["SpellDamageEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(17-19)% increased Spell Damage" }, } },
+ ["SpellDamageEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-22)% increased Spell Damage" }, } },
+ ["SpellDamageEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-25)% increased Spell Damage" }, } },
+ ["SpellDamageEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(26-27)% increased Spell Damage" }, } },
+ ["SpellDamageEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(28-29)% increased Spell Damage" }, } },
+ ["SpellDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(26-28)% increased Spell Damage" }, [4074358700] = { "" }, } },
+ ["SpellDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(29-31)% increased Spell Damage" }, [4074358700] = { "" }, } },
+ ["SpellDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-34)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(32-34)% increased Spell Damage" }, [4074358700] = { "" }, } },
+ ["SpellDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (35-37)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-37)% increased Spell Damage" }, [4074358700] = { "" }, } },
+ ["SpellDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (38-39)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(38-39)% increased Spell Damage" }, [4074358700] = { "" }, } },
+ ["SpellDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-41)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-41)% increased Spell Damage" }, [4074358700] = { "" }, } },
+ ["SpellDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-40)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(38-40)% increased Spell Damage" }, [3283106665] = { "" }, } },
+ ["SpellDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-43)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(41-43)% increased Spell Damage" }, [3283106665] = { "" }, } },
+ ["SpellDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (44-46)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(44-46)% increased Spell Damage" }, [3283106665] = { "" }, } },
+ ["SpellDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (47-49)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(47-49)% increased Spell Damage" }, [3283106665] = { "" }, } },
+ ["SpellDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (50-51)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-51)% increased Spell Damage" }, [3283106665] = { "" }, } },
+ ["SpellDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-53)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(52-53)% increased Spell Damage" }, [3283106665] = { "" }, } },
+ ["ArcaneSurgeEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(6-7)% increased Effect of Arcane Surge on you" }, } },
+ ["ArcaneSurgeEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(8-9)% increased Effect of Arcane Surge on you" }, } },
+ ["ArcaneSurgeEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(10-11)% increased Effect of Arcane Surge on you" }, } },
+ ["ArcaneSurgeEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(12-13)% increased Effect of Arcane Surge on you" }, } },
+ ["ArcaneSurgeEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(14-15)% increased Effect of Arcane Surge on you" }, } },
+ ["ArcaneSurgeEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(16-17)% increased Effect of Arcane Surge on you" }, } },
+ ["ArcaneSurgeEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(12-13)% increased Effect of Arcane Surge on you" }, } },
+ ["ArcaneSurgeEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(14-15)% increased Effect of Arcane Surge on you" }, } },
+ ["ArcaneSurgeEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(16-17)% increased Effect of Arcane Surge on you" }, } },
+ ["ArcaneSurgeEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(18-19)% increased Effect of Arcane Surge on you" }, } },
+ ["ArcaneSurgeEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(20-21)% increased Effect of Arcane Surge on you" }, } },
+ ["ArcaneSurgeEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3015437071] = { "(22-23)% increased Effect of Arcane Surge on you" }, } },
+ ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(18-19)% increased Effect of Arcane Surge on you" }, } },
+ ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(20-21)% increased Effect of Arcane Surge on you" }, } },
+ ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(22-23)% increased Effect of Arcane Surge on you" }, } },
+ ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(24-25)% increased Effect of Arcane Surge on you" }, } },
+ ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(26-27)% increased Effect of Arcane Surge on you" }, } },
+ ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3015437071] = { "(28-29)% increased Effect of Arcane Surge on you" }, } },
+ ["MovementVelocityEldritchImplicit1"] = { type = "Exarch", affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } },
+ ["MovementVelocityEldritchImplicit2"] = { type = "Exarch", affix = "", "6% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "6% increased Movement Speed" }, } },
+ ["MovementVelocityEldritchImplicit3"] = { type = "Exarch", affix = "", "7% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "7% increased Movement Speed" }, } },
+ ["MovementVelocityEldritchImplicit4"] = { type = "Exarch", affix = "", "8% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "8% increased Movement Speed" }, } },
+ ["MovementVelocityEldritchImplicit5"] = { type = "Exarch", affix = "", "9% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "9% increased Movement Speed" }, } },
+ ["MovementVelocityEldritchImplicit6"] = { type = "Exarch", affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } },
+ ["MovementVelocityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 8% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "8% increased Movement Speed" }, } },
+ ["MovementVelocityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 9% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "9% increased Movement Speed" }, } },
+ ["MovementVelocityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "10% increased Movement Speed" }, } },
+ ["MovementVelocityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "11% increased Movement Speed" }, } },
+ ["MovementVelocityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "12% increased Movement Speed" }, } },
+ ["MovementVelocityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2250533757] = { "13% increased Movement Speed" }, } },
+ ["MovementVelocityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "11% increased Movement Speed" }, } },
+ ["MovementVelocityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "12% increased Movement Speed" }, } },
+ ["MovementVelocityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "13% increased Movement Speed" }, } },
+ ["MovementVelocityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "14% increased Movement Speed" }, } },
+ ["MovementVelocityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "15% increased Movement Speed" }, } },
+ ["MovementVelocityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2250533757] = { "16% increased Movement Speed" }, } },
+ ["ActionSpeedImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "4% increased Action Speed" }, } },
+ ["ActionSpeedImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "4% increased Action Speed" }, } },
+ ["ActionSpeedImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "5% increased Action Speed" }, } },
+ ["ActionSpeedImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "5% increased Action Speed" }, } },
+ ["ActionSpeedImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "6% increased Action Speed" }, } },
+ ["ActionSpeedImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2878959938] = { "6% increased Action Speed" }, } },
+ ["ActionSpeedImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "5% increased Action Speed" }, } },
+ ["ActionSpeedImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "5% increased Action Speed" }, } },
+ ["ActionSpeedImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "6% increased Action Speed" }, } },
+ ["ActionSpeedImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "6% increased Action Speed" }, } },
+ ["ActionSpeedImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "7% increased Action Speed" }, } },
+ ["ActionSpeedImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [2878959938] = { "7% increased Action Speed" }, } },
+ ["ActionSpeedImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "6% increased Action Speed" }, } },
+ ["ActionSpeedImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "6% increased Action Speed" }, } },
+ ["ActionSpeedImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "7% increased Action Speed" }, } },
+ ["ActionSpeedImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "7% increased Action Speed" }, } },
+ ["ActionSpeedImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "8% increased Action Speed" }, } },
+ ["ActionSpeedImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [2878959938] = { "8% increased Action Speed" }, } },
+ ["ScorchedGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 2 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 2 seconds" }, } },
+ ["ScorchedGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 3 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 3 seconds" }, } },
+ ["ScorchedGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 4 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 4 seconds" }, } },
+ ["ScorchedGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 5 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 5 seconds" }, } },
+ ["ScorchedGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 6 seconds" }, } },
+ ["ScorchedGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 7 seconds" }, } },
+ ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 4 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 4 seconds" }, [4074358700] = { "" }, } },
+ ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 5 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 5 seconds" }, [4074358700] = { "" }, } },
+ ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 6 seconds" }, [4074358700] = { "" }, } },
+ ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 7 seconds" }, [4074358700] = { "" }, } },
+ ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 8 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 8 seconds" }, [4074358700] = { "" }, } },
+ ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 9 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 9 seconds" }, [4074358700] = { "" }, } },
+ ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 6 seconds" }, [3283106665] = { "" }, } },
+ ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 7 seconds" }, [3283106665] = { "" }, } },
+ ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 8 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 8 seconds" }, [3283106665] = { "" }, } },
+ ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 9 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 9 seconds" }, [3283106665] = { "" }, } },
+ ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 10 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 10 seconds" }, [3283106665] = { "" }, } },
+ ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 11 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [396238230] = { "Drops Scorched Ground while moving, lasting 11 seconds" }, [3283106665] = { "" }, } },
+ ["BrittleGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 2 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 2 seconds" }, } },
+ ["BrittleGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 3 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 3 seconds" }, } },
+ ["BrittleGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 4 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 4 seconds" }, } },
+ ["BrittleGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 5 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 5 seconds" }, } },
+ ["BrittleGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 6 seconds" }, } },
+ ["BrittleGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [984148407] = { "Drops Brittle Ground while moving, lasting 7 seconds" }, } },
+ ["BrittleGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 4 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 4 seconds" }, } },
+ ["BrittleGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 5 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 5 seconds" }, } },
+ ["BrittleGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 6 seconds" }, } },
+ ["BrittleGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 7 seconds" }, } },
+ ["BrittleGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 8 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 8 seconds" }, } },
+ ["BrittleGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 9 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 9 seconds" }, } },
+ ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 6 seconds" }, } },
+ ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 7 seconds" }, } },
+ ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 8 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 8 seconds" }, } },
+ ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 9 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 9 seconds" }, } },
+ ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 10 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 10 seconds" }, } },
+ ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 11 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [984148407] = { "Drops Brittle Ground while moving, lasting 11 seconds" }, } },
+ ["SappedGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 2 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 2 seconds" }, } },
+ ["SappedGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 3 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 3 seconds" }, } },
+ ["SappedGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 4 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 4 seconds" }, } },
+ ["SappedGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 5 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 5 seconds" }, } },
+ ["SappedGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 6 seconds" }, } },
+ ["SappedGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1997664024] = { "Drops Sapped Ground while moving, lasting 7 seconds" }, } },
+ ["SappedGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 4 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 4 seconds" }, } },
+ ["SappedGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 5 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 5 seconds" }, } },
+ ["SappedGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 6 seconds" }, } },
+ ["SappedGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 7 seconds" }, } },
+ ["SappedGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 8 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 8 seconds" }, } },
+ ["SappedGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 9 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 9 seconds" }, } },
+ ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 6 seconds" }, } },
+ ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 7 seconds" }, } },
+ ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 8 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 8 seconds" }, } },
+ ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 9 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 9 seconds" }, } },
+ ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 10 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 10 seconds" }, } },
+ ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 11 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1997664024] = { "Drops Sapped Ground while moving, lasting 11 seconds" }, } },
+ ["FireResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(13-14)% to Fire Resistance" }, } },
+ ["FireResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(15-16)% to Fire Resistance" }, } },
+ ["FireResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(17-18)% to Fire Resistance" }, } },
+ ["FireResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(19-20)% to Fire Resistance" }, } },
+ ["FireResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(21-22)% to Fire Resistance" }, } },
+ ["FireResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(23-24)% to Fire Resistance" }, } },
+ ["FireResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(19-20)% to Fire Resistance" }, } },
+ ["FireResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(21-22)% to Fire Resistance" }, } },
+ ["FireResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(23-24)% to Fire Resistance" }, } },
+ ["FireResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(25-26)% to Fire Resistance" }, } },
+ ["FireResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(27-28)% to Fire Resistance" }, } },
+ ["FireResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4074358700] = { "" }, [3372524247] = { "+(29-30)% to Fire Resistance" }, } },
+ ["FireResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(25-26)% to Fire Resistance" }, } },
+ ["FireResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(27-28)% to Fire Resistance" }, } },
+ ["FireResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(29-30)% to Fire Resistance" }, } },
+ ["FireResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(31-32)% to Fire Resistance" }, } },
+ ["FireResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(33-34)% to Fire Resistance" }, } },
+ ["FireResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3283106665] = { "" }, [3372524247] = { "+(35-36)% to Fire Resistance" }, } },
+ ["ColdResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(13-14)% to Cold Resistance" }, } },
+ ["ColdResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-16)% to Cold Resistance" }, } },
+ ["ColdResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(17-18)% to Cold Resistance" }, } },
+ ["ColdResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(19-20)% to Cold Resistance" }, } },
+ ["ColdResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-22)% to Cold Resistance" }, } },
+ ["ColdResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(23-24)% to Cold Resistance" }, } },
+ ["ColdResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(19-20)% to Cold Resistance" }, [4074358700] = { "" }, } },
+ ["ColdResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-22)% to Cold Resistance" }, [4074358700] = { "" }, } },
+ ["ColdResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(23-24)% to Cold Resistance" }, [4074358700] = { "" }, } },
+ ["ColdResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-26)% to Cold Resistance" }, [4074358700] = { "" }, } },
+ ["ColdResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(27-28)% to Cold Resistance" }, [4074358700] = { "" }, } },
+ ["ColdResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(29-30)% to Cold Resistance" }, [4074358700] = { "" }, } },
+ ["ColdResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(25-26)% to Cold Resistance" }, [3283106665] = { "" }, } },
+ ["ColdResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(27-28)% to Cold Resistance" }, [3283106665] = { "" }, } },
+ ["ColdResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(29-30)% to Cold Resistance" }, [3283106665] = { "" }, } },
+ ["ColdResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(31-32)% to Cold Resistance" }, [3283106665] = { "" }, } },
+ ["ColdResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(33-34)% to Cold Resistance" }, [3283106665] = { "" }, } },
+ ["ColdResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(35-36)% to Cold Resistance" }, [3283106665] = { "" }, } },
+ ["LightningResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(13-14)% to Lightning Resistance" }, } },
+ ["LightningResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(15-16)% to Lightning Resistance" }, } },
+ ["LightningResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(17-18)% to Lightning Resistance" }, } },
+ ["LightningResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(19-20)% to Lightning Resistance" }, } },
+ ["LightningResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(21-22)% to Lightning Resistance" }, } },
+ ["LightningResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(23-24)% to Lightning Resistance" }, } },
+ ["LightningResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(19-20)% to Lightning Resistance" }, } },
+ ["LightningResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(21-22)% to Lightning Resistance" }, } },
+ ["LightningResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(23-24)% to Lightning Resistance" }, } },
+ ["LightningResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(25-26)% to Lightning Resistance" }, } },
+ ["LightningResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(27-28)% to Lightning Resistance" }, } },
+ ["LightningResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [4074358700] = { "" }, [1671376347] = { "+(29-30)% to Lightning Resistance" }, } },
+ ["LightningResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(25-26)% to Lightning Resistance" }, } },
+ ["LightningResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(27-28)% to Lightning Resistance" }, } },
+ ["LightningResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(29-30)% to Lightning Resistance" }, } },
+ ["LightningResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(31-32)% to Lightning Resistance" }, } },
+ ["LightningResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(33-34)% to Lightning Resistance" }, } },
+ ["LightningResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [3283106665] = { "" }, [1671376347] = { "+(35-36)% to Lightning Resistance" }, } },
+ ["ChaosResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(6-7)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(6-7)% to Chaos Resistance" }, } },
+ ["ChaosResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-9)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(8-9)% to Chaos Resistance" }, } },
+ ["ChaosResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(10-11)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(10-11)% to Chaos Resistance" }, } },
+ ["ChaosResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(12-13)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(12-13)% to Chaos Resistance" }, } },
+ ["ChaosResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(14-15)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(14-15)% to Chaos Resistance" }, } },
+ ["ChaosResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(16-17)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(16-17)% to Chaos Resistance" }, } },
+ ["ChaosResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(12-13)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(12-13)% to Chaos Resistance" }, } },
+ ["ChaosResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-15)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(14-15)% to Chaos Resistance" }, } },
+ ["ChaosResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(16-17)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(16-17)% to Chaos Resistance" }, } },
+ ["ChaosResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(18-19)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(18-19)% to Chaos Resistance" }, } },
+ ["ChaosResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-21)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(20-21)% to Chaos Resistance" }, } },
+ ["ChaosResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(22-23)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [4074358700] = { "" }, [2923486259] = { "+(22-23)% to Chaos Resistance" }, } },
+ ["ChaosResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(18-19)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(18-19)% to Chaos Resistance" }, } },
+ ["ChaosResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(20-21)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(20-21)% to Chaos Resistance" }, } },
+ ["ChaosResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(22-23)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(22-23)% to Chaos Resistance" }, } },
+ ["ChaosResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(24-25)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(24-25)% to Chaos Resistance" }, } },
+ ["ChaosResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-27)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(26-27)% to Chaos Resistance" }, } },
+ ["ChaosResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(28-29)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3283106665] = { "" }, [2923486259] = { "+(28-29)% to Chaos Resistance" }, } },
+ ["DamagePerEnduranceChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "4% increased Damage per Endurance Charge" }, } },
+ ["DamagePerEnduranceChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "4% increased Damage per Endurance Charge" }, } },
+ ["DamagePerEnduranceChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, } },
+ ["DamagePerEnduranceChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, } },
+ ["DamagePerEnduranceChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, } },
+ ["DamagePerEnduranceChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, } },
+ ["DamagePerEnduranceChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } },
+ ["DamagePerEnduranceChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } },
+ ["DamagePerEnduranceChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } },
+ ["DamagePerEnduranceChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } },
+ ["DamagePerEnduranceChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "7% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } },
+ ["DamagePerEnduranceChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "7% increased Damage per Endurance Charge" }, [4074358700] = { "" }, } },
+ ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } },
+ ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "6% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } },
+ ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "7% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } },
+ ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "7% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } },
+ ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "8% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } },
+ ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "8% increased Damage per Endurance Charge" }, [3283106665] = { "" }, } },
+ ["MaximumFireResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } },
+ ["MaximumFireResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } },
+ ["MaximumFireResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } },
+ ["MaximumFireResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } },
+ ["MaximumFireResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } },
+ ["MaximumFireResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } },
+ ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [3283106665] = { "" }, } },
+ ["SummonTotemCastSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "10% increased Totem Placement speed" }, } },
+ ["SummonTotemCastSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "11% increased Totem Placement speed" }, } },
+ ["SummonTotemCastSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "12% increased Totem Placement speed" }, } },
+ ["SummonTotemCastSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "13% increased Totem Placement speed" }, } },
+ ["SummonTotemCastSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "14% increased Totem Placement speed" }, } },
+ ["SummonTotemCastSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "15% increased Totem Placement speed" }, } },
+ ["SummonTotemCastSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "14% increased Totem Placement speed" }, [4074358700] = { "" }, } },
+ ["SummonTotemCastSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "15% increased Totem Placement speed" }, [4074358700] = { "" }, } },
+ ["SummonTotemCastSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "16% increased Totem Placement speed" }, [4074358700] = { "" }, } },
+ ["SummonTotemCastSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "17% increased Totem Placement speed" }, [4074358700] = { "" }, } },
+ ["SummonTotemCastSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "18% increased Totem Placement speed" }, [4074358700] = { "" }, } },
+ ["SummonTotemCastSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "19% increased Totem Placement speed" }, [4074358700] = { "" }, } },
+ ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "18% increased Totem Placement speed" }, [3283106665] = { "" }, } },
+ ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "19% increased Totem Placement speed" }, [3283106665] = { "" }, } },
+ ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "20% increased Totem Placement speed" }, [3283106665] = { "" }, } },
+ ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "21% increased Totem Placement speed" }, [3283106665] = { "" }, } },
+ ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "22% increased Totem Placement speed" }, [3283106665] = { "" }, } },
+ ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "23% increased Totem Placement speed" }, [3283106665] = { "" }, } },
+ ["BrandAttachmentRangeEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "10% increased Brand Attachment range" }, } },
+ ["BrandAttachmentRangeEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "11% increased Brand Attachment range" }, } },
+ ["BrandAttachmentRangeEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "12% increased Brand Attachment range" }, } },
+ ["BrandAttachmentRangeEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "13% increased Brand Attachment range" }, } },
+ ["BrandAttachmentRangeEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "14% increased Brand Attachment range" }, } },
+ ["BrandAttachmentRangeEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, tradeHashes = { [4223377453] = { "15% increased Brand Attachment range" }, } },
+ ["BrandAttachmentRangeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "14% increased Brand Attachment range" }, [4074358700] = { "" }, } },
+ ["BrandAttachmentRangeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "15% increased Brand Attachment range" }, [4074358700] = { "" }, } },
+ ["BrandAttachmentRangeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "16% increased Brand Attachment range" }, [4074358700] = { "" }, } },
+ ["BrandAttachmentRangeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "17% increased Brand Attachment range" }, [4074358700] = { "" }, } },
+ ["BrandAttachmentRangeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "18% increased Brand Attachment range" }, [4074358700] = { "" }, } },
+ ["BrandAttachmentRangeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "19% increased Brand Attachment range" }, [4074358700] = { "" }, } },
+ ["BrandAttachmentRangeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "18% increased Brand Attachment range" }, [3283106665] = { "" }, } },
+ ["BrandAttachmentRangeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "19% increased Brand Attachment range" }, [3283106665] = { "" }, } },
+ ["BrandAttachmentRangeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "20% increased Brand Attachment range" }, [3283106665] = { "" }, } },
+ ["BrandAttachmentRangeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "21% increased Brand Attachment range" }, [3283106665] = { "" }, } },
+ ["BrandAttachmentRangeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "22% increased Brand Attachment range" }, [3283106665] = { "" }, } },
+ ["BrandAttachmentRangeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [4223377453] = { "23% increased Brand Attachment range" }, [3283106665] = { "" }, } },
+ ["FireGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(31-33)% increased Effect of the Buff granted by your Flame Golems" }, } },
+ ["FireGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(34-36)% increased Effect of the Buff granted by your Flame Golems" }, } },
+ ["FireGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(37-39)% increased Effect of the Buff granted by your Flame Golems" }, } },
+ ["FireGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(40-42)% increased Effect of the Buff granted by your Flame Golems" }, } },
+ ["FireGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(43-45)% increased Effect of the Buff granted by your Flame Golems" }, } },
+ ["FireGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(46-48)% increased Effect of the Buff granted by your Flame Golems" }, } },
+ ["FireGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(43-45)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } },
+ ["FireGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(46-48)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } },
+ ["FireGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(49-51)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } },
+ ["FireGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(52-54)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } },
+ ["FireGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(55-57)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } },
+ ["FireGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(58-60)% increased Effect of the Buff granted by your Flame Golems" }, [4074358700] = { "" }, } },
+ ["FireGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(55-57)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } },
+ ["FireGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(58-60)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } },
+ ["FireGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(61-63)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } },
+ ["FireGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(64-66)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } },
+ ["FireGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(67-69)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } },
+ ["FireGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [269930125] = { "(70-72)% increased Effect of the Buff granted by your Flame Golems" }, [3283106665] = { "" }, } },
+ ["IceGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(31-33)% increased Effect of the Buff granted by your Ice Golems" }, } },
+ ["IceGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(34-36)% increased Effect of the Buff granted by your Ice Golems" }, } },
+ ["IceGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(37-39)% increased Effect of the Buff granted by your Ice Golems" }, } },
+ ["IceGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(40-42)% increased Effect of the Buff granted by your Ice Golems" }, } },
+ ["IceGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(43-45)% increased Effect of the Buff granted by your Ice Golems" }, } },
+ ["IceGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(46-48)% increased Effect of the Buff granted by your Ice Golems" }, } },
+ ["IceGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(43-45)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } },
+ ["IceGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(46-48)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } },
+ ["IceGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(49-51)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } },
+ ["IceGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(52-54)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } },
+ ["IceGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(55-57)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } },
+ ["IceGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(58-60)% increased Effect of the Buff granted by your Ice Golems" }, [4074358700] = { "" }, } },
+ ["IceGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(55-57)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } },
+ ["IceGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(58-60)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } },
+ ["IceGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(61-63)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } },
+ ["IceGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(64-66)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } },
+ ["IceGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(67-69)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } },
+ ["IceGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2250111474] = { "(70-72)% increased Effect of the Buff granted by your Ice Golems" }, [3283106665] = { "" }, } },
+ ["LightningGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(31-33)% increased Effect of the Buff granted by your Lightning Golems" }, } },
+ ["LightningGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(34-36)% increased Effect of the Buff granted by your Lightning Golems" }, } },
+ ["LightningGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(37-39)% increased Effect of the Buff granted by your Lightning Golems" }, } },
+ ["LightningGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(40-42)% increased Effect of the Buff granted by your Lightning Golems" }, } },
+ ["LightningGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(43-45)% increased Effect of the Buff granted by your Lightning Golems" }, } },
+ ["LightningGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(46-48)% increased Effect of the Buff granted by your Lightning Golems" }, } },
+ ["LightningGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(43-45)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } },
+ ["LightningGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(46-48)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } },
+ ["LightningGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(49-51)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } },
+ ["LightningGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(52-54)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } },
+ ["LightningGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(55-57)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } },
+ ["LightningGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(58-60)% increased Effect of the Buff granted by your Lightning Golems" }, [4074358700] = { "" }, } },
+ ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(55-57)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } },
+ ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(58-60)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } },
+ ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(61-63)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } },
+ ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(64-66)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } },
+ ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(67-69)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } },
+ ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2527931375] = { "(70-72)% increased Effect of the Buff granted by your Lightning Golems" }, [3283106665] = { "" }, } },
+ ["RockGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(31-33)% increased Effect of the Buff granted by your Stone Golems" }, } },
+ ["RockGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(34-36)% increased Effect of the Buff granted by your Stone Golems" }, } },
+ ["RockGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(37-39)% increased Effect of the Buff granted by your Stone Golems" }, } },
+ ["RockGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(40-42)% increased Effect of the Buff granted by your Stone Golems" }, } },
+ ["RockGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(43-45)% increased Effect of the Buff granted by your Stone Golems" }, } },
+ ["RockGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2284801675] = { "(46-48)% increased Effect of the Buff granted by your Stone Golems" }, } },
+ ["RockGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(43-45)% increased Effect of the Buff granted by your Stone Golems" }, } },
+ ["RockGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(46-48)% increased Effect of the Buff granted by your Stone Golems" }, } },
+ ["RockGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(49-51)% increased Effect of the Buff granted by your Stone Golems" }, } },
+ ["RockGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(52-54)% increased Effect of the Buff granted by your Stone Golems" }, } },
+ ["RockGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(55-57)% increased Effect of the Buff granted by your Stone Golems" }, } },
+ ["RockGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2284801675] = { "(58-60)% increased Effect of the Buff granted by your Stone Golems" }, } },
+ ["RockGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(55-57)% increased Effect of the Buff granted by your Stone Golems" }, } },
+ ["RockGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(58-60)% increased Effect of the Buff granted by your Stone Golems" }, } },
+ ["RockGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(61-63)% increased Effect of the Buff granted by your Stone Golems" }, } },
+ ["RockGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(64-66)% increased Effect of the Buff granted by your Stone Golems" }, } },
+ ["RockGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(67-69)% increased Effect of the Buff granted by your Stone Golems" }, } },
+ ["RockGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2284801675] = { "(70-72)% increased Effect of the Buff granted by your Stone Golems" }, } },
+ ["ChaosGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(31-33)% increased Effect of the Buff granted by your Chaos Golems" }, } },
+ ["ChaosGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(34-36)% increased Effect of the Buff granted by your Chaos Golems" }, } },
+ ["ChaosGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(37-39)% increased Effect of the Buff granted by your Chaos Golems" }, } },
+ ["ChaosGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(40-42)% increased Effect of the Buff granted by your Chaos Golems" }, } },
+ ["ChaosGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(43-45)% increased Effect of the Buff granted by your Chaos Golems" }, } },
+ ["ChaosGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(46-48)% increased Effect of the Buff granted by your Chaos Golems" }, } },
+ ["ChaosGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(43-45)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } },
+ ["ChaosGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(46-48)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } },
+ ["ChaosGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(49-51)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } },
+ ["ChaosGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(52-54)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } },
+ ["ChaosGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(55-57)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } },
+ ["ChaosGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(58-60)% increased Effect of the Buff granted by your Chaos Golems" }, [4074358700] = { "" }, } },
+ ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(55-57)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } },
+ ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(58-60)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } },
+ ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(61-63)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } },
+ ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(64-66)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } },
+ ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(67-69)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } },
+ ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1648511635] = { "(70-72)% increased Effect of the Buff granted by your Chaos Golems" }, [3283106665] = { "" }, } },
+ ["CarrionGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(31-33)% increased Effect of the Buff granted by your Carrion Golems" }, } },
+ ["CarrionGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(34-36)% increased Effect of the Buff granted by your Carrion Golems" }, } },
+ ["CarrionGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(37-39)% increased Effect of the Buff granted by your Carrion Golems" }, } },
+ ["CarrionGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(40-42)% increased Effect of the Buff granted by your Carrion Golems" }, } },
+ ["CarrionGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(43-45)% increased Effect of the Buff granted by your Carrion Golems" }, } },
+ ["CarrionGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2420972973] = { "(46-48)% increased Effect of the Buff granted by your Carrion Golems" }, } },
+ ["CarrionGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(43-45)% increased Effect of the Buff granted by your Carrion Golems" }, } },
+ ["CarrionGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(46-48)% increased Effect of the Buff granted by your Carrion Golems" }, } },
+ ["CarrionGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(49-51)% increased Effect of the Buff granted by your Carrion Golems" }, } },
+ ["CarrionGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(52-54)% increased Effect of the Buff granted by your Carrion Golems" }, } },
+ ["CarrionGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(55-57)% increased Effect of the Buff granted by your Carrion Golems" }, } },
+ ["CarrionGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2420972973] = { "(58-60)% increased Effect of the Buff granted by your Carrion Golems" }, } },
+ ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(55-57)% increased Effect of the Buff granted by your Carrion Golems" }, } },
+ ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(58-60)% increased Effect of the Buff granted by your Carrion Golems" }, } },
+ ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(61-63)% increased Effect of the Buff granted by your Carrion Golems" }, } },
+ ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(64-66)% increased Effect of the Buff granted by your Carrion Golems" }, } },
+ ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(67-69)% increased Effect of the Buff granted by your Carrion Golems" }, } },
+ ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2420972973] = { "(70-72)% increased Effect of the Buff granted by your Carrion Golems" }, } },
+ ["FleshOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flesh Offering has (6-7)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (6-7)% increased Effect" }, } },
+ ["FleshOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flesh Offering has (8-9)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (8-9)% increased Effect" }, } },
+ ["FleshOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flesh Offering has (10-11)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (10-11)% increased Effect" }, } },
+ ["FleshOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flesh Offering has (12-13)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (12-13)% increased Effect" }, } },
+ ["FleshOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flesh Offering has (14-15)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (14-15)% increased Effect" }, } },
+ ["FleshOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flesh Offering has (16-17)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (16-17)% increased Effect" }, } },
+ ["FleshOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (12-13)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (12-13)% increased Effect" }, [4074358700] = { "" }, } },
+ ["FleshOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (14-15)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (14-15)% increased Effect" }, [4074358700] = { "" }, } },
+ ["FleshOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (16-17)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (16-17)% increased Effect" }, [4074358700] = { "" }, } },
+ ["FleshOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (18-19)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (18-19)% increased Effect" }, [4074358700] = { "" }, } },
+ ["FleshOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (20-21)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (20-21)% increased Effect" }, [4074358700] = { "" }, } },
+ ["FleshOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (22-23)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (22-23)% increased Effect" }, [4074358700] = { "" }, } },
+ ["FleshOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (18-19)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (18-19)% increased Effect" }, [3283106665] = { "" }, } },
+ ["FleshOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (20-21)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (20-21)% increased Effect" }, [3283106665] = { "" }, } },
+ ["FleshOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (22-23)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (22-23)% increased Effect" }, [3283106665] = { "" }, } },
+ ["FleshOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (24-25)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (24-25)% increased Effect" }, [3283106665] = { "" }, } },
+ ["FleshOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (26-27)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (26-27)% increased Effect" }, [3283106665] = { "" }, } },
+ ["FleshOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (28-29)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3456379680] = { "Flesh Offering has (28-29)% increased Effect" }, [3283106665] = { "" }, } },
+ ["BoneOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Bone Offering has (6-7)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (6-7)% increased Effect" }, } },
+ ["BoneOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Bone Offering has (8-9)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (8-9)% increased Effect" }, } },
+ ["BoneOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Bone Offering has (10-11)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (10-11)% increased Effect" }, } },
+ ["BoneOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Bone Offering has (12-13)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (12-13)% increased Effect" }, } },
+ ["BoneOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Bone Offering has (14-15)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (14-15)% increased Effect" }, } },
+ ["BoneOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Bone Offering has (16-17)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (16-17)% increased Effect" }, } },
+ ["BoneOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (12-13)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (12-13)% increased Effect" }, [4074358700] = { "" }, } },
+ ["BoneOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (14-15)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (14-15)% increased Effect" }, [4074358700] = { "" }, } },
+ ["BoneOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (16-17)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (16-17)% increased Effect" }, [4074358700] = { "" }, } },
+ ["BoneOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (18-19)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (18-19)% increased Effect" }, [4074358700] = { "" }, } },
+ ["BoneOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (20-21)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (20-21)% increased Effect" }, [4074358700] = { "" }, } },
+ ["BoneOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (22-23)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (22-23)% increased Effect" }, [4074358700] = { "" }, } },
+ ["BoneOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (18-19)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (18-19)% increased Effect" }, [3283106665] = { "" }, } },
+ ["BoneOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (20-21)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (20-21)% increased Effect" }, [3283106665] = { "" }, } },
+ ["BoneOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (22-23)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (22-23)% increased Effect" }, [3283106665] = { "" }, } },
+ ["BoneOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (24-25)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (24-25)% increased Effect" }, [3283106665] = { "" }, } },
+ ["BoneOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (26-27)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (26-27)% increased Effect" }, [3283106665] = { "" }, } },
+ ["BoneOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (28-29)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1801289192] = { "Bone Offering has (28-29)% increased Effect" }, [3283106665] = { "" }, } },
+ ["SpiritOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Spirit Offering has (6-7)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (6-7)% increased Effect" }, } },
+ ["SpiritOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Spirit Offering has (8-9)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (8-9)% increased Effect" }, } },
+ ["SpiritOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Spirit Offering has (10-11)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (10-11)% increased Effect" }, } },
+ ["SpiritOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Spirit Offering has (12-13)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (12-13)% increased Effect" }, } },
+ ["SpiritOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Spirit Offering has (14-15)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (14-15)% increased Effect" }, } },
+ ["SpiritOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Spirit Offering has (16-17)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3544391750] = { "Spirit Offering has (16-17)% increased Effect" }, } },
+ ["SpiritOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (12-13)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (12-13)% increased Effect" }, } },
+ ["SpiritOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (14-15)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (14-15)% increased Effect" }, } },
+ ["SpiritOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (16-17)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (16-17)% increased Effect" }, } },
+ ["SpiritOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (18-19)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (18-19)% increased Effect" }, } },
+ ["SpiritOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (20-21)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (20-21)% increased Effect" }, } },
+ ["SpiritOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (22-23)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3544391750] = { "Spirit Offering has (22-23)% increased Effect" }, } },
+ ["SpiritOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (18-19)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (18-19)% increased Effect" }, } },
+ ["SpiritOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (20-21)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (20-21)% increased Effect" }, } },
+ ["SpiritOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (22-23)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (22-23)% increased Effect" }, } },
+ ["SpiritOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (24-25)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (24-25)% increased Effect" }, } },
+ ["SpiritOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (26-27)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (26-27)% increased Effect" }, } },
+ ["SpiritOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (28-29)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3544391750] = { "Spirit Offering has (28-29)% increased Effect" }, } },
+ ["AvoidIgniteEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(33-35)% chance to Avoid being Ignited" }, } },
+ ["AvoidIgniteEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(36-38)% chance to Avoid being Ignited" }, } },
+ ["AvoidIgniteEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(39-41)% chance to Avoid being Ignited" }, } },
+ ["AvoidIgniteEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(42-44)% chance to Avoid being Ignited" }, } },
+ ["AvoidIgniteEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(45-47)% chance to Avoid being Ignited" }, } },
+ ["AvoidIgniteEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(48-50)% chance to Avoid being Ignited" }, } },
+ ["AvoidIgniteEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(42-44)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } },
+ ["AvoidIgniteEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(45-47)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } },
+ ["AvoidIgniteEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(48-50)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } },
+ ["AvoidIgniteEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-53)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } },
+ ["AvoidIgniteEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(54-57)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } },
+ ["AvoidIgniteEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(58-61)% chance to Avoid being Ignited" }, [4074358700] = { "" }, } },
+ ["AvoidIgniteEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-53)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } },
+ ["AvoidIgniteEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(54-56)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } },
+ ["AvoidIgniteEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(57-59)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } },
+ ["AvoidIgniteEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(60-62)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } },
+ ["AvoidIgniteEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(63-66)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } },
+ ["AvoidIgniteEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(67-70)% chance to Avoid being Ignited" }, [3283106665] = { "" }, } },
+ ["AvoidFreezeEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(33-35)% chance to Avoid being Frozen" }, } },
+ ["AvoidFreezeEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(36-38)% chance to Avoid being Frozen" }, } },
+ ["AvoidFreezeEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(39-41)% chance to Avoid being Frozen" }, } },
+ ["AvoidFreezeEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(42-44)% chance to Avoid being Frozen" }, } },
+ ["AvoidFreezeEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(45-47)% chance to Avoid being Frozen" }, } },
+ ["AvoidFreezeEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(48-50)% chance to Avoid being Frozen" }, } },
+ ["AvoidFreezeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(42-44)% chance to Avoid being Frozen" }, } },
+ ["AvoidFreezeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(45-47)% chance to Avoid being Frozen" }, } },
+ ["AvoidFreezeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(48-50)% chance to Avoid being Frozen" }, } },
+ ["AvoidFreezeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(51-53)% chance to Avoid being Frozen" }, } },
+ ["AvoidFreezeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(54-57)% chance to Avoid being Frozen" }, } },
+ ["AvoidFreezeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4074358700] = { "" }, [1514829491] = { "(58-61)% chance to Avoid being Frozen" }, } },
+ ["AvoidFreezeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(51-53)% chance to Avoid being Frozen" }, } },
+ ["AvoidFreezeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(54-56)% chance to Avoid being Frozen" }, } },
+ ["AvoidFreezeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(57-59)% chance to Avoid being Frozen" }, } },
+ ["AvoidFreezeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(60-62)% chance to Avoid being Frozen" }, } },
+ ["AvoidFreezeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(63-66)% chance to Avoid being Frozen" }, } },
+ ["AvoidFreezeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3283106665] = { "" }, [1514829491] = { "(67-70)% chance to Avoid being Frozen" }, } },
+ ["AvoidShockEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(33-35)% chance to Avoid being Shocked" }, } },
+ ["AvoidShockEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(36-38)% chance to Avoid being Shocked" }, } },
+ ["AvoidShockEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(39-41)% chance to Avoid being Shocked" }, } },
+ ["AvoidShockEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(42-44)% chance to Avoid being Shocked" }, } },
+ ["AvoidShockEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(45-47)% chance to Avoid being Shocked" }, } },
+ ["AvoidShockEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(48-50)% chance to Avoid being Shocked" }, } },
+ ["AvoidShockEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(42-44)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } },
+ ["AvoidShockEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(45-47)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } },
+ ["AvoidShockEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(48-50)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } },
+ ["AvoidShockEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-53)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } },
+ ["AvoidShockEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(54-57)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } },
+ ["AvoidShockEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(58-61)% chance to Avoid being Shocked" }, [4074358700] = { "" }, } },
+ ["AvoidShockEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-53)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } },
+ ["AvoidShockEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(54-56)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } },
+ ["AvoidShockEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(57-59)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } },
+ ["AvoidShockEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(60-62)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } },
+ ["AvoidShockEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(63-66)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } },
+ ["AvoidShockEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(67-70)% chance to Avoid being Shocked" }, [3283106665] = { "" }, } },
+ ["AvoidStunEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(15-17)% chance to Avoid being Stunned" }, } },
+ ["AvoidStunEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(18-20)% chance to Avoid being Stunned" }, } },
+ ["AvoidStunEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(21-23)% chance to Avoid being Stunned" }, } },
+ ["AvoidStunEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(24-26)% chance to Avoid being Stunned" }, } },
+ ["AvoidStunEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-29)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(27-29)% chance to Avoid being Stunned" }, } },
+ ["AvoidStunEldritchImplicit6"] = { type = "Exarch", affix = "", "(30-32)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(30-32)% chance to Avoid being Stunned" }, } },
+ ["AvoidStunEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(24-26)% chance to Avoid being Stunned" }, } },
+ ["AvoidStunEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(27-29)% chance to Avoid being Stunned" }, } },
+ ["AvoidStunEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(30-32)% chance to Avoid being Stunned" }, } },
+ ["AvoidStunEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-35)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(33-35)% chance to Avoid being Stunned" }, } },
+ ["AvoidStunEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (36-38)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(36-38)% chance to Avoid being Stunned" }, } },
+ ["AvoidStunEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (39-41)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4262448838] = { "(39-41)% chance to Avoid being Stunned" }, } },
+ ["AvoidStunEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(33-35)% chance to Avoid being Stunned" }, } },
+ ["AvoidStunEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(36-38)% chance to Avoid being Stunned" }, } },
+ ["AvoidStunEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(39-41)% chance to Avoid being Stunned" }, } },
+ ["AvoidStunEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(42-44)% chance to Avoid being Stunned" }, } },
+ ["AvoidStunEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(45-47)% chance to Avoid being Stunned" }, } },
+ ["AvoidStunEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4262448838] = { "(48-50)% chance to Avoid being Stunned" }, } },
+ ["OnslaughtEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(6-7)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(6-7)% increased Effect of Onslaught on you" }, } },
+ ["OnslaughtEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(8-9)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(8-9)% increased Effect of Onslaught on you" }, } },
+ ["OnslaughtEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(10-11)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(10-11)% increased Effect of Onslaught on you" }, } },
+ ["OnslaughtEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(12-13)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(12-13)% increased Effect of Onslaught on you" }, } },
+ ["OnslaughtEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(14-15)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(14-15)% increased Effect of Onslaught on you" }, } },
+ ["OnslaughtEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(16-17)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(16-17)% increased Effect of Onslaught on you" }, } },
+ ["OnslaughtEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(12-13)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } },
+ ["OnslaughtEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(14-15)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } },
+ ["OnslaughtEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(16-17)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } },
+ ["OnslaughtEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(18-19)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } },
+ ["OnslaughtEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(20-21)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } },
+ ["OnslaughtEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(22-23)% increased Effect of Onslaught on you" }, [4074358700] = { "" }, } },
+ ["OnslaughtEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(18-19)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } },
+ ["OnslaughtEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(20-21)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } },
+ ["OnslaughtEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(22-23)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } },
+ ["OnslaughtEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(24-25)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } },
+ ["OnslaughtEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(26-27)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } },
+ ["OnslaughtEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(28-29)% increased Effect of Onslaught on you" }, [3283106665] = { "" }, } },
+ ["LifeRegenerationRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "7% increased Life Regeneration rate" }, } },
+ ["LifeRegenerationRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "8% increased Life Regeneration rate" }, } },
+ ["LifeRegenerationRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "9% increased Life Regeneration rate" }, } },
+ ["LifeRegenerationRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "10% increased Life Regeneration rate" }, } },
+ ["LifeRegenerationRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "11% increased Life Regeneration rate" }, } },
+ ["LifeRegenerationRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "12% increased Life Regeneration rate" }, } },
+ ["LifeRegenerationRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "10% increased Life Regeneration rate" }, [4074358700] = { "" }, } },
+ ["LifeRegenerationRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "11% increased Life Regeneration rate" }, [4074358700] = { "" }, } },
+ ["LifeRegenerationRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "12% increased Life Regeneration rate" }, [4074358700] = { "" }, } },
+ ["LifeRegenerationRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "13% increased Life Regeneration rate" }, [4074358700] = { "" }, } },
+ ["LifeRegenerationRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "14% increased Life Regeneration rate" }, [4074358700] = { "" }, } },
+ ["LifeRegenerationRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "15% increased Life Regeneration rate" }, [4074358700] = { "" }, } },
+ ["LifeRegenerationRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "13% increased Life Regeneration rate" }, [3283106665] = { "" }, } },
+ ["LifeRegenerationRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "14% increased Life Regeneration rate" }, [3283106665] = { "" }, } },
+ ["LifeRegenerationRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "15% increased Life Regeneration rate" }, [3283106665] = { "" }, } },
+ ["LifeRegenerationRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "16% increased Life Regeneration rate" }, [3283106665] = { "" }, } },
+ ["LifeRegenerationRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "17% increased Life Regeneration rate" }, [3283106665] = { "" }, } },
+ ["LifeRegenerationRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "18% increased Life Regeneration rate" }, [3283106665] = { "" }, } },
+ ["ArmourFromHelmetGlovesEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(33-35)% increased Armour from Equipped Helmet and Gloves" }, } },
+ ["ArmourFromHelmetGlovesEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(36-38)% increased Armour from Equipped Helmet and Gloves" }, } },
+ ["ArmourFromHelmetGlovesEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(39-41)% increased Armour from Equipped Helmet and Gloves" }, } },
+ ["ArmourFromHelmetGlovesEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(42-44)% increased Armour from Equipped Helmet and Gloves" }, } },
+ ["ArmourFromHelmetGlovesEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(45-47)% increased Armour from Equipped Helmet and Gloves" }, } },
+ ["ArmourFromHelmetGlovesEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [791154540] = { "(48-50)% increased Armour from Equipped Helmet and Gloves" }, } },
+ ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(42-44)% increased Armour from Equipped Helmet and Gloves" }, } },
+ ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(45-47)% increased Armour from Equipped Helmet and Gloves" }, } },
+ ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(48-50)% increased Armour from Equipped Helmet and Gloves" }, } },
+ ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(51-53)% increased Armour from Equipped Helmet and Gloves" }, } },
+ ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(54-57)% increased Armour from Equipped Helmet and Gloves" }, } },
+ ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [791154540] = { "(58-61)% increased Armour from Equipped Helmet and Gloves" }, } },
+ ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(51-53)% increased Armour from Equipped Helmet and Gloves" }, } },
+ ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(54-56)% increased Armour from Equipped Helmet and Gloves" }, } },
+ ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(57-59)% increased Armour from Equipped Helmet and Gloves" }, } },
+ ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(60-62)% increased Armour from Equipped Helmet and Gloves" }, } },
+ ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(63-66)% increased Armour from Equipped Helmet and Gloves" }, } },
+ ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [791154540] = { "(67-70)% increased Armour from Equipped Helmet and Gloves" }, } },
+ ["FasterIgniteDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 5% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 5% faster" }, } },
+ ["FasterIgniteDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 6% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 6% faster" }, } },
+ ["FasterIgniteDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 7% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 7% faster" }, } },
+ ["FasterIgniteDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 8% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 8% faster" }, } },
+ ["FasterIgniteDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 9% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 9% faster" }, } },
+ ["FasterIgniteDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 10% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 10% faster" }, } },
+ ["FasterIgniteDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 8% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 8% faster" }, } },
+ ["FasterIgniteDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 9% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 9% faster" }, } },
+ ["FasterIgniteDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 10% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 10% faster" }, } },
+ ["FasterIgniteDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 11% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 11% faster" }, } },
+ ["FasterIgniteDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 12% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 12% faster" }, } },
+ ["FasterIgniteDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 13% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [4074358700] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 13% faster" }, } },
+ ["FasterIgniteDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 11% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 11% faster" }, } },
+ ["FasterIgniteDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 12% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 12% faster" }, } },
+ ["FasterIgniteDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 13% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 13% faster" }, } },
+ ["FasterIgniteDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 14% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 14% faster" }, } },
+ ["FasterIgniteDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 15% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 15% faster" }, } },
+ ["FasterIgniteDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 16% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3283106665] = { "" }, [2443492284] = { "Ignites you inflict deal Damage 16% faster" }, } },
+ ["FasterPoisonDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 5% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 5% faster" }, } },
+ ["FasterPoisonDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 6% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 6% faster" }, } },
+ ["FasterPoisonDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 7% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 7% faster" }, } },
+ ["FasterPoisonDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 8% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 8% faster" }, } },
+ ["FasterPoisonDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 9% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 9% faster" }, } },
+ ["FasterPoisonDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 10% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 10% faster" }, } },
+ ["FasterPoisonDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 8% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 8% faster" }, [4074358700] = { "" }, } },
+ ["FasterPoisonDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 9% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 9% faster" }, [4074358700] = { "" }, } },
+ ["FasterPoisonDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 10% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 10% faster" }, [4074358700] = { "" }, } },
+ ["FasterPoisonDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 11% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 11% faster" }, [4074358700] = { "" }, } },
+ ["FasterPoisonDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 12% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 12% faster" }, [4074358700] = { "" }, } },
+ ["FasterPoisonDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 13% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 13% faster" }, [4074358700] = { "" }, } },
+ ["FasterPoisonDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 11% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 11% faster" }, [3283106665] = { "" }, } },
+ ["FasterPoisonDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 12% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 12% faster" }, [3283106665] = { "" }, } },
+ ["FasterPoisonDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 13% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 13% faster" }, [3283106665] = { "" }, } },
+ ["FasterPoisonDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 14% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 14% faster" }, [3283106665] = { "" }, } },
+ ["FasterPoisonDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 15% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 15% faster" }, [3283106665] = { "" }, } },
+ ["FasterPoisonDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 16% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage 16% faster" }, [3283106665] = { "" }, } },
+ ["FasterBleedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 5% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 5% faster" }, } },
+ ["FasterBleedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 6% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 6% faster" }, } },
+ ["FasterBleedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 7% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 7% faster" }, } },
+ ["FasterBleedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 8% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 8% faster" }, } },
+ ["FasterBleedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 9% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 9% faster" }, } },
+ ["FasterBleedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 10% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 10% faster" }, } },
+ ["FasterBleedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 8% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 8% faster" }, [4074358700] = { "" }, } },
+ ["FasterBleedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 9% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 9% faster" }, [4074358700] = { "" }, } },
+ ["FasterBleedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 10% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 10% faster" }, [4074358700] = { "" }, } },
+ ["FasterBleedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 11% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 11% faster" }, [4074358700] = { "" }, } },
+ ["FasterBleedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 12% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 12% faster" }, [4074358700] = { "" }, } },
+ ["FasterBleedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 13% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 13% faster" }, [4074358700] = { "" }, } },
+ ["FasterBleedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 11% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 11% faster" }, [3283106665] = { "" }, } },
+ ["FasterBleedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 12% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 12% faster" }, [3283106665] = { "" }, } },
+ ["FasterBleedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 13% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 13% faster" }, [3283106665] = { "" }, } },
+ ["FasterBleedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 14% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 14% faster" }, [3283106665] = { "" }, } },
+ ["FasterBleedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 15% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 15% faster" }, [3283106665] = { "" }, } },
+ ["FasterBleedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 16% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage 16% faster" }, [3283106665] = { "" }, } },
+ ["PhysicalAddedAsFireEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 4% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsFireEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 4% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsFireEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 5% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsFireEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 5% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsFireEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 6% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsFireEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 6% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsFireEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 6% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsFireEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 6% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsFireEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 7% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsFireEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 7% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsFireEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 8% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsFireEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [4074358700] = { "" }, [369494213] = { "Gain 8% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 8% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 8% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 9% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 9% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 10% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3283106665] = { "" }, [369494213] = { "Gain 10% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsColdEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 4% of Physical Damage as Extra Cold Damage" }, } },
+ ["PhysicalAddedAsColdEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 4% of Physical Damage as Extra Cold Damage" }, } },
+ ["PhysicalAddedAsColdEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 5% of Physical Damage as Extra Cold Damage" }, } },
+ ["PhysicalAddedAsColdEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 5% of Physical Damage as Extra Cold Damage" }, } },
+ ["PhysicalAddedAsColdEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 6% of Physical Damage as Extra Cold Damage" }, } },
+ ["PhysicalAddedAsColdEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 6% of Physical Damage as Extra Cold Damage" }, } },
+ ["PhysicalAddedAsColdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 6% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalAddedAsColdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 6% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalAddedAsColdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 7% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalAddedAsColdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 7% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalAddedAsColdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 8% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalAddedAsColdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 8% of Physical Damage as Extra Cold Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 8% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 8% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 9% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 9% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 10% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain 10% of Physical Damage as Extra Cold Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalAddedAsLightningEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 4% of Physical Damage as Extra Lightning Damage" }, } },
+ ["PhysicalAddedAsLightningEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 4% of Physical Damage as Extra Lightning Damage" }, } },
+ ["PhysicalAddedAsLightningEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 5% of Physical Damage as Extra Lightning Damage" }, } },
+ ["PhysicalAddedAsLightningEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 5% of Physical Damage as Extra Lightning Damage" }, } },
+ ["PhysicalAddedAsLightningEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 6% of Physical Damage as Extra Lightning Damage" }, } },
+ ["PhysicalAddedAsLightningEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 6% of Physical Damage as Extra Lightning Damage" }, } },
+ ["PhysicalAddedAsLightningEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 6% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalAddedAsLightningEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 6% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalAddedAsLightningEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 7% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalAddedAsLightningEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 7% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalAddedAsLightningEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 8% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalAddedAsLightningEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 8% of Physical Damage as Extra Lightning Damage" }, [4074358700] = { "" }, } },
+ ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 8% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 8% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 9% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 9% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 10% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain 10% of Physical Damage as Extra Lightning Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamageAddedAsChaosEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 4% of Physical Damage as Extra Chaos Damage" }, } },
+ ["PhysicalDamageAddedAsChaosEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 4% of Physical Damage as Extra Chaos Damage" }, } },
+ ["PhysicalDamageAddedAsChaosEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 5% of Physical Damage as Extra Chaos Damage" }, } },
+ ["PhysicalDamageAddedAsChaosEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 5% of Physical Damage as Extra Chaos Damage" }, } },
+ ["PhysicalDamageAddedAsChaosEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 6% of Physical Damage as Extra Chaos Damage" }, } },
+ ["PhysicalDamageAddedAsChaosEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain 6% of Physical Damage as Extra Chaos Damage" }, } },
+ ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 6% of Physical Damage as Extra Chaos Damage" }, } },
+ ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 6% of Physical Damage as Extra Chaos Damage" }, } },
+ ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 7% of Physical Damage as Extra Chaos Damage" }, } },
+ ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 7% of Physical Damage as Extra Chaos Damage" }, } },
+ ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 8% of Physical Damage as Extra Chaos Damage" }, } },
+ ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4074358700] = { "" }, [3319896421] = { "Gain 8% of Physical Damage as Extra Chaos Damage" }, } },
+ ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 8% of Physical Damage as Extra Chaos Damage" }, } },
+ ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 8% of Physical Damage as Extra Chaos Damage" }, } },
+ ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 9% of Physical Damage as Extra Chaos Damage" }, } },
+ ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 9% of Physical Damage as Extra Chaos Damage" }, } },
+ ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 10% of Physical Damage as Extra Chaos Damage" }, } },
+ ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [3283106665] = { "" }, [3319896421] = { "Gain 10% of Physical Damage as Extra Chaos Damage" }, } },
+ ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit1"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } },
+ ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit2"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } },
+ ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit3"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } },
+ ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit4"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } },
+ ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit5"] = { type = "Eater", affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } },
+ ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit6"] = { type = "Eater", affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } },
+ ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } },
+ ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } },
+ ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } },
+ ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.3% of Life per second per Endurance Charge" }, } },
+ ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } },
+ ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4074358700] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } },
+ ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } },
+ ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } },
+ ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } },
+ ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.4% of Life per second per Endurance Charge" }, } },
+ ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.5% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.5% of Life per second per Endurance Charge" }, } },
+ ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.5% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3283106665] = { "" }, [989800292] = { "Regenerate 0.5% of Life per second per Endurance Charge" }, } },
+ ["IncreasedStunThresholdEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(15-17)% increased Stun Threshold" }, } },
+ ["IncreasedStunThresholdEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(18-20)% increased Stun Threshold" }, } },
+ ["IncreasedStunThresholdEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(21-23)% increased Stun Threshold" }, } },
+ ["IncreasedStunThresholdEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(24-26)% increased Stun Threshold" }, } },
+ ["IncreasedStunThresholdEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(27-29)% increased Stun Threshold" }, } },
+ ["IncreasedStunThresholdEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(30-32)% increased Stun Threshold" }, } },
+ ["IncreasedStunThresholdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(24-26)% increased Stun Threshold" }, [4074358700] = { "" }, } },
+ ["IncreasedStunThresholdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(27-29)% increased Stun Threshold" }, [4074358700] = { "" }, } },
+ ["IncreasedStunThresholdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(30-32)% increased Stun Threshold" }, [4074358700] = { "" }, } },
+ ["IncreasedStunThresholdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(33-35)% increased Stun Threshold" }, [4074358700] = { "" }, } },
+ ["IncreasedStunThresholdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(36-38)% increased Stun Threshold" }, [4074358700] = { "" }, } },
+ ["IncreasedStunThresholdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(39-41)% increased Stun Threshold" }, [4074358700] = { "" }, } },
+ ["IncreasedStunThresholdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(33-35)% increased Stun Threshold" }, [3283106665] = { "" }, } },
+ ["IncreasedStunThresholdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(36-38)% increased Stun Threshold" }, [3283106665] = { "" }, } },
+ ["IncreasedStunThresholdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(39-41)% increased Stun Threshold" }, [3283106665] = { "" }, } },
+ ["IncreasedStunThresholdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(42-44)% increased Stun Threshold" }, [3283106665] = { "" }, } },
+ ["IncreasedStunThresholdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(45-47)% increased Stun Threshold" }, [3283106665] = { "" }, } },
+ ["IncreasedStunThresholdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(48-50)% increased Stun Threshold" }, [3283106665] = { "" }, } },
+ ["TravelSkillCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(15-17)% increased Cooldown Recovery Rate of Travel Skills" }, } },
+ ["TravelSkillCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(18-20)% increased Cooldown Recovery Rate of Travel Skills" }, } },
+ ["TravelSkillCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(21-23)% increased Cooldown Recovery Rate of Travel Skills" }, } },
+ ["TravelSkillCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(24-26)% increased Cooldown Recovery Rate of Travel Skills" }, } },
+ ["TravelSkillCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(27-29)% increased Cooldown Recovery Rate of Travel Skills" }, } },
+ ["TravelSkillCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(30-32)% increased Cooldown Recovery Rate of Travel Skills" }, } },
+ ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(24-26)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } },
+ ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(27-29)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } },
+ ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(30-32)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } },
+ ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(33-35)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } },
+ ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(36-38)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } },
+ ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(39-41)% increased Cooldown Recovery Rate of Travel Skills" }, [4074358700] = { "" }, } },
+ ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(33-35)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } },
+ ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(36-38)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } },
+ ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(39-41)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } },
+ ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(42-44)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } },
+ ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(45-47)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } },
+ ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2308278768] = { "(48-50)% increased Cooldown Recovery Rate of Travel Skills" }, [3283106665] = { "" }, } },
+ ["WarcrySpeedEldritchImplicit1"] = { type = "Eater", affix = "", "(15-16)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(15-16)% increased Warcry Speed" }, } },
+ ["WarcrySpeedEldritchImplicit2"] = { type = "Eater", affix = "", "(17-18)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(17-18)% increased Warcry Speed" }, } },
+ ["WarcrySpeedEldritchImplicit3"] = { type = "Eater", affix = "", "(19-20)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(19-20)% increased Warcry Speed" }, } },
+ ["WarcrySpeedEldritchImplicit4"] = { type = "Eater", affix = "", "(21-22)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(21-22)% increased Warcry Speed" }, } },
+ ["WarcrySpeedEldritchImplicit5"] = { type = "Eater", affix = "", "(23-24)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(23-24)% increased Warcry Speed" }, } },
+ ["WarcrySpeedEldritchImplicit6"] = { type = "Eater", affix = "", "(25-26)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(25-26)% increased Warcry Speed" }, } },
+ ["WarcrySpeedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(19-20)% increased Warcry Speed" }, } },
+ ["WarcrySpeedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(21-22)% increased Warcry Speed" }, } },
+ ["WarcrySpeedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(23-24)% increased Warcry Speed" }, } },
+ ["WarcrySpeedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(25-26)% increased Warcry Speed" }, } },
+ ["WarcrySpeedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(27-28)% increased Warcry Speed" }, } },
+ ["WarcrySpeedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, tradeHashes = { [4074358700] = { "" }, [1316278494] = { "(29-30)% increased Warcry Speed" }, } },
+ ["WarcrySpeedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(23-24)% increased Warcry Speed" }, } },
+ ["WarcrySpeedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(25-26)% increased Warcry Speed" }, } },
+ ["WarcrySpeedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(27-28)% increased Warcry Speed" }, } },
+ ["WarcrySpeedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(29-30)% increased Warcry Speed" }, } },
+ ["WarcrySpeedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(31-32)% increased Warcry Speed" }, } },
+ ["WarcrySpeedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, tradeHashes = { [3283106665] = { "" }, [1316278494] = { "(33-34)% increased Warcry Speed" }, } },
+ ["EnduringCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "Enduring Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (15-17)% increased Cooldown Recovery Rate" }, } },
+ ["EnduringCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "Enduring Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (18-20)% increased Cooldown Recovery Rate" }, } },
+ ["EnduringCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "Enduring Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (21-23)% increased Cooldown Recovery Rate" }, } },
+ ["EnduringCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "Enduring Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (24-26)% increased Cooldown Recovery Rate" }, } },
+ ["EnduringCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "Enduring Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (27-29)% increased Cooldown Recovery Rate" }, } },
+ ["EnduringCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "Enduring Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3617955571] = { "Enduring Cry has (30-32)% increased Cooldown Recovery Rate" }, } },
+ ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (24-26)% increased Cooldown Recovery Rate" }, } },
+ ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (27-29)% increased Cooldown Recovery Rate" }, } },
+ ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (30-32)% increased Cooldown Recovery Rate" }, } },
+ ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (33-35)% increased Cooldown Recovery Rate" }, } },
+ ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (36-38)% increased Cooldown Recovery Rate" }, } },
+ ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3617955571] = { "Enduring Cry has (39-41)% increased Cooldown Recovery Rate" }, } },
+ ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (33-35)% increased Cooldown Recovery Rate" }, } },
+ ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (36-38)% increased Cooldown Recovery Rate" }, } },
+ ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (39-41)% increased Cooldown Recovery Rate" }, } },
+ ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (42-44)% increased Cooldown Recovery Rate" }, } },
+ ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (45-47)% increased Cooldown Recovery Rate" }, } },
+ ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3617955571] = { "Enduring Cry has (48-50)% increased Cooldown Recovery Rate" }, } },
+ ["IntimidatingCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "Intimidating Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (15-17)% increased Cooldown Recovery Rate" }, } },
+ ["IntimidatingCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "Intimidating Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (18-20)% increased Cooldown Recovery Rate" }, } },
+ ["IntimidatingCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "Intimidating Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (21-23)% increased Cooldown Recovery Rate" }, } },
+ ["IntimidatingCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "Intimidating Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (24-26)% increased Cooldown Recovery Rate" }, } },
+ ["IntimidatingCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "Intimidating Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (27-29)% increased Cooldown Recovery Rate" }, } },
+ ["IntimidatingCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "Intimidating Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (30-32)% increased Cooldown Recovery Rate" }, } },
+ ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (24-26)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } },
+ ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (27-29)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } },
+ ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (30-32)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } },
+ ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (33-35)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } },
+ ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (36-38)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } },
+ ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (39-41)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } },
+ ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (33-35)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } },
+ ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (36-38)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } },
+ ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (39-41)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } },
+ ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (42-44)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } },
+ ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (45-47)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } },
+ ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1134560807] = { "Intimidating Cry has (48-50)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } },
+ ["SeismicCryExertedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (20-22)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (20-22)% increased Damage" }, } },
+ ["SeismicCryExertedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (23-25)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (23-25)% increased Damage" }, } },
+ ["SeismicCryExertedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (26-28)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (26-28)% increased Damage" }, } },
+ ["SeismicCryExertedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (29-31)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (29-31)% increased Damage" }, } },
+ ["SeismicCryExertedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (32-33)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (32-33)% increased Damage" }, } },
+ ["SeismicCryExertedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (34-35)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (34-35)% increased Damage" }, } },
+ ["SeismicCryExertedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (26-28)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (26-28)% increased Damage" }, [4074358700] = { "" }, } },
+ ["SeismicCryExertedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (29-31)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (29-31)% increased Damage" }, [4074358700] = { "" }, } },
+ ["SeismicCryExertedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (32-34)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (32-34)% increased Damage" }, [4074358700] = { "" }, } },
+ ["SeismicCryExertedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (35-37)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (35-37)% increased Damage" }, [4074358700] = { "" }, } },
+ ["SeismicCryExertedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (38-39)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (38-39)% increased Damage" }, [4074358700] = { "" }, } },
+ ["SeismicCryExertedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (40-41)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (40-41)% increased Damage" }, [4074358700] = { "" }, } },
+ ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (32-34)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (32-34)% increased Damage" }, [3283106665] = { "" }, } },
+ ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (35-37)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (35-37)% increased Damage" }, [3283106665] = { "" }, } },
+ ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (38-40)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (38-40)% increased Damage" }, [3283106665] = { "" }, } },
+ ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (41-43)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (41-43)% increased Damage" }, [3283106665] = { "" }, } },
+ ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (44-45)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (44-45)% increased Damage" }, [3283106665] = { "" }, } },
+ ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (46-47)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3252913608] = { "Attacks Exerted by Seismic Cry deal (46-47)% increased Damage" }, [3283106665] = { "" }, } },
+ ["AncestralCryExertedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (20-22)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (20-22)% increased Damage" }, } },
+ ["AncestralCryExertedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (23-25)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (23-25)% increased Damage" }, } },
+ ["AncestralCryExertedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage" }, } },
+ ["AncestralCryExertedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage" }, } },
+ ["AncestralCryExertedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (32-33)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (32-33)% increased Damage" }, } },
+ ["AncestralCryExertedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (34-35)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (34-35)% increased Damage" }, } },
+ ["AncestralCryExertedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage" }, [4074358700] = { "" }, } },
+ ["AncestralCryExertedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage" }, [4074358700] = { "" }, } },
+ ["AncestralCryExertedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage" }, [4074358700] = { "" }, } },
+ ["AncestralCryExertedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage" }, [4074358700] = { "" }, } },
+ ["AncestralCryExertedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (38-39)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (38-39)% increased Damage" }, [4074358700] = { "" }, } },
+ ["AncestralCryExertedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (40-41)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (40-41)% increased Damage" }, [4074358700] = { "" }, } },
+ ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage" }, [3283106665] = { "" }, } },
+ ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage" }, [3283106665] = { "" }, } },
+ ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (38-40)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (38-40)% increased Damage" }, [3283106665] = { "" }, } },
+ ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (41-43)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (41-43)% increased Damage" }, [3283106665] = { "" }, } },
+ ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (44-45)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (44-45)% increased Damage" }, [3283106665] = { "" }, } },
+ ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (46-47)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2146663823] = { "Attacks Exerted by Ancestral Cry deal (46-47)% increased Damage" }, [3283106665] = { "" }, } },
+ ["RallyingCryWarcryEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(6-7)% increased Rallying Cry Buff Effect" }, } },
+ ["RallyingCryWarcryEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(8-9)% increased Rallying Cry Buff Effect" }, } },
+ ["RallyingCryWarcryEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(10-11)% increased Rallying Cry Buff Effect" }, } },
+ ["RallyingCryWarcryEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(12-13)% increased Rallying Cry Buff Effect" }, } },
+ ["RallyingCryWarcryEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(14-15)% increased Rallying Cry Buff Effect" }, } },
+ ["RallyingCryWarcryEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [4147277532] = { "(16-17)% increased Rallying Cry Buff Effect" }, } },
+ ["RallyingCryWarcryEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(12-13)% increased Rallying Cry Buff Effect" }, } },
+ ["RallyingCryWarcryEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(14-15)% increased Rallying Cry Buff Effect" }, } },
+ ["RallyingCryWarcryEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(16-17)% increased Rallying Cry Buff Effect" }, } },
+ ["RallyingCryWarcryEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(18-19)% increased Rallying Cry Buff Effect" }, } },
+ ["RallyingCryWarcryEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(20-21)% increased Rallying Cry Buff Effect" }, } },
+ ["RallyingCryWarcryEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4147277532] = { "(22-23)% increased Rallying Cry Buff Effect" }, } },
+ ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(18-19)% increased Rallying Cry Buff Effect" }, } },
+ ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(20-21)% increased Rallying Cry Buff Effect" }, } },
+ ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(22-23)% increased Rallying Cry Buff Effect" }, } },
+ ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(24-25)% increased Rallying Cry Buff Effect" }, } },
+ ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(26-27)% increased Rallying Cry Buff Effect" }, } },
+ ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4147277532] = { "(28-29)% increased Rallying Cry Buff Effect" }, } },
+ ["BattlemagesCryWarcryEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(6-7)% increased Battlemage's Cry Buff Effect" }, } },
+ ["BattlemagesCryWarcryEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(8-9)% increased Battlemage's Cry Buff Effect" }, } },
+ ["BattlemagesCryWarcryEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(10-11)% increased Battlemage's Cry Buff Effect" }, } },
+ ["BattlemagesCryWarcryEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(12-13)% increased Battlemage's Cry Buff Effect" }, } },
+ ["BattlemagesCryWarcryEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(14-15)% increased Battlemage's Cry Buff Effect" }, } },
+ ["BattlemagesCryWarcryEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2426838124] = { "(16-17)% increased Battlemage's Cry Buff Effect" }, } },
+ ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(12-13)% increased Battlemage's Cry Buff Effect" }, } },
+ ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(14-15)% increased Battlemage's Cry Buff Effect" }, } },
+ ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(16-17)% increased Battlemage's Cry Buff Effect" }, } },
+ ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(18-19)% increased Battlemage's Cry Buff Effect" }, } },
+ ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(20-21)% increased Battlemage's Cry Buff Effect" }, } },
+ ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2426838124] = { "(22-23)% increased Battlemage's Cry Buff Effect" }, } },
+ ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(18-19)% increased Battlemage's Cry Buff Effect" }, } },
+ ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(20-21)% increased Battlemage's Cry Buff Effect" }, } },
+ ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(22-23)% increased Battlemage's Cry Buff Effect" }, } },
+ ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(24-25)% increased Battlemage's Cry Buff Effect" }, } },
+ ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(26-27)% increased Battlemage's Cry Buff Effect" }, } },
+ ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2426838124] = { "(28-29)% increased Battlemage's Cry Buff Effect" }, } },
+ ["InfernalCryWarcryAreaOfEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Infernal Cry has (15-17)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (15-17)% increased Area of Effect" }, } },
+ ["InfernalCryWarcryAreaOfEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Infernal Cry has (18-20)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (18-20)% increased Area of Effect" }, } },
+ ["InfernalCryWarcryAreaOfEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Infernal Cry has (21-23)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (21-23)% increased Area of Effect" }, } },
+ ["InfernalCryWarcryAreaOfEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Infernal Cry has (24-26)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (24-26)% increased Area of Effect" }, } },
+ ["InfernalCryWarcryAreaOfEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Infernal Cry has (27-29)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (27-29)% increased Area of Effect" }, } },
+ ["InfernalCryWarcryAreaOfEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Infernal Cry has (30-32)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [631097842] = { "Infernal Cry has (30-32)% increased Area of Effect" }, } },
+ ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (24-26)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (24-26)% increased Area of Effect" }, } },
+ ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (27-29)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (27-29)% increased Area of Effect" }, } },
+ ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (30-32)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (30-32)% increased Area of Effect" }, } },
+ ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (33-35)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (33-35)% increased Area of Effect" }, } },
+ ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (36-38)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (36-38)% increased Area of Effect" }, } },
+ ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (39-41)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [631097842] = { "Infernal Cry has (39-41)% increased Area of Effect" }, } },
+ ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (33-35)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (33-35)% increased Area of Effect" }, } },
+ ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (36-38)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (36-38)% increased Area of Effect" }, } },
+ ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (39-41)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (39-41)% increased Area of Effect" }, } },
+ ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (42-44)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (42-44)% increased Area of Effect" }, } },
+ ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (45-47)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (45-47)% increased Area of Effect" }, } },
+ ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (48-50)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [631097842] = { "Infernal Cry has (48-50)% increased Area of Effect" }, } },
+ ["GeneralsCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "General's Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (15-17)% increased Cooldown Recovery Rate" }, } },
+ ["GeneralsCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "General's Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (18-20)% increased Cooldown Recovery Rate" }, } },
+ ["GeneralsCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "General's Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (21-23)% increased Cooldown Recovery Rate" }, } },
+ ["GeneralsCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "General's Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (24-26)% increased Cooldown Recovery Rate" }, } },
+ ["GeneralsCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "General's Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (27-29)% increased Cooldown Recovery Rate" }, } },
+ ["GeneralsCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "General's Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (30-32)% increased Cooldown Recovery Rate" }, } },
+ ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (24-26)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } },
+ ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (27-29)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } },
+ ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (30-32)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } },
+ ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (33-35)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } },
+ ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (36-38)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } },
+ ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (39-41)% increased Cooldown Recovery Rate" }, [4074358700] = { "" }, } },
+ ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (33-35)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } },
+ ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (36-38)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } },
+ ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (39-41)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } },
+ ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (42-44)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } },
+ ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (45-47)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } },
+ ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3637727672] = { "General's Cry has (48-50)% increased Cooldown Recovery Rate" }, [3283106665] = { "" }, } },
+ ["AvoidElementalStatusAilmentsEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(15-17)% chance to Avoid Elemental Ailments" }, } },
+ ["AvoidElementalStatusAilmentsEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(18-20)% chance to Avoid Elemental Ailments" }, } },
+ ["AvoidElementalStatusAilmentsEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(21-23)% chance to Avoid Elemental Ailments" }, } },
+ ["AvoidElementalStatusAilmentsEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(24-26)% chance to Avoid Elemental Ailments" }, } },
+ ["AvoidElementalStatusAilmentsEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(27-29)% chance to Avoid Elemental Ailments" }, } },
+ ["AvoidElementalStatusAilmentsEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(30-32)% chance to Avoid Elemental Ailments" }, } },
+ ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(24-26)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } },
+ ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(27-29)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } },
+ ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(30-32)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } },
+ ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(33-35)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } },
+ ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(36-38)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } },
+ ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(39-41)% chance to Avoid Elemental Ailments" }, [4074358700] = { "" }, } },
+ ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(33-35)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } },
+ ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(36-38)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } },
+ ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(39-41)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } },
+ ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(42-44)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } },
+ ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(45-47)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } },
+ ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [3005472710] = { "(48-50)% chance to Avoid Elemental Ailments" }, [3283106665] = { "" }, } },
+ ["ChanceToAvoidBleedingEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(33-35)% chance to Avoid Bleeding" }, } },
+ ["ChanceToAvoidBleedingEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(36-38)% chance to Avoid Bleeding" }, } },
+ ["ChanceToAvoidBleedingEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(39-41)% chance to Avoid Bleeding" }, } },
+ ["ChanceToAvoidBleedingEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(42-44)% chance to Avoid Bleeding" }, } },
+ ["ChanceToAvoidBleedingEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(45-47)% chance to Avoid Bleeding" }, } },
+ ["ChanceToAvoidBleedingEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(48-50)% chance to Avoid Bleeding" }, } },
+ ["ChanceToAvoidBleedingEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(42-44)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } },
+ ["ChanceToAvoidBleedingEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(45-47)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } },
+ ["ChanceToAvoidBleedingEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(48-50)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } },
+ ["ChanceToAvoidBleedingEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(51-53)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } },
+ ["ChanceToAvoidBleedingEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(54-57)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } },
+ ["ChanceToAvoidBleedingEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(58-61)% chance to Avoid Bleeding" }, [4074358700] = { "" }, } },
+ ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(51-53)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } },
+ ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(54-56)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } },
+ ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(57-59)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } },
+ ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(60-62)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } },
+ ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(63-66)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } },
+ ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1618589784] = { "(67-70)% chance to Avoid Bleeding" }, [3283106665] = { "" }, } },
+ ["ChanceToAvoidPoisonEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(33-35)% chance to Avoid being Poisoned" }, } },
+ ["ChanceToAvoidPoisonEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(36-38)% chance to Avoid being Poisoned" }, } },
+ ["ChanceToAvoidPoisonEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(39-41)% chance to Avoid being Poisoned" }, } },
+ ["ChanceToAvoidPoisonEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(42-44)% chance to Avoid being Poisoned" }, } },
+ ["ChanceToAvoidPoisonEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(45-47)% chance to Avoid being Poisoned" }, } },
+ ["ChanceToAvoidPoisonEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(48-50)% chance to Avoid being Poisoned" }, } },
+ ["ChanceToAvoidPoisonEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(42-44)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } },
+ ["ChanceToAvoidPoisonEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(45-47)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } },
+ ["ChanceToAvoidPoisonEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(48-50)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } },
+ ["ChanceToAvoidPoisonEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(51-53)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } },
+ ["ChanceToAvoidPoisonEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(54-57)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } },
+ ["ChanceToAvoidPoisonEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(58-61)% chance to Avoid being Poisoned" }, [4074358700] = { "" }, } },
+ ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(51-53)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } },
+ ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(54-56)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } },
+ ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(57-59)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } },
+ ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(60-62)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } },
+ ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(63-66)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } },
+ ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(67-70)% chance to Avoid being Poisoned" }, [3283106665] = { "" }, } },
+ ["GlobalCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "5% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "5% increased Cooldown Recovery Rate" }, } },
+ ["GlobalCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "6% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "6% increased Cooldown Recovery Rate" }, } },
+ ["GlobalCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "7% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "7% increased Cooldown Recovery Rate" }, } },
+ ["GlobalCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "8% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "8% increased Cooldown Recovery Rate" }, } },
+ ["GlobalCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "9% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "9% increased Cooldown Recovery Rate" }, } },
+ ["GlobalCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "10% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "10% increased Cooldown Recovery Rate" }, } },
+ ["GlobalCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "8% increased Cooldown Recovery Rate" }, } },
+ ["GlobalCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "9% increased Cooldown Recovery Rate" }, } },
+ ["GlobalCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "10% increased Cooldown Recovery Rate" }, } },
+ ["GlobalCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "11% increased Cooldown Recovery Rate" }, } },
+ ["GlobalCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "12% increased Cooldown Recovery Rate" }, } },
+ ["GlobalCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1004011302] = { "13% increased Cooldown Recovery Rate" }, } },
+ ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "11% increased Cooldown Recovery Rate" }, } },
+ ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "12% increased Cooldown Recovery Rate" }, } },
+ ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "13% increased Cooldown Recovery Rate" }, } },
+ ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "14% increased Cooldown Recovery Rate" }, } },
+ ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "15% increased Cooldown Recovery Rate" }, } },
+ ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1004011302] = { "16% increased Cooldown Recovery Rate" }, } },
+ ["ElusiveEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(6-7)% increased Elusive Effect" }, } },
+ ["ElusiveEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(8-9)% increased Elusive Effect" }, } },
+ ["ElusiveEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(10-11)% increased Elusive Effect" }, } },
+ ["ElusiveEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(12-13)% increased Elusive Effect" }, } },
+ ["ElusiveEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(14-15)% increased Elusive Effect" }, } },
+ ["ElusiveEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [240857668] = { "(16-17)% increased Elusive Effect" }, } },
+ ["ElusiveEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(12-13)% increased Elusive Effect" }, } },
+ ["ElusiveEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(14-15)% increased Elusive Effect" }, } },
+ ["ElusiveEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(16-17)% increased Elusive Effect" }, } },
+ ["ElusiveEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(18-19)% increased Elusive Effect" }, } },
+ ["ElusiveEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(20-21)% increased Elusive Effect" }, } },
+ ["ElusiveEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [240857668] = { "(22-23)% increased Elusive Effect" }, } },
+ ["ElusiveEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(18-19)% increased Elusive Effect" }, } },
+ ["ElusiveEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(20-21)% increased Elusive Effect" }, } },
+ ["ElusiveEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(22-23)% increased Elusive Effect" }, } },
+ ["ElusiveEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(24-25)% increased Elusive Effect" }, } },
+ ["ElusiveEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(26-27)% increased Elusive Effect" }, } },
+ ["ElusiveEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [240857668] = { "(28-29)% increased Elusive Effect" }, } },
+ ["SpellCriticalStrikeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(20-21)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(20-21)% to Critical Strike Multiplier for Spell Damage" }, } },
+ ["SpellCriticalStrikeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(22-23)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(22-23)% to Critical Strike Multiplier for Spell Damage" }, } },
+ ["SpellCriticalStrikeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(24-25)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(24-25)% to Critical Strike Multiplier for Spell Damage" }, } },
+ ["SpellCriticalStrikeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(26-27)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(26-27)% to Critical Strike Multiplier for Spell Damage" }, } },
+ ["SpellCriticalStrikeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(28-29)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(28-29)% to Critical Strike Multiplier for Spell Damage" }, } },
+ ["SpellCriticalStrikeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(30-31)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [274716455] = { "+(30-31)% to Critical Strike Multiplier for Spell Damage" }, } },
+ ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(26-27)% to Critical Strike Multiplier for Spell Damage" }, } },
+ ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(28-29)% to Critical Strike Multiplier for Spell Damage" }, } },
+ ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(30-31)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(30-31)% to Critical Strike Multiplier for Spell Damage" }, } },
+ ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(32-33)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(32-33)% to Critical Strike Multiplier for Spell Damage" }, } },
+ ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(34-35)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(34-35)% to Critical Strike Multiplier for Spell Damage" }, } },
+ ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(36-37)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [274716455] = { "+(36-37)% to Critical Strike Multiplier for Spell Damage" }, } },
+ ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-33)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(32-33)% to Critical Strike Multiplier for Spell Damage" }, } },
+ ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(34-35)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(34-35)% to Critical Strike Multiplier for Spell Damage" }, } },
+ ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(36-37)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(36-37)% to Critical Strike Multiplier for Spell Damage" }, } },
+ ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(38-39)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(38-39)% to Critical Strike Multiplier for Spell Damage" }, } },
+ ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(40-41)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(40-41)% to Critical Strike Multiplier for Spell Damage" }, } },
+ ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(42-43)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [274716455] = { "+(42-43)% to Critical Strike Multiplier for Spell Damage" }, } },
+ ["AttackCriticalStrikeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(20-21)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(20-21)% to Critical Strike Multiplier for Attack Damage" }, } },
+ ["AttackCriticalStrikeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(22-23)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(22-23)% to Critical Strike Multiplier for Attack Damage" }, } },
+ ["AttackCriticalStrikeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(24-25)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(24-25)% to Critical Strike Multiplier for Attack Damage" }, } },
+ ["AttackCriticalStrikeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(26-27)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(26-27)% to Critical Strike Multiplier for Attack Damage" }, } },
+ ["AttackCriticalStrikeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(28-29)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(28-29)% to Critical Strike Multiplier for Attack Damage" }, } },
+ ["AttackCriticalStrikeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(30-31)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [3714003708] = { "+(30-31)% to Critical Strike Multiplier for Attack Damage" }, } },
+ ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(26-27)% to Critical Strike Multiplier for Attack Damage" }, } },
+ ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(28-29)% to Critical Strike Multiplier for Attack Damage" }, } },
+ ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(30-31)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(30-31)% to Critical Strike Multiplier for Attack Damage" }, } },
+ ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(32-33)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(32-33)% to Critical Strike Multiplier for Attack Damage" }, } },
+ ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(34-35)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(34-35)% to Critical Strike Multiplier for Attack Damage" }, } },
+ ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(36-37)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3714003708] = { "+(36-37)% to Critical Strike Multiplier for Attack Damage" }, } },
+ ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-33)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(32-33)% to Critical Strike Multiplier for Attack Damage" }, } },
+ ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(34-35)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(34-35)% to Critical Strike Multiplier for Attack Damage" }, } },
+ ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(36-37)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(36-37)% to Critical Strike Multiplier for Attack Damage" }, } },
+ ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(38-39)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(38-39)% to Critical Strike Multiplier for Attack Damage" }, } },
+ ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(40-41)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(40-41)% to Critical Strike Multiplier for Attack Damage" }, } },
+ ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(42-43)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3714003708] = { "+(42-43)% to Critical Strike Multiplier for Attack Damage" }, } },
+ ["FireDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(15-17)% increased Fire Damage" }, } },
+ ["FireDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(18-20)% increased Fire Damage" }, } },
+ ["FireDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(21-23)% increased Fire Damage" }, } },
+ ["FireDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(24-26)% increased Fire Damage" }, } },
+ ["FireDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-28)% increased Fire Damage" }, } },
+ ["FireDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(29-30)% increased Fire Damage" }, } },
+ ["FireDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(21-23)% increased Fire Damage" }, [4074358700] = { "" }, } },
+ ["FireDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(24-26)% increased Fire Damage" }, [4074358700] = { "" }, } },
+ ["FireDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-29)% increased Fire Damage" }, [4074358700] = { "" }, } },
+ ["FireDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-32)% increased Fire Damage" }, [4074358700] = { "" }, } },
+ ["FireDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(33-34)% increased Fire Damage" }, [4074358700] = { "" }, } },
+ ["FireDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(35-36)% increased Fire Damage" }, [4074358700] = { "" }, } },
+ ["FireDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-29)% increased Fire Damage" }, [3283106665] = { "" }, } },
+ ["FireDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-32)% increased Fire Damage" }, [3283106665] = { "" }, } },
+ ["FireDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(33-35)% increased Fire Damage" }, [3283106665] = { "" }, } },
+ ["FireDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(36-38)% increased Fire Damage" }, [3283106665] = { "" }, } },
+ ["FireDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(39-40)% increased Fire Damage" }, [3283106665] = { "" }, } },
+ ["FireDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(41-42)% increased Fire Damage" }, [3283106665] = { "" }, } },
+ ["ColdDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(15-17)% increased Cold Damage" }, } },
+ ["ColdDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(18-20)% increased Cold Damage" }, } },
+ ["ColdDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(21-23)% increased Cold Damage" }, } },
+ ["ColdDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(24-26)% increased Cold Damage" }, } },
+ ["ColdDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-28)% increased Cold Damage" }, } },
+ ["ColdDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(29-30)% increased Cold Damage" }, } },
+ ["ColdDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(21-23)% increased Cold Damage" }, [4074358700] = { "" }, } },
+ ["ColdDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(24-26)% increased Cold Damage" }, [4074358700] = { "" }, } },
+ ["ColdDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-29)% increased Cold Damage" }, [4074358700] = { "" }, } },
+ ["ColdDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-32)% increased Cold Damage" }, [4074358700] = { "" }, } },
+ ["ColdDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(33-34)% increased Cold Damage" }, [4074358700] = { "" }, } },
+ ["ColdDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(35-36)% increased Cold Damage" }, [4074358700] = { "" }, } },
+ ["ColdDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-29)% increased Cold Damage" }, [3283106665] = { "" }, } },
+ ["ColdDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-32)% increased Cold Damage" }, [3283106665] = { "" }, } },
+ ["ColdDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(33-35)% increased Cold Damage" }, [3283106665] = { "" }, } },
+ ["ColdDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(36-38)% increased Cold Damage" }, [3283106665] = { "" }, } },
+ ["ColdDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(39-40)% increased Cold Damage" }, [3283106665] = { "" }, } },
+ ["ColdDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(41-42)% increased Cold Damage" }, [3283106665] = { "" }, } },
+ ["LightningDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(15-17)% increased Lightning Damage" }, } },
+ ["LightningDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(18-20)% increased Lightning Damage" }, } },
+ ["LightningDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(21-23)% increased Lightning Damage" }, } },
+ ["LightningDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(24-26)% increased Lightning Damage" }, } },
+ ["LightningDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(27-28)% increased Lightning Damage" }, } },
+ ["LightningDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(29-30)% increased Lightning Damage" }, } },
+ ["LightningDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(21-23)% increased Lightning Damage" }, } },
+ ["LightningDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(24-26)% increased Lightning Damage" }, } },
+ ["LightningDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(27-29)% increased Lightning Damage" }, } },
+ ["LightningDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(30-32)% increased Lightning Damage" }, } },
+ ["LightningDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(33-34)% increased Lightning Damage" }, } },
+ ["LightningDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4074358700] = { "" }, [2231156303] = { "(35-36)% increased Lightning Damage" }, } },
+ ["LightningDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(27-29)% increased Lightning Damage" }, } },
+ ["LightningDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(30-32)% increased Lightning Damage" }, } },
+ ["LightningDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(33-35)% increased Lightning Damage" }, } },
+ ["LightningDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(36-38)% increased Lightning Damage" }, } },
+ ["LightningDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(39-40)% increased Lightning Damage" }, } },
+ ["LightningDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3283106665] = { "" }, [2231156303] = { "(41-42)% increased Lightning Damage" }, } },
+ ["IncreasedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(15-17)% increased Chaos Damage" }, } },
+ ["IncreasedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(18-20)% increased Chaos Damage" }, } },
+ ["IncreasedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(21-23)% increased Chaos Damage" }, } },
+ ["IncreasedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(24-26)% increased Chaos Damage" }, } },
+ ["IncreasedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-28)% increased Chaos Damage" }, } },
+ ["IncreasedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(29-30)% increased Chaos Damage" }, } },
+ ["IncreasedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(21-23)% increased Chaos Damage" }, [4074358700] = { "" }, } },
+ ["IncreasedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(24-26)% increased Chaos Damage" }, [4074358700] = { "" }, } },
+ ["IncreasedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-29)% increased Chaos Damage" }, [4074358700] = { "" }, } },
+ ["IncreasedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(30-32)% increased Chaos Damage" }, [4074358700] = { "" }, } },
+ ["IncreasedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(33-34)% increased Chaos Damage" }, [4074358700] = { "" }, } },
+ ["IncreasedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(35-36)% increased Chaos Damage" }, [4074358700] = { "" }, } },
+ ["IncreasedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-29)% increased Chaos Damage" }, [3283106665] = { "" }, } },
+ ["IncreasedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(30-32)% increased Chaos Damage" }, [3283106665] = { "" }, } },
+ ["IncreasedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(33-35)% increased Chaos Damage" }, [3283106665] = { "" }, } },
+ ["IncreasedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(36-38)% increased Chaos Damage" }, [3283106665] = { "" }, } },
+ ["IncreasedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(39-40)% increased Chaos Damage" }, [3283106665] = { "" }, } },
+ ["IncreasedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(41-42)% increased Chaos Damage" }, [3283106665] = { "" }, } },
+ ["PhysicalDamagePercentEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(15-17)% increased Global Physical Damage" }, } },
+ ["PhysicalDamagePercentEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(18-20)% increased Global Physical Damage" }, } },
+ ["PhysicalDamagePercentEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(21-23)% increased Global Physical Damage" }, } },
+ ["PhysicalDamagePercentEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(24-26)% increased Global Physical Damage" }, } },
+ ["PhysicalDamagePercentEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(27-28)% increased Global Physical Damage" }, } },
+ ["PhysicalDamagePercentEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(29-30)% increased Global Physical Damage" }, } },
+ ["PhysicalDamagePercentEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(21-23)% increased Global Physical Damage" }, } },
+ ["PhysicalDamagePercentEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(24-26)% increased Global Physical Damage" }, } },
+ ["PhysicalDamagePercentEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(27-29)% increased Global Physical Damage" }, } },
+ ["PhysicalDamagePercentEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(30-32)% increased Global Physical Damage" }, } },
+ ["PhysicalDamagePercentEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(33-34)% increased Global Physical Damage" }, } },
+ ["PhysicalDamagePercentEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4074358700] = { "" }, [1310194496] = { "(35-36)% increased Global Physical Damage" }, } },
+ ["PhysicalDamagePercentEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(27-29)% increased Global Physical Damage" }, } },
+ ["PhysicalDamagePercentEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(30-32)% increased Global Physical Damage" }, } },
+ ["PhysicalDamagePercentEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(33-35)% increased Global Physical Damage" }, } },
+ ["PhysicalDamagePercentEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(36-38)% increased Global Physical Damage" }, } },
+ ["PhysicalDamagePercentEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(39-40)% increased Global Physical Damage" }, } },
+ ["PhysicalDamagePercentEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3283106665] = { "" }, [1310194496] = { "(41-42)% increased Global Physical Damage" }, } },
+ ["ArcticArmourBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(15-17)% increased Arctic Armour Buff Effect" }, } },
+ ["ArcticArmourBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(18-20)% increased Arctic Armour Buff Effect" }, } },
+ ["ArcticArmourBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(21-23)% increased Arctic Armour Buff Effect" }, } },
+ ["ArcticArmourBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(24-26)% increased Arctic Armour Buff Effect" }, } },
+ ["ArcticArmourBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-29)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(27-29)% increased Arctic Armour Buff Effect" }, } },
+ ["ArcticArmourBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(30-32)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [3995612171] = { "(30-32)% increased Arctic Armour Buff Effect" }, } },
+ ["ArcticArmourBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(24-26)% increased Arctic Armour Buff Effect" }, } },
+ ["ArcticArmourBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(27-29)% increased Arctic Armour Buff Effect" }, } },
+ ["ArcticArmourBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(30-32)% increased Arctic Armour Buff Effect" }, } },
+ ["ArcticArmourBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(33-35)% increased Arctic Armour Buff Effect" }, } },
+ ["ArcticArmourBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(36-38)% increased Arctic Armour Buff Effect" }, } },
+ ["ArcticArmourBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3995612171] = { "(39-41)% increased Arctic Armour Buff Effect" }, } },
+ ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(33-35)% increased Arctic Armour Buff Effect" }, } },
+ ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(36-38)% increased Arctic Armour Buff Effect" }, } },
+ ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(39-41)% increased Arctic Armour Buff Effect" }, } },
+ ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(42-44)% increased Arctic Armour Buff Effect" }, } },
+ ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(45-47)% increased Arctic Armour Buff Effect" }, } },
+ ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3995612171] = { "(48-50)% increased Arctic Armour Buff Effect" }, } },
+ ["FleshAndStoneAreaOfEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flesh and Stone has (15-17)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (15-17)% increased Area of Effect" }, } },
+ ["FleshAndStoneAreaOfEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flesh and Stone has (18-20)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (18-20)% increased Area of Effect" }, } },
+ ["FleshAndStoneAreaOfEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flesh and Stone has (21-23)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (21-23)% increased Area of Effect" }, } },
+ ["FleshAndStoneAreaOfEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flesh and Stone has (24-26)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (24-26)% increased Area of Effect" }, } },
+ ["FleshAndStoneAreaOfEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flesh and Stone has (27-29)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (27-29)% increased Area of Effect" }, } },
+ ["FleshAndStoneAreaOfEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flesh and Stone has (30-32)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [789978501] = { "Flesh and Stone has (30-32)% increased Area of Effect" }, } },
+ ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (24-26)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (24-26)% increased Area of Effect" }, } },
+ ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (27-29)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (27-29)% increased Area of Effect" }, } },
+ ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (30-32)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (30-32)% increased Area of Effect" }, } },
+ ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (33-35)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (33-35)% increased Area of Effect" }, } },
+ ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (36-38)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (36-38)% increased Area of Effect" }, } },
+ ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (39-41)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [789978501] = { "Flesh and Stone has (39-41)% increased Area of Effect" }, } },
+ ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (33-35)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (33-35)% increased Area of Effect" }, } },
+ ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (36-38)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (36-38)% increased Area of Effect" }, } },
+ ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (39-41)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (39-41)% increased Area of Effect" }, } },
+ ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (42-44)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (42-44)% increased Area of Effect" }, } },
+ ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (45-47)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (45-47)% increased Area of Effect" }, } },
+ ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (48-50)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [789978501] = { "Flesh and Stone has (48-50)% increased Area of Effect" }, } },
+ ["TempestShieldBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Tempest Shield has (15-17)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (15-17)% increased Buff Effect" }, } },
+ ["TempestShieldBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Tempest Shield has (18-20)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (18-20)% increased Buff Effect" }, } },
+ ["TempestShieldBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Tempest Shield has (21-23)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (21-23)% increased Buff Effect" }, } },
+ ["TempestShieldBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Tempest Shield has (24-26)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (24-26)% increased Buff Effect" }, } },
+ ["TempestShieldBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Tempest Shield has (27-29)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (27-29)% increased Buff Effect" }, } },
+ ["TempestShieldBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Tempest Shield has (30-32)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (30-32)% increased Buff Effect" }, } },
+ ["TempestShieldBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (24-26)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (24-26)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["TempestShieldBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (27-29)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (27-29)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["TempestShieldBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (30-32)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (30-32)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["TempestShieldBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (33-35)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (33-35)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["TempestShieldBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (36-38)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (36-38)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["TempestShieldBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (39-41)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (39-41)% increased Buff Effect" }, [4074358700] = { "" }, } },
+ ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (33-35)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (33-35)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (36-38)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (36-38)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (39-41)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (39-41)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (42-44)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (42-44)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (45-47)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (45-47)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (48-50)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [2662416009] = { "Tempest Shield has (48-50)% increased Buff Effect" }, [3283106665] = { "" }, } },
+ ["DamageRemovedFromManaBeforeLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "5% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "5% of Damage is taken from Mana before Life" }, } },
+ ["DamageRemovedFromManaBeforeLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "6% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "6% of Damage is taken from Mana before Life" }, } },
+ ["DamageRemovedFromManaBeforeLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "7% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "7% of Damage is taken from Mana before Life" }, } },
+ ["DamageRemovedFromManaBeforeLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "8% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "8% of Damage is taken from Mana before Life" }, } },
+ ["DamageRemovedFromManaBeforeLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "9% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "9% of Damage is taken from Mana before Life" }, } },
+ ["DamageRemovedFromManaBeforeLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "10% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "10% of Damage is taken from Mana before Life" }, } },
+ ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "7% of Damage is taken from Mana before Life" }, } },
+ ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 8% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "8% of Damage is taken from Mana before Life" }, } },
+ ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 9% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "9% of Damage is taken from Mana before Life" }, } },
+ ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "10% of Damage is taken from Mana before Life" }, } },
+ ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "11% of Damage is taken from Mana before Life" }, } },
+ ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [458438597] = { "12% of Damage is taken from Mana before Life" }, } },
+ ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "9% of Damage is taken from Mana before Life" }, } },
+ ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "10% of Damage is taken from Mana before Life" }, } },
+ ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "11% of Damage is taken from Mana before Life" }, } },
+ ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "12% of Damage is taken from Mana before Life" }, } },
+ ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "13% of Damage is taken from Mana before Life" }, } },
+ ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [458438597] = { "14% of Damage is taken from Mana before Life" }, } },
+ ["GolemBuffEffectUniqueEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-21)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(19-21)% increased Effect of Buffs granted by your Golems" }, } },
+ ["GolemBuffEffectUniqueEldritchImplicit2"] = { type = "Exarch", affix = "", "(22-24)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(22-24)% increased Effect of Buffs granted by your Golems" }, } },
+ ["GolemBuffEffectUniqueEldritchImplicit3"] = { type = "Exarch", affix = "", "(25-27)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(25-27)% increased Effect of Buffs granted by your Golems" }, } },
+ ["GolemBuffEffectUniqueEldritchImplicit4"] = { type = "Exarch", affix = "", "(28-30)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(28-30)% increased Effect of Buffs granted by your Golems" }, } },
+ ["GolemBuffEffectUniqueEldritchImplicit5"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(31-33)% increased Effect of Buffs granted by your Golems" }, } },
+ ["GolemBuffEffectUniqueEldritchImplicit6"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2109043683] = { "(34-36)% increased Effect of Buffs granted by your Golems" }, } },
+ ["GolemBuffEffectUniqueEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(31-33)% increased Effect of Buffs granted by your Golems" }, } },
+ ["GolemBuffEffectUniqueEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(34-36)% increased Effect of Buffs granted by your Golems" }, } },
+ ["GolemBuffEffectUniqueEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(37-39)% increased Effect of Buffs granted by your Golems" }, } },
+ ["GolemBuffEffectUniqueEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(40-42)% increased Effect of Buffs granted by your Golems" }, } },
+ ["GolemBuffEffectUniqueEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(43-45)% increased Effect of Buffs granted by your Golems" }, } },
+ ["GolemBuffEffectUniqueEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2109043683] = { "(46-48)% increased Effect of Buffs granted by your Golems" }, } },
+ ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(43-45)% increased Effect of Buffs granted by your Golems" }, } },
+ ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(46-48)% increased Effect of Buffs granted by your Golems" }, } },
+ ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(49-51)% increased Effect of Buffs granted by your Golems" }, } },
+ ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(52-54)% increased Effect of Buffs granted by your Golems" }, } },
+ ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(55-57)% increased Effect of Buffs granted by your Golems" }, } },
+ ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2109043683] = { "(58-60)% increased Effect of Buffs granted by your Golems" }, } },
+ ["AuraEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(9-10)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(9-10)% increased effect of Non-Curse Auras from your Skills" }, } },
+ ["AuraEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(11-12)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(11-12)% increased effect of Non-Curse Auras from your Skills" }, } },
+ ["AuraEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(13-14)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(13-14)% increased effect of Non-Curse Auras from your Skills" }, } },
+ ["AuraEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(15-16)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(15-16)% increased effect of Non-Curse Auras from your Skills" }, } },
+ ["AuraEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(17-18)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(17-18)% increased effect of Non-Curse Auras from your Skills" }, } },
+ ["AuraEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(19-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(19-20)% increased effect of Non-Curse Auras from your Skills" }, } },
+ ["AuraEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(17-18)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } },
+ ["AuraEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(19-20)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } },
+ ["AuraEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(21-22)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } },
+ ["AuraEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(23-24)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } },
+ ["AuraEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(25-26)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } },
+ ["AuraEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(27-28)% increased effect of Non-Curse Auras from your Skills" }, [4074358700] = { "" }, } },
+ ["AuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(25-26)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } },
+ ["AuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(27-28)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } },
+ ["AuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(29-30)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } },
+ ["AuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(31-32)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } },
+ ["AuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(33-34)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } },
+ ["AuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, tradeHashes = { [1880071428] = { "(35-36)% increased effect of Non-Curse Auras from your Skills" }, [3283106665] = { "" }, } },
+ ["CurseEffectivenessEldritchImplicit1"] = { type = "Exarch", affix = "", "7% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "7% increased Effect of your Curses" }, } },
+ ["CurseEffectivenessEldritchImplicit2"] = { type = "Exarch", affix = "", "8% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "8% increased Effect of your Curses" }, } },
+ ["CurseEffectivenessEldritchImplicit3"] = { type = "Exarch", affix = "", "9% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "9% increased Effect of your Curses" }, } },
+ ["CurseEffectivenessEldritchImplicit4"] = { type = "Exarch", affix = "", "10% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "10% increased Effect of your Curses" }, } },
+ ["CurseEffectivenessEldritchImplicit5"] = { type = "Exarch", affix = "", "11% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "11% increased Effect of your Curses" }, } },
+ ["CurseEffectivenessEldritchImplicit6"] = { type = "Exarch", affix = "", "12% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "12% increased Effect of your Curses" }, } },
+ ["CurseEffectivenessEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "10% increased Effect of your Curses" }, [4074358700] = { "" }, } },
+ ["CurseEffectivenessEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "11% increased Effect of your Curses" }, [4074358700] = { "" }, } },
+ ["CurseEffectivenessEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "12% increased Effect of your Curses" }, [4074358700] = { "" }, } },
+ ["CurseEffectivenessEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "13% increased Effect of your Curses" }, [4074358700] = { "" }, } },
+ ["CurseEffectivenessEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "14% increased Effect of your Curses" }, [4074358700] = { "" }, } },
+ ["CurseEffectivenessEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "15% increased Effect of your Curses" }, [4074358700] = { "" }, } },
+ ["CurseEffectivenessEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "13% increased Effect of your Curses" }, [3283106665] = { "" }, } },
+ ["CurseEffectivenessEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "14% increased Effect of your Curses" }, [3283106665] = { "" }, } },
+ ["CurseEffectivenessEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "15% increased Effect of your Curses" }, [3283106665] = { "" }, } },
+ ["CurseEffectivenessEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "16% increased Effect of your Curses" }, [3283106665] = { "" }, } },
+ ["CurseEffectivenessEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "17% increased Effect of your Curses" }, [3283106665] = { "" }, } },
+ ["CurseEffectivenessEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "18% increased Effect of your Curses" }, [3283106665] = { "" }, } },
+ ["OfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(13-14)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(13-14)% increased effect of Offerings" }, } },
+ ["OfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(15-16)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(15-16)% increased effect of Offerings" }, } },
+ ["OfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(17-18)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(17-18)% increased effect of Offerings" }, } },
+ ["OfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(19-20)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(19-20)% increased effect of Offerings" }, } },
+ ["OfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(21-22)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(21-22)% increased effect of Offerings" }, } },
+ ["OfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(23-24)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(23-24)% increased effect of Offerings" }, } },
+ ["OfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(19-20)% increased effect of Offerings" }, [4074358700] = { "" }, } },
+ ["OfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(21-22)% increased effect of Offerings" }, [4074358700] = { "" }, } },
+ ["OfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(23-24)% increased effect of Offerings" }, [4074358700] = { "" }, } },
+ ["OfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(25-26)% increased effect of Offerings" }, [4074358700] = { "" }, } },
+ ["OfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(27-28)% increased effect of Offerings" }, [4074358700] = { "" }, } },
+ ["OfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(29-30)% increased effect of Offerings" }, [4074358700] = { "" }, } },
+ ["OfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(25-26)% increased effect of Offerings" }, [3283106665] = { "" }, } },
+ ["OfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(27-28)% increased effect of Offerings" }, [3283106665] = { "" }, } },
+ ["OfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(29-30)% increased effect of Offerings" }, [3283106665] = { "" }, } },
+ ["OfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(31-32)% increased effect of Offerings" }, [3283106665] = { "" }, } },
+ ["OfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(33-34)% increased effect of Offerings" }, [3283106665] = { "" }, } },
+ ["OfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(35-36)% increased effect of Offerings" }, [3283106665] = { "" }, } },
+ ["WarcryEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-20)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(19-20)% increased Warcry Buff Effect" }, } },
+ ["WarcryEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(21-22)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(21-22)% increased Warcry Buff Effect" }, } },
+ ["WarcryEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(23-24)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(23-24)% increased Warcry Buff Effect" }, } },
+ ["WarcryEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(25-26)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(25-26)% increased Warcry Buff Effect" }, } },
+ ["WarcryEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(27-28)% increased Warcry Buff Effect" }, } },
+ ["WarcryEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(29-30)% increased Warcry Buff Effect" }, } },
+ ["WarcryEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(25-26)% increased Warcry Buff Effect" }, } },
+ ["WarcryEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(27-28)% increased Warcry Buff Effect" }, } },
+ ["WarcryEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(29-30)% increased Warcry Buff Effect" }, } },
+ ["WarcryEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(31-32)% increased Warcry Buff Effect" }, } },
+ ["WarcryEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(33-34)% increased Warcry Buff Effect" }, } },
+ ["WarcryEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3037553757] = { "(35-36)% increased Warcry Buff Effect" }, } },
+ ["WarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(31-32)% increased Warcry Buff Effect" }, } },
+ ["WarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(33-34)% increased Warcry Buff Effect" }, } },
+ ["WarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(35-36)% increased Warcry Buff Effect" }, } },
+ ["WarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(37-38)% increased Warcry Buff Effect" }, } },
+ ["WarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(39-40)% increased Warcry Buff Effect" }, } },
+ ["WarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3037553757] = { "(41-42)% increased Warcry Buff Effect" }, } },
+ ["FlaskEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flasks applied to you have (6-7)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (6-7)% increased Effect" }, } },
+ ["FlaskEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flasks applied to you have (8-9)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (8-9)% increased Effect" }, } },
+ ["FlaskEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flasks applied to you have (10-11)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (10-11)% increased Effect" }, } },
+ ["FlaskEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flasks applied to you have (12-13)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (12-13)% increased Effect" }, } },
+ ["FlaskEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flasks applied to you have (14-15)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (14-15)% increased Effect" }, } },
+ ["FlaskEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flasks applied to you have (16-17)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (16-17)% increased Effect" }, } },
+ ["FlaskEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (12-13)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (12-13)% increased Effect" }, } },
+ ["FlaskEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (14-15)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (14-15)% increased Effect" }, } },
+ ["FlaskEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (16-17)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (16-17)% increased Effect" }, } },
+ ["FlaskEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (18-19)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (18-19)% increased Effect" }, } },
+ ["FlaskEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (20-21)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (20-21)% increased Effect" }, } },
+ ["FlaskEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (22-23)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, tradeHashes = { [4074358700] = { "" }, [114734841] = { "Flasks applied to you have (22-23)% increased Effect" }, } },
+ ["FlaskEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (18-19)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (18-19)% increased Effect" }, } },
+ ["FlaskEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (20-21)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (20-21)% increased Effect" }, } },
+ ["FlaskEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (22-23)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (22-23)% increased Effect" }, } },
+ ["FlaskEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (24-25)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (24-25)% increased Effect" }, } },
+ ["FlaskEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (26-27)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (26-27)% increased Effect" }, } },
+ ["FlaskEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (28-29)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, tradeHashes = { [3283106665] = { "" }, [114734841] = { "Flasks applied to you have (28-29)% increased Effect" }, } },
+ ["DamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(8-9)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(8-9)% of Damage taken Recouped as Life" }, } },
+ ["DamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(10-11)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-11)% of Damage taken Recouped as Life" }, } },
+ ["DamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(12-13)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(12-13)% of Damage taken Recouped as Life" }, } },
+ ["DamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(14-15)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(14-15)% of Damage taken Recouped as Life" }, } },
+ ["DamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(16-17)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(16-17)% of Damage taken Recouped as Life" }, } },
+ ["DamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(18-19)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(18-19)% of Damage taken Recouped as Life" }, } },
+ ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(14-15)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(16-17)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(18-19)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(20-21)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(22-23)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-25)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(24-25)% of Damage taken Recouped as Life" }, [4074358700] = { "" }, } },
+ ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(20-21)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(22-23)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(24-25)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(26-27)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(28-29)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-31)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(30-31)% of Damage taken Recouped as Life" }, [3283106665] = { "" }, } },
+ ["FlaskGainPerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } },
+ ["FlaskGainPerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } },
+ ["FlaskGainPerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } },
+ ["FlaskGainPerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } },
+ ["FlaskGainPerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, } },
+ ["FlaskGainPerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, } },
+ ["FlaskGainPerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, [4074358700] = { "" }, } },
+ ["FlaskGainPerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, [4074358700] = { "" }, } },
+ ["FlaskGainPerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, [4074358700] = { "" }, } },
+ ["FlaskGainPerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 2 Charges every 3 seconds" }, [4074358700] = { "" }, } },
+ ["FlaskGainPerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [4074358700] = { "" }, } },
+ ["FlaskGainPerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [4074358700] = { "" }, } },
+ ["FlaskGainPerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [3283106665] = { "" }, } },
+ ["FlaskGainPerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [3283106665] = { "" }, } },
+ ["FlaskGainPerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [3283106665] = { "" }, } },
+ ["FlaskGainPerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 3 Charges every 3 seconds" }, [3283106665] = { "" }, } },
+ ["FlaskGainPerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 4 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 4 Charges every 3 seconds" }, [3283106665] = { "" }, } },
+ ["FlaskGainPerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 4 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [1193283913] = { "Flasks gain 4 Charges every 3 seconds" }, [3283106665] = { "" }, } },
+ ["MaximumResistancesEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } },
+ ["MaximumResistancesEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } },
+ ["MaximumResistancesEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } },
+ ["MaximumResistancesEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } },
+ ["MaximumResistancesEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } },
+ ["MaximumResistancesEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } },
+ ["MaximumResistancesEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, [4074358700] = { "" }, } },
+ ["MaximumResistancesEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, [4074358700] = { "" }, } },
+ ["MaximumResistancesEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, [4074358700] = { "" }, } },
+ ["MaximumResistancesEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, [4074358700] = { "" }, } },
+ ["MaximumResistancesEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [4074358700] = { "" }, } },
+ ["MaximumResistancesEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [4074358700] = { "" }, } },
+ ["MaximumResistancesEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [3283106665] = { "" }, } },
+ ["MaximumResistancesEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [3283106665] = { "" }, } },
+ ["MaximumResistancesEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [3283106665] = { "" }, } },
+ ["MaximumResistancesEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+3% to all maximum Resistances" }, [3283106665] = { "" }, } },
+ ["MaximumResistancesEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+4% to all maximum Resistances" }, [3283106665] = { "" }, } },
+ ["MaximumResistancesEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+4% to all maximum Resistances" }, [3283106665] = { "" }, } },
+ ["MaximumFireResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } },
+ ["MaximumFireResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } },
+ ["MaximumFireResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } },
+ ["MaximumFireResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } },
+ ["MaximumFireResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } },
+ ["MaximumFireResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } },
+ ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+4% to maximum Fire Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+5% to maximum Fire Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+5% to maximum Fire Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumColdResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } },
+ ["MaximumColdResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } },
+ ["MaximumColdResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } },
+ ["MaximumColdResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } },
+ ["MaximumColdResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } },
+ ["MaximumColdResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } },
+ ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+4% to maximum Cold Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to maximum Cold Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+5% to maximum Cold Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumLightningResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } },
+ ["MaximumLightningResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } },
+ ["MaximumLightningResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } },
+ ["MaximumLightningResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } },
+ ["MaximumLightningResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } },
+ ["MaximumLightningResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } },
+ ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+4% to maximum Lightning Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+5% to maximum Lightning Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+5% to maximum Lightning Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumChaosResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to maximum Chaos Resistance" }, } },
+ ["MaximumChaosResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to maximum Chaos Resistance" }, } },
+ ["MaximumChaosResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, } },
+ ["MaximumChaosResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, } },
+ ["MaximumChaosResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } },
+ ["MaximumChaosResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } },
+ ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, [4074358700] = { "" }, } },
+ ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+4% to maximum Chaos Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+5% to maximum Chaos Resistance" }, [3283106665] = { "" }, } },
+ ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+5% to maximum Chaos Resistance" }, [3283106665] = { "" }, } },
+ ["EnduranceChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 15 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 15 seconds" }, } },
+ ["EnduranceChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 14 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 14 seconds" }, } },
+ ["EnduranceChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 13 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 13 seconds" }, } },
+ ["EnduranceChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 12 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 12 seconds" }, } },
+ ["EnduranceChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 11 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 11 seconds" }, } },
+ ["EnduranceChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 10 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 10 seconds" }, } },
+ ["EnduranceChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 11 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 11 seconds" }, [4074358700] = { "" }, } },
+ ["EnduranceChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 10 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 10 seconds" }, [4074358700] = { "" }, } },
+ ["EnduranceChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 9 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 9 seconds" }, [4074358700] = { "" }, } },
+ ["EnduranceChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 8 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 8 seconds" }, [4074358700] = { "" }, } },
+ ["EnduranceChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 7 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 7 seconds" }, [4074358700] = { "" }, } },
+ ["EnduranceChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 6 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 6 seconds" }, [4074358700] = { "" }, } },
+ ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 7 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 7 seconds" }, [3283106665] = { "" }, } },
+ ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 6 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 6 seconds" }, [3283106665] = { "" }, } },
+ ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 5 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 5 seconds" }, [3283106665] = { "" }, } },
+ ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 4 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 4 seconds" }, [3283106665] = { "" }, } },
+ ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 3 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 3 seconds" }, [3283106665] = { "" }, } },
+ ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 2 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2555092341] = { "Gain an Endurance Charge every 2 seconds" }, [3283106665] = { "" }, } },
+ ["FrenzyChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 15 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 15 seconds" }, } },
+ ["FrenzyChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 14 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 14 seconds" }, } },
+ ["FrenzyChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 13 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 13 seconds" }, } },
+ ["FrenzyChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 12 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 12 seconds" }, } },
+ ["FrenzyChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 11 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 11 seconds" }, } },
+ ["FrenzyChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 10 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 10 seconds" }, } },
+ ["FrenzyChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 11 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 11 seconds" }, [4074358700] = { "" }, } },
+ ["FrenzyChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 10 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 10 seconds" }, [4074358700] = { "" }, } },
+ ["FrenzyChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 9 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 9 seconds" }, [4074358700] = { "" }, } },
+ ["FrenzyChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 8 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 8 seconds" }, [4074358700] = { "" }, } },
+ ["FrenzyChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 7 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 7 seconds" }, [4074358700] = { "" }, } },
+ ["FrenzyChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 6 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 6 seconds" }, [4074358700] = { "" }, } },
+ ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 7 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 7 seconds" }, [3283106665] = { "" }, } },
+ ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 6 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 6 seconds" }, [3283106665] = { "" }, } },
+ ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 5 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 5 seconds" }, [3283106665] = { "" }, } },
+ ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 4 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 4 seconds" }, [3283106665] = { "" }, } },
+ ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 3 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 3 seconds" }, [3283106665] = { "" }, } },
+ ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 2 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3906868545] = { "Gain a Frenzy Charge every 2 seconds" }, [3283106665] = { "" }, } },
+ ["PowerChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain a Power Charge every 15 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 15 seconds" }, } },
+ ["PowerChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain a Power Charge every 14 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 14 seconds" }, } },
+ ["PowerChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain a Power Charge every 13 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 13 seconds" }, } },
+ ["PowerChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain a Power Charge every 12 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 12 seconds" }, } },
+ ["PowerChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain a Power Charge every 11 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 11 seconds" }, } },
+ ["PowerChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain a Power Charge every 10 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 10 seconds" }, } },
+ ["PowerChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 11 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 11 seconds" }, [4074358700] = { "" }, } },
+ ["PowerChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 10 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 10 seconds" }, [4074358700] = { "" }, } },
+ ["PowerChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 9 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 9 seconds" }, [4074358700] = { "" }, } },
+ ["PowerChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 8 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 8 seconds" }, [4074358700] = { "" }, } },
+ ["PowerChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 7 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 7 seconds" }, [4074358700] = { "" }, } },
+ ["PowerChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 6 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 6 seconds" }, [4074358700] = { "" }, } },
+ ["PowerChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 7 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 7 seconds" }, [3283106665] = { "" }, } },
+ ["PowerChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 6 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 6 seconds" }, [3283106665] = { "" }, } },
+ ["PowerChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 5 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 5 seconds" }, [3283106665] = { "" }, } },
+ ["PowerChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 4 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 4 seconds" }, [3283106665] = { "" }, } },
+ ["PowerChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 3 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 3 seconds" }, [3283106665] = { "" }, } },
+ ["PowerChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 2 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3533655459] = { "Gain a Power Charge every 2 seconds" }, [3283106665] = { "" }, } },
+ ["BlockPercentEldritchImplicit1"] = { type = "Eater", affix = "", "5% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "5% Chance to Block Attack Damage" }, } },
+ ["BlockPercentEldritchImplicit2"] = { type = "Eater", affix = "", "6% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "6% Chance to Block Attack Damage" }, } },
+ ["BlockPercentEldritchImplicit3"] = { type = "Eater", affix = "", "7% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "7% Chance to Block Attack Damage" }, } },
+ ["BlockPercentEldritchImplicit4"] = { type = "Eater", affix = "", "8% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "8% Chance to Block Attack Damage" }, } },
+ ["BlockPercentEldritchImplicit5"] = { type = "Eater", affix = "", "9% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "9% Chance to Block Attack Damage" }, } },
+ ["BlockPercentEldritchImplicit6"] = { type = "Eater", affix = "", "10% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [2530372417] = { "10% Chance to Block Attack Damage" }, } },
+ ["BlockPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "7% Chance to Block Attack Damage" }, } },
+ ["BlockPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "8% Chance to Block Attack Damage" }, } },
+ ["BlockPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "9% Chance to Block Attack Damage" }, } },
+ ["BlockPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "10% Chance to Block Attack Damage" }, } },
+ ["BlockPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "11% Chance to Block Attack Damage" }, } },
+ ["BlockPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2530372417] = { "12% Chance to Block Attack Damage" }, } },
+ ["BlockPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "9% Chance to Block Attack Damage" }, } },
+ ["BlockPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "10% Chance to Block Attack Damage" }, } },
+ ["BlockPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "11% Chance to Block Attack Damage" }, } },
+ ["BlockPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "12% Chance to Block Attack Damage" }, } },
+ ["BlockPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "13% Chance to Block Attack Damage" }, } },
+ ["BlockPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2530372417] = { "14% Chance to Block Attack Damage" }, } },
+ ["SpellBlockPercentageEldritchImplicit1"] = { type = "Eater", affix = "", "5% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "5% Chance to Block Spell Damage" }, } },
+ ["SpellBlockPercentageEldritchImplicit2"] = { type = "Eater", affix = "", "6% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "6% Chance to Block Spell Damage" }, } },
+ ["SpellBlockPercentageEldritchImplicit3"] = { type = "Eater", affix = "", "7% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "7% Chance to Block Spell Damage" }, } },
+ ["SpellBlockPercentageEldritchImplicit4"] = { type = "Eater", affix = "", "8% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "8% Chance to Block Spell Damage" }, } },
+ ["SpellBlockPercentageEldritchImplicit5"] = { type = "Eater", affix = "", "9% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "9% Chance to Block Spell Damage" }, } },
+ ["SpellBlockPercentageEldritchImplicit6"] = { type = "Eater", affix = "", "10% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "10% Chance to Block Spell Damage" }, } },
+ ["SpellBlockPercentageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [561307714] = { "7% Chance to Block Spell Damage" }, [4074358700] = { "" }, } },
+ ["SpellBlockPercentageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "8% Chance to Block Spell Damage" }, [4074358700] = { "" }, } },
+ ["SpellBlockPercentageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "9% Chance to Block Spell Damage" }, [4074358700] = { "" }, } },
+ ["SpellBlockPercentageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "10% Chance to Block Spell Damage" }, [4074358700] = { "" }, } },
+ ["SpellBlockPercentageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "11% Chance to Block Spell Damage" }, [4074358700] = { "" }, } },
+ ["SpellBlockPercentageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, tradeHashes = { [561307714] = { "12% Chance to Block Spell Damage" }, [4074358700] = { "" }, } },
+ ["SpellBlockPercentageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [561307714] = { "9% Chance to Block Spell Damage" }, [3283106665] = { "" }, } },
+ ["SpellBlockPercentageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, tradeHashes = { [561307714] = { "10% Chance to Block Spell Damage" }, [3283106665] = { "" }, } },
+ ["SpellBlockPercentageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [561307714] = { "11% Chance to Block Spell Damage" }, [3283106665] = { "" }, } },
+ ["SpellBlockPercentageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [561307714] = { "12% Chance to Block Spell Damage" }, [3283106665] = { "" }, } },
+ ["SpellBlockPercentageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [561307714] = { "13% Chance to Block Spell Damage" }, [3283106665] = { "" }, } },
+ ["SpellBlockPercentageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, tradeHashes = { [561307714] = { "14% Chance to Block Spell Damage" }, [3283106665] = { "" }, } },
+ ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(17-18)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(17-18)% increased Armour" }, } },
+ ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(19-20)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(19-20)% increased Armour" }, } },
+ ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(21-22)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(21-22)% increased Armour" }, } },
+ ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(23-24)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(23-24)% increased Armour" }, } },
+ ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(25-26)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(25-26)% increased Armour" }, } },
+ ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(27-28)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(27-28)% increased Armour" }, } },
+ ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(23-24)% increased Armour" }, } },
+ ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(25-26)% increased Armour" }, } },
+ ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(27-28)% increased Armour" }, } },
+ ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(29-30)% increased Armour" }, } },
+ ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(31-32)% increased Armour" }, } },
+ ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [4074358700] = { "" }, [2866361420] = { "(33-34)% increased Armour" }, } },
+ ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(29-30)% increased Armour" }, } },
+ ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(31-32)% increased Armour" }, } },
+ ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(33-34)% increased Armour" }, } },
+ ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(35-36)% increased Armour" }, } },
+ ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(37-38)% increased Armour" }, } },
+ ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3283106665] = { "" }, [2866361420] = { "(39-40)% increased Armour" }, } },
+ ["GlobalEvasionRatingPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(17-18)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(17-18)% increased Evasion Rating" }, } },
+ ["GlobalEvasionRatingPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(19-20)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(19-20)% increased Evasion Rating" }, } },
+ ["GlobalEvasionRatingPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(21-22)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(21-22)% increased Evasion Rating" }, } },
+ ["GlobalEvasionRatingPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(23-24)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(23-24)% increased Evasion Rating" }, } },
+ ["GlobalEvasionRatingPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(25-26)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(25-26)% increased Evasion Rating" }, } },
+ ["GlobalEvasionRatingPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(27-28)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(27-28)% increased Evasion Rating" }, } },
+ ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(23-24)% increased Evasion Rating" }, [4074358700] = { "" }, } },
+ ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(25-26)% increased Evasion Rating" }, [4074358700] = { "" }, } },
+ ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(27-28)% increased Evasion Rating" }, [4074358700] = { "" }, } },
+ ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(29-30)% increased Evasion Rating" }, [4074358700] = { "" }, } },
+ ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(31-32)% increased Evasion Rating" }, [4074358700] = { "" }, } },
+ ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(33-34)% increased Evasion Rating" }, [4074358700] = { "" }, } },
+ ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(29-30)% increased Evasion Rating" }, [3283106665] = { "" }, } },
+ ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(31-32)% increased Evasion Rating" }, [3283106665] = { "" }, } },
+ ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(33-34)% increased Evasion Rating" }, [3283106665] = { "" }, } },
+ ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(35-36)% increased Evasion Rating" }, [3283106665] = { "" }, } },
+ ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(37-38)% increased Evasion Rating" }, [3283106665] = { "" }, } },
+ ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(39-40)% increased Evasion Rating" }, [3283106665] = { "" }, } },
+ ["GlobalEnergyShieldPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(6-7)% increased maximum Energy Shield" }, } },
+ ["GlobalEnergyShieldPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(8-9)% increased maximum Energy Shield" }, } },
+ ["GlobalEnergyShieldPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(10-11)% increased maximum Energy Shield" }, } },
+ ["GlobalEnergyShieldPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(12-13)% increased maximum Energy Shield" }, } },
+ ["GlobalEnergyShieldPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(14-15)% increased maximum Energy Shield" }, } },
+ ["GlobalEnergyShieldPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(16-17)% increased maximum Energy Shield" }, } },
+ ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(12-13)% increased maximum Energy Shield" }, } },
+ ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(14-15)% increased maximum Energy Shield" }, } },
+ ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(16-17)% increased maximum Energy Shield" }, } },
+ ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(18-19)% increased maximum Energy Shield" }, } },
+ ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(20-21)% increased maximum Energy Shield" }, } },
+ ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4074358700] = { "" }, [2482852589] = { "(22-23)% increased maximum Energy Shield" }, } },
+ ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(18-19)% increased maximum Energy Shield" }, } },
+ ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(20-21)% increased maximum Energy Shield" }, } },
+ ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(22-23)% increased maximum Energy Shield" }, } },
+ ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(24-25)% increased maximum Energy Shield" }, } },
+ ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(26-27)% increased maximum Energy Shield" }, } },
+ ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3283106665] = { "" }, [2482852589] = { "(28-29)% increased maximum Energy Shield" }, } },
+ ["PlayerReflectedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "45% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "45% of Damage from your Hits cannot be Reflected" }, } },
+ ["PlayerReflectedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "50% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "50% of Damage from your Hits cannot be Reflected" }, } },
+ ["PlayerReflectedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "55% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "55% of Damage from your Hits cannot be Reflected" }, } },
+ ["PlayerReflectedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "60% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "60% of Damage from your Hits cannot be Reflected" }, } },
+ ["PlayerReflectedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "65% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "65% of Damage from your Hits cannot be Reflected" }, } },
+ ["PlayerReflectedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "70% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2510655429] = { "70% of Damage from your Hits cannot be Reflected" }, } },
+ ["PlayerReflectedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "60% of Damage from your Hits cannot be Reflected" }, } },
+ ["PlayerReflectedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "65% of Damage from your Hits cannot be Reflected" }, } },
+ ["PlayerReflectedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "70% of Damage from your Hits cannot be Reflected" }, } },
+ ["PlayerReflectedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 75% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "75% of Damage from your Hits cannot be Reflected" }, } },
+ ["PlayerReflectedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 80% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "80% of Damage from your Hits cannot be Reflected" }, } },
+ ["PlayerReflectedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 85% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2510655429] = { "85% of Damage from your Hits cannot be Reflected" }, } },
+ ["PlayerReflectedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "75% of Damage from your Hits cannot be Reflected" }, } },
+ ["PlayerReflectedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "80% of Damage from your Hits cannot be Reflected" }, } },
+ ["PlayerReflectedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "85% of Damage from your Hits cannot be Reflected" }, } },
+ ["PlayerReflectedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "90% of Damage from your Hits cannot be Reflected" }, } },
+ ["PlayerReflectedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "95% of Damage from your Hits cannot be Reflected" }, } },
+ ["PlayerReflectedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2510655429] = { "100% of Damage from your Hits cannot be Reflected" }, } },
+ ["MinionReflectedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "45% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "45% of Hit Damage from your Minions cannot be Reflected" }, } },
+ ["MinionReflectedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "50% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "50% of Hit Damage from your Minions cannot be Reflected" }, } },
+ ["MinionReflectedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "55% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "55% of Hit Damage from your Minions cannot be Reflected" }, } },
+ ["MinionReflectedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "60% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "60% of Hit Damage from your Minions cannot be Reflected" }, } },
+ ["MinionReflectedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "65% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "65% of Hit Damage from your Minions cannot be Reflected" }, } },
+ ["MinionReflectedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "70% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "70% of Hit Damage from your Minions cannot be Reflected" }, } },
+ ["MinionReflectedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "60% of Hit Damage from your Minions cannot be Reflected" }, [4074358700] = { "" }, } },
+ ["MinionReflectedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "65% of Hit Damage from your Minions cannot be Reflected" }, [4074358700] = { "" }, } },
+ ["MinionReflectedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "70% of Hit Damage from your Minions cannot be Reflected" }, [4074358700] = { "" }, } },
+ ["MinionReflectedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 75% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "75% of Hit Damage from your Minions cannot be Reflected" }, [4074358700] = { "" }, } },
+ ["MinionReflectedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 80% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "80% of Hit Damage from your Minions cannot be Reflected" }, [4074358700] = { "" }, } },
+ ["MinionReflectedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 85% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "85% of Hit Damage from your Minions cannot be Reflected" }, [4074358700] = { "" }, } },
+ ["MinionReflectedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "75% of Hit Damage from your Minions cannot be Reflected" }, [3283106665] = { "" }, } },
+ ["MinionReflectedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "80% of Hit Damage from your Minions cannot be Reflected" }, [3283106665] = { "" }, } },
+ ["MinionReflectedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "85% of Hit Damage from your Minions cannot be Reflected" }, [3283106665] = { "" }, } },
+ ["MinionReflectedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "90% of Hit Damage from your Minions cannot be Reflected" }, [3283106665] = { "" }, } },
+ ["MinionReflectedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "95% of Hit Damage from your Minions cannot be Reflected" }, [3283106665] = { "" }, } },
+ ["MinionReflectedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, tradeHashes = { [2467518140] = { "100% of Hit Damage from your Minions cannot be Reflected" }, [3283106665] = { "" }, } },
+ ["AngerAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Anger has (19-21)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (19-21)% increased Aura Effect" }, } },
+ ["AngerAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Anger has (22-24)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (22-24)% increased Aura Effect" }, } },
+ ["AngerAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Anger has (25-27)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (25-27)% increased Aura Effect" }, } },
+ ["AngerAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Anger has (28-30)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (28-30)% increased Aura Effect" }, } },
+ ["AngerAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Anger has (31-33)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (31-33)% increased Aura Effect" }, } },
+ ["AngerAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Anger has (34-36)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1592278124] = { "Anger has (34-36)% increased Aura Effect" }, } },
+ ["AngerAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (31-33)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (31-33)% increased Aura Effect" }, [4074358700] = { "" }, } },
+ ["AngerAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (34-36)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (34-36)% increased Aura Effect" }, [4074358700] = { "" }, } },
+ ["AngerAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (37-39)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (37-39)% increased Aura Effect" }, [4074358700] = { "" }, } },
+ ["AngerAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (40-42)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (40-42)% increased Aura Effect" }, [4074358700] = { "" }, } },
+ ["AngerAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (43-45)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (43-45)% increased Aura Effect" }, [4074358700] = { "" }, } },
+ ["AngerAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (46-48)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (46-48)% increased Aura Effect" }, [4074358700] = { "" }, } },
+ ["AngerAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (43-45)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (43-45)% increased Aura Effect" }, [3283106665] = { "" }, } },
+ ["AngerAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (46-48)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (46-48)% increased Aura Effect" }, [3283106665] = { "" }, } },
+ ["AngerAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (49-51)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (49-51)% increased Aura Effect" }, [3283106665] = { "" }, } },
+ ["AngerAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (52-54)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (52-54)% increased Aura Effect" }, [3283106665] = { "" }, } },
+ ["AngerAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (55-57)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (55-57)% increased Aura Effect" }, [3283106665] = { "" }, } },
+ ["AngerAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (58-60)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1592278124] = { "Anger has (58-60)% increased Aura Effect" }, [3283106665] = { "" }, } },
+ ["HatredAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Hatred has (19-21)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (19-21)% increased Aura Effect" }, } },
+ ["HatredAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Hatred has (22-24)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (22-24)% increased Aura Effect" }, } },
+ ["HatredAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Hatred has (25-27)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (25-27)% increased Aura Effect" }, } },
+ ["HatredAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Hatred has (28-30)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (28-30)% increased Aura Effect" }, } },
+ ["HatredAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Hatred has (31-33)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (31-33)% increased Aura Effect" }, } },
+ ["HatredAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Hatred has (34-36)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3742945352] = { "Hatred has (34-36)% increased Aura Effect" }, } },
+ ["HatredAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (31-33)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (31-33)% increased Aura Effect" }, [4074358700] = { "" }, } },
+ ["HatredAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (34-36)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (34-36)% increased Aura Effect" }, [4074358700] = { "" }, } },
+ ["HatredAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (37-39)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (37-39)% increased Aura Effect" }, [4074358700] = { "" }, } },
+ ["HatredAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (40-42)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (40-42)% increased Aura Effect" }, [4074358700] = { "" }, } },
+ ["HatredAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (43-45)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (43-45)% increased Aura Effect" }, [4074358700] = { "" }, } },
+ ["HatredAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (46-48)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (46-48)% increased Aura Effect" }, [4074358700] = { "" }, } },
+ ["HatredAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (43-45)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (43-45)% increased Aura Effect" }, [3283106665] = { "" }, } },
+ ["HatredAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (46-48)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (46-48)% increased Aura Effect" }, [3283106665] = { "" }, } },
+ ["HatredAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (49-51)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (49-51)% increased Aura Effect" }, [3283106665] = { "" }, } },
+ ["HatredAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (52-54)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (52-54)% increased Aura Effect" }, [3283106665] = { "" }, } },
+ ["HatredAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (55-57)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (55-57)% increased Aura Effect" }, [3283106665] = { "" }, } },
+ ["HatredAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (58-60)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3742945352] = { "Hatred has (58-60)% increased Aura Effect" }, [3283106665] = { "" }, } },
+ ["WrathAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Wrath has (19-21)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (19-21)% increased Aura Effect" }, } },
+ ["WrathAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Wrath has (22-24)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (22-24)% increased Aura Effect" }, } },
+ ["WrathAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Wrath has (25-27)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (25-27)% increased Aura Effect" }, } },
+ ["WrathAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Wrath has (28-30)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (28-30)% increased Aura Effect" }, } },
+ ["WrathAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Wrath has (31-33)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (31-33)% increased Aura Effect" }, } },
+ ["WrathAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Wrath has (34-36)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2181791238] = { "Wrath has (34-36)% increased Aura Effect" }, } },
+ ["WrathAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (31-33)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (31-33)% increased Aura Effect" }, } },
+ ["WrathAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (34-36)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (34-36)% increased Aura Effect" }, } },
+ ["WrathAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (37-39)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (37-39)% increased Aura Effect" }, } },
+ ["WrathAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (40-42)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (40-42)% increased Aura Effect" }, } },
+ ["WrathAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (43-45)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (43-45)% increased Aura Effect" }, } },
+ ["WrathAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (46-48)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2181791238] = { "Wrath has (46-48)% increased Aura Effect" }, } },
+ ["WrathAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (43-45)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (43-45)% increased Aura Effect" }, } },
+ ["WrathAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (46-48)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (46-48)% increased Aura Effect" }, } },
+ ["WrathAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (49-51)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (49-51)% increased Aura Effect" }, } },
+ ["WrathAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (52-54)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (52-54)% increased Aura Effect" }, } },
+ ["WrathAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (55-57)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (55-57)% increased Aura Effect" }, } },
+ ["WrathAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (58-60)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2181791238] = { "Wrath has (58-60)% increased Aura Effect" }, } },
+ ["MalevolenceAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Malevolence has (19-21)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (19-21)% increased Aura Effect" }, } },
+ ["MalevolenceAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Malevolence has (22-24)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (22-24)% increased Aura Effect" }, } },
+ ["MalevolenceAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Malevolence has (25-27)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (25-27)% increased Aura Effect" }, } },
+ ["MalevolenceAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Malevolence has (28-30)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (28-30)% increased Aura Effect" }, } },
+ ["MalevolenceAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Malevolence has (31-33)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (31-33)% increased Aura Effect" }, } },
+ ["MalevolenceAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Malevolence has (34-36)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (34-36)% increased Aura Effect" }, } },
+ ["MalevolenceAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (31-33)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (31-33)% increased Aura Effect" }, [4074358700] = { "" }, } },
+ ["MalevolenceAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (34-36)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (34-36)% increased Aura Effect" }, [4074358700] = { "" }, } },
+ ["MalevolenceAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (37-39)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (37-39)% increased Aura Effect" }, [4074358700] = { "" }, } },
+ ["MalevolenceAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (40-42)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (40-42)% increased Aura Effect" }, [4074358700] = { "" }, } },
+ ["MalevolenceAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (43-45)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (43-45)% increased Aura Effect" }, [4074358700] = { "" }, } },
+ ["MalevolenceAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (46-48)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (46-48)% increased Aura Effect" }, [4074358700] = { "" }, } },
+ ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (43-45)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (43-45)% increased Aura Effect" }, [3283106665] = { "" }, } },
+ ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (46-48)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (46-48)% increased Aura Effect" }, [3283106665] = { "" }, } },
+ ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (49-51)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (49-51)% increased Aura Effect" }, [3283106665] = { "" }, } },
+ ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (52-54)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (52-54)% increased Aura Effect" }, [3283106665] = { "" }, } },
+ ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (55-57)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (55-57)% increased Aura Effect" }, [3283106665] = { "" }, } },
+ ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (58-60)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [4175197580] = { "Malevolence has (58-60)% increased Aura Effect" }, [3283106665] = { "" }, } },
+ ["ZealotryAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Zealotry has (19-21)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (19-21)% increased Aura Effect" }, } },
+ ["ZealotryAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Zealotry has (22-24)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (22-24)% increased Aura Effect" }, } },
+ ["ZealotryAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Zealotry has (25-27)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (25-27)% increased Aura Effect" }, } },
+ ["ZealotryAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Zealotry has (28-30)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (28-30)% increased Aura Effect" }, } },
+ ["ZealotryAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Zealotry has (31-33)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (31-33)% increased Aura Effect" }, } },
+ ["ZealotryAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Zealotry has (34-36)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (34-36)% increased Aura Effect" }, } },
+ ["ZealotryAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (31-33)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (31-33)% increased Aura Effect" }, } },
+ ["ZealotryAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (34-36)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (34-36)% increased Aura Effect" }, } },
+ ["ZealotryAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (37-39)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (37-39)% increased Aura Effect" }, } },
+ ["ZealotryAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (40-42)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (40-42)% increased Aura Effect" }, } },
+ ["ZealotryAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (43-45)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (43-45)% increased Aura Effect" }, } },
+ ["ZealotryAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (46-48)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4096052153] = { "Zealotry has (46-48)% increased Aura Effect" }, } },
+ ["ZealotryAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (43-45)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (43-45)% increased Aura Effect" }, } },
+ ["ZealotryAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (46-48)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (46-48)% increased Aura Effect" }, } },
+ ["ZealotryAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (49-51)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (49-51)% increased Aura Effect" }, } },
+ ["ZealotryAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (52-54)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (52-54)% increased Aura Effect" }, } },
+ ["ZealotryAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (55-57)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (55-57)% increased Aura Effect" }, } },
+ ["ZealotryAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (58-60)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4096052153] = { "Zealotry has (58-60)% increased Aura Effect" }, } },
+ ["PrideAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Pride has (19-21)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (19-21)% increased Aura Effect" }, } },
+ ["PrideAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Pride has (22-24)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (22-24)% increased Aura Effect" }, } },
+ ["PrideAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Pride has (25-27)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (25-27)% increased Aura Effect" }, } },
+ ["PrideAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Pride has (28-30)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (28-30)% increased Aura Effect" }, } },
+ ["PrideAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Pride has (31-33)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (31-33)% increased Aura Effect" }, } },
+ ["PrideAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Pride has (34-36)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [4247488219] = { "Pride has (34-36)% increased Aura Effect" }, } },
+ ["PrideAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (31-33)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (31-33)% increased Aura Effect" }, } },
+ ["PrideAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (34-36)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (34-36)% increased Aura Effect" }, } },
+ ["PrideAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (37-39)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (37-39)% increased Aura Effect" }, } },
+ ["PrideAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (40-42)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (40-42)% increased Aura Effect" }, } },
+ ["PrideAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (43-45)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (43-45)% increased Aura Effect" }, } },
+ ["PrideAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (46-48)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [4247488219] = { "Pride has (46-48)% increased Aura Effect" }, } },
+ ["PrideAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (43-45)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (43-45)% increased Aura Effect" }, } },
+ ["PrideAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (46-48)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (46-48)% increased Aura Effect" }, } },
+ ["PrideAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (49-51)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (49-51)% increased Aura Effect" }, } },
+ ["PrideAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (52-54)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (52-54)% increased Aura Effect" }, } },
+ ["PrideAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (55-57)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (55-57)% increased Aura Effect" }, } },
+ ["PrideAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (58-60)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [4247488219] = { "Pride has (58-60)% increased Aura Effect" }, } },
+ ["DeterminationAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Determination has (19-21)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (19-21)% increased Aura Effect" }, } },
+ ["DeterminationAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Determination has (22-24)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (22-24)% increased Aura Effect" }, } },
+ ["DeterminationAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Determination has (25-27)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (25-27)% increased Aura Effect" }, } },
+ ["DeterminationAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Determination has (28-30)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (28-30)% increased Aura Effect" }, } },
+ ["DeterminationAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Determination has (31-33)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (31-33)% increased Aura Effect" }, } },
+ ["DeterminationAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Determination has (34-36)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3653400807] = { "Determination has (34-36)% increased Aura Effect" }, } },
+ ["DeterminationAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (31-33)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (31-33)% increased Aura Effect" }, } },
+ ["DeterminationAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (34-36)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (34-36)% increased Aura Effect" }, } },
+ ["DeterminationAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (37-39)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (37-39)% increased Aura Effect" }, } },
+ ["DeterminationAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (40-42)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (40-42)% increased Aura Effect" }, } },
+ ["DeterminationAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (43-45)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (43-45)% increased Aura Effect" }, } },
+ ["DeterminationAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (46-48)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3653400807] = { "Determination has (46-48)% increased Aura Effect" }, } },
+ ["DeterminationAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (43-45)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (43-45)% increased Aura Effect" }, } },
+ ["DeterminationAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (46-48)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (46-48)% increased Aura Effect" }, } },
+ ["DeterminationAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (49-51)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (49-51)% increased Aura Effect" }, } },
+ ["DeterminationAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (52-54)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (52-54)% increased Aura Effect" }, } },
+ ["DeterminationAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (55-57)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (55-57)% increased Aura Effect" }, } },
+ ["DeterminationAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (58-60)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3653400807] = { "Determination has (58-60)% increased Aura Effect" }, } },
+ ["GraceAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Grace has (19-21)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (19-21)% increased Aura Effect" }, } },
+ ["GraceAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Grace has (22-24)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (22-24)% increased Aura Effect" }, } },
+ ["GraceAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Grace has (25-27)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (25-27)% increased Aura Effect" }, } },
+ ["GraceAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Grace has (28-30)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (28-30)% increased Aura Effect" }, } },
+ ["GraceAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Grace has (31-33)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (31-33)% increased Aura Effect" }, } },
+ ["GraceAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Grace has (34-36)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [397427740] = { "Grace has (34-36)% increased Aura Effect" }, } },
+ ["GraceAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (31-33)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (31-33)% increased Aura Effect" }, } },
+ ["GraceAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (34-36)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (34-36)% increased Aura Effect" }, } },
+ ["GraceAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (37-39)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (37-39)% increased Aura Effect" }, } },
+ ["GraceAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (40-42)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (40-42)% increased Aura Effect" }, } },
+ ["GraceAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (43-45)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (43-45)% increased Aura Effect" }, } },
+ ["GraceAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (46-48)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [397427740] = { "Grace has (46-48)% increased Aura Effect" }, } },
+ ["GraceAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (43-45)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (43-45)% increased Aura Effect" }, } },
+ ["GraceAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (46-48)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (46-48)% increased Aura Effect" }, } },
+ ["GraceAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (49-51)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (49-51)% increased Aura Effect" }, } },
+ ["GraceAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (52-54)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (52-54)% increased Aura Effect" }, } },
+ ["GraceAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (55-57)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (55-57)% increased Aura Effect" }, } },
+ ["GraceAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (58-60)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [397427740] = { "Grace has (58-60)% increased Aura Effect" }, } },
+ ["DisciplineAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Discipline has (19-21)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (19-21)% increased Aura Effect" }, } },
+ ["DisciplineAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Discipline has (22-24)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (22-24)% increased Aura Effect" }, } },
+ ["DisciplineAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Discipline has (25-27)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (25-27)% increased Aura Effect" }, } },
+ ["DisciplineAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Discipline has (28-30)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (28-30)% increased Aura Effect" }, } },
+ ["DisciplineAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Discipline has (31-33)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (31-33)% increased Aura Effect" }, } },
+ ["DisciplineAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Discipline has (34-36)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [788317702] = { "Discipline has (34-36)% increased Aura Effect" }, } },
+ ["DisciplineAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (31-33)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (31-33)% increased Aura Effect" }, } },
+ ["DisciplineAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (34-36)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (34-36)% increased Aura Effect" }, } },
+ ["DisciplineAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (37-39)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (37-39)% increased Aura Effect" }, } },
+ ["DisciplineAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (40-42)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (40-42)% increased Aura Effect" }, } },
+ ["DisciplineAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (43-45)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (43-45)% increased Aura Effect" }, } },
+ ["DisciplineAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (46-48)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [788317702] = { "Discipline has (46-48)% increased Aura Effect" }, } },
+ ["DisciplineAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (43-45)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (43-45)% increased Aura Effect" }, } },
+ ["DisciplineAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (46-48)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (46-48)% increased Aura Effect" }, } },
+ ["DisciplineAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (49-51)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (49-51)% increased Aura Effect" }, } },
+ ["DisciplineAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (52-54)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (52-54)% increased Aura Effect" }, } },
+ ["DisciplineAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (55-57)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (55-57)% increased Aura Effect" }, } },
+ ["DisciplineAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (58-60)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [788317702] = { "Discipline has (58-60)% increased Aura Effect" }, } },
+ ["HasteAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Haste has (19-21)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (19-21)% increased Aura Effect" }, } },
+ ["HasteAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Haste has (22-24)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (22-24)% increased Aura Effect" }, } },
+ ["HasteAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Haste has (25-27)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (25-27)% increased Aura Effect" }, } },
+ ["HasteAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Haste has (28-30)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (28-30)% increased Aura Effect" }, } },
+ ["HasteAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Haste has (31-33)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (31-33)% increased Aura Effect" }, } },
+ ["HasteAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Haste has (34-36)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1240056437] = { "Haste has (34-36)% increased Aura Effect" }, } },
+ ["HasteAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (31-33)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (31-33)% increased Aura Effect" }, } },
+ ["HasteAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (34-36)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (34-36)% increased Aura Effect" }, } },
+ ["HasteAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (37-39)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (37-39)% increased Aura Effect" }, } },
+ ["HasteAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (40-42)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (40-42)% increased Aura Effect" }, } },
+ ["HasteAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (43-45)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (43-45)% increased Aura Effect" }, } },
+ ["HasteAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (46-48)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1240056437] = { "Haste has (46-48)% increased Aura Effect" }, } },
+ ["HasteAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (43-45)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (43-45)% increased Aura Effect" }, } },
+ ["HasteAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (46-48)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (46-48)% increased Aura Effect" }, } },
+ ["HasteAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (49-51)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (49-51)% increased Aura Effect" }, } },
+ ["HasteAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (52-54)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (52-54)% increased Aura Effect" }, } },
+ ["HasteAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (55-57)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (55-57)% increased Aura Effect" }, } },
+ ["HasteAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (58-60)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1240056437] = { "Haste has (58-60)% increased Aura Effect" }, } },
+ ["PurityOfElementsEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Elements has (19-21)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (19-21)% increased Aura Effect" }, } },
+ ["PurityOfElementsEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Elements has (22-24)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (22-24)% increased Aura Effect" }, } },
+ ["PurityOfElementsEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Elements has (25-27)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (25-27)% increased Aura Effect" }, } },
+ ["PurityOfElementsEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Elements has (28-30)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (28-30)% increased Aura Effect" }, } },
+ ["PurityOfElementsEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Elements has (31-33)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (31-33)% increased Aura Effect" }, } },
+ ["PurityOfElementsEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Elements has (34-36)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [3541970927] = { "Purity of Elements has (34-36)% increased Aura Effect" }, } },
+ ["PurityOfElementsEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (31-33)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (31-33)% increased Aura Effect" }, } },
+ ["PurityOfElementsEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (34-36)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (34-36)% increased Aura Effect" }, } },
+ ["PurityOfElementsEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (37-39)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (37-39)% increased Aura Effect" }, } },
+ ["PurityOfElementsEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (40-42)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (40-42)% increased Aura Effect" }, } },
+ ["PurityOfElementsEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (43-45)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (43-45)% increased Aura Effect" }, } },
+ ["PurityOfElementsEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (46-48)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3541970927] = { "Purity of Elements has (46-48)% increased Aura Effect" }, } },
+ ["PurityOfElementsEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (43-45)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (43-45)% increased Aura Effect" }, } },
+ ["PurityOfElementsEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (46-48)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (46-48)% increased Aura Effect" }, } },
+ ["PurityOfElementsEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (49-51)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (49-51)% increased Aura Effect" }, } },
+ ["PurityOfElementsEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (52-54)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (52-54)% increased Aura Effect" }, } },
+ ["PurityOfElementsEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (55-57)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (55-57)% increased Aura Effect" }, } },
+ ["PurityOfElementsEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (58-60)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3541970927] = { "Purity of Elements has (58-60)% increased Aura Effect" }, } },
+ ["PurityOfFireEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Fire has (19-21)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (19-21)% increased Aura Effect" }, } },
+ ["PurityOfFireEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Fire has (22-24)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (22-24)% increased Aura Effect" }, } },
+ ["PurityOfFireEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Fire has (25-27)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (25-27)% increased Aura Effect" }, } },
+ ["PurityOfFireEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Fire has (28-30)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (28-30)% increased Aura Effect" }, } },
+ ["PurityOfFireEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Fire has (31-33)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (31-33)% increased Aura Effect" }, } },
+ ["PurityOfFireEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Fire has (34-36)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [2539726203] = { "Purity of Fire has (34-36)% increased Aura Effect" }, } },
+ ["PurityOfFireEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (31-33)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (31-33)% increased Aura Effect" }, } },
+ ["PurityOfFireEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (34-36)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (34-36)% increased Aura Effect" }, } },
+ ["PurityOfFireEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (37-39)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (37-39)% increased Aura Effect" }, } },
+ ["PurityOfFireEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (40-42)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (40-42)% increased Aura Effect" }, } },
+ ["PurityOfFireEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (43-45)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (43-45)% increased Aura Effect" }, } },
+ ["PurityOfFireEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (46-48)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [2539726203] = { "Purity of Fire has (46-48)% increased Aura Effect" }, } },
+ ["PurityOfFireEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (43-45)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (43-45)% increased Aura Effect" }, } },
+ ["PurityOfFireEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (46-48)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (46-48)% increased Aura Effect" }, } },
+ ["PurityOfFireEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (49-51)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (49-51)% increased Aura Effect" }, } },
+ ["PurityOfFireEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (52-54)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (52-54)% increased Aura Effect" }, } },
+ ["PurityOfFireEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (55-57)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (55-57)% increased Aura Effect" }, } },
+ ["PurityOfFireEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (58-60)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [2539726203] = { "Purity of Fire has (58-60)% increased Aura Effect" }, } },
+ ["PurityOfIceEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Ice has (19-21)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (19-21)% increased Aura Effect" }, } },
+ ["PurityOfIceEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Ice has (22-24)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (22-24)% increased Aura Effect" }, } },
+ ["PurityOfIceEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Ice has (25-27)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (25-27)% increased Aura Effect" }, } },
+ ["PurityOfIceEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Ice has (28-30)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (28-30)% increased Aura Effect" }, } },
+ ["PurityOfIceEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Ice has (31-33)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (31-33)% increased Aura Effect" }, } },
+ ["PurityOfIceEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Ice has (34-36)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [1944316218] = { "Purity of Ice has (34-36)% increased Aura Effect" }, } },
+ ["PurityOfIceEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (31-33)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (31-33)% increased Aura Effect" }, [4074358700] = { "" }, } },
+ ["PurityOfIceEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (34-36)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (34-36)% increased Aura Effect" }, [4074358700] = { "" }, } },
+ ["PurityOfIceEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (37-39)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (37-39)% increased Aura Effect" }, [4074358700] = { "" }, } },
+ ["PurityOfIceEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (40-42)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (40-42)% increased Aura Effect" }, [4074358700] = { "" }, } },
+ ["PurityOfIceEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (43-45)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (43-45)% increased Aura Effect" }, [4074358700] = { "" }, } },
+ ["PurityOfIceEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (46-48)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (46-48)% increased Aura Effect" }, [4074358700] = { "" }, } },
+ ["PurityOfIceEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (43-45)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (43-45)% increased Aura Effect" }, [3283106665] = { "" }, } },
+ ["PurityOfIceEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (46-48)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (46-48)% increased Aura Effect" }, [3283106665] = { "" }, } },
+ ["PurityOfIceEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (49-51)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (49-51)% increased Aura Effect" }, [3283106665] = { "" }, } },
+ ["PurityOfIceEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (52-54)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (52-54)% increased Aura Effect" }, [3283106665] = { "" }, } },
+ ["PurityOfIceEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (55-57)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (55-57)% increased Aura Effect" }, [3283106665] = { "" }, } },
+ ["PurityOfIceEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (58-60)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [1944316218] = { "Purity of Ice has (58-60)% increased Aura Effect" }, [3283106665] = { "" }, } },
+ ["PurityOfLightningEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Lightning has (19-21)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (19-21)% increased Aura Effect" }, } },
+ ["PurityOfLightningEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Lightning has (22-24)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (22-24)% increased Aura Effect" }, } },
+ ["PurityOfLightningEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Lightning has (25-27)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (25-27)% increased Aura Effect" }, } },
+ ["PurityOfLightningEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Lightning has (28-30)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (28-30)% increased Aura Effect" }, } },
+ ["PurityOfLightningEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Lightning has (31-33)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (31-33)% increased Aura Effect" }, } },
+ ["PurityOfLightningEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Lightning has (34-36)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, tradeHashes = { [45589825] = { "Purity of Lightning has (34-36)% increased Aura Effect" }, } },
+ ["PurityOfLightningEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (31-33)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (31-33)% increased Aura Effect" }, } },
+ ["PurityOfLightningEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (34-36)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (34-36)% increased Aura Effect" }, } },
+ ["PurityOfLightningEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (37-39)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (37-39)% increased Aura Effect" }, } },
+ ["PurityOfLightningEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (40-42)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (40-42)% increased Aura Effect" }, } },
+ ["PurityOfLightningEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (43-45)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (43-45)% increased Aura Effect" }, } },
+ ["PurityOfLightningEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (46-48)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [45589825] = { "Purity of Lightning has (46-48)% increased Aura Effect" }, } },
+ ["PurityOfLightningEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (43-45)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (43-45)% increased Aura Effect" }, } },
+ ["PurityOfLightningEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (46-48)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (46-48)% increased Aura Effect" }, } },
+ ["PurityOfLightningEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (49-51)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (49-51)% increased Aura Effect" }, } },
+ ["PurityOfLightningEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (52-54)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (52-54)% increased Aura Effect" }, } },
+ ["PurityOfLightningEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (55-57)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (55-57)% increased Aura Effect" }, } },
+ ["PurityOfLightningEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (58-60)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [45589825] = { "Purity of Lightning has (58-60)% increased Aura Effect" }, } },
+ ["FortifyOnMeleeHitEldritchImplicit1"] = { type = "Eater", affix = "", "Melee Hits have (6-7)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (6-7)% chance to Fortify" }, } },
+ ["FortifyOnMeleeHitEldritchImplicit2"] = { type = "Eater", affix = "", "Melee Hits have (8-9)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (8-9)% chance to Fortify" }, } },
+ ["FortifyOnMeleeHitEldritchImplicit3"] = { type = "Eater", affix = "", "Melee Hits have (10-11)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (10-11)% chance to Fortify" }, } },
+ ["FortifyOnMeleeHitEldritchImplicit4"] = { type = "Eater", affix = "", "Melee Hits have (12-13)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (12-13)% chance to Fortify" }, } },
+ ["FortifyOnMeleeHitEldritchImplicit5"] = { type = "Eater", affix = "", "Melee Hits have (14-15)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (14-15)% chance to Fortify" }, } },
+ ["FortifyOnMeleeHitEldritchImplicit6"] = { type = "Eater", affix = "", "Melee Hits have (16-17)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, tradeHashes = { [1166417447] = { "Melee Hits have (16-17)% chance to Fortify" }, } },
+ ["FortifyOnMeleeHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (12-13)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (12-13)% chance to Fortify" }, } },
+ ["FortifyOnMeleeHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (14-15)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (14-15)% chance to Fortify" }, } },
+ ["FortifyOnMeleeHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (16-17)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (16-17)% chance to Fortify" }, } },
+ ["FortifyOnMeleeHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (18-19)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (18-19)% chance to Fortify" }, } },
+ ["FortifyOnMeleeHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (20-21)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (20-21)% chance to Fortify" }, } },
+ ["FortifyOnMeleeHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (22-23)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, tradeHashes = { [4074358700] = { "" }, [1166417447] = { "Melee Hits have (22-23)% chance to Fortify" }, } },
+ ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (18-19)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (18-19)% chance to Fortify" }, } },
+ ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (20-21)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (20-21)% chance to Fortify" }, } },
+ ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (22-23)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (22-23)% chance to Fortify" }, } },
+ ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (24-25)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (24-25)% chance to Fortify" }, } },
+ ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (26-27)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (26-27)% chance to Fortify" }, } },
+ ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (28-29)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, tradeHashes = { [3283106665] = { "" }, [1166417447] = { "Melee Hits have (28-29)% chance to Fortify" }, } },
+ ["AllResistancesEldritchImplicit1"] = { type = "Eater", affix = "", "+(5-6)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(5-6)% to all Elemental Resistances" }, } },
+ ["AllResistancesEldritchImplicit2"] = { type = "Eater", affix = "", "+(7-8)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(7-8)% to all Elemental Resistances" }, } },
+ ["AllResistancesEldritchImplicit3"] = { type = "Eater", affix = "", "+(9-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(9-10)% to all Elemental Resistances" }, } },
+ ["AllResistancesEldritchImplicit4"] = { type = "Eater", affix = "", "+(11-12)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(11-12)% to all Elemental Resistances" }, } },
+ ["AllResistancesEldritchImplicit5"] = { type = "Eater", affix = "", "+(13-14)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(13-14)% to all Elemental Resistances" }, } },
+ ["AllResistancesEldritchImplicit6"] = { type = "Eater", affix = "", "+(15-16)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-16)% to all Elemental Resistances" }, } },
+ ["AllResistancesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(11-12)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(11-12)% to all Elemental Resistances" }, [4074358700] = { "" }, } },
+ ["AllResistancesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(13-14)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(13-14)% to all Elemental Resistances" }, [4074358700] = { "" }, } },
+ ["AllResistancesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(15-16)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-16)% to all Elemental Resistances" }, [4074358700] = { "" }, } },
+ ["AllResistancesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(17-18)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(17-18)% to all Elemental Resistances" }, [4074358700] = { "" }, } },
+ ["AllResistancesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(19-20)% to all Elemental Resistances" }, [4074358700] = { "" }, } },
+ ["AllResistancesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(21-22)% to all Elemental Resistances" }, [4074358700] = { "" }, } },
+ ["AllResistancesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(17-18)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(17-18)% to all Elemental Resistances" }, [3283106665] = { "" }, } },
+ ["AllResistancesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(19-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(19-20)% to all Elemental Resistances" }, [3283106665] = { "" }, } },
+ ["AllResistancesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(21-22)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(21-22)% to all Elemental Resistances" }, [3283106665] = { "" }, } },
+ ["AllResistancesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-24)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(23-24)% to all Elemental Resistances" }, [3283106665] = { "" }, } },
+ ["AllResistancesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(25-26)% to all Elemental Resistances" }, [3283106665] = { "" }, } },
+ ["AllResistancesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(27-28)% to all Elemental Resistances" }, [3283106665] = { "" }, } },
+ ["LifeRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "7% increased Life Recovery rate" }, } },
+ ["LifeRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "8% increased Life Recovery rate" }, } },
+ ["LifeRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "9% increased Life Recovery rate" }, } },
+ ["LifeRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "10% increased Life Recovery rate" }, } },
+ ["LifeRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "11% increased Life Recovery rate" }, } },
+ ["LifeRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "12% increased Life Recovery rate" }, } },
+ ["LifeRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "9% increased Life Recovery rate" }, [4074358700] = { "" }, } },
+ ["LifeRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "10% increased Life Recovery rate" }, [4074358700] = { "" }, } },
+ ["LifeRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "11% increased Life Recovery rate" }, [4074358700] = { "" }, } },
+ ["LifeRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "12% increased Life Recovery rate" }, [4074358700] = { "" }, } },
+ ["LifeRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "13% increased Life Recovery rate" }, [4074358700] = { "" }, } },
+ ["LifeRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "14% increased Life Recovery rate" }, [4074358700] = { "" }, } },
+ ["LifeRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "11% increased Life Recovery rate" }, [3283106665] = { "" }, } },
+ ["LifeRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "12% increased Life Recovery rate" }, [3283106665] = { "" }, } },
+ ["LifeRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "13% increased Life Recovery rate" }, [3283106665] = { "" }, } },
+ ["LifeRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "14% increased Life Recovery rate" }, [3283106665] = { "" }, } },
+ ["LifeRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "15% increased Life Recovery rate" }, [3283106665] = { "" }, } },
+ ["LifeRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "16% increased Life Recovery rate" }, [3283106665] = { "" }, } },
+ ["ManaRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "7% increased Mana Recovery rate" }, } },
+ ["ManaRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "8% increased Mana Recovery rate" }, } },
+ ["ManaRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "9% increased Mana Recovery rate" }, } },
+ ["ManaRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "10% increased Mana Recovery rate" }, } },
+ ["ManaRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "11% increased Mana Recovery rate" }, } },
+ ["ManaRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3513180117] = { "12% increased Mana Recovery rate" }, } },
+ ["ManaRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "9% increased Mana Recovery rate" }, } },
+ ["ManaRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "10% increased Mana Recovery rate" }, } },
+ ["ManaRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "11% increased Mana Recovery rate" }, } },
+ ["ManaRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "12% increased Mana Recovery rate" }, } },
+ ["ManaRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "13% increased Mana Recovery rate" }, } },
+ ["ManaRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4074358700] = { "" }, [3513180117] = { "14% increased Mana Recovery rate" }, } },
+ ["ManaRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "11% increased Mana Recovery rate" }, } },
+ ["ManaRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "12% increased Mana Recovery rate" }, } },
+ ["ManaRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "13% increased Mana Recovery rate" }, } },
+ ["ManaRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "14% increased Mana Recovery rate" }, } },
+ ["ManaRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "15% increased Mana Recovery rate" }, } },
+ ["ManaRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3283106665] = { "" }, [3513180117] = { "16% increased Mana Recovery rate" }, } },
+ ["EnergyShieldRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "7% increased Energy Shield Recovery rate" }, } },
+ ["EnergyShieldRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "8% increased Energy Shield Recovery rate" }, } },
+ ["EnergyShieldRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "9% increased Energy Shield Recovery rate" }, } },
+ ["EnergyShieldRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "10% increased Energy Shield Recovery rate" }, } },
+ ["EnergyShieldRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "11% increased Energy Shield Recovery rate" }, } },
+ ["EnergyShieldRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "12% increased Energy Shield Recovery rate" }, } },
+ ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "9% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } },
+ ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "10% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } },
+ ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "11% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } },
+ ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "12% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } },
+ ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "13% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } },
+ ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "14% increased Energy Shield Recovery rate" }, [4074358700] = { "" }, } },
+ ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "11% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } },
+ ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "12% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } },
+ ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "13% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } },
+ ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "14% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } },
+ ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "15% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } },
+ ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [988575597] = { "16% increased Energy Shield Recovery rate" }, [3283106665] = { "" }, } },
+ ["DamageTakenPerStrengthEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 230 Strength" }, } },
+ ["DamageTakenPerStrengthEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 220 Strength" }, } },
+ ["DamageTakenPerStrengthEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 210 Strength" }, } },
+ ["DamageTakenPerStrengthEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 200 Strength" }, } },
+ ["DamageTakenPerStrengthEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 190 Strength" }, } },
+ ["DamageTakenPerStrengthEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [1871491972] = { "1% less Damage Taken per 180 Strength" }, } },
+ ["DamageTakenPerStrengthEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 210 Strength" }, } },
+ ["DamageTakenPerStrengthEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 200 Strength" }, } },
+ ["DamageTakenPerStrengthEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 190 Strength" }, } },
+ ["DamageTakenPerStrengthEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 180 Strength" }, } },
+ ["DamageTakenPerStrengthEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 170 Strength" }, } },
+ ["DamageTakenPerStrengthEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [1871491972] = { "1% less Damage Taken per 160 Strength" }, } },
+ ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 190 Strength" }, } },
+ ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 180 Strength" }, } },
+ ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 170 Strength" }, } },
+ ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 160 Strength" }, } },
+ ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 150 Strength" }, } },
+ ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [1871491972] = { "1% less Damage Taken per 140 Strength" }, } },
+ ["DamageTakenPerDexterityEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 230 Dexterity" }, } },
+ ["DamageTakenPerDexterityEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 220 Dexterity" }, } },
+ ["DamageTakenPerDexterityEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 210 Dexterity" }, } },
+ ["DamageTakenPerDexterityEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 200 Dexterity" }, } },
+ ["DamageTakenPerDexterityEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 190 Dexterity" }, } },
+ ["DamageTakenPerDexterityEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 180 Dexterity" }, } },
+ ["DamageTakenPerDexterityEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 210 Dexterity" }, [4074358700] = { "" }, } },
+ ["DamageTakenPerDexterityEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 200 Dexterity" }, [4074358700] = { "" }, } },
+ ["DamageTakenPerDexterityEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 190 Dexterity" }, [4074358700] = { "" }, } },
+ ["DamageTakenPerDexterityEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 180 Dexterity" }, [4074358700] = { "" }, } },
+ ["DamageTakenPerDexterityEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 170 Dexterity" }, [4074358700] = { "" }, } },
+ ["DamageTakenPerDexterityEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 160 Dexterity" }, [4074358700] = { "" }, } },
+ ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 190 Dexterity" }, [3283106665] = { "" }, } },
+ ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 180 Dexterity" }, [3283106665] = { "" }, } },
+ ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 170 Dexterity" }, [3283106665] = { "" }, } },
+ ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 160 Dexterity" }, [3283106665] = { "" }, } },
+ ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 150 Dexterity" }, [3283106665] = { "" }, } },
+ ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [824762042] = { "1% less Damage Taken per 140 Dexterity" }, [3283106665] = { "" }, } },
+ ["DamageTakenPerIntelligenceEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 230 Intelligence" }, } },
+ ["DamageTakenPerIntelligenceEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 220 Intelligence" }, } },
+ ["DamageTakenPerIntelligenceEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 210 Intelligence" }, } },
+ ["DamageTakenPerIntelligenceEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 200 Intelligence" }, } },
+ ["DamageTakenPerIntelligenceEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 190 Intelligence" }, } },
+ ["DamageTakenPerIntelligenceEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 180 Intelligence" }, } },
+ ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 210 Intelligence" }, [4074358700] = { "" }, } },
+ ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 200 Intelligence" }, [4074358700] = { "" }, } },
+ ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 190 Intelligence" }, [4074358700] = { "" }, } },
+ ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 180 Intelligence" }, [4074358700] = { "" }, } },
+ ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 170 Intelligence" }, [4074358700] = { "" }, } },
+ ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 160 Intelligence" }, [4074358700] = { "" }, } },
+ ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 190 Intelligence" }, [3283106665] = { "" }, } },
+ ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 180 Intelligence" }, [3283106665] = { "" }, } },
+ ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 170 Intelligence" }, [3283106665] = { "" }, } },
+ ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 160 Intelligence" }, [3283106665] = { "" }, } },
+ ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 150 Intelligence" }, [3283106665] = { "" }, } },
+ ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [2874488491] = { "1% less Damage Taken per 140 Intelligence" }, [3283106665] = { "" }, } },
+ ["SkillEffectDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(7-8)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(7-8)% increased Skill Effect Duration" }, } },
+ ["SkillEffectDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(9-10)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(9-10)% increased Skill Effect Duration" }, } },
+ ["SkillEffectDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(11-12)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(11-12)% increased Skill Effect Duration" }, } },
+ ["SkillEffectDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(13-14)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(13-14)% increased Skill Effect Duration" }, } },
+ ["SkillEffectDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(15-16)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(15-16)% increased Skill Effect Duration" }, } },
+ ["SkillEffectDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(17-18)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(17-18)% increased Skill Effect Duration" }, } },
+ ["SkillEffectDurationUniquePresence1"] = { type = "Eater", affix = "", "(13-14)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(13-14)% increased Skill Effect Duration" }, } },
+ ["SkillEffectDurationUniquePresence2"] = { type = "Eater", affix = "", "(15-16)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(15-16)% increased Skill Effect Duration" }, } },
+ ["SkillEffectDurationUniquePresence3"] = { type = "Eater", affix = "", "(17-18)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(17-18)% increased Skill Effect Duration" }, } },
+ ["SkillEffectDurationUniquePresence4"] = { type = "Eater", affix = "", "(19-20)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(19-20)% increased Skill Effect Duration" }, } },
+ ["SkillEffectDurationUniquePresence5"] = { type = "Eater", affix = "", "(21-22)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(21-22)% increased Skill Effect Duration" }, } },
+ ["SkillEffectDurationUniquePresence6"] = { type = "Eater", affix = "", "(23-24)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [4074358700] = { "" }, [3377888098] = { "(23-24)% increased Skill Effect Duration" }, } },
+ ["SkillEffectDurationPinnaclePresence1"] = { type = "Eater", affix = "", "(19-20)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(19-20)% increased Skill Effect Duration" }, } },
+ ["SkillEffectDurationPinnaclePresence2"] = { type = "Eater", affix = "", "(21-22)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(21-22)% increased Skill Effect Duration" }, } },
+ ["SkillEffectDurationPinnaclePresence3"] = { type = "Eater", affix = "", "(23-24)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(23-24)% increased Skill Effect Duration" }, } },
+ ["SkillEffectDurationPinnaclePresence4"] = { type = "Eater", affix = "", "(25-26)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(25-26)% increased Skill Effect Duration" }, } },
+ ["SkillEffectDurationPinnaclePresence5"] = { type = "Eater", affix = "", "(27-28)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(27-28)% increased Skill Effect Duration" }, } },
+ ["SkillEffectDurationPinnaclePresence6"] = { type = "Eater", affix = "", "(29-30)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, tradeHashes = { [3283106665] = { "" }, [3377888098] = { "(29-30)% increased Skill Effect Duration" }, } },
}
\ No newline at end of file
diff --git a/src/Data/ModExplicit.lua b/src/Data/ModExplicit.lua
index 45eaf6d6b4d..86f9ab0b3e4 100644
--- a/src/Data/ModExplicit.lua
+++ b/src/Data/ModExplicit.lua
@@ -2,4305 +2,4305 @@
-- Item data (c) Grinding Gear Games
return {
- ["Strength1"] = { type = "Suffix", affix = "of the Brute", "+(8-12) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(8-12) to Strength" }, } },
- ["Strength2"] = { type = "Suffix", affix = "of the Wrestler", "+(13-17) to Strength", statOrder = { 1182 }, level = 11, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(13-17) to Strength" }, } },
- ["Strength3"] = { type = "Suffix", affix = "of the Bear", "+(18-22) to Strength", statOrder = { 1182 }, level = 22, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(18-22) to Strength" }, } },
- ["Strength4"] = { type = "Suffix", affix = "of the Lion", "+(23-27) to Strength", statOrder = { 1182 }, level = 33, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(23-27) to Strength" }, } },
- ["Strength5"] = { type = "Suffix", affix = "of the Gorilla", "+(28-32) to Strength", statOrder = { 1182 }, level = 44, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(28-32) to Strength" }, } },
- ["Strength6"] = { type = "Suffix", affix = "of the Goliath", "+(33-37) to Strength", statOrder = { 1182 }, level = 55, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(33-37) to Strength" }, } },
- ["Strength7"] = { type = "Suffix", affix = "of the Leviathan", "+(38-42) to Strength", statOrder = { 1182 }, level = 66, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(38-42) to Strength" }, } },
- ["Strength8"] = { type = "Suffix", affix = "of the Titan", "+(43-50) to Strength", statOrder = { 1182 }, level = 74, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(43-50) to Strength" }, } },
- ["Strength9"] = { type = "Suffix", affix = "of the Gods", "+(51-55) to Strength", statOrder = { 1182 }, level = 82, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(51-55) to Strength" }, } },
- ["Strength10"] = { type = "Suffix", affix = "of the Godslayer", "+(56-60) to Strength", statOrder = { 1182 }, level = 85, group = "Strength", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(56-60) to Strength" }, } },
- ["StrengthEssence7_"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Strength", statOrder = { 1182 }, level = 82, group = "Strength", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(51-58) to Strength" }, } },
- ["Dexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(8-12) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(8-12) to Dexterity" }, } },
- ["Dexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(13-17) to Dexterity", statOrder = { 1183 }, level = 11, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(13-17) to Dexterity" }, } },
- ["Dexterity3"] = { type = "Suffix", affix = "of the Fox", "+(18-22) to Dexterity", statOrder = { 1183 }, level = 22, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(18-22) to Dexterity" }, } },
- ["Dexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(23-27) to Dexterity", statOrder = { 1183 }, level = 33, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(23-27) to Dexterity" }, } },
- ["Dexterity5"] = { type = "Suffix", affix = "of the Panther", "+(28-32) to Dexterity", statOrder = { 1183 }, level = 44, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(28-32) to Dexterity" }, } },
- ["Dexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(33-37) to Dexterity", statOrder = { 1183 }, level = 55, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(33-37) to Dexterity" }, } },
- ["Dexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(38-42) to Dexterity", statOrder = { 1183 }, level = 66, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(38-42) to Dexterity" }, } },
- ["Dexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(43-50) to Dexterity", statOrder = { 1183 }, level = 74, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(43-50) to Dexterity" }, } },
- ["Dexterity9"] = { type = "Suffix", affix = "of the Wind", "+(51-55) to Dexterity", statOrder = { 1183 }, level = 82, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(51-55) to Dexterity" }, } },
- ["Dexterity10"] = { type = "Suffix", affix = "of the Blur", "+(56-60) to Dexterity", statOrder = { 1183 }, level = 85, group = "Dexterity", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(56-60) to Dexterity" }, } },
- ["DexterityEssence7"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Dexterity", statOrder = { 1183 }, level = 82, group = "Dexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(51-58) to Dexterity" }, } },
- ["Intelligence1"] = { type = "Suffix", affix = "of the Pupil", "+(8-12) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(8-12) to Intelligence" }, } },
- ["Intelligence2"] = { type = "Suffix", affix = "of the Student", "+(13-17) to Intelligence", statOrder = { 1184 }, level = 11, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(13-17) to Intelligence" }, } },
- ["Intelligence3"] = { type = "Suffix", affix = "of the Prodigy", "+(18-22) to Intelligence", statOrder = { 1184 }, level = 22, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(18-22) to Intelligence" }, } },
- ["Intelligence4"] = { type = "Suffix", affix = "of the Augur", "+(23-27) to Intelligence", statOrder = { 1184 }, level = 33, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(23-27) to Intelligence" }, } },
- ["Intelligence5"] = { type = "Suffix", affix = "of the Philosopher", "+(28-32) to Intelligence", statOrder = { 1184 }, level = 44, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(28-32) to Intelligence" }, } },
- ["Intelligence6"] = { type = "Suffix", affix = "of the Sage", "+(33-37) to Intelligence", statOrder = { 1184 }, level = 55, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(33-37) to Intelligence" }, } },
- ["Intelligence7"] = { type = "Suffix", affix = "of the Savant", "+(38-42) to Intelligence", statOrder = { 1184 }, level = 66, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(38-42) to Intelligence" }, } },
- ["Intelligence8"] = { type = "Suffix", affix = "of the Virtuoso", "+(43-50) to Intelligence", statOrder = { 1184 }, level = 74, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(43-50) to Intelligence" }, } },
- ["Intelligence9"] = { type = "Suffix", affix = "of the Genius", "+(51-55) to Intelligence", statOrder = { 1184 }, level = 82, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(51-55) to Intelligence" }, } },
- ["Intelligence10"] = { type = "Suffix", affix = "of the Polymath", "+(56-60) to Intelligence", statOrder = { 1184 }, level = 85, group = "Intelligence", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(56-60) to Intelligence" }, } },
- ["IntelligenceEssence7"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Intelligence", statOrder = { 1184 }, level = 82, group = "Intelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(51-58) to Intelligence" }, } },
- ["AllAttributes1"] = { type = "Suffix", affix = "of the Clouds", "+(1-4) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(1-4) to all Attributes" }, } },
- ["AllAttributes2"] = { type = "Suffix", affix = "of the Sky", "+(5-8) to all Attributes", statOrder = { 1181 }, level = 11, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-8) to all Attributes" }, } },
- ["AllAttributes3"] = { type = "Suffix", affix = "of the Meteor", "+(9-12) to all Attributes", statOrder = { 1181 }, level = 22, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(9-12) to all Attributes" }, } },
- ["AllAttributes4"] = { type = "Suffix", affix = "of the Comet", "+(13-16) to all Attributes", statOrder = { 1181 }, level = 33, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(13-16) to all Attributes" }, } },
- ["AllAttributes5"] = { type = "Suffix", affix = "of the Heavens", "+(17-20) to all Attributes", statOrder = { 1181 }, level = 44, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(17-20) to all Attributes" }, } },
- ["AllAttributes6"] = { type = "Suffix", affix = "of the Galaxy", "+(21-24) to all Attributes", statOrder = { 1181 }, level = 55, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(21-24) to all Attributes" }, } },
- ["AllAttributes7"] = { type = "Suffix", affix = "of the Universe", "+(25-28) to all Attributes", statOrder = { 1181 }, level = 66, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(25-28) to all Attributes" }, } },
- ["AllAttributes8"] = { type = "Suffix", affix = "of the Infinite", "+(29-32) to all Attributes", statOrder = { 1181 }, level = 77, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(29-32) to all Attributes" }, } },
- ["AllAttributes9_"] = { type = "Suffix", affix = "of the Multiverse", "+(33-35) to all Attributes", statOrder = { 1181 }, level = 85, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(33-35) to all Attributes" }, } },
- ["IncreasedLife0"] = { type = "Prefix", affix = "Hale", "+(3-9) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(3-9) to maximum Life" }, } },
- ["IncreasedLife1"] = { type = "Prefix", affix = "Healthy", "+(10-24) to maximum Life", statOrder = { 1574 }, level = 5, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-24) to maximum Life" }, } },
- ["IncreasedLife2"] = { type = "Prefix", affix = "Sanguine", "+(25-39) to maximum Life", statOrder = { 1574 }, level = 11, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-39) to maximum Life" }, } },
- ["IncreasedLife3"] = { type = "Prefix", affix = "Stalwart", "+(40-54) to maximum Life", statOrder = { 1574 }, level = 18, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-54) to maximum Life" }, } },
- ["IncreasedLife4"] = { type = "Prefix", affix = "Stout", "+(55-69) to maximum Life", statOrder = { 1574 }, level = 24, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(55-69) to maximum Life" }, } },
- ["IncreasedLife5"] = { type = "Prefix", affix = "Robust", "+(70-84) to maximum Life", statOrder = { 1574 }, level = 30, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-84) to maximum Life" }, } },
- ["IncreasedLife6"] = { type = "Prefix", affix = "Rotund", "+(85-99) to maximum Life", statOrder = { 1574 }, level = 36, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(85-99) to maximum Life" }, } },
- ["IncreasedLife7"] = { type = "Prefix", affix = "Virile", "+(100-114) to maximum Life", statOrder = { 1574 }, level = 44, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-114) to maximum Life" }, } },
- ["IncreasedLife8"] = { type = "Prefix", affix = "Athlete's", "+(115-129) to maximum Life", statOrder = { 1574 }, level = 54, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "ring", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(115-129) to maximum Life" }, } },
- ["IncreasedLife9"] = { type = "Prefix", affix = "Fecund", "+(130-144) to maximum Life", statOrder = { 1574 }, level = 64, group = "IncreasedLife", weightKey = { "fishing_rod", "boots", "gloves", "weapon", "ring", "amulet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(130-144) to maximum Life" }, } },
- ["IncreasedLife10"] = { type = "Prefix", affix = "Vigorous", "+(145-159) to maximum Life", statOrder = { 1574 }, level = 73, group = "IncreasedLife", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(145-159) to maximum Life" }, } },
- ["IncreasedLife11"] = { type = "Prefix", affix = "Rapturous", "+(160-174) to maximum Life", statOrder = { 1574 }, level = 81, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(160-174) to maximum Life" }, } },
- ["IncreasedLife12"] = { type = "Prefix", affix = "Prime", "+(175-189) to maximum Life", statOrder = { 1574 }, level = 86, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(175-189) to maximum Life" }, } },
- ["IncreasedLifeEssence1_"] = { type = "Prefix", affix = "Essences", "+(5-14) to maximum Life", statOrder = { 1574 }, level = 3, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(5-14) to maximum Life" }, } },
- ["IncreasedLifeEssence2"] = { type = "Prefix", affix = "Essences", "+(15-30) to maximum Life", statOrder = { 1574 }, level = 10, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(15-30) to maximum Life" }, } },
- ["IncreasedLifeEssence3"] = { type = "Prefix", affix = "Essences", "+(31-45) to maximum Life", statOrder = { 1574 }, level = 26, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(31-45) to maximum Life" }, } },
- ["IncreasedLifeEssence4"] = { type = "Prefix", affix = "Essences", "+(46-60) to maximum Life", statOrder = { 1574 }, level = 42, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(46-60) to maximum Life" }, } },
- ["IncreasedLifeEssence5"] = { type = "Prefix", affix = "Essences", "+(61-75) to maximum Life", statOrder = { 1574 }, level = 58, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(61-75) to maximum Life" }, } },
- ["IncreasedLifeEssence6"] = { type = "Prefix", affix = "Essences", "+(76-90) to maximum Life", statOrder = { 1574 }, level = 74, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(76-90) to maximum Life" }, } },
- ["IncreasedLifeEssenceChest1"] = { type = "Prefix", affix = "Essences", "+(120-126) to maximum Life", statOrder = { 1574 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(120-126) to maximum Life" }, } },
- ["IncreasedLifeEssenceShield1"] = { type = "Prefix", affix = "Essences", "+(110-116) to maximum Life", statOrder = { 1574 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(110-116) to maximum Life" }, } },
- ["IncreasedLifeEssenceHelm1"] = { type = "Prefix", affix = "Essences", "+(100-106) to maximum Life", statOrder = { 1574 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-106) to maximum Life" }, } },
- ["IncreasedLifeEssenceBootsGloves1"] = { type = "Prefix", affix = "Essences", "+(91-105) to maximum Life", statOrder = { 1574 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(91-105) to maximum Life" }, } },
- ["IncreasedLifeEnhancedMod"] = { type = "Prefix", affix = "Guatelitzi's", "+(70-79) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1574, 1576 }, level = 1, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(3-5)% increased maximum Life" }, [3299347043] = { "+(70-79) to maximum Life" }, } },
- ["IncreasedLifeEnhancedBodyMod___"] = { type = "Prefix", affix = "Guatelitzi's", "+(110-119) to maximum Life", "(8-10)% increased maximum Life", statOrder = { 1574, 1576 }, level = 1, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, [3299347043] = { "+(110-119) to maximum Life" }, } },
- ["IncreasedMana1"] = { type = "Prefix", affix = "Beryl", "+(15-19) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-19) to maximum Mana" }, } },
- ["IncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "+(20-24) to maximum Mana", statOrder = { 1584 }, level = 11, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-24) to maximum Mana" }, } },
- ["IncreasedMana3"] = { type = "Prefix", affix = "Azure", "+(25-29) to maximum Mana", statOrder = { 1584 }, level = 17, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-29) to maximum Mana" }, } },
- ["IncreasedMana4"] = { type = "Prefix", affix = "Sapphire", "+(30-34) to maximum Mana", statOrder = { 1584 }, level = 23, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-34) to maximum Mana" }, } },
- ["IncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "+(35-39) to maximum Mana", statOrder = { 1584 }, level = 29, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(35-39) to maximum Mana" }, } },
- ["IncreasedMana6"] = { type = "Prefix", affix = "Aqua", "+(40-44) to maximum Mana", statOrder = { 1584 }, level = 35, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-44) to maximum Mana" }, } },
- ["IncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "+(45-49) to maximum Mana", statOrder = { 1584 }, level = 42, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(45-49) to maximum Mana" }, } },
- ["IncreasedMana8"] = { type = "Prefix", affix = "Gentian", "+(50-54) to maximum Mana", statOrder = { 1584 }, level = 51, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-54) to maximum Mana" }, } },
- ["IncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "+(55-59) to maximum Mana", statOrder = { 1584 }, level = 60, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(55-59) to maximum Mana" }, } },
- ["IncreasedMana10"] = { type = "Prefix", affix = "Mazarine", "+(60-64) to maximum Mana", statOrder = { 1584 }, level = 69, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-64) to maximum Mana" }, } },
- ["IncreasedMana11"] = { type = "Prefix", affix = "Blue", "+(65-68) to maximum Mana", statOrder = { 1584 }, level = 75, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(65-68) to maximum Mana" }, } },
- ["IncreasedMana12"] = { type = "Prefix", affix = "Zaffre", "+(69-73) to maximum Mana", statOrder = { 1584 }, level = 81, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-73) to maximum Mana" }, } },
- ["IncreasedMana13"] = { type = "Prefix", affix = "Ultramarine", "+(74-78) to maximum Mana", statOrder = { 1584 }, level = 85, group = "IncreasedMana", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, } },
- ["IncreasedManaEssence7"] = { type = "Prefix", affix = "Essences", "+(69-77) to maximum Mana", statOrder = { 1584 }, level = 82, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-77) to maximum Mana" }, } },
- ["IncreasedManaEnhancedModPercent"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(7-10)% increased maximum Mana", statOrder = { 1584, 1585 }, level = 1, group = "IncreasedManaAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-73) to maximum Mana" }, [2748665614] = { "(7-10)% increased maximum Mana" }, } },
- ["IncreasedManaEnhancedModOnHit_"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1584, 1749 }, level = 1, group = "IncreasedManaAndOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [820939409] = { "Gain (2-3) Mana per Enemy Hit with Attacks" }, } },
- ["IncreasedManaEnhancedModRegen"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Regenerate (5-7) Mana per second", statOrder = { 1584, 1587 }, level = 1, group = "IncreasedManaAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [4291461939] = { "Regenerate (5-7) Mana per second" }, } },
- ["IncreasedManaEnhancedModReservation"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 1584, 2237 }, level = 1, group = "IncreasedManaAndReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-73) to maximum Mana" }, [1269219558] = { "(6-10)% increased Mana Reservation Efficiency of Skills" }, } },
- ["IncreasedManaEnhancedModCost"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "-(8-6) to Total Mana Cost of Skills", statOrder = { 1584, 1896 }, level = 1, group = "IncreasedManaAndCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [3736589033] = { "-(8-6) to Total Mana Cost of Skills" }, } },
- ["IncreasedManaWeapon1"] = { type = "Prefix", affix = "Beryl", "+(30-39) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-39) to maximum Mana" }, } },
- ["IncreasedManaWeapon2__"] = { type = "Prefix", affix = "Cobalt", "+(40-49) to maximum Mana", statOrder = { 1584 }, level = 11, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-49) to maximum Mana" }, } },
- ["IncreasedManaWeapon3_"] = { type = "Prefix", affix = "Azure", "+(50-59) to maximum Mana", statOrder = { 1584 }, level = 17, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-59) to maximum Mana" }, } },
- ["IncreasedManaWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(60-69) to maximum Mana", statOrder = { 1584 }, level = 23, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-69) to maximum Mana" }, } },
- ["IncreasedManaWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(70-79) to maximum Mana", statOrder = { 1584 }, level = 29, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(70-79) to maximum Mana" }, } },
- ["IncreasedManaWeapon6"] = { type = "Prefix", affix = "Aqua", "+(80-89) to maximum Mana", statOrder = { 1584 }, level = 35, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-89) to maximum Mana" }, } },
- ["IncreasedManaWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(90-99) to maximum Mana", statOrder = { 1584 }, level = 42, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(90-99) to maximum Mana" }, } },
- ["IncreasedManaWeapon8"] = { type = "Prefix", affix = "Gentian", "+(100-109) to maximum Mana", statOrder = { 1584 }, level = 51, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-109) to maximum Mana" }, } },
- ["IncreasedManaWeapon9___"] = { type = "Prefix", affix = "Chalybeous", "+(110-119) to maximum Mana", statOrder = { 1584 }, level = 60, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(110-119) to maximum Mana" }, } },
- ["IncreasedManaWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(120-129) to maximum Mana", statOrder = { 1584 }, level = 69, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 800, 800, 800, 800, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(120-129) to maximum Mana" }, } },
- ["IncreasedManaWeapon11"] = { type = "Prefix", affix = "Blue", "+(130-139) to maximum Mana", statOrder = { 1584 }, level = 75, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 600, 600, 600, 600, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(130-139) to maximum Mana" }, } },
- ["IncreasedManaWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(140-159) to maximum Mana", statOrder = { 1584 }, level = 81, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 400, 400, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(140-159) to maximum Mana" }, } },
- ["IncreasedManaTwoHandWeapon1"] = { type = "Prefix", affix = "Beryl", "+(40-49) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-49) to maximum Mana" }, } },
- ["IncreasedManaTwoHandWeapon2_"] = { type = "Prefix", affix = "Cobalt", "+(50-59) to maximum Mana", statOrder = { 1584 }, level = 11, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-59) to maximum Mana" }, } },
- ["IncreasedManaTwoHandWeapon3_"] = { type = "Prefix", affix = "Azure", "+(60-69) to maximum Mana", statOrder = { 1584 }, level = 17, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-69) to maximum Mana" }, } },
- ["IncreasedManaTwoHandWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(70-79) to maximum Mana", statOrder = { 1584 }, level = 23, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(70-79) to maximum Mana" }, } },
- ["IncreasedManaTwoHandWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(80-89) to maximum Mana", statOrder = { 1584 }, level = 29, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-89) to maximum Mana" }, } },
- ["IncreasedManaTwoHandWeapon6"] = { type = "Prefix", affix = "Aqua", "+(90-99) to maximum Mana", statOrder = { 1584 }, level = 35, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(90-99) to maximum Mana" }, } },
- ["IncreasedManaTwoHandWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(100-119) to maximum Mana", statOrder = { 1584 }, level = 42, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-119) to maximum Mana" }, } },
- ["IncreasedManaTwoHandWeapon8_"] = { type = "Prefix", affix = "Gentian", "+(120-139) to maximum Mana", statOrder = { 1584 }, level = 51, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(120-139) to maximum Mana" }, } },
- ["IncreasedManaTwoHandWeapon9"] = { type = "Prefix", affix = "Chalybeous", "+(140-159) to maximum Mana", statOrder = { 1584 }, level = 60, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(140-159) to maximum Mana" }, } },
- ["IncreasedManaTwoHandWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(160-179) to maximum Mana", statOrder = { 1584 }, level = 69, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(160-179) to maximum Mana" }, } },
- ["IncreasedManaTwoHandWeapon11"] = { type = "Prefix", affix = "Blue", "+(180-199) to maximum Mana", statOrder = { 1584 }, level = 75, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 600, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(180-199) to maximum Mana" }, } },
- ["IncreasedManaTwoHandWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(200-229) to maximum Mana", statOrder = { 1584 }, level = 81, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(200-229) to maximum Mana" }, } },
- ["IncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(1-3) to maximum Energy Shield", statOrder = { 1563 }, level = 3, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(1-3) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(4-8) to maximum Energy Shield", statOrder = { 1563 }, level = 11, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(4-8) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(9-12) to maximum Energy Shield", statOrder = { 1563 }, level = 17, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(9-12) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(13-15) to maximum Energy Shield", statOrder = { 1563 }, level = 23, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(13-15) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(16-19) to maximum Energy Shield", statOrder = { 1563 }, level = 29, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(16-19) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(20-22) to maximum Energy Shield", statOrder = { 1563 }, level = 35, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(20-22) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShield7"] = { type = "Prefix", affix = "Seething", "+(23-26) to maximum Energy Shield", statOrder = { 1563 }, level = 42, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(23-26) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShield8"] = { type = "Prefix", affix = "Blazing", "+(27-31) to maximum Energy Shield", statOrder = { 1563 }, level = 50, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(27-31) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(32-37) to maximum Energy Shield", statOrder = { 1563 }, level = 59, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(32-37) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(38-43) to maximum Energy Shield", statOrder = { 1563 }, level = 68, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(38-43) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(44-47) to maximum Energy Shield", statOrder = { 1563 }, level = 74, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(44-47) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShield12"] = { type = "Prefix", affix = "Dazzling", "+(48-51) to maximum Energy Shield", statOrder = { 1563 }, level = 80, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(48-51) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldEnhancedModES"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "(7-10)% increased maximum Energy Shield", statOrder = { 1563, 1566 }, level = 1, group = "EnergyShieldAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(7-10)% increased maximum Energy Shield" }, [3489782002] = { "+(44-47) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldEnhancedModRegen_"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Regenerate 0.4% of Energy Shield per second", statOrder = { 1563, 2651 }, level = 1, group = "EnergyShieldAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 0.4% of Energy Shield per second" }, [3489782002] = { "+(44-47) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(3-5) to maximum Energy Shield", statOrder = { 1564 }, level = 3, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(3-5) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(6-11) to maximum Energy Shield", statOrder = { 1564 }, level = 11, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(6-11) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(12-16) to maximum Energy Shield", statOrder = { 1564 }, level = 17, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(12-16) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(17-23) to maximum Energy Shield", statOrder = { 1564 }, level = 23, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(17-23) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(24-30) to maximum Energy Shield", statOrder = { 1564 }, level = 29, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(24-30) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(31-38) to maximum Energy Shield", statOrder = { 1564 }, level = 35, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(31-38) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Seething", "+(39-49) to maximum Energy Shield", statOrder = { 1564 }, level = 43, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(39-49) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShield8"] = { type = "Prefix", affix = "Blazing", "+(50-61) to maximum Energy Shield", statOrder = { 1564 }, level = 51, group = "LocalEnergyShield", weightKey = { "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-61) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(62-76) to maximum Energy Shield", statOrder = { 1564 }, level = 60, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(62-76) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(77-90) to maximum Energy Shield", statOrder = { 1564 }, level = 69, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(77-90) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(91-100) to maximum Energy Shield", statOrder = { 1564 }, level = 75, group = "LocalEnergyShield", weightKey = { "shield", "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(91-100) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldEssenceChest5"] = { type = "Prefix", affix = "Essences", "+(62-72) to maximum Energy Shield", statOrder = { 1564 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(62-72) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldEssenceChest6"] = { type = "Prefix", affix = "Essences", "+(73-82) to maximum Energy Shield", statOrder = { 1564 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(73-82) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldEssenceChest7__"] = { type = "Prefix", affix = "Essences", "+(88-95) to maximum Energy Shield", statOrder = { 1564 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(88-95) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldEssenceShield5"] = { type = "Prefix", affix = "Essences", "+(50-59) to maximum Energy Shield", statOrder = { 1564 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-59) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(60-69) to maximum Energy Shield", statOrder = { 1564 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(60-69) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldEssenceShield7"] = { type = "Prefix", affix = "Essences", "+(75-85) to maximum Energy Shield", statOrder = { 1564 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(75-85) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldEssenceBootsGloves4"] = { type = "Prefix", affix = "Essences", "+(18-26) to maximum Energy Shield", statOrder = { 1564 }, level = 42, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(18-26) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldEssenceBootsGloves5"] = { type = "Prefix", affix = "Essences", "+(27-32) to maximum Energy Shield", statOrder = { 1564 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(27-32) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldEssenceBootsGloves6"] = { type = "Prefix", affix = "Essences", "+(28-35) to maximum Energy Shield", statOrder = { 1564 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(28-35) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldEssenceBootsGloves7"] = { type = "Prefix", affix = "Essences", "+(38-45) to maximum Energy Shield", statOrder = { 1564 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(38-45) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(39-45) to maximum Energy Shield", statOrder = { 1564 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(39-45) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldEssenceHelm6"] = { type = "Prefix", affix = "Essences", "+(46-51) to maximum Energy Shield", statOrder = { 1564 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(46-51) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldEssenceHelm7"] = { type = "Prefix", affix = "Essences", "+(52-58) to maximum Energy Shield", statOrder = { 1564 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(52-58) to maximum Energy Shield" }, } },
- ["AddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds 1 to 2 Physical Damage to Attacks", statOrder = { 1271 }, level = 5, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 2 Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-5) Physical Damage to Attacks", statOrder = { 1271 }, level = 13, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-3) to (4-5) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (3-4) to (6-7) Physical Damage to Attacks", statOrder = { 1271 }, level = 19, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-4) to (6-7) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (9-10) Physical Damage to Attacks", statOrder = { 1271 }, level = 28, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-6) to (9-10) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1271 }, level = 35, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (11-12) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1271 }, level = 44, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-9) to (13-15) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-10) to (15-18) Physical Damage to Attacks", statOrder = { 1271 }, level = 52, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 0, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (7-10) to (15-18) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (9-12) to (19-22) Physical Damage to Attacks", statOrder = { 1271 }, level = 64, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 0, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (9-12) to (19-22) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (11-15) to (22-26) Physical Damage to Attacks", statOrder = { 1271 }, level = 76, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 0, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (11-15) to (22-26) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamageQuiver1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to 3 Physical Damage to Attacks", statOrder = { 1271 }, level = 5, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (1-2) to 3 Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamageQuiver2"] = { type = "Prefix", affix = "Burnished", "Adds (3-4) to (6-8) Physical Damage to Attacks", statOrder = { 1271 }, level = 13, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-4) to (6-8) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamageQuiver3"] = { type = "Prefix", affix = "Polished", "Adds (5-6) to (9-10) Physical Damage to Attacks", statOrder = { 1271 }, level = 19, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-6) to (9-10) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamageQuiver4"] = { type = "Prefix", affix = "Honed", "Adds (6-9) to (13-16) Physical Damage to Attacks", statOrder = { 1271 }, level = 28, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-9) to (13-16) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamageQuiver5"] = { type = "Prefix", affix = "Gleaming", "Adds (8-11) to (16-18) Physical Damage to Attacks", statOrder = { 1271 }, level = 35, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (8-11) to (16-18) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamageQuiver6"] = { type = "Prefix", affix = "Annealed", "Adds (10-13) to (19-23) Physical Damage to Attacks", statOrder = { 1271 }, level = 44, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (10-13) to (19-23) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamageQuiver7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (11-16) to (23-26) Physical Damage to Attacks", statOrder = { 1271 }, level = 52, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (11-16) to (23-26) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamageQuiver8"] = { type = "Prefix", affix = "Tempered", "Adds (14-19) to (28-33) Physical Damage to Attacks", statOrder = { 1271 }, level = 64, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (14-19) to (28-33) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamageQuiver9"] = { type = "Prefix", affix = "Flaring", "Adds (17-23) to (34-39) Physical Damage to Attacks", statOrder = { 1271 }, level = 76, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (17-23) to (34-39) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamageEssenceAmulet7"] = { type = "Prefix", affix = "Essences", "Adds (16-18) to (27-30) Physical Damage to Attacks", statOrder = { 1271 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (16-18) to (27-30) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamageEssenceRing5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-13) Physical Damage to Attacks", statOrder = { 1271 }, level = 58, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-8) to (12-13) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamageEssenceRing6"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-15) Physical Damage to Attacks", statOrder = { 1271 }, level = 74, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (7-9) to (13-15) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamageEssenceRing7"] = { type = "Prefix", affix = "Essences", "Adds (10-11) to (16-17) Physical Damage to Attacks", statOrder = { 1271 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (10-11) to (16-17) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamageEssenceGlovesQuiver4"] = { type = "Prefix", affix = "Essences", "Adds (3-5) to (7-8) Physical Damage to Attacks", statOrder = { 1271 }, level = 42, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-5) to (7-8) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamageEssenceGlovesQuiver5"] = { type = "Prefix", affix = "Essences", "Adds (4-5) to (8-9) Physical Damage to Attacks", statOrder = { 1271 }, level = 58, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-5) to (8-9) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamageEssenceGlovesQuiver6"] = { type = "Prefix", affix = "Essences", "Adds (5-6) to (9-10) Physical Damage to Attacks", statOrder = { 1271 }, level = 74, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-6) to (9-10) Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamageEssenceGlovesQuiver7"] = { type = "Prefix", affix = "Essences", "Adds (6-7) to (10-11) Physical Damage to Attacks", statOrder = { 1271 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-7) to (10-11) Physical Damage to Attacks" }, } },
- ["AddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds 1 to 2 Fire Damage to Attacks", statOrder = { 1365 }, level = 1, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 1 to 2 Fire Damage to Attacks" }, } },
- ["AddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (7-8) Fire Damage to Attacks", statOrder = { 1365 }, level = 12, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (3-5) to (7-8) Fire Damage to Attacks" }, } },
- ["AddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (5-7) to (11-13) Fire Damage to Attacks", statOrder = { 1365 }, level = 20, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (5-7) to (11-13) Fire Damage to Attacks" }, } },
- ["AddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (7-10) to (15-18) Fire Damage to Attacks", statOrder = { 1365 }, level = 28, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (7-10) to (15-18) Fire Damage to Attacks" }, } },
- ["AddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1365 }, level = 35, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (9-12) to (19-22) Fire Damage to Attacks" }, } },
- ["AddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Attacks", statOrder = { 1365 }, level = 44, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (11-15) to (23-27) Fire Damage to Attacks" }, } },
- ["AddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Attacks", statOrder = { 1365 }, level = 52, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (13-18) to (27-31) Fire Damage to Attacks" }, } },
- ["AddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Attacks", statOrder = { 1365 }, level = 64, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (16-22) to (32-38) Fire Damage to Attacks" }, } },
- ["AddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Attacks", statOrder = { 1365 }, level = 76, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 50, 250, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (19-25) to (39-45) Fire Damage to Attacks" }, } },
- ["AddedFireDamageQuiver1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to 3 Fire Damage to Attacks", statOrder = { 1365 }, level = 1, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (1-2) to 3 Fire Damage to Attacks" }, } },
- ["AddedFireDamageQuiver2"] = { type = "Prefix", affix = "Smouldering", "Adds (5-7) to (10-12) Fire Damage to Attacks", statOrder = { 1365 }, level = 12, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (5-7) to (10-12) Fire Damage to Attacks" }, } },
- ["AddedFireDamageQuiver3"] = { type = "Prefix", affix = "Smoking", "Adds (8-10) to (15-18) Fire Damage to Attacks", statOrder = { 1365 }, level = 20, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-10) to (15-18) Fire Damage to Attacks" }, } },
- ["AddedFireDamageQuiver4"] = { type = "Prefix", affix = "Burning", "Adds (11-14) to (21-25) Fire Damage to Attacks", statOrder = { 1365 }, level = 28, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (11-14) to (21-25) Fire Damage to Attacks" }, } },
- ["AddedFireDamageQuiver5_"] = { type = "Prefix", affix = "Flaming", "Adds (13-18) to (27-31) Fire Damage to Attacks", statOrder = { 1365 }, level = 35, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (13-18) to (27-31) Fire Damage to Attacks" }, } },
- ["AddedFireDamageQuiver6"] = { type = "Prefix", affix = "Scorching", "Adds (17-22) to (33-38) Fire Damage to Attacks", statOrder = { 1365 }, level = 44, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (17-22) to (33-38) Fire Damage to Attacks" }, } },
- ["AddedFireDamageQuiver7"] = { type = "Prefix", affix = "Incinerating", "Adds (20-27) to (40-47) Fire Damage to Attacks", statOrder = { 1365 }, level = 52, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (20-27) to (40-47) Fire Damage to Attacks" }, } },
- ["AddedFireDamageQuiver8__"] = { type = "Prefix", affix = "Blasting", "Adds (27-35) to (53-62) Fire Damage to Attacks", statOrder = { 1365 }, level = 64, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (27-35) to (53-62) Fire Damage to Attacks" }, } },
- ["AddedFireDamageQuiver9"] = { type = "Prefix", affix = "Cremating", "Adds (37-50) to (74-87) Fire Damage to Attacks", statOrder = { 1365 }, level = 76, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (37-50) to (74-87) Fire Damage to Attacks" }, } },
- ["AddedFireDamageQuiverEssence10"] = { type = "Prefix", affix = "Essences", "Adds (41-55) to (81-96) Fire Damage to Attacks", statOrder = { 1365 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (41-55) to (81-96) Fire Damage to Attacks" }, } },
- ["AddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (23-27) to (43-48) Fire Damage to Attacks", statOrder = { 1365 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (23-27) to (43-48) Fire Damage to Attacks" }, } },
- ["AddedFireDamageEssenceGlovesQuiver4"] = { type = "Prefix", affix = "Essences", "Adds (5-7) to (11-14) Fire Damage to Attacks", statOrder = { 1365 }, level = 42, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (5-7) to (11-14) Fire Damage to Attacks" }, } },
- ["AddedFireDamageEssenceGlovesQuiver5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (13-17) Fire Damage to Attacks", statOrder = { 1365 }, level = 58, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (6-8) to (13-17) Fire Damage to Attacks" }, } },
- ["AddedFireDamageEssenceGlovesQuiver6"] = { type = "Prefix", affix = "Essences", "Adds (8-10) to (16-18) Fire Damage to Attacks", statOrder = { 1365 }, level = 74, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-10) to (16-18) Fire Damage to Attacks" }, } },
- ["AddedFireDamageEssenceGlovesQuiver7"] = { type = "Prefix", affix = "Essences", "Adds (9-11) to (17-21) Fire Damage to Attacks", statOrder = { 1365 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (9-11) to (17-21) Fire Damage to Attacks" }, } },
- ["AddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to 2 Cold Damage to Attacks", statOrder = { 1374 }, level = 2, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 1 to 2 Cold Damage to Attacks" }, } },
- ["AddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (7-8) Cold Damage to Attacks", statOrder = { 1374 }, level = 13, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (3-4) to (7-8) Cold Damage to Attacks" }, } },
- ["AddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (5-7) to (10-12) Cold Damage to Attacks", statOrder = { 1374 }, level = 21, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (5-7) to (10-12) Cold Damage to Attacks" }, } },
- ["AddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (6-9) to (13-16) Cold Damage to Attacks", statOrder = { 1374 }, level = 29, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (6-9) to (13-16) Cold Damage to Attacks" }, } },
- ["AddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Attacks", statOrder = { 1374 }, level = 36, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (8-11) to (16-19) Cold Damage to Attacks" }, } },
- ["AddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1374 }, level = 45, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (10-13) to (20-24) Cold Damage to Attacks" }, } },
- ["AddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Attacks", statOrder = { 1374 }, level = 53, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (12-16) to (24-28) Cold Damage to Attacks" }, } },
- ["AddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Attacks", statOrder = { 1374 }, level = 65, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (14-19) to (29-34) Cold Damage to Attacks" }, } },
- ["AddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Attacks", statOrder = { 1374 }, level = 77, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 50, 250, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (17-22) to (34-40) Cold Damage to Attacks" }, } },
- ["AddedColdDamageQuiver1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to 3 Cold Damage to Attacks", statOrder = { 1374 }, level = 2, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (1-2) to 3 Cold Damage to Attacks" }, } },
- ["AddedColdDamageQuiver2"] = { type = "Prefix", affix = "Chilled", "Adds (5-6) to (9-10) Cold Damage to Attacks", statOrder = { 1374 }, level = 13, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (5-6) to (9-10) Cold Damage to Attacks" }, } },
- ["AddedColdDamageQuiver3_"] = { type = "Prefix", affix = "Icy", "Adds (7-9) to (14-16) Cold Damage to Attacks", statOrder = { 1374 }, level = 21, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (7-9) to (14-16) Cold Damage to Attacks" }, } },
- ["AddedColdDamageQuiver4__"] = { type = "Prefix", affix = "Frigid", "Adds (10-13) to (19-22) Cold Damage to Attacks", statOrder = { 1374 }, level = 29, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (10-13) to (19-22) Cold Damage to Attacks" }, } },
- ["AddedColdDamageQuiver5"] = { type = "Prefix", affix = "Freezing", "Adds (12-16) to (24-28) Cold Damage to Attacks", statOrder = { 1374 }, level = 36, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (12-16) to (24-28) Cold Damage to Attacks" }, } },
- ["AddedColdDamageQuiver6"] = { type = "Prefix", affix = "Frozen", "Adds (15-20) to (30-35) Cold Damage to Attacks", statOrder = { 1374 }, level = 45, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (15-20) to (30-35) Cold Damage to Attacks" }, } },
- ["AddedColdDamageQuiver7"] = { type = "Prefix", affix = "Glaciated", "Adds (18-24) to (36-42) Cold Damage to Attacks", statOrder = { 1374 }, level = 53, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (18-24) to (36-42) Cold Damage to Attacks" }, } },
- ["AddedColdDamageQuiver8"] = { type = "Prefix", affix = "Polar", "Adds (23-32) to (48-55) Cold Damage to Attacks", statOrder = { 1374 }, level = 65, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (23-32) to (48-55) Cold Damage to Attacks" }, } },
- ["AddedColdDamageQuiver9_"] = { type = "Prefix", affix = "Entombing", "Adds (33-45) to (67-78) Cold Damage to Attacks", statOrder = { 1374 }, level = 77, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (33-45) to (67-78) Cold Damage to Attacks" }, } },
- ["AddedColdDamageQuiverEssence10"] = { type = "Prefix", affix = "Essences", "Adds (36-50) to (74-86) Cold Damage to Attacks", statOrder = { 1374 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (36-50) to (74-86) Cold Damage to Attacks" }, } },
- ["AddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (20-24) to (38-44) Cold Damage to Attacks", statOrder = { 1374 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (20-24) to (38-44) Cold Damage to Attacks" }, } },
- ["AddedColdDamageEssenceQuiverGloves4"] = { type = "Prefix", affix = "Essences", "Adds (6-7) to (11-14) Cold Damage to Attacks", statOrder = { 1374 }, level = 42, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (6-7) to (11-14) Cold Damage to Attacks" }, } },
- ["AddedColdDamageEssenceQuiverGloves5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-15) Cold Damage to Attacks", statOrder = { 1374 }, level = 58, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (6-8) to (12-15) Cold Damage to Attacks" }, } },
- ["AddedColdDamageEssenceQuiverGloves6"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-16) Cold Damage to Attacks", statOrder = { 1374 }, level = 74, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (7-9) to (13-16) Cold Damage to Attacks" }, } },
- ["AddedColdDamageEssenceQuiverGloves7"] = { type = "Prefix", affix = "Essences", "Adds (8-10) to (14-17) Cold Damage to Attacks", statOrder = { 1374 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (8-10) to (14-17) Cold Damage to Attacks" }, } },
- ["AddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to 5 Lightning Damage to Attacks", statOrder = { 1385 }, level = 3, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 5 Lightning Damage to Attacks" }, } },
- ["AddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (14-15) Lightning Damage to Attacks", statOrder = { 1385 }, level = 13, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (14-15) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (22-23) Lightning Damage to Attacks", statOrder = { 1385 }, level = 22, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (22-23) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (27-28) Lightning Damage to Attacks", statOrder = { 1385 }, level = 28, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (27-28) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Attacks", statOrder = { 1385 }, level = 35, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (33-34) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Attacks", statOrder = { 1385 }, level = 44, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-4) to (40-43) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Attacks", statOrder = { 1385 }, level = 52, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-5) to (47-50) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Attacks", statOrder = { 1385 }, level = 64, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (3-6) to (57-61) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Attacks", statOrder = { 1385 }, level = 76, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 50, 250, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (3-7) to (68-72) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamageQuiver1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (3-4) Lightning Damage to Attacks", statOrder = { 1385 }, level = 3, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (3-4) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamageQuiver2"] = { type = "Prefix", affix = "Buzzing", "Adds 2 to (16-18) Lightning Damage to Attacks", statOrder = { 1385 }, level = 13, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 2 to (16-18) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamageQuiver3"] = { type = "Prefix", affix = "Snapping", "Adds (1-3) to (25-28) Lightning Damage to Attacks", statOrder = { 1385 }, level = 22, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (25-28) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamageQuiver4"] = { type = "Prefix", affix = "Crackling", "Adds (2-3) to (35-40) Lightning Damage to Attacks", statOrder = { 1385 }, level = 28, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-3) to (35-40) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamageQuiver5_"] = { type = "Prefix", affix = "Sparking", "Adds (2-4) to (44-50) Lightning Damage to Attacks", statOrder = { 1385 }, level = 35, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (44-50) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamageQuiver6___"] = { type = "Prefix", affix = "Arcing", "Adds (2-5) to (56-62) Lightning Damage to Attacks", statOrder = { 1385 }, level = 44, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-5) to (56-62) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamageQuiver7"] = { type = "Prefix", affix = "Shocking", "Adds (2-6) to (66-75) Lightning Damage to Attacks", statOrder = { 1385 }, level = 52, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-6) to (66-75) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamageQuiver8"] = { type = "Prefix", affix = "Discharging", "Adds (3-8) to (89-99) Lightning Damage to Attacks", statOrder = { 1385 }, level = 64, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (3-8) to (89-99) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamageQuiver9"] = { type = "Prefix", affix = "Electrocuting", "Adds (5-11) to (124-140) Lightning Damage to Attacks", statOrder = { 1385 }, level = 76, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (5-11) to (124-140) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamageQuiverEssence10__"] = { type = "Prefix", affix = "Essences", "Adds (6-13) to (136-155) Lightning Damage to Attacks", statOrder = { 1385 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (6-13) to (136-155) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-8) to (71-76) Lightning Damage to Attacks", statOrder = { 1385 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (4-8) to (71-76) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamageEssenceQuiverGloves3_"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (21-22) Lightning Damage to Attacks", statOrder = { 1385 }, level = 26, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (21-22) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamageEssenceQuiverGloves4"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (23-24) Lightning Damage to Attacks", statOrder = { 1385 }, level = 42, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (23-24) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamageEssenceQuiverGloves5"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (25-26) Lightning Damage to Attacks", statOrder = { 1385 }, level = 58, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (25-26) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamageEssenceQuiverGloves6"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (27-28) Lightning Damage to Attacks", statOrder = { 1385 }, level = 74, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (27-28) Lightning Damage to Attacks" }, } },
- ["AddedLightningDamageEssenceQuiverGloves7"] = { type = "Prefix", affix = "Essences", "Adds (1-3) to (29-30) Lightning Damage to Attacks", statOrder = { 1385 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (29-30) Lightning Damage to Attacks" }, } },
- ["AddedChaosDamageQuiver1"] = { type = "Prefix", affix = "Malicious", "Adds (27-41) to (55-69) Chaos Damage to Attacks", statOrder = { 1392 }, level = 83, group = "ChaosDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (27-41) to (55-69) Chaos Damage to Attacks" }, } },
- ["AddedFireDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (11-13) Fire Damage to Attacks", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1365, 1960 }, level = 1, group = "FireDamagePhysConvertedToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, [1573130764] = { "Adds (5-7) to (11-13) Fire Damage to Attacks" }, } },
- ["AddedColdDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (10-12) Cold Damage to Attacks", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1374, 1962 }, level = 1, group = "ColdDamagePhysConvertedToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, [4067062424] = { "Adds (5-7) to (10-12) Cold Damage to Attacks" }, } },
- ["AddedLightningDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (1-2) to (22-23) Lightning Damage to Attacks", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1385, 1964 }, level = 1, group = "LightningDamagePhysConvertedToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (22-23) Lightning Damage to Attacks" }, [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } },
- ["LifeLeech1"] = { type = "Prefix", affix = "Remora's", "(1-2)% of Physical Attack Damage Leeched as Life", statOrder = { 1652 }, level = 9, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(1-2)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeech2"] = { type = "Prefix", affix = "Lamprey's", "(3-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1652 }, level = 25, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(3-4)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeech3"] = { type = "Prefix", affix = "Vampire's", "(5-6)% of Physical Attack Damage Leeched as Life", statOrder = { 1652 }, level = 72, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(5-6)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriad1"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 50, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriad2"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 60, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriad3"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 70, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1-1.2)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadSuffix1"] = { type = "Suffix", affix = "of the Remora", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 50, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadSuffix2"] = { type = "Suffix", affix = "of the Lamprey", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 60, group = "LifeLeechPermyriad", weightKey = { "ranged", "amulet", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadSuffix3"] = { type = "Suffix", affix = "of the Vampire", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 70, group = "LifeLeechPermyriad", weightKey = { "ranged", "amulet", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1-1.2)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadEssence1"] = { type = "Prefix", affix = "Essences", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.5-0.7)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadEssence2"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 10, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadEssence3_"] = { type = "Prefix", affix = "Essences", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 26, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.7-0.9)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadEssence4"] = { type = "Prefix", affix = "Essences", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 42, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.8-1)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadEssence5"] = { type = "Prefix", affix = "Essences", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 58, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.9-1.1)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadEssence6"] = { type = "Prefix", affix = "Essences", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 74, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1-1.2)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 82, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1.1-1.3)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadSuffixEssence1"] = { type = "Suffix", affix = "of the Essence", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.5-0.7)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadSuffixEssence2"] = { type = "Suffix", affix = "of the Essence", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 10, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadSuffixEssence3_"] = { type = "Suffix", affix = "of the Essence", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 26, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.7-0.9)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadSuffixEssence4"] = { type = "Suffix", affix = "of the Essence", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 42, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.8-1)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadSuffixEssence5"] = { type = "Suffix", affix = "of the Essence", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 58, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.9-1.1)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadSuffixEssence6"] = { type = "Suffix", affix = "of the Essence", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 74, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1-1.2)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadSuffixEssence7"] = { type = "Suffix", affix = "of the Essence", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 82, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1.1-1.3)% of Physical Attack Damage Leeched as Life" }, } },
- ["ElementalDamagePercent1"] = { type = "Prefix", affix = "Augur's", "(4-8)% increased Elemental Damage", statOrder = { 1985 }, level = 4, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(4-8)% increased Elemental Damage" }, } },
- ["ElementalDamagePercent2"] = { type = "Prefix", affix = "Auspex's", "(9-16)% increased Elemental Damage", statOrder = { 1985 }, level = 15, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(9-16)% increased Elemental Damage" }, } },
- ["ElementalDamagePercent3"] = { type = "Prefix", affix = "Druid's", "(17-24)% increased Elemental Damage", statOrder = { 1985 }, level = 30, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(17-24)% increased Elemental Damage" }, } },
- ["ElementalDamagePercent4"] = { type = "Prefix", affix = "Haruspex's", "(25-29)% increased Elemental Damage", statOrder = { 1985 }, level = 60, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(25-29)% increased Elemental Damage" }, } },
- ["ElementalDamagePercent5"] = { type = "Prefix", affix = "Harbinger's", "(30-34)% increased Elemental Damage", statOrder = { 1985 }, level = 81, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(30-34)% increased Elemental Damage" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { type = "Prefix", affix = "Squire's", "(15-19)% increased Physical Damage", "+(16-20) to Accuracy Rating", statOrder = { 1237, 2029 }, level = 1, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(15-19)% increased Physical Damage" }, [691932474] = { "+(16-20) to Accuracy Rating" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { type = "Prefix", affix = "Journeyman's", "(20-24)% increased Physical Damage", "+(21-46) to Accuracy Rating", statOrder = { 1237, 2029 }, level = 11, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(20-24)% increased Physical Damage" }, [691932474] = { "+(21-46) to Accuracy Rating" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { type = "Prefix", affix = "Reaver's", "(25-34)% increased Physical Damage", "+(47-72) to Accuracy Rating", statOrder = { 1237, 2029 }, level = 23, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [691932474] = { "+(47-72) to Accuracy Rating" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { type = "Prefix", affix = "Mercenary's", "(35-44)% increased Physical Damage", "+(73-97) to Accuracy Rating", statOrder = { 1237, 2029 }, level = 35, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [691932474] = { "+(73-97) to Accuracy Rating" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { type = "Prefix", affix = "Champion's", "(45-54)% increased Physical Damage", "+(98-123) to Accuracy Rating", statOrder = { 1237, 2029 }, level = 46, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [691932474] = { "+(98-123) to Accuracy Rating" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { type = "Prefix", affix = "Conqueror's", "(55-64)% increased Physical Damage", "+(124-149) to Accuracy Rating", statOrder = { 1237, 2029 }, level = 60, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [691932474] = { "+(124-149) to Accuracy Rating" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { type = "Prefix", affix = "Emperor's", "(65-74)% increased Physical Damage", "+(150-174) to Accuracy Rating", statOrder = { 1237, 2029 }, level = 73, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-74)% increased Physical Damage" }, [691932474] = { "+(150-174) to Accuracy Rating" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { type = "Prefix", affix = "Dictator's", "(75-79)% increased Physical Damage", "+(175-200) to Accuracy Rating", statOrder = { 1237, 2029 }, level = 83, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(75-79)% increased Physical Damage" }, [691932474] = { "+(175-200) to Accuracy Rating" }, } },
- ["LocalIncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(40-49)% increased Physical Damage", statOrder = { 1237 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(40-49)% increased Physical Damage" }, } },
- ["LocalIncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(50-64)% increased Physical Damage", statOrder = { 1237 }, level = 11, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(50-64)% increased Physical Damage" }, } },
- ["LocalIncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(65-84)% increased Physical Damage", statOrder = { 1237 }, level = 23, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-84)% increased Physical Damage" }, } },
- ["LocalIncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Vicious", "(85-109)% increased Physical Damage", statOrder = { 1237 }, level = 35, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(85-109)% increased Physical Damage" }, } },
- ["LocalIncreasedPhysicalDamagePercent5"] = { type = "Prefix", affix = "Bloodthirsty", "(110-134)% increased Physical Damage", statOrder = { 1237 }, level = 46, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(110-134)% increased Physical Damage" }, } },
- ["LocalIncreasedPhysicalDamagePercent6"] = { type = "Prefix", affix = "Cruel", "(135-154)% increased Physical Damage", statOrder = { 1237 }, level = 60, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(135-154)% increased Physical Damage" }, } },
- ["LocalIncreasedPhysicalDamagePercent7"] = { type = "Prefix", affix = "Tyrannical", "(155-169)% increased Physical Damage", statOrder = { 1237 }, level = 73, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(155-169)% increased Physical Damage" }, } },
- ["LocalIncreasedPhysicalDamagePercent8"] = { type = "Prefix", affix = "Merciless", "(170-179)% increased Physical Damage", statOrder = { 1237 }, level = 83, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(170-179)% increased Physical Damage" }, } },
- ["LocalIncreasedPhysicalDamageEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (9-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1237, 1940 }, level = 1, group = "LocalPhysicalDamagePercentAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, tradeHashes = { [1805374733] = { "(155-169)% increased Physical Damage" }, [3319896421] = { "Gain (9-10)% of Physical Damage as Extra Chaos Damage" }, } },
- ["IncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(8-12)% increased Global Physical Damage", statOrder = { 1236 }, level = 4, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(8-12)% increased Global Physical Damage" }, } },
- ["IncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(13-17)% increased Global Physical Damage", statOrder = { 1236 }, level = 15, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(13-17)% increased Global Physical Damage" }, } },
- ["IncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(18-22)% increased Global Physical Damage", statOrder = { 1236 }, level = 30, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(18-22)% increased Global Physical Damage" }, } },
- ["IncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Cruel", "(23-28)% increased Global Physical Damage", statOrder = { 1236 }, level = 60, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(23-28)% increased Global Physical Damage" }, } },
- ["IncreasedPhysicalDamagePercent5__"] = { type = "Prefix", affix = "Merciless", "(29-33)% increased Global Physical Damage", statOrder = { 1236 }, level = 81, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(29-33)% increased Global Physical Damage" }, } },
- ["LocalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds 1 to (2-3) Physical Damage", statOrder = { 1281 }, level = 2, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 1 to (2-3) Physical Damage" }, } },
- ["LocalAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (4-5) to (8-9) Physical Damage", statOrder = { 1281 }, level = 13, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (4-5) to (8-9) Physical Damage" }, } },
- ["LocalAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (6-9) to (13-15) Physical Damage", statOrder = { 1281 }, level = 21, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (6-9) to (13-15) Physical Damage" }, } },
- ["LocalAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (8-12) to (17-20) Physical Damage", statOrder = { 1281 }, level = 29, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (17-20) Physical Damage" }, } },
- ["LocalAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (11-14) to (21-25) Physical Damage", statOrder = { 1281 }, level = 36, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (11-14) to (21-25) Physical Damage" }, } },
- ["LocalAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (13-18) to (27-31) Physical Damage", statOrder = { 1281 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (13-18) to (27-31) Physical Damage" }, } },
- ["LocalAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (16-21) to (32-38) Physical Damage", statOrder = { 1281 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (16-21) to (32-38) Physical Damage" }, } },
- ["LocalAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (19-25) to (39-45) Physical Damage", statOrder = { 1281 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (19-25) to (39-45) Physical Damage" }, } },
- ["LocalAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (22-29) to (45-52) Physical Damage", statOrder = { 1281 }, level = 77, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (22-29) to (45-52) Physical Damage" }, } },
- ["LocalAddedPhysicalDamageEssenceNew7"] = { type = "Prefix", affix = "Essences", "Adds (20-26) to (40-47) Physical Damage", statOrder = { 1281 }, level = 82, group = "LocalPhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (20-26) to (40-47) Physical Damage" }, } },
- ["LocalAddedPhysicalDamageTwoHand1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to (4-5) Physical Damage", statOrder = { 1281 }, level = 2, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to (4-5) Physical Damage" }, } },
- ["LocalAddedPhysicalDamageTwoHand2"] = { type = "Prefix", affix = "Burnished", "Adds (6-8) to (12-15) Physical Damage", statOrder = { 1281 }, level = 13, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (6-8) to (12-15) Physical Damage" }, } },
- ["LocalAddedPhysicalDamageTwoHand3"] = { type = "Prefix", affix = "Polished", "Adds (10-13) to (21-25) Physical Damage", statOrder = { 1281 }, level = 21, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-13) to (21-25) Physical Damage" }, } },
- ["LocalAddedPhysicalDamageTwoHand4"] = { type = "Prefix", affix = "Honed", "Adds (13-17) to (28-32) Physical Damage", statOrder = { 1281 }, level = 29, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (13-17) to (28-32) Physical Damage" }, } },
- ["LocalAddedPhysicalDamageTwoHand5"] = { type = "Prefix", affix = "Gleaming", "Adds (16-22) to (35-40) Physical Damage", statOrder = { 1281 }, level = 36, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (16-22) to (35-40) Physical Damage" }, } },
- ["LocalAddedPhysicalDamageTwoHand6"] = { type = "Prefix", affix = "Annealed", "Adds (20-28) to (43-51) Physical Damage", statOrder = { 1281 }, level = 46, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (20-28) to (43-51) Physical Damage" }, } },
- ["LocalAddedPhysicalDamageTwoHand7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (25-33) to (52-61) Physical Damage", statOrder = { 1281 }, level = 54, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (25-33) to (52-61) Physical Damage" }, } },
- ["LocalAddedPhysicalDamageTwoHand8"] = { type = "Prefix", affix = "Tempered", "Adds (30-40) to (63-73) Physical Damage", statOrder = { 1281 }, level = 65, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (30-40) to (63-73) Physical Damage" }, } },
- ["LocalAddedPhysicalDamageTwoHand9"] = { type = "Prefix", affix = "Flaring", "Adds (34-47) to (72-84) Physical Damage", statOrder = { 1281 }, level = 77, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (34-47) to (72-84) Physical Damage" }, } },
- ["LocalAddedPhysicalDamageTwoHandEssenceNew7__"] = { type = "Prefix", affix = "Essences", "Adds (31-42) to (65-75) Physical Damage", statOrder = { 1281 }, level = 82, group = "LocalPhysicalDamageTwoHanded", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (31-42) to (65-75) Physical Damage" }, } },
- ["LocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(11-28)% increased Energy Shield", statOrder = { 1565 }, level = 3, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(11-28)% increased Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(27-42)% increased Energy Shield", statOrder = { 1565 }, level = 18, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(27-42)% increased Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(43-55)% increased Energy Shield", statOrder = { 1565 }, level = 30, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(43-55)% increased Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(56-67)% increased Energy Shield", statOrder = { 1565 }, level = 44, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(56-67)% increased Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(68-79)% increased Energy Shield", statOrder = { 1565 }, level = 60, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(68-79)% increased Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(80-91)% increased Energy Shield", statOrder = { 1565 }, level = 72, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-91)% increased Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldPercent7_"] = { type = "Prefix", affix = "Unassailable", "(92-100)% increased Energy Shield", statOrder = { 1565 }, level = 84, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(92-100)% increased Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldPercent8"] = { type = "Prefix", affix = "Unfaltering", "(101-110)% increased Energy Shield", statOrder = { 1565 }, level = 86, group = "LocalEnergyShieldPercent", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(101-110)% increased Energy Shield" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(15-26)% increased Armour", statOrder = { 1547 }, level = 3, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(15-26)% increased Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(27-42)% increased Armour", statOrder = { 1547 }, level = 17, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(27-42)% increased Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(43-55)% increased Armour", statOrder = { 1547 }, level = 29, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(43-55)% increased Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(56-67)% increased Armour", statOrder = { 1547 }, level = 42, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(56-67)% increased Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(68-79)% increased Armour", statOrder = { 1547 }, level = 60, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(68-79)% increased Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(80-91)% increased Armour", statOrder = { 1547 }, level = 72, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-91)% increased Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(92-100)% increased Armour", statOrder = { 1547 }, level = 84, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(92-100)% increased Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingPercent8_"] = { type = "Prefix", affix = "Impenetrable", "(101-110)% increased Armour", statOrder = { 1547 }, level = 86, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(101-110)% increased Armour" }, } },
- ["LocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(15-26)% increased Evasion Rating", statOrder = { 1555 }, level = 3, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(15-26)% increased Evasion Rating" }, } },
- ["LocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(27-42)% increased Evasion Rating", statOrder = { 1555 }, level = 19, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(27-42)% increased Evasion Rating" }, } },
- ["LocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(43-55)% increased Evasion Rating", statOrder = { 1555 }, level = 30, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(43-55)% increased Evasion Rating" }, } },
- ["LocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(56-67)% increased Evasion Rating", statOrder = { 1555 }, level = 44, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(56-67)% increased Evasion Rating" }, } },
- ["LocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(68-79)% increased Evasion Rating", statOrder = { 1555 }, level = 60, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(68-79)% increased Evasion Rating" }, } },
- ["LocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(80-91)% increased Evasion Rating", statOrder = { 1555 }, level = 72, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-91)% increased Evasion Rating" }, } },
- ["LocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(92-100)% increased Evasion Rating", statOrder = { 1555 }, level = 84, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(92-100)% increased Evasion Rating" }, } },
- ["LocalIncreasedEvasionRatingPercent8"] = { type = "Prefix", affix = "Illusion's", "(101-110)% increased Evasion Rating", statOrder = { 1555 }, level = 86, group = "LocalEvasionRatingIncreasePercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(101-110)% increased Evasion Rating" }, } },
- ["LocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(15-26)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 3, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(15-26)% increased Armour and Energy Shield" }, } },
- ["LocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(27-42)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 19, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(27-42)% increased Armour and Energy Shield" }, } },
- ["LocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(43-55)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 30, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(43-55)% increased Armour and Energy Shield" }, } },
- ["LocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(56-67)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 44, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(56-67)% increased Armour and Energy Shield" }, } },
- ["LocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(68-79)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 60, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(68-79)% increased Armour and Energy Shield" }, } },
- ["LocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(80-91)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 72, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-91)% increased Armour and Energy Shield" }, } },
- ["LocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(92-100)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 84, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(92-100)% increased Armour and Energy Shield" }, } },
- ["LocalIncreasedArmourAndEnergyShield8"] = { type = "Prefix", affix = "Interpermeated", "(101-110)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 86, group = "LocalArmourAndEnergyShield", weightKey = { "int_armour", "str_dex_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(101-110)% increased Armour and Energy Shield" }, } },
- ["LocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(15-26)% increased Armour and Evasion", statOrder = { 1558 }, level = 3, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(15-26)% increased Armour and Evasion" }, } },
- ["LocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(27-42)% increased Armour and Evasion", statOrder = { 1558 }, level = 19, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(27-42)% increased Armour and Evasion" }, } },
- ["LocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(43-55)% increased Armour and Evasion", statOrder = { 1558 }, level = 30, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(43-55)% increased Armour and Evasion" }, } },
- ["LocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(56-67)% increased Armour and Evasion", statOrder = { 1558 }, level = 44, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(56-67)% increased Armour and Evasion" }, } },
- ["LocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(68-79)% increased Armour and Evasion", statOrder = { 1558 }, level = 60, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(68-79)% increased Armour and Evasion" }, } },
- ["LocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(80-91)% increased Armour and Evasion", statOrder = { 1558 }, level = 72, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-91)% increased Armour and Evasion" }, } },
- ["LocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(92-100)% increased Armour and Evasion", statOrder = { 1558 }, level = 84, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(92-100)% increased Armour and Evasion" }, } },
- ["LocalIncreasedArmourAndEvasion8"] = { type = "Prefix", affix = "Victor's", "(101-110)% increased Armour and Evasion", statOrder = { 1558 }, level = 86, group = "LocalArmourAndEvasion", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(101-110)% increased Armour and Evasion" }, } },
- ["LocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 3, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(15-26)% increased Evasion and Energy Shield" }, } },
- ["LocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 19, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(27-42)% increased Evasion and Energy Shield" }, } },
- ["LocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 30, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(43-55)% increased Evasion and Energy Shield" }, } },
- ["LocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 44, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(56-67)% increased Evasion and Energy Shield" }, } },
- ["LocalIncreasedEvasionAndEnergyShield5_"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 60, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(68-79)% increased Evasion and Energy Shield" }, } },
- ["LocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 72, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(80-91)% increased Evasion and Energy Shield" }, } },
- ["LocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(92-100)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 84, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(92-100)% increased Evasion and Energy Shield" }, } },
- ["LocalIncreasedEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 86, group = "LocalEvasionAndEnergyShield", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(101-110)% increased Evasion and Energy Shield" }, } },
- ["LocalIncreasedArmourEvasionEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(27-42)% increased Armour, Evasion and Energy Shield", statOrder = { 1560 }, level = 3, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(27-42)% increased Armour, Evasion and Energy Shield" }, } },
- ["LocalIncreasedArmourEvasionEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(43-55)% increased Armour, Evasion and Energy Shield", statOrder = { 1560 }, level = 19, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(43-55)% increased Armour, Evasion and Energy Shield" }, } },
- ["LocalIncreasedArmourEvasionEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(56-67)% increased Armour, Evasion and Energy Shield", statOrder = { 1560 }, level = 30, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(56-67)% increased Armour, Evasion and Energy Shield" }, } },
- ["LocalIncreasedArmourEvasionEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(68-79)% increased Armour, Evasion and Energy Shield", statOrder = { 1560 }, level = 44, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(68-79)% increased Armour, Evasion and Energy Shield" }, } },
- ["LocalIncreasedArmourEvasionEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(80-91)% increased Armour, Evasion and Energy Shield", statOrder = { 1560 }, level = 60, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(80-91)% increased Armour, Evasion and Energy Shield" }, } },
- ["LocalIncreasedArmourEvasionEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(92-100)% increased Armour, Evasion and Energy Shield", statOrder = { 1560 }, level = 72, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(92-100)% increased Armour, Evasion and Energy Shield" }, } },
- ["LocalIncreasedArmourEvasionEnergyShield7__"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Armour, Evasion and Energy Shield", statOrder = { 1560 }, level = 85, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "dex_int_armour", "body_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(101-110)% increased Armour, Evasion and Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldPercentAndStunRecovery1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1565, 1907 }, level = 3, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, } },
- ["LocalIncreasedEnergyShieldPercentAndStunRecovery2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1565, 1907 }, level = 18, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, } },
- ["LocalIncreasedEnergyShieldPercentAndStunRecovery3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1565, 1907 }, level = 30, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, } },
- ["LocalIncreasedEnergyShieldPercentAndStunRecovery4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1565, 1907 }, level = 44, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, } },
- ["LocalIncreasedEnergyShieldPercentAndStunRecovery5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1565, 1907 }, level = 60, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, } },
- ["LocalIncreasedEnergyShieldPercentAndStunRecovery6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1565, 1907 }, level = 78, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour", "(6-7)% increased Stun and Block Recovery", statOrder = { 1547, 1907 }, level = 1, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour", "(8-9)% increased Stun and Block Recovery", statOrder = { 1547, 1907 }, level = 17, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour", "(10-11)% increased Stun and Block Recovery", statOrder = { 1547, 1907 }, level = 29, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour", "(12-13)% increased Stun and Block Recovery", statOrder = { 1547, 1907 }, level = 42, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour", "(14-15)% increased Stun and Block Recovery", statOrder = { 1547, 1907 }, level = 60, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour", "(16-17)% increased Stun and Block Recovery", statOrder = { 1547, 1907 }, level = 78, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingPercentAndAdditionalBlockChance1"] = { type = "Prefix", affix = "Reliable", "(25-30)% increased Armour", "+2% Chance to Block", statOrder = { 1547, 2254 }, level = 45, group = "LocalPhysicalDamageReductionRatingPercentAndBlockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "defences", "armour" }, tradeHashes = { [1062208444] = { "(25-30)% increased Armour" }, [4253454700] = { "+2% Chance to Block" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingPercentAndAdditionalBlockChance2"] = { type = "Prefix", affix = "Unfailing", "(31-36)% increased Armour", "+3% Chance to Block", statOrder = { 1547, 2254 }, level = 78, group = "LocalPhysicalDamageReductionRatingPercentAndBlockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "defences", "armour" }, tradeHashes = { [1062208444] = { "(31-36)% increased Armour" }, [4253454700] = { "+3% Chance to Block" }, } },
- ["LocalIncreasedEvasionRatingPercentAndStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion Rating", "(6-7)% increased Stun and Block Recovery", statOrder = { 1555, 1907 }, level = 2, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, } },
- ["LocalIncreasedEvasionRatingPercentAndStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion Rating", "(8-9)% increased Stun and Block Recovery", statOrder = { 1555, 1907 }, level = 19, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, } },
- ["LocalIncreasedEvasionRatingPercentAndStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion Rating", "(10-11)% increased Stun and Block Recovery", statOrder = { 1555, 1907 }, level = 30, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, } },
- ["LocalIncreasedEvasionRatingPercentAndStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion Rating", "(12-13)% increased Stun and Block Recovery", statOrder = { 1555, 1907 }, level = 44, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, } },
- ["LocalIncreasedEvasionRatingPercentAndStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion Rating", "(14-15)% increased Stun and Block Recovery", statOrder = { 1555, 1907 }, level = 60, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, } },
- ["LocalIncreasedEvasionRatingPercentAndStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion Rating", "(16-17)% increased Stun and Block Recovery", statOrder = { 1555, 1907 }, level = 78, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, } },
- ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Armour and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1557, 1907 }, level = 2, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } },
- ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Armour and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1557, 1907 }, level = 19, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } },
- ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Armour and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1557, 1907 }, level = 30, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } },
- ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Armour and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1557, 1907 }, level = 44, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } },
- ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Armour and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1557, 1907 }, level = 60, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } },
- ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Armour and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1557, 1907 }, level = 78, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } },
- ["LocalIncreasedArmourAndEvasionAndStunRecovery1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour and Evasion", "(6-7)% increased Stun and Block Recovery", statOrder = { 1558, 1907 }, level = 2, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, } },
- ["LocalIncreasedArmourAndEvasionAndStunRecovery2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour and Evasion", "(8-9)% increased Stun and Block Recovery", statOrder = { 1558, 1907 }, level = 19, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, } },
- ["LocalIncreasedArmourAndEvasionAndStunRecovery3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour and Evasion", "(10-11)% increased Stun and Block Recovery", statOrder = { 1558, 1907 }, level = 30, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, } },
- ["LocalIncreasedArmourAndEvasionAndStunRecovery4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour and Evasion", "(12-13)% increased Stun and Block Recovery", statOrder = { 1558, 1907 }, level = 44, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, } },
- ["LocalIncreasedArmourAndEvasionAndStunRecovery5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour and Evasion", "(14-15)% increased Stun and Block Recovery", statOrder = { 1558, 1907 }, level = 60, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, } },
- ["LocalIncreasedArmourAndEvasionAndStunRecovery6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour and Evasion", "(16-17)% increased Stun and Block Recovery", statOrder = { 1558, 1907 }, level = 78, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, } },
- ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1559, 1907 }, level = 2, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, } },
- ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1559, 1907 }, level = 19, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, } },
- ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1559, 1907 }, level = 30, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, } },
- ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1559, 1907 }, level = 44, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, } },
- ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1559, 1907 }, level = 60, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, } },
- ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1559, 1907 }, level = 78, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, } },
- ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Armour, Evasion and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1560, 1907 }, level = 2, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, [3523867985] = { "(6-13)% increased Armour, Evasion and Energy Shield" }, } },
- ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Armour, Evasion and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1560, 1907 }, level = 19, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, [3523867985] = { "(14-20)% increased Armour, Evasion and Energy Shield" }, } },
- ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Armour, Evasion and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1560, 1907 }, level = 30, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, [3523867985] = { "(21-26)% increased Armour, Evasion and Energy Shield" }, } },
- ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Armour, Evasion and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1560, 1907 }, level = 44, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, [3523867985] = { "(27-32)% increased Armour, Evasion and Energy Shield" }, } },
- ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Armour, Evasion and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1560, 1907 }, level = 60, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, [3523867985] = { "(33-38)% increased Armour, Evasion and Energy Shield" }, } },
- ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Armour, Evasion and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1560, 1907 }, level = 78, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, [3523867985] = { "(39-42)% increased Armour, Evasion and Energy Shield" }, } },
- ["LocalAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (1-2) to (3-4) Fire Damage" }, } },
- ["LocalAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-10) to (15-18) Fire Damage", statOrder = { 1367 }, level = 11, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (8-10) to (15-18) Fire Damage" }, } },
- ["LocalAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (12-17) to (25-29) Fire Damage", statOrder = { 1367 }, level = 18, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (12-17) to (25-29) Fire Damage" }, } },
- ["LocalAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (17-24) to (35-41) Fire Damage", statOrder = { 1367 }, level = 26, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (17-24) to (35-41) Fire Damage" }, } },
- ["LocalAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (24-33) to (49-57) Fire Damage", statOrder = { 1367 }, level = 33, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (24-33) to (49-57) Fire Damage" }, } },
- ["LocalAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (34-46) to (68-80) Fire Damage", statOrder = { 1367 }, level = 42, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (34-46) to (68-80) Fire Damage" }, } },
- ["LocalAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (46-62) to (93-107) Fire Damage", statOrder = { 1367 }, level = 51, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (46-62) to (93-107) Fire Damage" }, } },
- ["LocalAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (59-81) to (120-140) Fire Damage", statOrder = { 1367 }, level = 62, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (59-81) to (120-140) Fire Damage" }, } },
- ["LocalAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (74-101) to (150-175) Fire Damage", statOrder = { 1367 }, level = 74, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (74-101) to (150-175) Fire Damage" }, } },
- ["LocalAddedFireDamage10_"] = { type = "Prefix", affix = "Carbonising", "Adds (89-121) to (180-210) Fire Damage", statOrder = { 1367 }, level = 82, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 180, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (89-121) to (180-210) Fire Damage" }, } },
- ["LocalAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (80-109) to (162-189) Fire Damage", statOrder = { 1367 }, level = 82, group = "LocalFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (80-109) to (162-189) Fire Damage" }, } },
- ["LocalAddedFireDamageEnhancedMod_"] = { type = "Prefix", affix = "Topotante's", "Adds (59-79) to (118-138) Fire Damage", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrder = { 1367, 3767 }, level = 1, group = "LocalFireDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (13-15)% Fire Resistance" }, [709508406] = { "Adds (59-79) to (118-138) Fire Damage" }, } },
- ["LocalAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (3-5) to (6-7) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (3-5) to (6-7) Fire Damage" }, } },
- ["LocalAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (14-20) to (29-33) Fire Damage", statOrder = { 1367 }, level = 11, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (14-20) to (29-33) Fire Damage" }, } },
- ["LocalAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (23-31) to (47-54) Fire Damage", statOrder = { 1367 }, level = 18, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (23-31) to (47-54) Fire Damage" }, } },
- ["LocalAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (32-44) to (65-76) Fire Damage", statOrder = { 1367 }, level = 26, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (32-44) to (65-76) Fire Damage" }, } },
- ["LocalAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (45-61) to (91-106) Fire Damage", statOrder = { 1367 }, level = 33, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (45-61) to (91-106) Fire Damage" }, } },
- ["LocalAddedFireDamageTwoHand6"] = { type = "Prefix", affix = "Scorching", "Adds (63-85) to (128-148) Fire Damage", statOrder = { 1367 }, level = 42, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (63-85) to (128-148) Fire Damage" }, } },
- ["LocalAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (85-115) to (172-200) Fire Damage", statOrder = { 1367 }, level = 51, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (85-115) to (172-200) Fire Damage" }, } },
- ["LocalAddedFireDamageTwoHand8_"] = { type = "Prefix", affix = "Blasting", "Adds (110-150) to (223-260) Fire Damage", statOrder = { 1367 }, level = 62, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1120, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (110-150) to (223-260) Fire Damage" }, } },
- ["LocalAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (137-188) to (279-325) Fire Damage", statOrder = { 1367 }, level = 74, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 490, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (137-188) to (279-325) Fire Damage" }, } },
- ["LocalAddedFireDamageTwoHand10"] = { type = "Prefix", affix = "Carbonising", "Adds (165-225) to (335-390) Fire Damage", statOrder = { 1367 }, level = 82, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 126, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (165-225) to (335-390) Fire Damage" }, } },
- ["LocalAddedFireDamageRanged1"] = { type = "Prefix", affix = "Heated", "Adds (3-5) to (6-7) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (3-5) to (6-7) Fire Damage" }, } },
- ["LocalAddedFireDamageRanged2"] = { type = "Prefix", affix = "Smouldering", "Adds (14-20) to (29-33) Fire Damage", statOrder = { 1367 }, level = 11, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (14-20) to (29-33) Fire Damage" }, } },
- ["LocalAddedFireDamageRanged3"] = { type = "Prefix", affix = "Smoking", "Adds (23-31) to (47-54) Fire Damage", statOrder = { 1367 }, level = 18, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (23-31) to (47-54) Fire Damage" }, } },
- ["LocalAddedFireDamageRanged4"] = { type = "Prefix", affix = "Burning", "Adds (32-44) to (65-76) Fire Damage", statOrder = { 1367 }, level = 26, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (32-44) to (65-76) Fire Damage" }, } },
- ["LocalAddedFireDamageRanged5"] = { type = "Prefix", affix = "Flaming", "Adds (45-61) to (91-106) Fire Damage", statOrder = { 1367 }, level = 33, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (45-61) to (91-106) Fire Damage" }, } },
- ["LocalAddedFireDamageRanged6"] = { type = "Prefix", affix = "Scorching", "Adds (63-85) to (128-148) Fire Damage", statOrder = { 1367 }, level = 42, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (63-85) to (128-148) Fire Damage" }, } },
- ["LocalAddedFireDamageRanged7"] = { type = "Prefix", affix = "Incinerating", "Adds (85-115) to (172-200) Fire Damage", statOrder = { 1367 }, level = 51, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (85-115) to (172-200) Fire Damage" }, } },
- ["LocalAddedFireDamageRanged8"] = { type = "Prefix", affix = "Blasting", "Adds (110-150) to (223-260) Fire Damage", statOrder = { 1367 }, level = 62, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (110-150) to (223-260) Fire Damage" }, } },
- ["LocalAddedFireDamageRanged9_"] = { type = "Prefix", affix = "Cremating", "Adds (137-188) to (279-325) Fire Damage", statOrder = { 1367 }, level = 74, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (137-188) to (279-325) Fire Damage" }, } },
- ["LocalAddedFireDamageRanged10"] = { type = "Prefix", affix = "Carbonising", "Adds (165-225) to (335-390) Fire Damage", statOrder = { 1367 }, level = 82, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (165-225) to (335-390) Fire Damage" }, } },
- ["LocalAddedFireDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (149-203) to (302-351) Fire Damage", statOrder = { 1367 }, level = 82, group = "LocalFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (149-203) to (302-351) Fire Damage" }, } },
- ["LocalAddedFireDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (109-147) to (220-256) Fire Damage", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrder = { 1367, 3767 }, level = 1, group = "LocalFireDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (13-15)% Fire Resistance" }, [709508406] = { "Adds (109-147) to (220-256) Fire Damage" }, } },
- ["LocalAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage", statOrder = { 1376 }, level = 2, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (1-2) to (3-4) Cold Damage" }, } },
- ["LocalAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (7-9) to (14-16) Cold Damage", statOrder = { 1376 }, level = 12, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (7-9) to (14-16) Cold Damage" }, } },
- ["LocalAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (11-15) to (23-26) Cold Damage", statOrder = { 1376 }, level = 19, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-15) to (23-26) Cold Damage" }, } },
- ["LocalAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (16-21) to (31-37) Cold Damage", statOrder = { 1376 }, level = 27, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (16-21) to (31-37) Cold Damage" }, } },
- ["LocalAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (22-30) to (44-51) Cold Damage", statOrder = { 1376 }, level = 34, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (22-30) to (44-51) Cold Damage" }, } },
- ["LocalAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (31-42) to (62-71) Cold Damage", statOrder = { 1376 }, level = 43, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (31-42) to (62-71) Cold Damage" }, } },
- ["LocalAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (41-57) to (83-97) Cold Damage", statOrder = { 1376 }, level = 52, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (41-57) to (83-97) Cold Damage" }, } },
- ["LocalAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (54-74) to (108-126) Cold Damage", statOrder = { 1376 }, level = 63, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (54-74) to (108-126) Cold Damage" }, } },
- ["LocalAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (68-92) to (136-157) Cold Damage", statOrder = { 1376 }, level = 75, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (68-92) to (136-157) Cold Damage" }, } },
- ["LocalAddedColdDamage10__"] = { type = "Prefix", affix = "Crystalising", "Adds (81-111) to (163-189) Cold Damage", statOrder = { 1376 }, level = 82, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 180, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (81-111) to (163-189) Cold Damage" }, } },
- ["LocalAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (73-100) to (147-170) Cold Damage", statOrder = { 1376 }, level = 82, group = "LocalColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (73-100) to (147-170) Cold Damage" }, } },
- ["LocalAddedColdDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (53-72) to (107-124) Cold Damage", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrder = { 1376, 3768 }, level = 1, group = "LocalColdDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (53-72) to (107-124) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (13-15)% Cold Resistance" }, } },
- ["LocalAddedColdDamageTwoHand1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (6-7) Cold Damage", statOrder = { 1376 }, level = 2, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (2-3) to (6-7) Cold Damage" }, } },
- ["LocalAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (12-17) to (26-30) Cold Damage", statOrder = { 1376 }, level = 12, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (12-17) to (26-30) Cold Damage" }, } },
- ["LocalAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (21-28) to (42-48) Cold Damage", statOrder = { 1376 }, level = 19, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (21-28) to (42-48) Cold Damage" }, } },
- ["LocalAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (29-40) to (58-68) Cold Damage", statOrder = { 1376 }, level = 27, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (29-40) to (58-68) Cold Damage" }, } },
- ["LocalAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (41-55) to (81-95) Cold Damage", statOrder = { 1376 }, level = 34, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (41-55) to (81-95) Cold Damage" }, } },
- ["LocalAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (57-77) to (114-132) Cold Damage", statOrder = { 1376 }, level = 43, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (57-77) to (114-132) Cold Damage" }, } },
- ["LocalAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (77-104) to (154-178) Cold Damage", statOrder = { 1376 }, level = 52, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (77-104) to (154-178) Cold Damage" }, } },
- ["LocalAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (99-136) to (200-232) Cold Damage", statOrder = { 1376 }, level = 63, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1120, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (99-136) to (200-232) Cold Damage" }, } },
- ["LocalAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (124-170) to (250-290) Cold Damage", statOrder = { 1376 }, level = 75, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 490, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (124-170) to (250-290) Cold Damage" }, } },
- ["LocalAddedColdDamageTwoHand10"] = { type = "Prefix", affix = "Crystalising", "Adds (149-204) to (300-348) Cold Damage", statOrder = { 1376 }, level = 82, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 126, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (149-204) to (300-348) Cold Damage" }, } },
- ["LocalAddedColdDamageRanged1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (6-7) Cold Damage", statOrder = { 1376 }, level = 2, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (2-3) to (6-7) Cold Damage" }, } },
- ["LocalAddedColdDamageRanged2"] = { type = "Prefix", affix = "Chilled", "Adds (12-17) to (26-30) Cold Damage", statOrder = { 1376 }, level = 12, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (12-17) to (26-30) Cold Damage" }, } },
- ["LocalAddedColdDamageRanged3"] = { type = "Prefix", affix = "Icy", "Adds (21-28) to (42-48) Cold Damage", statOrder = { 1376 }, level = 19, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (21-28) to (42-48) Cold Damage" }, } },
- ["LocalAddedColdDamageRanged4"] = { type = "Prefix", affix = "Frigid", "Adds (29-40) to (58-68) Cold Damage", statOrder = { 1376 }, level = 27, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (29-40) to (58-68) Cold Damage" }, } },
- ["LocalAddedColdDamageRanged5"] = { type = "Prefix", affix = "Freezing", "Adds (41-55) to (81-95) Cold Damage", statOrder = { 1376 }, level = 34, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (41-55) to (81-95) Cold Damage" }, } },
- ["LocalAddedColdDamageRanged6"] = { type = "Prefix", affix = "Frozen", "Adds (57-77) to (114-132) Cold Damage", statOrder = { 1376 }, level = 43, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (57-77) to (114-132) Cold Damage" }, } },
- ["LocalAddedColdDamageRanged7"] = { type = "Prefix", affix = "Glaciated", "Adds (77-104) to (154-178) Cold Damage", statOrder = { 1376 }, level = 52, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (77-104) to (154-178) Cold Damage" }, } },
- ["LocalAddedColdDamageRanged8"] = { type = "Prefix", affix = "Polar", "Adds (99-136) to (200-232) Cold Damage", statOrder = { 1376 }, level = 63, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (99-136) to (200-232) Cold Damage" }, } },
- ["LocalAddedColdDamageRanged9"] = { type = "Prefix", affix = "Entombing", "Adds (124-170) to (250-290) Cold Damage", statOrder = { 1376 }, level = 75, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (124-170) to (250-290) Cold Damage" }, } },
- ["LocalAddedColdDamageRanged10"] = { type = "Prefix", affix = "Crystalising", "Adds (149-204) to (300-348) Cold Damage", statOrder = { 1376 }, level = 82, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (149-204) to (300-348) Cold Damage" }, } },
- ["LocalAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (134-184) to (270-313) Cold Damage", statOrder = { 1376 }, level = 82, group = "LocalColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (134-184) to (270-313) Cold Damage" }, } },
- ["LocalAddedColdDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (100-132) to (197-230) Cold Damage", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrder = { 1376, 3768 }, level = 1, group = "LocalColdDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (100-132) to (197-230) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (13-15)% Cold Resistance" }, } },
- ["LocalAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (5-6) Lightning Damage", statOrder = { 1387 }, level = 3, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (5-6) Lightning Damage" }, } },
- ["LocalAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 2 to (25-29) Lightning Damage", statOrder = { 1387 }, level = 13, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 2 to (25-29) Lightning Damage" }, } },
- ["LocalAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds 2 to (41-48) Lightning Damage", statOrder = { 1387 }, level = 19, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 2 to (41-48) Lightning Damage" }, } },
- ["LocalAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds 3 to (57-67) Lightning Damage", statOrder = { 1387 }, level = 31, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 3 to (57-67) Lightning Damage" }, } },
- ["LocalAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (4-5) to (80-94) Lightning Damage", statOrder = { 1387 }, level = 34, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (4-5) to (80-94) Lightning Damage" }, } },
- ["LocalAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (5-8) to (112-131) Lightning Damage", statOrder = { 1387 }, level = 42, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (5-8) to (112-131) Lightning Damage" }, } },
- ["LocalAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (8-10) to (152-176) Lightning Damage", statOrder = { 1387 }, level = 51, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (8-10) to (152-176) Lightning Damage" }, } },
- ["LocalAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (10-14) to (197-229) Lightning Damage", statOrder = { 1387 }, level = 63, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (10-14) to (197-229) Lightning Damage" }, } },
- ["LocalAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (13-17) to (247-286) Lightning Damage", statOrder = { 1387 }, level = 74, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (13-17) to (247-286) Lightning Damage" }, } },
- ["LocalAddedLightningDamage10"] = { type = "Prefix", affix = "Vapourising", "Adds (15-21) to (296-344) Lightning Damage", statOrder = { 1387 }, level = 82, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 180, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (15-21) to (296-344) Lightning Damage" }, } },
- ["LocalAddedLightningDamageEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (13-19) to (266-310) Lightning Damage", statOrder = { 1387 }, level = 82, group = "LocalLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (13-19) to (266-310) Lightning Damage" }, } },
- ["LocalAddedLightningDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (7-17) to (198-224) Lightning Damage", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 1, group = "LocalLightningDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance" }, [3336890334] = { "Adds (7-17) to (198-224) Lightning Damage" }, } },
- ["LocalAddedLightningDamageTwoHand1_"] = { type = "Prefix", affix = "Humming", "Adds 2 to (10-11) Lightning Damage", statOrder = { 1387 }, level = 3, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 2 to (10-11) Lightning Damage" }, } },
- ["LocalAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds 3 to (46-53) Lightning Damage", statOrder = { 1387 }, level = 13, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 3 to (46-53) Lightning Damage" }, } },
- ["LocalAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (4-5) to (76-88) Lightning Damage", statOrder = { 1387 }, level = 19, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (4-5) to (76-88) Lightning Damage" }, } },
- ["LocalAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (5-8) to (106-123) Lightning Damage", statOrder = { 1387 }, level = 31, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (5-8) to (106-123) Lightning Damage" }, } },
- ["LocalAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (8-10) to (148-173) Lightning Damage", statOrder = { 1387 }, level = 34, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (8-10) to (148-173) Lightning Damage" }, } },
- ["LocalAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (11-14) to (208-242) Lightning Damage", statOrder = { 1387 }, level = 42, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (11-14) to (208-242) Lightning Damage" }, } },
- ["LocalAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (14-20) to (281-327) Lightning Damage", statOrder = { 1387 }, level = 51, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (14-20) to (281-327) Lightning Damage" }, } },
- ["LocalAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (19-25) to (366-425) Lightning Damage", statOrder = { 1387 }, level = 63, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1120, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (19-25) to (366-425) Lightning Damage" }, } },
- ["LocalAddedLightningDamageTwoHand9"] = { type = "Prefix", affix = "Electrocuting", "Adds (23-32) to (458-531) Lightning Damage", statOrder = { 1387 }, level = 74, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 490, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (23-32) to (458-531) Lightning Damage" }, } },
- ["LocalAddedLightningDamageTwoHand10"] = { type = "Prefix", affix = "Vapourising", "Adds (28-38) to (549-638) Lightning Damage", statOrder = { 1387 }, level = 82, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 126, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (28-38) to (549-638) Lightning Damage" }, } },
- ["LocalAddedLightningDamageRanged1"] = { type = "Prefix", affix = "Humming", "Adds 2 to (10-11) Lightning Damage", statOrder = { 1387 }, level = 3, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 2 to (10-11) Lightning Damage" }, } },
- ["LocalAddedLightningDamageRanged2"] = { type = "Prefix", affix = "Buzzing", "Adds 3 to (46-53) Lightning Damage", statOrder = { 1387 }, level = 13, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 3 to (46-53) Lightning Damage" }, } },
- ["LocalAddedLightningDamageRanged3___"] = { type = "Prefix", affix = "Snapping", "Adds (4-5) to (76-88) Lightning Damage", statOrder = { 1387 }, level = 19, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (4-5) to (76-88) Lightning Damage" }, } },
- ["LocalAddedLightningDamageRanged4"] = { type = "Prefix", affix = "Crackling", "Adds (5-8) to (106-123) Lightning Damage", statOrder = { 1387 }, level = 31, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (5-8) to (106-123) Lightning Damage" }, } },
- ["LocalAddedLightningDamageRanged5"] = { type = "Prefix", affix = "Sparking", "Adds (8-10) to (148-173) Lightning Damage", statOrder = { 1387 }, level = 34, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (8-10) to (148-173) Lightning Damage" }, } },
- ["LocalAddedLightningDamageRanged6_"] = { type = "Prefix", affix = "Arcing", "Adds (11-14) to (208-242) Lightning Damage", statOrder = { 1387 }, level = 42, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (11-14) to (208-242) Lightning Damage" }, } },
- ["LocalAddedLightningDamageRanged7"] = { type = "Prefix", affix = "Shocking", "Adds (14-20) to (281-327) Lightning Damage", statOrder = { 1387 }, level = 51, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (14-20) to (281-327) Lightning Damage" }, } },
- ["LocalAddedLightningDamageRanged8"] = { type = "Prefix", affix = "Discharging", "Adds (19-25) to (366-425) Lightning Damage", statOrder = { 1387 }, level = 63, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (19-25) to (366-425) Lightning Damage" }, } },
- ["LocalAddedLightningDamageRanged9"] = { type = "Prefix", affix = "Electrocuting", "Adds (23-32) to (458-531) Lightning Damage", statOrder = { 1387 }, level = 74, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (23-32) to (458-531) Lightning Damage" }, } },
- ["LocalAddedLightningDamageRanged10_"] = { type = "Prefix", affix = "Vapourising", "Adds (28-38) to (549-638) Lightning Damage", statOrder = { 1387 }, level = 82, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (28-38) to (549-638) Lightning Damage" }, } },
- ["LocalAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (25-34) to (494-575) Lightning Damage", statOrder = { 1387 }, level = 82, group = "LocalLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (25-34) to (494-575) Lightning Damage" }, } },
- ["LocalAddedLightningDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (12-31) to (367-415) Lightning Damage", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 1, group = "LocalLightningDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance" }, [3336890334] = { "Adds (12-31) to (367-415) Lightning Damage" }, } },
- ["IncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(4-8)% increased Armour", statOrder = { 1546 }, level = 2, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(4-8)% increased Armour" }, } },
- ["IncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(9-13)% increased Armour", statOrder = { 1546 }, level = 18, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(9-13)% increased Armour" }, } },
- ["IncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(14-18)% increased Armour", statOrder = { 1546 }, level = 30, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(14-18)% increased Armour" }, } },
- ["IncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(19-23)% increased Armour", statOrder = { 1546 }, level = 42, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(19-23)% increased Armour" }, } },
- ["IncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(24-28)% increased Armour", statOrder = { 1546 }, level = 56, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(24-28)% increased Armour" }, } },
- ["IncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(29-32)% increased Armour", statOrder = { 1546 }, level = 70, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(29-32)% increased Armour" }, } },
- ["IncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(33-36)% increased Armour", statOrder = { 1546 }, level = 77, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(33-36)% increased Armour" }, } },
- ["IncreasedPhysicalDamageReductionRatingPercentEssence6"] = { type = "Prefix", affix = "Essences", "(29-31)% increased Armour", statOrder = { 1546 }, level = 77, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(29-31)% increased Armour" }, } },
- ["IncreasedPhysicalDamageReductionRatingPercentEssence7"] = { type = "Prefix", affix = "Essences", "(32-33)% increased Armour", statOrder = { 1546 }, level = 82, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(32-33)% increased Armour" }, } },
- ["IncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Agile", "(4-8)% increased Evasion Rating", statOrder = { 1554 }, level = 2, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(4-8)% increased Evasion Rating" }, } },
- ["IncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Dancer's", "(9-13)% increased Evasion Rating", statOrder = { 1554 }, level = 19, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(9-13)% increased Evasion Rating" }, } },
- ["IncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Acrobat's", "(14-18)% increased Evasion Rating", statOrder = { 1554 }, level = 30, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(14-18)% increased Evasion Rating" }, } },
- ["IncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Fleet", "(19-23)% increased Evasion Rating", statOrder = { 1554 }, level = 42, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(19-23)% increased Evasion Rating" }, } },
- ["IncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Blurred", "(24-28)% increased Evasion Rating", statOrder = { 1554 }, level = 56, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(24-28)% increased Evasion Rating" }, } },
- ["IncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Phased", "(29-32)% increased Evasion Rating", statOrder = { 1554 }, level = 70, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(29-32)% increased Evasion Rating" }, } },
- ["IncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Vaporous", "(33-36)% increased Evasion Rating", statOrder = { 1554 }, level = 77, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(33-36)% increased Evasion Rating" }, } },
- ["IncreasedEvasionRatingPercentEssence6"] = { type = "Prefix", affix = "Essences", "(29-31)% increased Evasion Rating", statOrder = { 1554 }, level = 77, group = "GlobalEvasionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(29-31)% increased Evasion Rating" }, } },
- ["IncreasedEvasionRatingPercentEssence7"] = { type = "Prefix", affix = "Essences", "(32-33)% increased Evasion Rating", statOrder = { 1554 }, level = 82, group = "GlobalEvasionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(32-33)% increased Evasion Rating" }, } },
- ["IncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(2-4)% increased maximum Energy Shield", statOrder = { 1566 }, level = 3, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(2-4)% increased maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(5-7)% increased maximum Energy Shield", statOrder = { 1566 }, level = 18, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(5-7)% increased maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(8-10)% increased maximum Energy Shield", statOrder = { 1566 }, level = 30, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(8-10)% increased maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(11-13)% increased maximum Energy Shield", statOrder = { 1566 }, level = 42, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(11-13)% increased maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(14-16)% increased maximum Energy Shield", statOrder = { 1566 }, level = 56, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(14-16)% increased maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(17-19)% increased maximum Energy Shield", statOrder = { 1566 }, level = 70, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(17-19)% increased maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(20-22)% increased maximum Energy Shield", statOrder = { 1566 }, level = 77, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(20-22)% increased maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldPercentEssence1"] = { type = "Prefix", affix = "Essences", "(4-6)% increased maximum Energy Shield", statOrder = { 1566 }, level = 10, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(4-6)% increased maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldPercentEssence4"] = { type = "Prefix", affix = "Essences", "(11-13)% increased maximum Energy Shield", statOrder = { 1566 }, level = 10, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(11-13)% increased maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldPercentEssence5"] = { type = "Prefix", affix = "Essences", "(14-16)% increased maximum Energy Shield", statOrder = { 1566 }, level = 10, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(14-16)% increased maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldPercentEssence6"] = { type = "Prefix", affix = "Essences", "(17-18)% increased maximum Energy Shield", statOrder = { 1566 }, level = 77, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(17-18)% increased maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldPercentEssence7_"] = { type = "Prefix", affix = "Essences", "(18-19)% increased maximum Energy Shield", statOrder = { 1566 }, level = 82, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(18-19)% increased maximum Energy Shield" }, } },
- ["IncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(3-10) to Evasion Rating", statOrder = { 1549 }, level = 1, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(3-10) to Evasion Rating" }, } },
- ["IncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(11-35) to Evasion Rating", statOrder = { 1549 }, level = 18, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(11-35) to Evasion Rating" }, } },
- ["IncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(36-60) to Evasion Rating", statOrder = { 1549 }, level = 29, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(36-60) to Evasion Rating" }, } },
- ["IncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(61-80) to Evasion Rating", statOrder = { 1549 }, level = 42, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(61-80) to Evasion Rating" }, } },
- ["IncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(81-120) to Evasion Rating", statOrder = { 1549 }, level = 58, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(81-120) to Evasion Rating" }, } },
- ["IncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(121-150) to Evasion Rating", statOrder = { 1549 }, level = 72, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(121-150) to Evasion Rating" }, } },
- ["IncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "+(151-170) to Evasion Rating", statOrder = { 1549 }, level = 84, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(151-170) to Evasion Rating" }, } },
- ["IncreasedEvasionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(151-180) to Evasion Rating", statOrder = { 1549 }, level = 82, group = "EvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(151-180) to Evasion Rating" }, } },
- ["LocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(6-12) to Evasion Rating", statOrder = { 1553 }, level = 1, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(6-12) to Evasion Rating" }, } },
- ["LocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(13-35) to Evasion Rating", statOrder = { 1553 }, level = 11, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(13-35) to Evasion Rating" }, } },
- ["LocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(36-63) to Evasion Rating", statOrder = { 1553 }, level = 17, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(36-63) to Evasion Rating" }, } },
- ["LocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(64-82) to Evasion Rating", statOrder = { 1553 }, level = 23, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(64-82) to Evasion Rating" }, } },
- ["LocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(83-101) to Evasion Rating", statOrder = { 1553 }, level = 29, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(83-101) to Evasion Rating" }, } },
- ["LocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(102-120) to Evasion Rating", statOrder = { 1553 }, level = 35, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(102-120) to Evasion Rating" }, } },
- ["LocalIncreasedEvasionRating7_"] = { type = "Prefix", affix = "Vaporous", "+(121-150) to Evasion Rating", statOrder = { 1553 }, level = 43, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(121-150) to Evasion Rating" }, } },
- ["LocalIncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(151-200) to Evasion Rating", statOrder = { 1553 }, level = 51, group = "LocalEvasionRating", weightKey = { "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(151-200) to Evasion Rating" }, } },
- ["LocalIncreasedEvasionRating9___"] = { type = "Prefix", affix = "Adroit", "+(201-300) to Evasion Rating", statOrder = { 1553 }, level = 60, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(201-300) to Evasion Rating" }, } },
- ["LocalIncreasedEvasionRating10"] = { type = "Prefix", affix = "Lissome", "+(301-400) to Evasion Rating", statOrder = { 1553 }, level = 69, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(301-400) to Evasion Rating" }, } },
- ["LocalIncreasedEvasionRating11"] = { type = "Prefix", affix = "Fugitive", "+(401-500) to Evasion Rating", statOrder = { 1553 }, level = 77, group = "LocalEvasionRating", weightKey = { "shield", "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(401-500) to Evasion Rating" }, } },
- ["LocalIncreasedEvasionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(390-475) to Evasion Rating", statOrder = { 1553 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(390-475) to Evasion Rating" }, } },
- ["LocalIncreasedEvasionRatingEssenceHelm4__"] = { type = "Prefix", affix = "Essences", "+(40-49) to Evasion Rating", statOrder = { 1553 }, level = 42, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(40-49) to Evasion Rating" }, } },
- ["LocalIncreasedEvasionRatingEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(121-140) to Evasion Rating", statOrder = { 1553 }, level = 58, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(121-140) to Evasion Rating" }, } },
- ["LocalIncreasedEvasionRatingEssenceHelm6"] = { type = "Prefix", affix = "Essences", "+(141-160) to Evasion Rating", statOrder = { 1553 }, level = 74, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(141-160) to Evasion Rating" }, } },
- ["LocalIncreasedEvasionRatingEssenceHelm7"] = { type = "Prefix", affix = "Essences", "+(161-180) to Evasion Rating", statOrder = { 1553 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(161-180) to Evasion Rating" }, } },
- ["LocalIncreasedEvasionRatingEssenceGlovesBoots3"] = { type = "Prefix", affix = "Essences", "+(21-25) to Evasion Rating", statOrder = { 1553 }, level = 26, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(21-25) to Evasion Rating" }, } },
- ["LocalIncreasedEvasionRatingEssenceGlovesBoots4"] = { type = "Prefix", affix = "Essences", "+(81-90) to Evasion Rating", statOrder = { 1553 }, level = 42, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(81-90) to Evasion Rating" }, } },
- ["LocalIncreasedEvasionRatingEssenceGlovesBoots5"] = { type = "Prefix", affix = "Essences", "+(91-105) to Evasion Rating", statOrder = { 1553 }, level = 58, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(91-105) to Evasion Rating" }, } },
- ["LocalIncreasedEvasionRatingEssenceGlovesBoots6"] = { type = "Prefix", affix = "Essences", "+(106-120) to Evasion Rating", statOrder = { 1553 }, level = 74, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(106-120) to Evasion Rating" }, } },
- ["LocalIncreasedEvasionRatingEssenceGlovesBoots7"] = { type = "Prefix", affix = "Essences", "+(121-135) to Evasion Rating", statOrder = { 1553 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(121-135) to Evasion Rating" }, } },
- ["LocalIncreasedEvasionRatingEssenceShield5"] = { type = "Prefix", affix = "Essences", "+(151-225) to Evasion Rating", statOrder = { 1553 }, level = 58, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(151-225) to Evasion Rating" }, } },
- ["LocalIncreasedEvasionRatingEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(226-300) to Evasion Rating", statOrder = { 1553 }, level = 74, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(226-300) to Evasion Rating" }, } },
- ["LocalIncreasedEvasionRatingEssenceShield7____"] = { type = "Prefix", affix = "Essences", "+(301-375) to Evasion Rating", statOrder = { 1553 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(301-375) to Evasion Rating" }, } },
- ["IncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(3-10) to Armour", statOrder = { 1544 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(3-10) to Armour" }, } },
- ["IncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(11-35) to Armour", statOrder = { 1544 }, level = 18, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(11-35) to Armour" }, } },
- ["IncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(36-60) to Armour", statOrder = { 1544 }, level = 30, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(36-60) to Armour" }, } },
- ["IncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(61-138) to Armour", statOrder = { 1544 }, level = 44, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(61-138) to Armour" }, } },
- ["IncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(139-322) to Armour", statOrder = { 1544 }, level = 57, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(139-322) to Armour" }, } },
- ["IncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(323-400) to Armour", statOrder = { 1544 }, level = 71, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(323-400) to Armour" }, } },
- ["IncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "+(401-460) to Armour", statOrder = { 1544 }, level = 83, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(401-460) to Armour" }, } },
- ["IncreasedPhysicalDamageReductionRating8_"] = { type = "Prefix", affix = "Enveloped", "+(461-540) to Armour", statOrder = { 1544 }, level = 86, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(461-540) to Armour" }, } },
- ["IncreasedPhysicalDamageReductionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(481-520) to Armour", statOrder = { 1544 }, level = 82, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(481-520) to Armour" }, } },
- ["IncreasedPhysicalDamageReductionRatingEssenceRing5"] = { type = "Prefix", affix = "Essences", "+(80-120) to Armour", statOrder = { 1544 }, level = 58, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(80-120) to Armour" }, } },
- ["IncreasedPhysicalDamageReductionRatingEssenceRing6"] = { type = "Prefix", affix = "Essences", "+(121-200) to Armour", statOrder = { 1544 }, level = 74, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(121-200) to Armour" }, } },
- ["IncreasedPhysicalDamageReductionRatingEssenceRing7"] = { type = "Prefix", affix = "Essences", "+(201-300) to Armour", statOrder = { 1544 }, level = 82, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(201-300) to Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(6-12) to Armour", statOrder = { 1545 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(6-12) to Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(13-35) to Armour", statOrder = { 1545 }, level = 11, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(13-35) to Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(36-63) to Armour", statOrder = { 1545 }, level = 17, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(36-63) to Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(64-82) to Armour", statOrder = { 1545 }, level = 23, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(64-82) to Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(83-101) to Armour", statOrder = { 1545 }, level = 29, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(83-101) to Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(102-120) to Armour", statOrder = { 1545 }, level = 35, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(102-120) to Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRating7__"] = { type = "Prefix", affix = "Encased", "+(121-150) to Armour", statOrder = { 1545 }, level = 43, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(121-150) to Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRating8"] = { type = "Prefix", affix = "Enveloped", "+(151-200) to Armour", statOrder = { 1545 }, level = 51, group = "LocalPhysicalDamageReductionRating", weightKey = { "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(151-200) to Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRating9_"] = { type = "Prefix", affix = "Abating", "+(201-300) to Armour", statOrder = { 1545 }, level = 60, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(201-300) to Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(301-400) to Armour", statOrder = { 1545 }, level = 69, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(301-400) to Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRating11"] = { type = "Prefix", affix = "Impervious", "+(401-500) to Armour", statOrder = { 1545 }, level = 77, group = "LocalPhysicalDamageReductionRating", weightKey = { "shield", "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(401-500) to Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(390-475) to Armour", statOrder = { 1545 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(390-475) to Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(121-140) to Armour", statOrder = { 1545 }, level = 58, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(121-140) to Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm6_"] = { type = "Prefix", affix = "Essences", "+(141-160) to Armour", statOrder = { 1545 }, level = 74, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(141-160) to Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm7_"] = { type = "Prefix", affix = "Essences", "+(161-180) to Armour", statOrder = { 1545 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(161-180) to Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves5"] = { type = "Prefix", affix = "Essences", "+(91-105) to Armour", statOrder = { 1545 }, level = 58, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(91-105) to Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves6"] = { type = "Prefix", affix = "Essences", "+(106-120) to Armour", statOrder = { 1545 }, level = 74, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(106-120) to Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves7"] = { type = "Prefix", affix = "Essences", "+(121-135) to Armour", statOrder = { 1545 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(121-135) to Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingEssenceShield5_"] = { type = "Prefix", affix = "Essences", "+(151-225) to Armour", statOrder = { 1545 }, level = 58, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(151-225) to Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(226-300) to Armour", statOrder = { 1545 }, level = 74, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(226-300) to Armour" }, } },
- ["LocalIncreasedPhysicalDamageReductionRatingEssenceShield7____"] = { type = "Prefix", affix = "Essences", "+(301-375) to Armour", statOrder = { 1545 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(301-375) to Armour" }, } },
- ["LocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "+(5-9) to Armour", "+(5-9) to Evasion Rating", statOrder = { 1545, 1553 }, level = 1, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(5-9) to Armour" }, [53045048] = { "+(5-9) to Evasion Rating" }, } },
- ["LocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "+(10-27) to Armour", "+(10-27) to Evasion Rating", statOrder = { 1545, 1553 }, level = 18, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(10-27) to Armour" }, [53045048] = { "+(10-27) to Evasion Rating" }, } },
- ["LocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "+(28-48) to Armour", "+(28-48) to Evasion Rating", statOrder = { 1545, 1553 }, level = 30, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(28-48) to Armour" }, [53045048] = { "+(28-48) to Evasion Rating" }, } },
- ["LocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "+(49-85) to Armour", "+(49-85) to Evasion Rating", statOrder = { 1545, 1553 }, level = 38, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(49-85) to Armour" }, [53045048] = { "+(49-85) to Evasion Rating" }, } },
- ["LocalBaseArmourAndEvasionRating5"] = { type = "Prefix", affix = "Sturdy", "+(86-145) to Armour", "+(86-145) to Evasion Rating", statOrder = { 1545, 1553 }, level = 46, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(86-145) to Armour" }, [53045048] = { "+(86-145) to Evasion Rating" }, } },
- ["LocalBaseArmourAndEvasionRating6_"] = { type = "Prefix", affix = "Resilient", "+(146-220) to Armour", "+(146-220) to Evasion Rating", statOrder = { 1545, 1553 }, level = 58, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(146-220) to Armour" }, [53045048] = { "+(146-220) to Evasion Rating" }, } },
- ["LocalBaseArmourAndEvasionRating7"] = { type = "Prefix", affix = "Adaptable", "+(221-300) to Armour", "+(221-300) to Evasion Rating", statOrder = { 1545, 1553 }, level = 69, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(221-300) to Armour" }, [53045048] = { "+(221-300) to Evasion Rating" }, } },
- ["LocalBaseArmourAndEvasionRating8"] = { type = "Prefix", affix = "Versatile", "+(301-375) to Armour", "+(301-375) to Evasion Rating", statOrder = { 1545, 1553 }, level = 79, group = "LocalBaseArmourAndEvasionRating", weightKey = { "shield", "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(301-375) to Armour" }, [53045048] = { "+(301-375) to Evasion Rating" }, } },
- ["LocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "+(5-9) to Armour", "+(3-4) to maximum Energy Shield", statOrder = { 1545, 1564 }, level = 1, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(5-9) to Armour" }, [4052037485] = { "+(3-4) to maximum Energy Shield" }, } },
- ["LocalBaseArmourAndEnergyShield2_"] = { type = "Prefix", affix = "Anointed", "+(10-27) to Armour", "+(5-12) to maximum Energy Shield", statOrder = { 1545, 1564 }, level = 18, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(10-27) to Armour" }, [4052037485] = { "+(5-12) to maximum Energy Shield" }, } },
- ["LocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "+(28-48) to Armour", "+(13-22) to maximum Energy Shield", statOrder = { 1545, 1564 }, level = 30, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(28-48) to Armour" }, [4052037485] = { "+(13-22) to maximum Energy Shield" }, } },
- ["LocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "+(49-85) to Armour", "+(23-28) to maximum Energy Shield", statOrder = { 1545, 1564 }, level = 38, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(49-85) to Armour" }, [4052037485] = { "+(23-28) to maximum Energy Shield" }, } },
- ["LocalBaseArmourAndEnergyShield5"] = { type = "Prefix", affix = "Beatified", "+(86-145) to Armour", "+(29-48) to maximum Energy Shield", statOrder = { 1545, 1564 }, level = 46, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(86-145) to Armour" }, [4052037485] = { "+(29-48) to maximum Energy Shield" }, } },
- ["LocalBaseArmourAndEnergyShield6"] = { type = "Prefix", affix = "Consecrated", "+(146-220) to Armour", "+(49-60) to maximum Energy Shield", statOrder = { 1545, 1564 }, level = 58, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(146-220) to Armour" }, [4052037485] = { "+(49-60) to maximum Energy Shield" }, } },
- ["LocalBaseArmourAndEnergyShield7"] = { type = "Prefix", affix = "Saintly", "+(221-300) to Armour", "+(61-72) to maximum Energy Shield", statOrder = { 1545, 1564 }, level = 69, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(221-300) to Armour" }, [4052037485] = { "+(61-72) to maximum Energy Shield" }, } },
- ["LocalBaseArmourAndEnergyShield8"] = { type = "Prefix", affix = "Godly", "+(301-375) to Armour", "+(73-80) to maximum Energy Shield", statOrder = { 1545, 1564 }, level = 79, group = "LocalBaseArmourAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(301-375) to Armour" }, [4052037485] = { "+(73-80) to maximum Energy Shield" }, } },
- ["LocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "+(5-9) to Evasion Rating", "+(3-4) to maximum Energy Shield", statOrder = { 1553, 1564 }, level = 1, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(5-9) to Evasion Rating" }, [4052037485] = { "+(3-4) to maximum Energy Shield" }, } },
- ["LocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "+(10-27) to Evasion Rating", "+(5-12) to maximum Energy Shield", statOrder = { 1553, 1564 }, level = 18, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(10-27) to Evasion Rating" }, [4052037485] = { "+(5-12) to maximum Energy Shield" }, } },
- ["LocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "+(28-48) to Evasion Rating", "+(13-22) to maximum Energy Shield", statOrder = { 1553, 1564 }, level = 30, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(28-48) to Evasion Rating" }, [4052037485] = { "+(13-22) to maximum Energy Shield" }, } },
- ["LocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "+(49-85) to Evasion Rating", "+(23-28) to maximum Energy Shield", statOrder = { 1553, 1564 }, level = 38, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(49-85) to Evasion Rating" }, [4052037485] = { "+(23-28) to maximum Energy Shield" }, } },
- ["LocalBaseEvasionRatingAndEnergyShield5_"] = { type = "Prefix", affix = "Spirit's", "+(86-145) to Evasion Rating", "+(29-48) to maximum Energy Shield", statOrder = { 1553, 1564 }, level = 46, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(86-145) to Evasion Rating" }, [4052037485] = { "+(29-48) to maximum Energy Shield" }, } },
- ["LocalBaseEvasionRatingAndEnergyShield6"] = { type = "Prefix", affix = "Eidolon's", "+(146-220) to Evasion Rating", "+(49-60) to maximum Energy Shield", statOrder = { 1553, 1564 }, level = 58, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(146-220) to Evasion Rating" }, [4052037485] = { "+(49-60) to maximum Energy Shield" }, } },
- ["LocalBaseEvasionRatingAndEnergyShield7___"] = { type = "Prefix", affix = "Apparition's", "+(221-300) to Evasion Rating", "+(61-72) to maximum Energy Shield", statOrder = { 1553, 1564 }, level = 69, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(221-300) to Evasion Rating" }, [4052037485] = { "+(61-72) to maximum Energy Shield" }, } },
- ["LocalBaseEvasionRatingAndEnergyShield8___"] = { type = "Prefix", affix = "Phantasm's", "+(301-375) to Evasion Rating", "+(73-80) to maximum Energy Shield", statOrder = { 1553, 1564 }, level = 79, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(301-375) to Evasion Rating" }, [4052037485] = { "+(73-80) to maximum Energy Shield" }, } },
- ["LocalBaseArmourAndEvasionRatingAndLife1"] = { type = "Prefix", affix = "Rhoa's", "+(8-10) to Armour", "+(8-10) to Evasion Rating", "+(18-23) to maximum Life", statOrder = { 1545, 1553, 1574 }, level = 30, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(8-10) to Armour" }, [3299347043] = { "+(18-23) to maximum Life" }, [53045048] = { "+(8-10) to Evasion Rating" }, } },
- ["LocalBaseArmourAndEvasionRatingAndLife2"] = { type = "Prefix", affix = "Rhex's", "+(11-21) to Armour", "+(11-21) to Evasion Rating", "+(24-28) to maximum Life", statOrder = { 1545, 1553, 1574 }, level = 46, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(11-21) to Armour" }, [3299347043] = { "+(24-28) to maximum Life" }, [53045048] = { "+(11-21) to Evasion Rating" }, } },
- ["LocalBaseArmourAndEvasionRatingAndLife3"] = { type = "Prefix", affix = "Chimeral's", "+(22-48) to Armour", "+(22-48) to Evasion Rating", "+(29-33) to maximum Life", statOrder = { 1545, 1553, 1574 }, level = 62, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(22-48) to Armour" }, [3299347043] = { "+(29-33) to maximum Life" }, [53045048] = { "+(22-48) to Evasion Rating" }, } },
- ["LocalBaseArmourAndEvasionRatingAndLife4"] = { type = "Prefix", affix = "Bull's", "+(49-60) to Armour", "+(49-60) to Evasion Rating", "+(34-38) to maximum Life", statOrder = { 1545, 1553, 1574 }, level = 78, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(49-60) to Armour" }, [3299347043] = { "+(34-38) to maximum Life" }, [53045048] = { "+(49-60) to Evasion Rating" }, } },
- ["LocalBaseArmourAndEnergyShieldAndLife1_"] = { type = "Prefix", affix = "Coelacanth's", "+(8-10) to Armour", "+(3-5) to maximum Energy Shield", "+(18-23) to maximum Life", statOrder = { 1545, 1564, 1574 }, level = 30, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(8-10) to Armour" }, [3299347043] = { "+(18-23) to maximum Life" }, [4052037485] = { "+(3-5) to maximum Energy Shield" }, } },
- ["LocalBaseArmourAndEnergyShieldAndLife2_"] = { type = "Prefix", affix = "Swordfish's", "+(11-21) to Armour", "+(6-8) to maximum Energy Shield", "+(24-28) to maximum Life", statOrder = { 1545, 1564, 1574 }, level = 46, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(11-21) to Armour" }, [3299347043] = { "+(24-28) to maximum Life" }, [4052037485] = { "+(6-8) to maximum Energy Shield" }, } },
- ["LocalBaseArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Shark's", "+(22-48) to Armour", "+(9-12) to maximum Energy Shield", "+(29-33) to maximum Life", statOrder = { 1545, 1564, 1574 }, level = 62, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(22-48) to Armour" }, [3299347043] = { "+(29-33) to maximum Life" }, [4052037485] = { "+(9-12) to maximum Energy Shield" }, } },
- ["LocalBaseArmourAndEnergyShieldAndLife4_"] = { type = "Prefix", affix = "Whale's", "+(49-60) to Armour", "+(13-15) to maximum Energy Shield", "+(34-38) to maximum Life", statOrder = { 1545, 1564, 1574 }, level = 78, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(49-60) to Armour" }, [3299347043] = { "+(34-38) to maximum Life" }, [4052037485] = { "+(13-15) to maximum Energy Shield" }, } },
- ["LocalBaseEvasionRatingAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Vulture's", "+(8-10) to Evasion Rating", "+(3-5) to maximum Energy Shield", "+(18-23) to maximum Life", statOrder = { 1553, 1564, 1574 }, level = 30, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(8-10) to Evasion Rating" }, [3299347043] = { "+(18-23) to maximum Life" }, [4052037485] = { "+(3-5) to maximum Energy Shield" }, } },
- ["LocalBaseEvasionRatingAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Kingfisher's", "+(11-21) to Evasion Rating", "+(6-8) to maximum Energy Shield", "+(24-28) to maximum Life", statOrder = { 1553, 1564, 1574 }, level = 46, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(11-21) to Evasion Rating" }, [3299347043] = { "+(24-28) to maximum Life" }, [4052037485] = { "+(6-8) to maximum Energy Shield" }, } },
- ["LocalBaseEvasionRatingAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Owl's", "+(22-48) to Evasion Rating", "+(9-12) to maximum Energy Shield", "+(29-33) to maximum Life", statOrder = { 1553, 1564, 1574 }, level = 62, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(22-48) to Evasion Rating" }, [3299347043] = { "+(29-33) to maximum Life" }, [4052037485] = { "+(9-12) to maximum Energy Shield" }, } },
- ["LocalBaseEvasionRatingAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Eagle's", "+(49-60) to Evasion Rating", "+(13-15) to maximum Energy Shield", "+(34-38) to maximum Life", statOrder = { 1553, 1564, 1574 }, level = 78, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(49-60) to Evasion Rating" }, [3299347043] = { "+(34-38) to maximum Life" }, [4052037485] = { "+(13-15) to maximum Energy Shield" }, } },
- ["LocalBaseArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "+(20-32) to Armour", "+(18-23) to maximum Life", statOrder = { 1545, 1574 }, level = 30, group = "LocalBaseArmourAndLife", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "armour" }, tradeHashes = { [3484657501] = { "+(20-32) to Armour" }, [3299347043] = { "+(18-23) to maximum Life" }, } },
- ["LocalBaseArmourAndLife2"] = { type = "Prefix", affix = "Urchin's", "+(33-48) to Armour", "+(24-28) to maximum Life", statOrder = { 1545, 1574 }, level = 46, group = "LocalBaseArmourAndLife", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "armour" }, tradeHashes = { [3484657501] = { "+(33-48) to Armour" }, [3299347043] = { "+(24-28) to maximum Life" }, } },
- ["LocalBaseArmourAndLife3"] = { type = "Prefix", affix = "Nautilus's", "+(49-96) to Armour", "+(29-33) to maximum Life", statOrder = { 1545, 1574 }, level = 62, group = "LocalBaseArmourAndLife", weightKey = { "boots", "gloves", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "armour" }, tradeHashes = { [3484657501] = { "+(49-96) to Armour" }, [3299347043] = { "+(29-33) to maximum Life" }, } },
- ["LocalBaseArmourAndLife4"] = { type = "Prefix", affix = "Crocodile's", "+(97-144) to Armour", "+(34-38) to maximum Life", statOrder = { 1545, 1574 }, level = 78, group = "LocalBaseArmourAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "life", "defences", "armour" }, tradeHashes = { [3484657501] = { "+(97-144) to Armour" }, [3299347043] = { "+(34-38) to maximum Life" }, } },
- ["LocalBaseEvasionRatingAndLife1"] = { type = "Prefix", affix = "Flea's", "+(14-20) to Evasion Rating", "+(18-23) to maximum Life", statOrder = { 1553, 1574 }, level = 30, group = "LocalBaseEvasionRatingAndLife", weightKey = { "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "evasion" }, tradeHashes = { [53045048] = { "+(14-20) to Evasion Rating" }, [3299347043] = { "+(18-23) to maximum Life" }, } },
- ["LocalBaseEvasionRatingAndLife2"] = { type = "Prefix", affix = "Fawn's", "+(21-42) to Evasion Rating", "+(24-28) to maximum Life", statOrder = { 1553, 1574 }, level = 46, group = "LocalBaseEvasionRatingAndLife", weightKey = { "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "evasion" }, tradeHashes = { [53045048] = { "+(21-42) to Evasion Rating" }, [3299347043] = { "+(24-28) to maximum Life" }, } },
- ["LocalBaseEvasionRatingAndLife3"] = { type = "Prefix", affix = "Ram's", "+(43-95) to Evasion Rating", "+(29-33) to maximum Life", statOrder = { 1553, 1574 }, level = 62, group = "LocalBaseEvasionRatingAndLife", weightKey = { "boots", "gloves", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "evasion" }, tradeHashes = { [53045048] = { "+(43-95) to Evasion Rating" }, [3299347043] = { "+(29-33) to maximum Life" }, } },
- ["LocalBaseEvasionRatingAndLife4"] = { type = "Prefix", affix = "Ibex's", "+(96-120) to Evasion Rating", "+(34-38) to maximum Life", statOrder = { 1553, 1574 }, level = 78, group = "LocalBaseEvasionRatingAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "life", "defences", "evasion" }, tradeHashes = { [53045048] = { "+(96-120) to Evasion Rating" }, [3299347043] = { "+(34-38) to maximum Life" }, } },
- ["LocalBaseEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "+(8-10) to maximum Energy Shield", "+(18-23) to maximum Life", statOrder = { 1564, 1574 }, level = 30, group = "LocalBaseEnergyShieldAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3299347043] = { "+(18-23) to maximum Life" }, [4052037485] = { "+(8-10) to maximum Energy Shield" }, } },
- ["LocalBaseEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "+(11-15) to maximum Energy Shield", "+(24-28) to maximum Life", statOrder = { 1564, 1574 }, level = 46, group = "LocalBaseEnergyShieldAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3299347043] = { "+(24-28) to maximum Life" }, [4052037485] = { "+(11-15) to maximum Energy Shield" }, } },
- ["LocalBaseEnergyShieldAndLife3_"] = { type = "Prefix", affix = "Abbot's", "+(16-25) to maximum Energy Shield", "+(29-33) to maximum Life", statOrder = { 1564, 1574 }, level = 62, group = "LocalBaseEnergyShieldAndLife", weightKey = { "boots", "gloves", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3299347043] = { "+(29-33) to maximum Life" }, [4052037485] = { "+(16-25) to maximum Energy Shield" }, } },
- ["LocalBaseEnergyShieldAndLife4_"] = { type = "Prefix", affix = "Exarch's", "+(26-30) to maximum Energy Shield", "+(34-38) to maximum Life", statOrder = { 1564, 1574 }, level = 78, group = "LocalBaseEnergyShieldAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3299347043] = { "+(34-38) to maximum Life" }, [4052037485] = { "+(26-30) to maximum Energy Shield" }, } },
- ["LocalBaseEnergyShieldAndMana1"] = { type = "Prefix", affix = "Acolyte's", "+(8-10) to maximum Energy Shield", "+(11-15) to maximum Mana", statOrder = { 1564, 1584 }, level = 30, group = "LocalBaseEnergyShieldAndMana", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, tradeHashes = { [1050105434] = { "+(11-15) to maximum Mana" }, [4052037485] = { "+(8-10) to maximum Energy Shield" }, } },
- ["LocalBaseEnergyShieldAndMana2"] = { type = "Prefix", affix = "Deacon's", "+(11-15) to maximum Energy Shield", "+(16-19) to maximum Mana", statOrder = { 1564, 1584 }, level = 46, group = "LocalBaseEnergyShieldAndMana", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, tradeHashes = { [1050105434] = { "+(16-19) to maximum Mana" }, [4052037485] = { "+(11-15) to maximum Energy Shield" }, } },
- ["LocalBaseEnergyShieldAndMana3"] = { type = "Prefix", affix = "Priest's", "+(16-25) to maximum Energy Shield", "+(20-22) to maximum Mana", statOrder = { 1564, 1584 }, level = 62, group = "LocalBaseEnergyShieldAndMana", weightKey = { "boots", "gloves", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, tradeHashes = { [1050105434] = { "+(20-22) to maximum Mana" }, [4052037485] = { "+(16-25) to maximum Energy Shield" }, } },
- ["LocalBaseEnergyShieldAndMana4"] = { type = "Prefix", affix = "Bishop's", "+(26-30) to maximum Energy Shield", "+(23-25) to maximum Mana", statOrder = { 1564, 1584 }, level = 78, group = "LocalBaseEnergyShieldAndMana", weightKey = { "shield", "boots", "gloves", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, tradeHashes = { [1050105434] = { "+(23-25) to maximum Mana" }, [4052037485] = { "+(26-30) to maximum Energy Shield" }, } },
- ["MovementVelocity1"] = { type = "Prefix", affix = "Runner's", "10% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } },
- ["MovementVelocity2"] = { type = "Prefix", affix = "Sprinter's", "15% increased Movement Speed", statOrder = { 1803 }, level = 15, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } },
- ["MovementVelocity3"] = { type = "Prefix", affix = "Stallion's", "20% increased Movement Speed", statOrder = { 1803 }, level = 30, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } },
- ["MovementVelocity4"] = { type = "Prefix", affix = "Gazelle's", "25% increased Movement Speed", statOrder = { 1803 }, level = 40, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } },
- ["MovementVelocity5"] = { type = "Prefix", affix = "Cheetah's", "30% increased Movement Speed", statOrder = { 1803 }, level = 55, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } },
- ["MovementVelocity6"] = { type = "Prefix", affix = "Hellion's", "35% increased Movement Speed", statOrder = { 1803 }, level = 86, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "35% increased Movement Speed" }, } },
- ["MovementVelocityEssence7"] = { type = "Prefix", affix = "Essences", "32% increased Movement Speed", statOrder = { 1803 }, level = 82, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "32% increased Movement Speed" }, } },
- ["MovementVelocityEnhancedModSpeed"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "5% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1803, 3248 }, level = 1, group = "MovementVelocitySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [308396001] = { "5% increased Movement Speed if you haven't been Hit Recently" }, [2250533757] = { "30% increased Movement Speed" }, } },
- ["MovementVelocityEnhancedModDodge_"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid Bleeding", statOrder = { 1803, 4221 }, level = 1, group = "MovementVelocityDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1618589784] = { "(10-15)% chance to Avoid Bleeding" }, [2250533757] = { "30% increased Movement Speed" }, } },
- ["MovementVelocityEnhancedModSpellDodge_"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid being Poisoned", statOrder = { 1803, 1854 }, level = 1, group = "MovementVelocitySpellDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [4053951709] = { "(10-15)% chance to Avoid being Poisoned" }, [2250533757] = { "30% increased Movement Speed" }, } },
- ["SpellDamage1"] = { type = "Prefix", affix = "Chanter's", "(3-7)% increased Spell Damage", statOrder = { 1228 }, level = 5, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(3-7)% increased Spell Damage" }, } },
- ["SpellDamage2"] = { type = "Prefix", affix = "Mage's", "(8-12)% increased Spell Damage", statOrder = { 1228 }, level = 20, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(8-12)% increased Spell Damage" }, } },
- ["SpellDamage3"] = { type = "Prefix", affix = "Sorcerer's", "(13-17)% increased Spell Damage", statOrder = { 1228 }, level = 38, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(13-17)% increased Spell Damage" }, } },
- ["SpellDamage4"] = { type = "Prefix", affix = "Thaumaturgist's", "(18-22)% increased Spell Damage", statOrder = { 1228 }, level = 56, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-22)% increased Spell Damage" }, } },
- ["SpellDamage5"] = { type = "Prefix", affix = "Wizard's", "(23-26)% increased Spell Damage", statOrder = { 1228 }, level = 76, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-26)% increased Spell Damage" }, } },
- ["SpellDamageOnWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(10-19)% increased Spell Damage", statOrder = { 1228 }, level = 2, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-19)% increased Spell Damage" }, } },
- ["SpellDamageOnWeapon2"] = { type = "Prefix", affix = "Adept's", "(20-29)% increased Spell Damage", statOrder = { 1228 }, level = 11, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-29)% increased Spell Damage" }, } },
- ["SpellDamageOnWeapon3"] = { type = "Prefix", affix = "Scholar's", "(30-39)% increased Spell Damage", statOrder = { 1228 }, level = 23, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-39)% increased Spell Damage" }, } },
- ["SpellDamageOnWeapon4"] = { type = "Prefix", affix = "Professor's", "(40-54)% increased Spell Damage", statOrder = { 1228 }, level = 35, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 600, 600, 600, 600, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-54)% increased Spell Damage" }, } },
- ["SpellDamageOnWeapon5"] = { type = "Prefix", affix = "Occultist's", "(55-69)% increased Spell Damage", statOrder = { 1228 }, level = 46, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 300, 300, 300, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(55-69)% increased Spell Damage" }, } },
- ["SpellDamageOnWeapon6"] = { type = "Prefix", affix = "Incanter's", "(70-84)% increased Spell Damage", statOrder = { 1228 }, level = 58, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 150, 150, 150, 150, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(70-84)% increased Spell Damage" }, } },
- ["SpellDamageOnWeapon7"] = { type = "Prefix", affix = "Glyphic", "(85-99)% increased Spell Damage", statOrder = { 1228 }, level = 64, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 80, 80, 80, 80, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(85-99)% increased Spell Damage" }, } },
- ["SpellDamageOnWeapon8_"] = { type = "Prefix", affix = "Runic", "(100-109)% increased Spell Damage", statOrder = { 1228 }, level = 84, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 40, 40, 40, 40, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(100-109)% increased Spell Damage" }, } },
- ["SpellDamageOnWeaponEssence5_"] = { type = "Prefix", affix = "Essences", "(50-66)% increased Spell Damage", statOrder = { 1228 }, level = 58, group = "WeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-66)% increased Spell Damage" }, } },
- ["SpellDamageOnWeaponEssence6"] = { type = "Prefix", affix = "Essences", "(67-82)% increased Spell Damage", statOrder = { 1228 }, level = 74, group = "WeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(67-82)% increased Spell Damage" }, } },
- ["SpellDamageOnWeaponEssence7"] = { type = "Prefix", affix = "Essences", "(83-94)% increased Spell Damage", statOrder = { 1228 }, level = 82, group = "WeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(83-94)% increased Spell Damage" }, } },
- ["SpellDamageOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(70-74)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1228, 9487 }, level = 1, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2974417149] = { "(70-74)% increased Spell Damage" }, [2063695047] = { "Gain 5% of Non-Chaos Damage as extra Chaos Damage" }, } },
- ["SpellDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(15-29)% increased Spell Damage", statOrder = { 1228 }, level = 2, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-29)% increased Spell Damage" }, } },
- ["SpellDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Adept's", "(30-44)% increased Spell Damage", statOrder = { 1228 }, level = 11, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-44)% increased Spell Damage" }, } },
- ["SpellDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Scholar's", "(45-59)% increased Spell Damage", statOrder = { 1228 }, level = 23, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-59)% increased Spell Damage" }, } },
- ["SpellDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Professor's", "(60-84)% increased Spell Damage", statOrder = { 1228 }, level = 35, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-84)% increased Spell Damage" }, } },
- ["SpellDamageOnTwoHandWeapon5"] = { type = "Prefix", affix = "Occultist's", "(85-104)% increased Spell Damage", statOrder = { 1228 }, level = 46, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(85-104)% increased Spell Damage" }, } },
- ["SpellDamageOnTwoHandWeapon6"] = { type = "Prefix", affix = "Incanter's", "(105-124)% increased Spell Damage", statOrder = { 1228 }, level = 58, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 150, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(105-124)% increased Spell Damage" }, } },
- ["SpellDamageOnTwoHandWeapon7"] = { type = "Prefix", affix = "Glyphic", "(125-149)% increased Spell Damage", statOrder = { 1228 }, level = 79, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 80, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(125-149)% increased Spell Damage" }, } },
- ["SpellDamageOnTwoHandWeapon8"] = { type = "Prefix", affix = "Runic", "(150-164)% increased Spell Damage", statOrder = { 1228 }, level = 84, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 40, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(150-164)% increased Spell Damage" }, } },
- ["SpellDamageOnTwoHandWeaponEssence5"] = { type = "Prefix", affix = "Essences", "(85-106)% increased Spell Damage", statOrder = { 1228 }, level = 58, group = "TwoHandWeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(85-106)% increased Spell Damage" }, } },
- ["SpellDamageOnTwoHandWeaponEssence6"] = { type = "Prefix", affix = "Essences", "(107-122)% increased Spell Damage", statOrder = { 1228 }, level = 74, group = "TwoHandWeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(107-122)% increased Spell Damage" }, } },
- ["SpellDamageOnTwoHandWeaponEssence7"] = { type = "Prefix", affix = "Essences", "(123-144)% increased Spell Damage", statOrder = { 1228 }, level = 82, group = "TwoHandWeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(123-144)% increased Spell Damage" }, } },
- ["SpellDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(105-110)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1228, 9487 }, level = 1, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2974417149] = { "(105-110)% increased Spell Damage" }, [2063695047] = { "Gain 5% of Non-Chaos Damage as extra Chaos Damage" }, } },
- ["SpellDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Caster's", "(5-9)% increased Spell Damage", "+(17-20) to maximum Mana", statOrder = { 1228, 1584 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(5-9)% increased Spell Damage" }, [1050105434] = { "+(17-20) to maximum Mana" }, } },
- ["SpellDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(10-14)% increased Spell Damage", "+(21-24) to maximum Mana", statOrder = { 1228, 1584 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-14)% increased Spell Damage" }, [1050105434] = { "+(21-24) to maximum Mana" }, } },
- ["SpellDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Wizard's", "(15-19)% increased Spell Damage", "+(25-28) to maximum Mana", statOrder = { 1228, 1584 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-19)% increased Spell Damage" }, [1050105434] = { "+(25-28) to maximum Mana" }, } },
- ["SpellDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Warlock's", "(20-24)% increased Spell Damage", "+(29-33) to maximum Mana", statOrder = { 1228, 1584 }, level = 35, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 600, 600, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-24)% increased Spell Damage" }, [1050105434] = { "+(29-33) to maximum Mana" }, } },
- ["SpellDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Mage's", "(25-29)% increased Spell Damage", "+(34-37) to maximum Mana", statOrder = { 1228, 1584 }, level = 46, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 400, 300, 300, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(25-29)% increased Spell Damage" }, [1050105434] = { "+(34-37) to maximum Mana" }, } },
- ["SpellDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Archmage's", "(30-34)% increased Spell Damage", "+(38-41) to maximum Mana", statOrder = { 1228, 1584 }, level = 58, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 150, 150, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-34)% increased Spell Damage" }, [1050105434] = { "+(38-41) to maximum Mana" }, } },
- ["SpellDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Lich's", "(35-39)% increased Spell Damage", "+(42-45) to maximum Mana", statOrder = { 1228, 1584 }, level = 80, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 75, 75, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-39)% increased Spell Damage" }, [1050105434] = { "+(42-45) to maximum Mana" }, } },
- ["SpellDamageAndManaOnTwoHandWeapon1"] = { type = "Prefix", affix = "Caster's", "(8-14)% increased Spell Damage", "+(26-30) to maximum Mana", statOrder = { 1228, 1584 }, level = 2, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(8-14)% increased Spell Damage" }, [1050105434] = { "+(26-30) to maximum Mana" }, } },
- ["SpellDamageAndManaOnTwoHandWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(15-22)% increased Spell Damage", "+(31-35) to maximum Mana", statOrder = { 1228, 1584 }, level = 11, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-22)% increased Spell Damage" }, [1050105434] = { "+(31-35) to maximum Mana" }, } },
- ["SpellDamageAndManaOnTwoHandWeapon3"] = { type = "Prefix", affix = "Wizard's", "(23-29)% increased Spell Damage", "+(36-41) to maximum Mana", statOrder = { 1228, 1584 }, level = 23, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-29)% increased Spell Damage" }, [1050105434] = { "+(36-41) to maximum Mana" }, } },
- ["SpellDamageAndManaOnTwoHandWeapon4"] = { type = "Prefix", affix = "Warlock's", "(30-37)% increased Spell Damage", "+(42-47) to maximum Mana", statOrder = { 1228, 1584 }, level = 35, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-37)% increased Spell Damage" }, [1050105434] = { "+(42-47) to maximum Mana" }, } },
- ["SpellDamageAndManaOnTwoHandWeapon5"] = { type = "Prefix", affix = "Mage's", "(38-44)% increased Spell Damage", "+(48-53) to maximum Mana", statOrder = { 1228, 1584 }, level = 46, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(38-44)% increased Spell Damage" }, [1050105434] = { "+(48-53) to maximum Mana" }, } },
- ["SpellDamageAndManaOnTwoHandWeapon6"] = { type = "Prefix", affix = "Archmage's", "(45-50)% increased Spell Damage", "+(54-59) to maximum Mana", statOrder = { 1228, 1584 }, level = 58, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 150, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-50)% increased Spell Damage" }, [1050105434] = { "+(54-59) to maximum Mana" }, } },
- ["SpellDamageAndManaOnTwoHandWeapon7"] = { type = "Prefix", affix = "Lich's", "(51-55)% increased Spell Damage", "+(60-64) to maximum Mana", statOrder = { 1228, 1584 }, level = 80, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 75, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(51-55)% increased Spell Damage" }, [1050105434] = { "+(60-64) to maximum Mana" }, } },
- ["TrapDamageOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Trap Damage", statOrder = { 1199 }, level = 1, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(90-95)% increased Trap Damage" }, } },
- ["TrapDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Trap Damage", statOrder = { 1199 }, level = 1, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(133-138)% increased Trap Damage" }, } },
- ["TrapThrowSpeedEnhancedMod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Trap Throwing Speed", statOrder = { 1932 }, level = 1, group = "TrapThrowSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(20-22)% increased Trap Throwing Speed" }, } },
- ["TrapCooldownRecoveryAndDurationEnhancedMod"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Trap Duration", "(14-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 1928, 3466 }, level = 1, group = "TrapCooldownRecoveryAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2001530951] = { "(17-20)% increased Trap Duration" }, [3417757416] = { "(14-15)% increased Cooldown Recovery Rate for throwing Traps" }, } },
- ["TrapAreaOfEffectEnhancedMod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (22-25)% increased Area of Effect", statOrder = { 3484 }, level = 1, group = "TrapAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4050593908] = { "Skills used by Traps have (22-25)% increased Area of Effect" }, } },
- ["LocalIncreaseSocketedTrapGemLevelEnhancedMod_"] = { type = "Prefix", affix = "Matatl's", "+2 to Level of Socketed Trap Gems", statOrder = { 191 }, level = 1, group = "LocalIncreaseSocketedTrapGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [407139870] = { "+2 to Level of Socketed Trap Gems" }, } },
- ["MinionDamageOnWeaponEnhancedMod__"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (90-95)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (90-95)% increased Damage" }, } },
- ["MinionDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (133-138)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (133-138)% increased Damage" }, } },
- ["MinionAttackAndCastSpeedEnhancedMod"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (13-15)% increased Attack Speed", "Minions have (13-15)% increased Cast Speed", statOrder = { 2912, 2913 }, level = 1, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (13-15)% increased Attack Speed" }, [4000101551] = { "Minions have (13-15)% increased Cast Speed" }, } },
- ["MinionDurationEnhancedMod_"] = { type = "Suffix", affix = "of Citaqualotl", "(17-20)% increased Minion Duration", statOrder = { 5037 }, level = 1, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(17-20)% increased Minion Duration" }, } },
- ["LocalIncreaseSocketedMinionGemLevelEnhancedMod"] = { type = "Prefix", affix = "Citaqualotl's", "+2 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } },
- ["FireDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Searing", "(10-19)% increased Fire Damage", statOrder = { 1362 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-19)% increased Fire Damage" }, } },
- ["FireDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Sizzling", "(20-29)% increased Fire Damage", statOrder = { 1362 }, level = 11, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-29)% increased Fire Damage" }, } },
- ["FireDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Blistering", "(30-39)% increased Fire Damage", statOrder = { 1362 }, level = 23, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-39)% increased Fire Damage" }, } },
- ["FireDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Cauterising", "(40-54)% increased Fire Damage", statOrder = { 1362 }, level = 35, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(40-54)% increased Fire Damage" }, } },
- ["FireDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Volcanic", "(55-69)% increased Fire Damage", statOrder = { 1362 }, level = 46, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(55-69)% increased Fire Damage" }, } },
- ["FireDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Magmatic", "(70-84)% increased Fire Damage", statOrder = { 1362 }, level = 58, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 50, 50, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(70-84)% increased Fire Damage" }, } },
- ["FireDamagePrefixOnWeapon7_"] = { type = "Prefix", affix = "Pyroclastic", "(85-99)% increased Fire Damage", statOrder = { 1362 }, level = 64, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 25, 25, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(85-99)% increased Fire Damage" }, } },
- ["FireDamagePrefixOnWeapon8_"] = { type = "Prefix", affix = "Xoph's", "(100-109)% increased Fire Damage", statOrder = { 1362 }, level = 84, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 12, 12, 12, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(100-109)% increased Fire Damage" }, } },
- ["FireDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Searing", "(15-29)% increased Fire Damage", statOrder = { 1362 }, level = 2, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(15-29)% increased Fire Damage" }, } },
- ["FireDamagePrefixOnTwoHandWeapon2___"] = { type = "Prefix", affix = "Sizzling", "(30-44)% increased Fire Damage", statOrder = { 1362 }, level = 11, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-44)% increased Fire Damage" }, } },
- ["FireDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Blistering", "(45-59)% increased Fire Damage", statOrder = { 1362 }, level = 23, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(45-59)% increased Fire Damage" }, } },
- ["FireDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Cauterising", "(60-84)% increased Fire Damage", statOrder = { 1362 }, level = 35, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(60-84)% increased Fire Damage" }, } },
- ["FireDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Volcanic", "(85-104)% increased Fire Damage", statOrder = { 1362 }, level = 46, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(85-104)% increased Fire Damage" }, } },
- ["FireDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Magmatic", "(105-124)% increased Fire Damage", statOrder = { 1362 }, level = 58, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(105-124)% increased Fire Damage" }, } },
- ["FireDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Pyroclastic", "(125-149)% increased Fire Damage", statOrder = { 1362 }, level = 79, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(125-149)% increased Fire Damage" }, } },
- ["FireDamagePrefixOnTwoHandWeapon8_"] = { type = "Prefix", affix = "Xoph's", "(150-164)% increased Fire Damage", statOrder = { 1362 }, level = 84, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 13, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(150-164)% increased Fire Damage" }, } },
- ["FireDamagePrefixOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Fire Damage", "Adds (15-20) to (30-35) Fire Damage to Spells", statOrder = { 1362, 1409 }, level = 1, group = "FireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [3962278098] = { "(75-79)% increased Fire Damage" }, [1133016593] = { "Adds (15-20) to (30-35) Fire Damage to Spells" }, } },
- ["FireDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Fire Damage", "Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1362, 1409 }, level = 1, group = "TwoHandFireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [3962278098] = { "(111-115)% increased Fire Damage" }, [1133016593] = { "Adds (20-27) to (41-48) Fire Damage to Spells" }, } },
- ["ColdDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Bitter", "(10-19)% increased Cold Damage", statOrder = { 1371 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-19)% increased Cold Damage" }, } },
- ["ColdDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Biting", "(20-29)% increased Cold Damage", statOrder = { 1371 }, level = 11, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-29)% increased Cold Damage" }, } },
- ["ColdDamagePrefixOnWeapon3_"] = { type = "Prefix", affix = "Alpine", "(30-39)% increased Cold Damage", statOrder = { 1371 }, level = 23, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-39)% increased Cold Damage" }, } },
- ["ColdDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Snowy", "(40-54)% increased Cold Damage", statOrder = { 1371 }, level = 35, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(40-54)% increased Cold Damage" }, } },
- ["ColdDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Hailing", "(55-69)% increased Cold Damage", statOrder = { 1371 }, level = 46, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(55-69)% increased Cold Damage" }, } },
- ["ColdDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Crystalline", "(70-84)% increased Cold Damage", statOrder = { 1371 }, level = 58, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 50, 50, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(70-84)% increased Cold Damage" }, } },
- ["ColdDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Cryomancer's", "(85-99)% increased Cold Damage", statOrder = { 1371 }, level = 64, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 25, 25, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(85-99)% increased Cold Damage" }, } },
- ["ColdDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Tul's", "(100-109)% increased Cold Damage", statOrder = { 1371 }, level = 84, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 12, 12, 12, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(100-109)% increased Cold Damage" }, } },
- ["ColdDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Bitter", "(15-29)% increased Cold Damage", statOrder = { 1371 }, level = 2, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(15-29)% increased Cold Damage" }, } },
- ["ColdDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Biting", "(30-44)% increased Cold Damage", statOrder = { 1371 }, level = 11, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-44)% increased Cold Damage" }, } },
- ["ColdDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Alpine", "(45-59)% increased Cold Damage", statOrder = { 1371 }, level = 23, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(45-59)% increased Cold Damage" }, } },
- ["ColdDamagePrefixOnTwoHandWeapon4_"] = { type = "Prefix", affix = "Snowy", "(60-84)% increased Cold Damage", statOrder = { 1371 }, level = 35, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(60-84)% increased Cold Damage" }, } },
- ["ColdDamagePrefixOnTwoHandWeapon5_"] = { type = "Prefix", affix = "Hailing", "(85-104)% increased Cold Damage", statOrder = { 1371 }, level = 46, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(85-104)% increased Cold Damage" }, } },
- ["ColdDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Crystalline", "(105-124)% increased Cold Damage", statOrder = { 1371 }, level = 58, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(105-124)% increased Cold Damage" }, } },
- ["ColdDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Cryomancer's", "(125-149)% increased Cold Damage", statOrder = { 1371 }, level = 79, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(125-149)% increased Cold Damage" }, } },
- ["ColdDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Tul's", "(150-164)% increased Cold Damage", statOrder = { 1371 }, level = 84, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 13, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(150-164)% increased Cold Damage" }, } },
- ["ColdDamagePrefixOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Cold Damage", "Adds (12-16) to (25-29) Cold Damage to Spells", statOrder = { 1371, 1410 }, level = 1, group = "ColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3291658075] = { "(75-79)% increased Cold Damage" }, [2469416729] = { "Adds (12-16) to (25-29) Cold Damage to Spells" }, } },
- ["ColdDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Cold Damage", "Adds (19-25) to (37-44) Cold Damage to Spells", statOrder = { 1371, 1410 }, level = 1, group = "TwoHandColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3291658075] = { "(111-115)% increased Cold Damage" }, [2469416729] = { "Adds (19-25) to (37-44) Cold Damage to Spells" }, } },
- ["LightningDamagePrefixOnWeapon1_"] = { type = "Prefix", affix = "Charged", "(10-19)% increased Lightning Damage", statOrder = { 1382 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(10-19)% increased Lightning Damage" }, } },
- ["LightningDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Hissing", "(20-29)% increased Lightning Damage", statOrder = { 1382 }, level = 11, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-29)% increased Lightning Damage" }, } },
- ["LightningDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Bolting", "(30-39)% increased Lightning Damage", statOrder = { 1382 }, level = 23, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(30-39)% increased Lightning Damage" }, } },
- ["LightningDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Coursing", "(40-54)% increased Lightning Damage", statOrder = { 1382 }, level = 35, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(40-54)% increased Lightning Damage" }, } },
- ["LightningDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Striking", "(55-69)% increased Lightning Damage", statOrder = { 1382 }, level = 46, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(55-69)% increased Lightning Damage" }, } },
- ["LightningDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Smiting", "(70-84)% increased Lightning Damage", statOrder = { 1382 }, level = 58, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 50, 50, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(70-84)% increased Lightning Damage" }, } },
- ["LightningDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Ionising", "(85-99)% increased Lightning Damage", statOrder = { 1382 }, level = 64, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 25, 25, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(85-99)% increased Lightning Damage" }, } },
- ["LightningDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Esh's", "(100-109)% increased Lightning Damage", statOrder = { 1382 }, level = 84, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 12, 12, 12, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(100-109)% increased Lightning Damage" }, } },
- ["LightningDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Charged", "(15-29)% increased Lightning Damage", statOrder = { 1382 }, level = 2, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(15-29)% increased Lightning Damage" }, } },
- ["LightningDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Hissing", "(30-44)% increased Lightning Damage", statOrder = { 1382 }, level = 11, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(30-44)% increased Lightning Damage" }, } },
- ["LightningDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Bolting", "(45-59)% increased Lightning Damage", statOrder = { 1382 }, level = 23, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(45-59)% increased Lightning Damage" }, } },
- ["LightningDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Coursing", "(60-84)% increased Lightning Damage", statOrder = { 1382 }, level = 35, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(60-84)% increased Lightning Damage" }, } },
- ["LightningDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Striking", "(85-104)% increased Lightning Damage", statOrder = { 1382 }, level = 46, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(85-104)% increased Lightning Damage" }, } },
- ["LightningDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Smiting", "(105-124)% increased Lightning Damage", statOrder = { 1382 }, level = 58, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(105-124)% increased Lightning Damage" }, } },
- ["LightningDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Ionising", "(125-149)% increased Lightning Damage", statOrder = { 1382 }, level = 79, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(125-149)% increased Lightning Damage" }, } },
- ["LightningDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Esh's", "(150-164)% increased Lightning Damage", statOrder = { 1382 }, level = 84, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 13, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(150-164)% increased Lightning Damage" }, } },
- ["LightningDamagePrefixOnWeaponEnhancedMod_"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Lightning Damage", "Adds (1-4) to (53-56) Lightning Damage to Spells", statOrder = { 1382, 1411 }, level = 1, group = "LightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (53-56) Lightning Damage to Spells" }, [2231156303] = { "(75-79)% increased Lightning Damage" }, } },
- ["LightningDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Lightning Damage", "Adds (2-6) to (79-84) Lightning Damage to Spells", statOrder = { 1382, 1411 }, level = 1, group = "TwoHandLightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (79-84) Lightning Damage to Spells" }, [2231156303] = { "(111-115)% increased Lightning Damage" }, } },
- ["WeaponElementalDamage1"] = { type = "Prefix", affix = "Catalysing", "(5-10)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(5-10)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamage2"] = { type = "Prefix", affix = "Infusing", "(11-20)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(11-20)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamage3"] = { type = "Prefix", affix = "Empowering", "(21-30)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(21-30)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamage4"] = { type = "Prefix", affix = "Unleashed", "(31-36)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(31-36)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamage5"] = { type = "Prefix", affix = "Overpowering", "(37-42)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(37-42)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamage6_"] = { type = "Prefix", affix = "Devastating", "(43-50)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "amulet", "belt", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(43-50)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamageEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(11-15)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamageEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 10, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(16-20)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamageEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 26, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(21-25)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamageEssence4"] = { type = "Prefix", affix = "Essences", "(26-29)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 42, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(26-29)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamageEssence5"] = { type = "Prefix", affix = "Essences", "(30-34)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 58, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(30-34)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamageEssence6_"] = { type = "Prefix", affix = "Essences", "(35-38)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 74, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(35-38)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamageEssence7"] = { type = "Prefix", affix = "Essences", "(39-42)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 82, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(39-42)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamageOnWeapons1_"] = { type = "Prefix", affix = "Catalysing", "(11-20)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(11-20)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamageOnWeapons2"] = { type = "Prefix", affix = "Infusing", "(21-30)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(21-30)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamageOnWeapons3_"] = { type = "Prefix", affix = "Empowering", "(31-36)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(31-36)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamageOnWeapons4"] = { type = "Prefix", affix = "Unleashed", "(37-42)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(37-42)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamageOnWeapons5_"] = { type = "Prefix", affix = "Overpowering", "(43-50)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(43-50)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamageOnWeapons6"] = { type = "Prefix", affix = "Devastating", "(51-59)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(51-59)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamageOnTwohandWeapon1"] = { type = "Prefix", affix = "Catalysing", "(19-34)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(19-34)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamageOnTwohandWeapon2____"] = { type = "Prefix", affix = "Infusing", "(36-51)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(36-51)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamageOnTwohandWeapon3"] = { type = "Prefix", affix = "Empowering", "(53-61)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(53-61)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamageOnTwohandWeapon4"] = { type = "Prefix", affix = "Unleashed", "(63-71)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(63-71)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamageOnTwohandWeapon5"] = { type = "Prefix", affix = "Overpowering", "(73-85)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(73-85)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamageOnTwohandWeapon6"] = { type = "Prefix", affix = "Devastating", "(87-100)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(87-100)% increased Elemental Damage with Attack Skills" }, } },
- ["ManaLeech1"] = { type = "Prefix", affix = "Thirsty", "(1-2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1702 }, level = 9, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "(1-2)% of Physical Attack Damage Leeched as Mana" }, } },
- ["ManaLeech2"] = { type = "Prefix", affix = "Parched", "(3-4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1702 }, level = 74, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "(3-4)% of Physical Attack Damage Leeched as Mana" }, } },
- ["ManaLeechPermyriad1"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 50, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Mana" }, } },
- ["ManaLeechPermyriad2"] = { type = "Prefix", affix = "Parched", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 70, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Mana" }, } },
- ["ManaLeechPermyriadSuffix1"] = { type = "Suffix", affix = "of Thirst", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 50, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Mana" }, } },
- ["ManaLeechPermyriadSuffix2"] = { type = "Suffix", affix = "of Parching", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 70, group = "ManaLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Mana" }, } },
- ["ManaLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 82, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.9-1)% of Physical Attack Damage Leeched as Mana" }, } },
- ["ManaLeechPermyriadSuffixEssence7"] = { type = "Suffix", affix = "of the Essence", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 82, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.9-1)% of Physical Attack Damage Leeched as Mana" }, } },
- ["LocalManaLeechPermyriadEssence5"] = { type = "Prefix", affix = "Essences", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1706 }, level = 58, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Mana" }, } },
- ["LocalManaLeechPermyriadEssence6"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrder = { 1706 }, level = 74, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Mana" }, } },
- ["LocalManaLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1706 }, level = 82, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(0.9-1)% of Physical Attack Damage Leeched as Mana" }, } },
- ["ItemFoundQuantityIncrease1"] = { type = "Suffix", affix = "of Collecting", "(4-8)% increased Quantity of Items found", statOrder = { 1597 }, level = 2, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(4-8)% increased Quantity of Items found" }, } },
- ["ItemFoundQuantityIncrease2"] = { type = "Suffix", affix = "of Gathering", "(9-12)% increased Quantity of Items found", statOrder = { 1597 }, level = 32, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(9-12)% increased Quantity of Items found" }, } },
- ["ItemFoundQuantityIncrease3"] = { type = "Suffix", affix = "of Hoarding", "(13-16)% increased Quantity of Items found", statOrder = { 1597 }, level = 55, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(13-16)% increased Quantity of Items found" }, } },
- ["ItemFoundQuantityIncrease4"] = { type = "Suffix", affix = "of Amassment", "(17-20)% increased Quantity of Items found", statOrder = { 1597 }, level = 77, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(17-20)% increased Quantity of Items found" }, } },
- ["ItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(6-10)% increased Rarity of Items found", statOrder = { 1601 }, level = 3, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(6-10)% increased Rarity of Items found" }, } },
- ["ItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(11-14)% increased Rarity of Items found", statOrder = { 1601 }, level = 30, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(11-14)% increased Rarity of Items found" }, } },
- ["ItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(15-20)% increased Rarity of Items found", statOrder = { 1601 }, level = 53, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-20)% increased Rarity of Items found" }, } },
- ["ItemFoundRarityIncrease4"] = { type = "Suffix", affix = "of Excavation", "(21-26)% increased Rarity of Items found", statOrder = { 1601 }, level = 75, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(21-26)% increased Rarity of Items found" }, } },
- ["ItemFoundRarityIncreasePrefix1"] = { type = "Prefix", affix = "Magpie's", "(8-12)% increased Rarity of Items found", statOrder = { 1601 }, level = 20, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(8-12)% increased Rarity of Items found" }, } },
- ["ItemFoundRarityIncreasePrefix2"] = { type = "Prefix", affix = "Pirate's", "(13-18)% increased Rarity of Items found", statOrder = { 1601 }, level = 39, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(13-18)% increased Rarity of Items found" }, } },
- ["ItemFoundRarityIncreasePrefix3"] = { type = "Prefix", affix = "Dragon's", "(19-24)% increased Rarity of Items found", statOrder = { 1601 }, level = 62, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(19-24)% increased Rarity of Items found" }, } },
- ["ItemFoundRarityIncreasePrefix4_"] = { type = "Prefix", affix = "Perandus'", "(25-28)% increased Rarity of Items found", statOrder = { 1601 }, level = 84, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(25-28)% increased Rarity of Items found" }, } },
- ["IncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "(5-8)% increased Cast Speed", statOrder = { 1451 }, level = 2, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 800, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-8)% increased Cast Speed" }, } },
- ["IncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "(9-12)% increased Cast Speed", statOrder = { 1451 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 800, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(9-12)% increased Cast Speed" }, } },
- ["IncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "(13-16)% increased Cast Speed", statOrder = { 1451 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 800, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-16)% increased Cast Speed" }, } },
- ["IncreasedCastSpeed4"] = { type = "Suffix", affix = "of Legerdemain", "(17-20)% increased Cast Speed", statOrder = { 1451 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(17-20)% increased Cast Speed" }, } },
- ["IncreasedCastSpeed5"] = { type = "Suffix", affix = "of Prestidigitation", "(21-24)% increased Cast Speed", statOrder = { 1451 }, level = 55, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(21-24)% increased Cast Speed" }, } },
- ["IncreasedCastSpeed6"] = { type = "Suffix", affix = "of Sortilege", "(25-28)% increased Cast Speed", statOrder = { 1451 }, level = 72, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "default", }, weightVal = { 500, 0, 0, 500, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-28)% increased Cast Speed" }, } },
- ["IncreasedCastSpeed7"] = { type = "Suffix", affix = "of Finesse", "(29-32)% increased Cast Speed", statOrder = { 1451 }, level = 83, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "default", }, weightVal = { 250, 0, 0, 250, 250, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(29-32)% increased Cast Speed" }, } },
- ["IncreasedCastSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "(26-28)% increased Cast Speed", statOrder = { 1451 }, level = 82, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(26-28)% increased Cast Speed" }, } },
- ["IncreasedCastSpeedTwoHand1_"] = { type = "Suffix", affix = "of Talent", "(8-13)% increased Cast Speed", statOrder = { 1451 }, level = 2, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-13)% increased Cast Speed" }, } },
- ["IncreasedCastSpeedTwoHand2"] = { type = "Suffix", affix = "of Nimbleness", "(14-19)% increased Cast Speed", statOrder = { 1451 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(14-19)% increased Cast Speed" }, } },
- ["IncreasedCastSpeedTwoHand3"] = { type = "Suffix", affix = "of Expertise", "(20-25)% increased Cast Speed", statOrder = { 1451 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-25)% increased Cast Speed" }, } },
- ["IncreasedCastSpeedTwoHand4"] = { type = "Suffix", affix = "of Legerdemain", "(26-31)% increased Cast Speed", statOrder = { 1451 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(26-31)% increased Cast Speed" }, } },
- ["IncreasedCastSpeedTwoHand5"] = { type = "Suffix", affix = "of Prestidigitation", "(32-37)% increased Cast Speed", statOrder = { 1451 }, level = 55, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(32-37)% increased Cast Speed" }, } },
- ["IncreasedCastSpeedTwoHand6"] = { type = "Suffix", affix = "of Sortilege", "(38-43)% increased Cast Speed", statOrder = { 1451 }, level = 72, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(38-43)% increased Cast Speed" }, } },
- ["IncreasedCastSpeedTwoHand7"] = { type = "Suffix", affix = "of Finesse", "(44-49)% increased Cast Speed", statOrder = { 1451 }, level = 83, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(44-49)% increased Cast Speed" }, } },
- ["IncreasedCastSpeedTwoHandEssence7"] = { type = "Suffix", affix = "of the Essence", "(39-42)% increased Cast Speed", statOrder = { 1451 }, level = 82, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(39-42)% increased Cast Speed" }, } },
- ["IncreasedCastSpeedEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(29-32)% increased Cast Speed", statOrder = { 1412, 1451 }, level = 1, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, tradeHashes = { [2300399854] = { "Adds (17-24) to (36-40) Chaos Damage to Spells" }, [2891184298] = { "(29-32)% increased Cast Speed" }, } },
- ["IncreasedCastSpeedTwoHandEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "Adds (24-32) to (49-57) Chaos Damage to Spells", "(44-49)% increased Cast Speed", statOrder = { 1412, 1451 }, level = 1, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, tradeHashes = { [2300399854] = { "Adds (24-32) to (49-57) Chaos Damage to Spells" }, [2891184298] = { "(44-49)% increased Cast Speed" }, } },
- ["IncreasedCastSpeedRing3"] = { type = "Suffix", affix = "of the Essence", "(13-14)% increased Cast Speed", statOrder = { 1451 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-14)% increased Cast Speed" }, } },
- ["IncreasedCastSpeedRing4"] = { type = "Suffix", affix = "of the Essence", "(15-16)% increased Cast Speed", statOrder = { 1451 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-16)% increased Cast Speed" }, } },
- ["IncreasedCastSpeedFishing"] = { type = "Suffix", affix = "of Casting", "(24-28)% increased Cast Speed", statOrder = { 1451 }, level = 10, group = "IncreasedCastSpeedFishing", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "red_herring", "caster", "speed" }, tradeHashes = { [2891184298] = { "(24-28)% increased Cast Speed" }, } },
- ["LocalIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-7)% increased Attack Speed" }, } },
- ["LocalIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 1418 }, level = 11, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, } },
- ["LocalIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 1418 }, level = 22, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(11-13)% increased Attack Speed" }, } },
- ["LocalIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 1418 }, level = 30, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 500, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(14-16)% increased Attack Speed" }, } },
- ["LocalIncreasedAttackSpeed5"] = { type = "Suffix", affix = "of Acclaim", "(17-19)% increased Attack Speed", statOrder = { 1418 }, level = 37, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 500, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, } },
- ["LocalIncreasedAttackSpeed6"] = { type = "Suffix", affix = "of Fame", "(20-22)% increased Attack Speed", statOrder = { 1418 }, level = 45, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-22)% increased Attack Speed" }, } },
- ["LocalIncreasedAttackSpeed7"] = { type = "Suffix", affix = "of Infamy", "(23-25)% increased Attack Speed", statOrder = { 1418 }, level = 60, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(23-25)% increased Attack Speed" }, } },
- ["LocalIncreasedAttackSpeed8"] = { type = "Suffix", affix = "of Celebration", "(26-27)% increased Attack Speed", statOrder = { 1418 }, level = 77, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(26-27)% increased Attack Speed" }, } },
- ["LocalIncreasedAttackSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "(28-30)% increased Attack Speed", statOrder = { 1418 }, level = 82, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(28-30)% increased Attack Speed" }, } },
- ["LocalIncreasedAttackSpeedEssenceRanged4_"] = { type = "Suffix", affix = "of the Essence", "(11-12)% increased Attack Speed", statOrder = { 1418 }, level = 42, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(11-12)% increased Attack Speed" }, } },
- ["LocalIncreasedAttackSpeedEssenceRanged5"] = { type = "Suffix", affix = "of the Essence", "(13-14)% increased Attack Speed", statOrder = { 1418 }, level = 58, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(13-14)% increased Attack Speed" }, } },
- ["LocalIncreasedAttackSpeedEssenceRanged6"] = { type = "Suffix", affix = "of the Essence", "(15-16)% increased Attack Speed", statOrder = { 1418 }, level = 74, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-16)% increased Attack Speed" }, } },
- ["LocalIncreasedAttackSpeedEssenceRanged7"] = { type = "Suffix", affix = "of the Essence", "(17-18)% increased Attack Speed", statOrder = { 1418 }, level = 82, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(17-18)% increased Attack Speed" }, } },
- ["LocalIncreasedAttackSpeedEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(26-27)% increased Attack Speed", statOrder = { 1395, 1418 }, level = 1, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, tradeHashes = { [210067635] = { "(26-27)% increased Attack Speed" }, [2223678961] = { "Adds (23-36) to (49-61) Chaos Damage" }, } },
- ["LocalIncreasedAttackSpeedRangedEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(14-16)% increased Attack Speed", statOrder = { 1395, 1418 }, level = 1, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, tradeHashes = { [210067635] = { "(14-16)% increased Attack Speed" }, [2223678961] = { "Adds (23-36) to (49-61) Chaos Damage" }, } },
- ["IncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "ring", "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-7)% increased Attack Speed" }, } },
- ["IncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 1415 }, level = 11, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-10)% increased Attack Speed" }, } },
- ["IncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 1415 }, level = 22, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(11-13)% increased Attack Speed" }, } },
- ["IncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Grandmastery", "(14-16)% increased Attack Speed", statOrder = { 1415 }, level = 76, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(14-16)% increased Attack Speed" }, } },
- ["IncreasedAttackSpeedEssenceGloves7"] = { type = "Suffix", affix = "of the Essence", "(17-18)% increased Attack Speed", statOrder = { 1415 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(17-18)% increased Attack Speed" }, } },
- ["IncreasedAttackSpeedEssenceJewellery4"] = { type = "Suffix", affix = "of the Essence", "(4-5)% increased Attack Speed", statOrder = { 1415 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(4-5)% increased Attack Speed" }, } },
- ["IncreasedAttackSpeedEssenceJewellery5"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Attack Speed", statOrder = { 1415 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-6)% increased Attack Speed" }, } },
- ["IncreasedAttackSpeedEssenceJewellery6"] = { type = "Suffix", affix = "of the Essence", "(6-7)% increased Attack Speed", statOrder = { 1415 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-7)% increased Attack Speed" }, } },
- ["IncreasedAttackSpeedEssenceJewellery7"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Attack Speed", statOrder = { 1415 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-8)% increased Attack Speed" }, } },
- ["IncreasedAttackSpeedEssenceQuiver4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% increased Attack Speed", statOrder = { 1415 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-7)% increased Attack Speed" }, } },
- ["IncreasedAttackSpeedEssenceQuiver5_"] = { type = "Suffix", affix = "of the Essence", "(8-9)% increased Attack Speed", statOrder = { 1415 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-9)% increased Attack Speed" }, } },
- ["IncreasedAttackSpeedEssenceQuiver6"] = { type = "Suffix", affix = "of the Essence", "(10-12)% increased Attack Speed", statOrder = { 1415 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-12)% increased Attack Speed" }, } },
- ["IncreasedAttackSpeedEssenceQuiver7___"] = { type = "Suffix", affix = "of the Essence", "(13-15)% increased Attack Speed", statOrder = { 1415 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(13-15)% increased Attack Speed" }, } },
- ["IncreasedAccuracy1"] = { type = "Suffix", affix = "of Calm", "+(5-15) to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(5-15) to Accuracy Rating" }, } },
- ["IncreasedAccuracy2"] = { type = "Suffix", affix = "of Steadiness", "+(16-60) to Accuracy Rating", statOrder = { 1438 }, level = 12, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(16-60) to Accuracy Rating" }, } },
- ["IncreasedAccuracy3"] = { type = "Suffix", affix = "of Accuracy", "+(61-100) to Accuracy Rating", statOrder = { 1438 }, level = 20, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(61-100) to Accuracy Rating" }, } },
- ["IncreasedAccuracy4"] = { type = "Suffix", affix = "of Precision", "+(101-130) to Accuracy Rating", statOrder = { 1438 }, level = 26, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(101-130) to Accuracy Rating" }, } },
- ["IncreasedAccuracy5"] = { type = "Suffix", affix = "of the Sniper", "+(131-165) to Accuracy Rating", statOrder = { 1438 }, level = 33, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(131-165) to Accuracy Rating" }, } },
- ["IncreasedAccuracy6"] = { type = "Suffix", affix = "of the Marksman", "+(166-200) to Accuracy Rating", statOrder = { 1438 }, level = 41, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(166-200) to Accuracy Rating" }, } },
- ["IncreasedAccuracy7"] = { type = "Suffix", affix = "of the Deadeye", "+(201-250) to Accuracy Rating", statOrder = { 1438 }, level = 50, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(201-250) to Accuracy Rating" }, } },
- ["IncreasedAccuracy8"] = { type = "Suffix", affix = "of the Ranger", "+(251-320) to Accuracy Rating", statOrder = { 1438 }, level = 63, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(251-320) to Accuracy Rating" }, } },
- ["IncreasedAccuracy9"] = { type = "Suffix", affix = "of the Assassin", "+(321-400) to Accuracy Rating", statOrder = { 1438 }, level = 76, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(321-400) to Accuracy Rating" }, } },
- ["IncreasedAccuracy10"] = { type = "Suffix", affix = "of Lioneye", "+(401-500) to Accuracy Rating", statOrder = { 1438 }, level = 85, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(401-500) to Accuracy Rating" }, } },
- ["IncreasedAccuracyEssence7"] = { type = "Suffix", affix = "of the Essence", "+(401-440) to Accuracy Rating", statOrder = { 1438 }, level = 82, group = "IncreasedAccuracy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(401-440) to Accuracy Rating" }, } },
- ["IncreasedAccuracyNew1_"] = { type = "Suffix", affix = "of Steadiness", "+(50-100) to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(50-100) to Accuracy Rating" }, } },
- ["IncreasedAccuracyNew2"] = { type = "Suffix", affix = "of Precision", "+(100-165) to Accuracy Rating", statOrder = { 1438 }, level = 20, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(100-165) to Accuracy Rating" }, } },
- ["IncreasedAccuracyNew3"] = { type = "Suffix", affix = "of the Sniper", "+(166-250) to Accuracy Rating", statOrder = { 1438 }, level = 40, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(166-250) to Accuracy Rating" }, } },
- ["IncreasedAccuracyNew4"] = { type = "Suffix", affix = "of the Marksman", "+(251-350) to Accuracy Rating", statOrder = { 1438 }, level = 60, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(251-350) to Accuracy Rating" }, } },
- ["IncreasedAccuracyNew5_"] = { type = "Suffix", affix = "of the Ranger", "+(351-480) to Accuracy Rating", statOrder = { 1438 }, level = 75, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(351-480) to Accuracy Rating" }, } },
- ["IncreasedAccuracyNew6"] = { type = "Suffix", affix = "of Lioneye", "+(481-600) to Accuracy Rating", statOrder = { 1438 }, level = 85, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(481-600) to Accuracy Rating" }, } },
- ["LifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "Regenerate (1-2) Life per second", statOrder = { 1579 }, level = 1, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (1-2) Life per second" }, } },
- ["LifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "Regenerate (2.1-8) Life per second", statOrder = { 1579 }, level = 7, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (2.1-8) Life per second" }, } },
- ["LifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "Regenerate (8.1-16) Life per second", statOrder = { 1579 }, level = 19, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (8.1-16) Life per second" }, } },
- ["LifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "Regenerate (16.1-24) Life per second", statOrder = { 1579 }, level = 31, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (16.1-24) Life per second" }, } },
- ["LifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "Regenerate (24.1-32) Life per second", statOrder = { 1579 }, level = 44, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (24.1-32) Life per second" }, } },
- ["LifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "Regenerate (32.1-48) Life per second", statOrder = { 1579 }, level = 55, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (32.1-48) Life per second" }, } },
- ["LifeRegeneration7"] = { type = "Suffix", affix = "of Ryslatha", "Regenerate (48.1-64) Life per second", statOrder = { 1579 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (48.1-64) Life per second" }, } },
- ["LifeRegeneration8_"] = { type = "Suffix", affix = "of the Phoenix", "Regenerate (64.1-96) Life per second", statOrder = { 1579 }, level = 74, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "ring", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (64.1-96) Life per second" }, } },
- ["LifeRegeneration9"] = { type = "Suffix", affix = "of Recuperation", "Regenerate (96.1-128) Life per second", statOrder = { 1579 }, level = 78, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "ring", "amulet", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (96.1-128) Life per second" }, } },
- ["LifeRegeneration10__"] = { type = "Suffix", affix = "of Life-giving", "Regenerate (128.1-152) Life per second", statOrder = { 1579 }, level = 83, group = "LifeRegeneration", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (128.1-152) Life per second" }, } },
- ["LifeRegeneration11____"] = { type = "Suffix", affix = "of Convalescence", "Regenerate (152.1-176) Life per second", statOrder = { 1579 }, level = 86, group = "LifeRegeneration", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (152.1-176) Life per second" }, } },
- ["LifeRegenerationEssence2"] = { type = "Suffix", affix = "of the Essence", "Regenerate (2-5) Life per second", statOrder = { 1579 }, level = 10, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (2-5) Life per second" }, } },
- ["LifeRegenerationEssence7"] = { type = "Suffix", affix = "of the Essence", "Regenerate (30-40) Life per second", statOrder = { 1579 }, level = 82, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (30-40) Life per second" }, } },
- ["LifeRegenerationEnhancedMod"] = { type = "Suffix", affix = "of Guatelitzi", "Regenerate (16-20) Life per second", "Regenerate 0.4% of Life per second", statOrder = { 1579, 1949 }, level = 1, group = "LifeRegenerationAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (16-20) Life per second" }, [836936635] = { "Regenerate 0.4% of Life per second" }, } },
- ["LifeRegenerationPercent1"] = { type = "Suffix", affix = "of Youthfulness", "Regenerate (0.4-0.5)% of Life per second", statOrder = { 1949 }, level = 18, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (0.4-0.5)% of Life per second" }, } },
- ["LifeRegenerationPercent2__"] = { type = "Suffix", affix = "of Vitality", "Regenerate (0.6-0.7)% of Life per second", statOrder = { 1949 }, level = 36, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (0.6-0.7)% of Life per second" }, } },
- ["LifeRegenerationPercent3_"] = { type = "Suffix", affix = "of Longevity", "Regenerate (0.8-0.9)% of Life per second", statOrder = { 1949 }, level = 60, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (0.8-0.9)% of Life per second" }, } },
- ["LifeRegenerationPercent4"] = { type = "Suffix", affix = "of Immortality", "Regenerate (1-1.1)% of Life per second", statOrder = { 1949 }, level = 81, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-1.1)% of Life per second" }, } },
- ["ManaRegeneration1"] = { type = "Suffix", affix = "of Excitement", "(10-19)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 2, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(10-19)% increased Mana Regeneration Rate" }, } },
- ["ManaRegeneration2"] = { type = "Suffix", affix = "of Joy", "(20-29)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 18, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-29)% increased Mana Regeneration Rate" }, } },
- ["ManaRegeneration3"] = { type = "Suffix", affix = "of Elation", "(30-39)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 29, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-39)% increased Mana Regeneration Rate" }, } },
- ["ManaRegeneration4"] = { type = "Suffix", affix = "of Bliss", "(40-49)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 42, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-49)% increased Mana Regeneration Rate" }, } },
- ["ManaRegeneration5"] = { type = "Suffix", affix = "of Euphoria", "(50-59)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(50-59)% increased Mana Regeneration Rate" }, } },
- ["ManaRegeneration6"] = { type = "Suffix", affix = "of Nirvana", "(60-69)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 79, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-69)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationTwoHand1"] = { type = "Suffix", affix = "of Excitement", "(20-32)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 2, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-32)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationTwoHand2"] = { type = "Suffix", affix = "of Joy", "(33-45)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 18, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(33-45)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationTwoHand3"] = { type = "Suffix", affix = "of Elation", "(46-58)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 29, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(46-58)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationTwoHand4"] = { type = "Suffix", affix = "of Bliss", "(59-72)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 42, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(59-72)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationTwoHand5"] = { type = "Suffix", affix = "of Euphoria", "(73-85)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 55, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(73-85)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationTwoHand6"] = { type = "Suffix", affix = "of Nirvana", "(86-105)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 79, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(86-105)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationEssence7_"] = { type = "Suffix", affix = "of the Essence", "(70-76)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 82, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(70-76)% increased Mana Regeneration Rate" }, } },
- ["StunThresholdReduction1"] = { type = "Suffix", affix = "of the Pugilist", "(5-7)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 5, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(5-7)% reduced Enemy Stun Threshold" }, } },
- ["StunThresholdReduction2"] = { type = "Suffix", affix = "of the Brawler", "(8-9)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 20, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(8-9)% reduced Enemy Stun Threshold" }, } },
- ["StunThresholdReduction3"] = { type = "Suffix", affix = "of the Boxer", "(10-11)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 30, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(10-11)% reduced Enemy Stun Threshold" }, } },
- ["StunThresholdReduction4"] = { type = "Suffix", affix = "of the Combatant", "(12-13)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 44, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(12-13)% reduced Enemy Stun Threshold" }, } },
- ["StunThresholdReduction5"] = { type = "Suffix", affix = "of the Gladiator", "(14-15)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 58, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(14-15)% reduced Enemy Stun Threshold" }, } },
- ["StunThresholdReductionEssence7"] = { type = "Suffix", affix = "of the Essence", "(16-17)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 82, group = "StunThresholdReduction", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(16-17)% reduced Enemy Stun Threshold" }, } },
- ["CriticalStrikeChance1"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 5, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(10-14)% increased Global Critical Strike Chance" }, } },
- ["CriticalStrikeChance2"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 20, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-19)% increased Global Critical Strike Chance" }, } },
- ["CriticalStrikeChance3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 30, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-24)% increased Global Critical Strike Chance" }, } },
- ["CriticalStrikeChance4"] = { type = "Suffix", affix = "of Rupturing", "(25-29)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 44, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(25-29)% increased Global Critical Strike Chance" }, } },
- ["CriticalStrikeChance5"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 58, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-34)% increased Global Critical Strike Chance" }, } },
- ["CriticalStrikeChance6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 72, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(35-38)% increased Global Critical Strike Chance" }, } },
- ["CriticalStrikeChance7"] = { type = "Suffix", affix = "of Rending", "(39-44)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 85, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(39-44)% increased Global Critical Strike Chance" }, } },
- ["CriticalStrikeChanceWithBows1_"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Critical Strike Chance with Bows", statOrder = { 1470 }, level = 5, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(10-14)% increased Critical Strike Chance with Bows" }, } },
- ["CriticalStrikeChanceWithBows2_"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Critical Strike Chance with Bows", statOrder = { 1470 }, level = 20, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(15-19)% increased Critical Strike Chance with Bows" }, } },
- ["CriticalStrikeChanceWithBows3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Critical Strike Chance with Bows", statOrder = { 1470 }, level = 30, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(20-24)% increased Critical Strike Chance with Bows" }, } },
- ["CriticalStrikeChanceWithBows4"] = { type = "Suffix", affix = "of Rupturing", "(25-29)% increased Critical Strike Chance with Bows", statOrder = { 1470 }, level = 44, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(25-29)% increased Critical Strike Chance with Bows" }, } },
- ["CriticalStrikeChanceWithBows5_"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Critical Strike Chance with Bows", statOrder = { 1470 }, level = 58, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(30-34)% increased Critical Strike Chance with Bows" }, } },
- ["CriticalStrikeChanceWithBows6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Critical Strike Chance with Bows", statOrder = { 1470 }, level = 72, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(35-38)% increased Critical Strike Chance with Bows" }, } },
- ["CriticalStrikeChanceWithBows7"] = { type = "Suffix", affix = "of Rending", "(39-44)% increased Critical Strike Chance with Bows", statOrder = { 1470 }, level = 85, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(39-44)% increased Critical Strike Chance with Bows" }, } },
- ["CriticalStrikeChanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(39-42)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 82, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(39-42)% increased Global Critical Strike Chance" }, } },
- ["CriticalStrikeChanceEssenceGloves4"] = { type = "Suffix", affix = "of the Essence", "(15-17)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 42, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-17)% increased Global Critical Strike Chance" }, } },
- ["CriticalStrikeChanceEssenceGloves5"] = { type = "Suffix", affix = "of the Essence", "(18-20)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 58, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(18-20)% increased Global Critical Strike Chance" }, } },
- ["CriticalStrikeChanceEssenceGloves6"] = { type = "Suffix", affix = "of the Essence", "(21-23)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 74, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(21-23)% increased Global Critical Strike Chance" }, } },
- ["CriticalStrikeChanceEssenceGloves7"] = { type = "Suffix", affix = "of the Essence", "(24-26)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 82, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(24-26)% increased Global Critical Strike Chance" }, } },
- ["FireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+(6-11)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(6-11)% to Fire Resistance" }, } },
- ["FireResist2"] = { type = "Suffix", affix = "of the Salamander", "+(12-17)% to Fire Resistance", statOrder = { 1630 }, level = 12, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(12-17)% to Fire Resistance" }, } },
- ["FireResist3"] = { type = "Suffix", affix = "of the Drake", "+(18-23)% to Fire Resistance", statOrder = { 1630 }, level = 24, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(18-23)% to Fire Resistance" }, } },
- ["FireResist4"] = { type = "Suffix", affix = "of the Kiln", "+(24-29)% to Fire Resistance", statOrder = { 1630 }, level = 36, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(24-29)% to Fire Resistance" }, } },
- ["FireResist5"] = { type = "Suffix", affix = "of the Furnace", "+(30-35)% to Fire Resistance", statOrder = { 1630 }, level = 48, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-35)% to Fire Resistance" }, } },
- ["FireResist6"] = { type = "Suffix", affix = "of the Volcano", "+(36-41)% to Fire Resistance", statOrder = { 1630 }, level = 60, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(36-41)% to Fire Resistance" }, } },
- ["FireResist7"] = { type = "Suffix", affix = "of the Magma", "+(42-45)% to Fire Resistance", statOrder = { 1630 }, level = 72, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(42-45)% to Fire Resistance" }, } },
- ["FireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+(46-48)% to Fire Resistance", statOrder = { 1630 }, level = 84, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(46-48)% to Fire Resistance" }, } },
- ["ColdResist1"] = { type = "Suffix", affix = "of the Inuit", "+(6-11)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(6-11)% to Cold Resistance" }, } },
- ["ColdResist2"] = { type = "Suffix", affix = "of the Seal", "+(12-17)% to Cold Resistance", statOrder = { 1636 }, level = 14, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(12-17)% to Cold Resistance" }, } },
- ["ColdResist3"] = { type = "Suffix", affix = "of the Penguin", "+(18-23)% to Cold Resistance", statOrder = { 1636 }, level = 26, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(18-23)% to Cold Resistance" }, } },
- ["ColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+(24-29)% to Cold Resistance", statOrder = { 1636 }, level = 38, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(24-29)% to Cold Resistance" }, } },
- ["ColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+(30-35)% to Cold Resistance", statOrder = { 1636 }, level = 50, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-35)% to Cold Resistance" }, } },
- ["ColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+(36-41)% to Cold Resistance", statOrder = { 1636 }, level = 60, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(36-41)% to Cold Resistance" }, } },
- ["ColdResist7"] = { type = "Suffix", affix = "of the Ice", "+(42-45)% to Cold Resistance", statOrder = { 1636 }, level = 72, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(42-45)% to Cold Resistance" }, } },
- ["ColdResist8"] = { type = "Suffix", affix = "of Haast", "+(46-48)% to Cold Resistance", statOrder = { 1636 }, level = 84, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, } },
- ["LightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+(6-11)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(6-11)% to Lightning Resistance" }, } },
- ["LightningResist2"] = { type = "Suffix", affix = "of the Squall", "+(12-17)% to Lightning Resistance", statOrder = { 1641 }, level = 13, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(12-17)% to Lightning Resistance" }, } },
- ["LightningResist3"] = { type = "Suffix", affix = "of the Storm", "+(18-23)% to Lightning Resistance", statOrder = { 1641 }, level = 25, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(18-23)% to Lightning Resistance" }, } },
- ["LightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+(24-29)% to Lightning Resistance", statOrder = { 1641 }, level = 37, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(24-29)% to Lightning Resistance" }, } },
- ["LightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+(30-35)% to Lightning Resistance", statOrder = { 1641 }, level = 49, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-35)% to Lightning Resistance" }, } },
- ["LightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+(36-41)% to Lightning Resistance", statOrder = { 1641 }, level = 60, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(36-41)% to Lightning Resistance" }, } },
- ["LightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+(42-45)% to Lightning Resistance", statOrder = { 1641 }, level = 72, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(42-45)% to Lightning Resistance" }, } },
- ["LightningResist8"] = { type = "Suffix", affix = "of Ephij", "+(46-48)% to Lightning Resistance", statOrder = { 1641 }, level = 84, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(46-48)% to Lightning Resistance" }, } },
- ["FireResistEnhancedModPhys_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(9-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1630, 2452 }, level = 1, group = "FireResistancePhysTakenAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire", "resistance" }, tradeHashes = { [3342989455] = { "(9-10)% of Physical Damage from Hits taken as Fire Damage" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } },
- ["ColdResistEnhancedModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(9-10)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1636, 2453 }, level = 1, group = "ColdResistancePhysTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [1871056256] = { "(9-10)% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["LightningResistEnhancedModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(9-10)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1641, 2454 }, level = 1, group = "LightningResistancePhysTakenAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "lightning", "resistance" }, tradeHashes = { [425242359] = { "(9-10)% of Physical Damage from Hits taken as Lightning Damage" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } },
- ["FireResistEnhancedModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched as Life", statOrder = { 1630, 1675 }, level = 1, group = "FireResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, tradeHashes = { [3848282610] = { "0.4% of Fire Damage Leeched as Life" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } },
- ["ColdResistEnhancedModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched as Life", statOrder = { 1636, 1680 }, level = 1, group = "ColdResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [3999401129] = { "0.4% of Cold Damage Leeched as Life" }, } },
- ["LightningResistEnhancedModLeech_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1641, 1684 }, level = 1, group = "LightningResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning", "resistance" }, tradeHashes = { [80079005] = { "0.4% of Lightning Damage Leeched as Life" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } },
- ["FireResistEnhancedModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(45-52) to (75-78) added Fire Damage against Burning Enemies", statOrder = { 1630, 10320 }, level = 1, group = "FireResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [165402179] = { "(45-52) to (75-78) added Fire Damage against Burning Enemies" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } },
- ["ColdResistEnhancedModAilments__"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(30-50)% increased Damage with Hits against Chilled Enemies", statOrder = { 1636, 6075 }, level = 1, group = "ColdResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [2805714016] = { "(30-50)% increased Damage with Hits against Chilled Enemies" }, } },
- ["LightningResistEnhancedModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(40-60)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 1641, 5918 }, level = 1, group = "LightningResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance", "critical" }, tradeHashes = { [276103140] = { "(40-60)% increased Critical Strike Chance against Shocked Enemies" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } },
- ["ChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+(5-10)% to Chaos Resistance", statOrder = { 1646 }, level = 16, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(5-10)% to Chaos Resistance" }, } },
- ["ChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+(11-15)% to Chaos Resistance", statOrder = { 1646 }, level = 30, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(11-15)% to Chaos Resistance" }, } },
- ["ChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+(16-20)% to Chaos Resistance", statOrder = { 1646 }, level = 44, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(16-20)% to Chaos Resistance" }, } },
- ["ChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+(21-25)% to Chaos Resistance", statOrder = { 1646 }, level = 56, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(21-25)% to Chaos Resistance" }, } },
- ["ChaosResist5"] = { type = "Suffix", affix = "of Exile", "+(26-30)% to Chaos Resistance", statOrder = { 1646 }, level = 65, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(26-30)% to Chaos Resistance" }, } },
- ["ChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+(31-35)% to Chaos Resistance", statOrder = { 1646 }, level = 81, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(31-35)% to Chaos Resistance" }, } },
- ["ChaosResistEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "+(31-35)% to Chaos Resistance", "(9-10)% reduced Chaos Damage taken over time", statOrder = { 1646, 1953 }, level = 1, group = "ChaosResistanceDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3762784591] = { "(9-10)% reduced Chaos Damage taken over time" }, [2923486259] = { "+(31-35)% to Chaos Resistance" }, } },
- ["AllResistances1"] = { type = "Suffix", affix = "of the Crystal", "+(3-5)% to all Elemental Resistances", statOrder = { 1624 }, level = 12, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(3-5)% to all Elemental Resistances" }, } },
- ["AllResistances2"] = { type = "Suffix", affix = "of the Prism", "+(6-8)% to all Elemental Resistances", statOrder = { 1624 }, level = 24, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(6-8)% to all Elemental Resistances" }, } },
- ["AllResistances3"] = { type = "Suffix", affix = "of the Kaleidoscope", "+(9-11)% to all Elemental Resistances", statOrder = { 1624 }, level = 36, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(9-11)% to all Elemental Resistances" }, } },
- ["AllResistances4"] = { type = "Suffix", affix = "of Variegation", "+(12-14)% to all Elemental Resistances", statOrder = { 1624 }, level = 48, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(12-14)% to all Elemental Resistances" }, } },
- ["AllResistances5"] = { type = "Suffix", affix = "of the Rainbow", "+(15-16)% to all Elemental Resistances", statOrder = { 1624 }, level = 60, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-16)% to all Elemental Resistances" }, } },
- ["AllResistances6"] = { type = "Suffix", affix = "of the Span", "+(17-18)% to all Elemental Resistances", statOrder = { 1624 }, level = 85, group = "AllResistances", weightKey = { "shield", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(17-18)% to all Elemental Resistances" }, } },
- ["CriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(8-12)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(8-12)% to Global Critical Strike Multiplier" }, } },
- ["CriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(13-19)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(13-19)% to Global Critical Strike Multiplier" }, } },
- ["CriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 31, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-24)% to Global Critical Strike Multiplier" }, } },
- ["CriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(25-29)% to Global Critical Strike Multiplier" }, } },
- ["CriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(30-34)% to Global Critical Strike Multiplier" }, } },
- ["CriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(35-38)% to Global Critical Strike Multiplier" }, } },
- ["CriticalMultiplierWithBows1"] = { type = "Suffix", affix = "of Ire", "+(8-12)% to Critical Strike Multiplier with Bows", statOrder = { 1501 }, level = 8, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(8-12)% to Critical Strike Multiplier with Bows" }, } },
- ["CriticalMultiplierWithBows2"] = { type = "Suffix", affix = "of Anger", "+(13-19)% to Critical Strike Multiplier with Bows", statOrder = { 1501 }, level = 21, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(13-19)% to Critical Strike Multiplier with Bows" }, } },
- ["CriticalMultiplierWithBows3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Critical Strike Multiplier with Bows", statOrder = { 1501 }, level = 31, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(20-24)% to Critical Strike Multiplier with Bows" }, } },
- ["CriticalMultiplierWithBows4__"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Critical Strike Multiplier with Bows", statOrder = { 1501 }, level = 45, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(25-29)% to Critical Strike Multiplier with Bows" }, } },
- ["CriticalMultiplierWithBows5_"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Critical Strike Multiplier with Bows", statOrder = { 1501 }, level = 59, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(30-34)% to Critical Strike Multiplier with Bows" }, } },
- ["CriticalMultiplierWithBows6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Critical Strike Multiplier with Bows", statOrder = { 1501 }, level = 74, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(35-38)% to Critical Strike Multiplier with Bows" }, } },
- ["CriitcalMultiplierEssence7"] = { type = "Suffix", affix = "of the Essence", "+(35-41)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 82, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(35-41)% to Global Critical Strike Multiplier" }, } },
- ["CriticalMultiplierEssenceRing5_"] = { type = "Suffix", affix = "of the Essence", "+(15-17)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 58, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-17)% to Global Critical Strike Multiplier" }, } },
- ["CriticalMultiplierEssenceRing6_"] = { type = "Suffix", affix = "of the Essence", "+(18-20)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(18-20)% to Global Critical Strike Multiplier" }, } },
- ["CriticalMultiplierEssenceRing7"] = { type = "Suffix", affix = "of the Essence", "+(21-25)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 82, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(21-25)% to Global Critical Strike Multiplier" }, } },
- ["StunRecovery1"] = { type = "Suffix", affix = "of Thick Skin", "(11-13)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 1, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(11-13)% increased Stun and Block Recovery" }, } },
- ["StunRecovery2"] = { type = "Suffix", affix = "of Stone Skin", "(14-16)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 17, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(14-16)% increased Stun and Block Recovery" }, } },
- ["StunRecovery3"] = { type = "Suffix", affix = "of Iron Skin", "(17-19)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 28, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(17-19)% increased Stun and Block Recovery" }, } },
- ["StunRecovery4"] = { type = "Suffix", affix = "of Steel Skin", "(20-22)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 42, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(20-22)% increased Stun and Block Recovery" }, } },
- ["StunRecovery5"] = { type = "Suffix", affix = "of Adamantite Skin", "(23-25)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 56, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(23-25)% increased Stun and Block Recovery" }, } },
- ["StunRecovery6"] = { type = "Suffix", affix = "of Corundum Skin", "(26-28)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 79, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(26-28)% increased Stun and Block Recovery" }, } },
- ["StunRecoveryEssence7"] = { type = "Suffix", affix = "of the Essence", "(29-34)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 82, group = "StunRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(29-34)% increased Stun and Block Recovery" }, } },
- ["StunDuration1"] = { type = "Suffix", affix = "of Impact", "(11-15)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 5, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(11-15)% increased Stun Duration on Enemies" }, } },
- ["StunDuration2"] = { type = "Suffix", affix = "of Dazing", "(16-20)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 18, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(16-20)% increased Stun Duration on Enemies" }, } },
- ["StunDuration3"] = { type = "Suffix", affix = "of Stunning", "(21-25)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 30, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(21-25)% increased Stun Duration on Enemies" }, } },
- ["StunDuration4"] = { type = "Suffix", affix = "of Slamming", "(26-30)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 44, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(26-30)% increased Stun Duration on Enemies" }, } },
- ["StunDuration5"] = { type = "Suffix", affix = "of Staggering", "(31-35)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 58, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(31-35)% increased Stun Duration on Enemies" }, } },
- ["StunDurationEssence7"] = { type = "Suffix", affix = "of the Essence", "(36-39)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 82, group = "StunDurationIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(36-39)% increased Stun Duration on Enemies" }, } },
- ["SpellCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-19)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(10-19)% increased Spell Critical Strike Chance" }, } },
- ["SpellCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(20-39)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(20-39)% increased Spell Critical Strike Chance" }, } },
- ["SpellCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-59)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(40-59)% increased Spell Critical Strike Chance" }, } },
- ["SpellCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(60-79)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(60-79)% increased Spell Critical Strike Chance" }, } },
- ["SpellCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(80-99)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(80-99)% increased Spell Critical Strike Chance" }, } },
- ["SpellCriticalStrikeChance6_"] = { type = "Suffix", affix = "of Unmaking", "(100-109)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(100-109)% increased Spell Critical Strike Chance" }, } },
- ["SpellCriticalStrikeChanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(110-119)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 82, group = "SpellCriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(110-119)% increased Spell Critical Strike Chance" }, } },
- ["ProjectileSpeed1"] = { type = "Suffix", affix = "of Darting", "(10-17)% increased Projectile Speed", statOrder = { 1801 }, level = 14, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(10-17)% increased Projectile Speed" }, } },
- ["ProjectileSpeed2"] = { type = "Suffix", affix = "of Flight", "(18-25)% increased Projectile Speed", statOrder = { 1801 }, level = 27, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(18-25)% increased Projectile Speed" }, } },
- ["ProjectileSpeed3"] = { type = "Suffix", affix = "of Propulsion", "(26-33)% increased Projectile Speed", statOrder = { 1801 }, level = 41, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(26-33)% increased Projectile Speed" }, } },
- ["ProjectileSpeed4"] = { type = "Suffix", affix = "of the Zephyr", "(34-41)% increased Projectile Speed", statOrder = { 1801 }, level = 55, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(34-41)% increased Projectile Speed" }, } },
- ["ProjectileSpeed5"] = { type = "Suffix", affix = "of the Gale", "(42-46)% increased Projectile Speed", statOrder = { 1801 }, level = 82, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(42-46)% increased Projectile Speed" }, } },
- ["ProjectileSpeedEssence6"] = { type = "Suffix", affix = "of the Essence", "(47-52)% increased Projectile Speed", statOrder = { 1801 }, level = 28, group = "ProjectileSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(47-52)% increased Projectile Speed" }, } },
- ["LifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain 2 Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 8, group = "LifeGainPerTarget", weightKey = { "amulet", "ring", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 2 Life per Enemy Hit with Attacks" }, } },
- ["LifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain 3 Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 20, group = "LifeGainPerTarget", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 3 Life per Enemy Hit with Attacks" }, } },
- ["LifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain 4 Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 30, group = "LifeGainPerTarget", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 4 Life per Enemy Hit with Attacks" }, } },
- ["LifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "Gain 5 Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 40, group = "LifeGainPerTarget", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 5 Life per Enemy Hit with Attacks" }, } },
- ["LifeGainPerTargetLocal1"] = { type = "Suffix", affix = "of Rejuvenation", "Grants (2-3) Life per Enemy Hit", statOrder = { 1743 }, level = 8, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (2-3) Life per Enemy Hit" }, } },
- ["LifeGainPerTargetLocal2"] = { type = "Suffix", affix = "of Restoration", "Grants (4-6) Life per Enemy Hit", statOrder = { 1743 }, level = 20, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (4-6) Life per Enemy Hit" }, } },
- ["LifeGainPerTargetLocal3"] = { type = "Suffix", affix = "of Regrowth", "Grants (7-10) Life per Enemy Hit", statOrder = { 1743 }, level = 30, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (7-10) Life per Enemy Hit" }, } },
- ["LifeGainPerTargetLocal4"] = { type = "Suffix", affix = "of Nourishment", "Grants (11-14) Life per Enemy Hit", statOrder = { 1743 }, level = 40, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (11-14) Life per Enemy Hit" }, } },
- ["LifeGainPerTargetLocal5"] = { type = "Suffix", affix = "of Regenesis", "Grants (15-18) Life per Enemy Hit", statOrder = { 1743 }, level = 50, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (15-18) Life per Enemy Hit" }, } },
- ["LifeGainPerTargetLocal6"] = { type = "Suffix", affix = "of Renewal", "Grants (19-22) Life per Enemy Hit", statOrder = { 1743 }, level = 60, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (19-22) Life per Enemy Hit" }, } },
- ["LifeGainPerTargetLocal7"] = { type = "Suffix", affix = "of Recuperation", "Grants (23-26) Life per Enemy Hit", statOrder = { 1743 }, level = 70, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (23-26) Life per Enemy Hit" }, } },
- ["LifeGainPerTargetLocal8"] = { type = "Suffix", affix = "of Revitalization", "Grants (27-30) Life per Enemy Hit", statOrder = { 1743 }, level = 80, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (27-30) Life per Enemy Hit" }, } },
- ["FireDamagePercent1"] = { type = "Suffix", affix = "of Embers", "(10-12)% increased Fire Damage", statOrder = { 1362 }, level = 8, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-12)% increased Fire Damage" }, } },
- ["FireDamagePercent2"] = { type = "Suffix", affix = "of Coals", "(13-15)% increased Fire Damage", statOrder = { 1362 }, level = 22, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(13-15)% increased Fire Damage" }, } },
- ["FireDamagePercent3"] = { type = "Suffix", affix = "of Cinders", "(16-18)% increased Fire Damage", statOrder = { 1362 }, level = 36, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(16-18)% increased Fire Damage" }, } },
- ["FireDamagePercent4"] = { type = "Suffix", affix = "of Flames", "(19-22)% increased Fire Damage", statOrder = { 1362 }, level = 50, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(19-22)% increased Fire Damage" }, } },
- ["FireDamagePercent5"] = { type = "Suffix", affix = "of Immolation", "(23-26)% increased Fire Damage", statOrder = { 1362 }, level = 64, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "amulet", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(23-26)% increased Fire Damage" }, } },
- ["FireDamagePercent6"] = { type = "Suffix", affix = "of Ashes", "(27-30)% increased Fire Damage", statOrder = { 1362 }, level = 76, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-30)% increased Fire Damage" }, } },
- ["FireDamagePercentTwoHand1"] = { type = "Suffix", affix = "of Embers", "(18-22)% increased Fire Damage", statOrder = { 1362 }, level = 8, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(18-22)% increased Fire Damage" }, } },
- ["FireDamagePercentTwoHand2"] = { type = "Suffix", affix = "of Coals", "(23-28)% increased Fire Damage", statOrder = { 1362 }, level = 22, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(23-28)% increased Fire Damage" }, } },
- ["FireDamagePercentTwoHand3"] = { type = "Suffix", affix = "of Cinders", "(29-34)% increased Fire Damage", statOrder = { 1362 }, level = 36, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(29-34)% increased Fire Damage" }, } },
- ["FireDamagePercentTwoHand4"] = { type = "Suffix", affix = "of Flames", "(35-39)% increased Fire Damage", statOrder = { 1362 }, level = 50, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(35-39)% increased Fire Damage" }, } },
- ["FireDamagePercentTwoHand5"] = { type = "Suffix", affix = "of Immolation", "(40-44)% increased Fire Damage", statOrder = { 1362 }, level = 64, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(40-44)% increased Fire Damage" }, } },
- ["FireDamagePercentTwoHand6"] = { type = "Suffix", affix = "of Ashes", "(45-50)% increased Fire Damage", statOrder = { 1362 }, level = 76, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(45-50)% increased Fire Damage" }, } },
- ["FireDamagePercentEssence2_"] = { type = "Suffix", affix = "of the Essence", "(11-14)% increased Fire Damage", statOrder = { 1362 }, level = 10, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(11-14)% increased Fire Damage" }, } },
- ["FireDamagePercentEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% increased Fire Damage", statOrder = { 1362 }, level = 26, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(15-18)% increased Fire Damage" }, } },
- ["FireDamagePercentEssence4"] = { type = "Suffix", affix = "of the Essence", "(19-22)% increased Fire Damage", statOrder = { 1362 }, level = 42, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(19-22)% increased Fire Damage" }, } },
- ["FireDamagePercentEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Fire Damage", statOrder = { 1362 }, level = 58, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(23-26)% increased Fire Damage" }, } },
- ["FireDamagePercentEssence6_"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Fire Damage", statOrder = { 1362 }, level = 74, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-30)% increased Fire Damage" }, } },
- ["FireDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Fire Damage", statOrder = { 1362 }, level = 82, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(31-34)% increased Fire Damage" }, } },
- ["ColdDamagePercent1"] = { type = "Suffix", affix = "of Snow", "(10-12)% increased Cold Damage", statOrder = { 1371 }, level = 12, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-12)% increased Cold Damage" }, } },
- ["ColdDamagePercent2"] = { type = "Suffix", affix = "of Sleet", "(13-15)% increased Cold Damage", statOrder = { 1371 }, level = 24, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(13-15)% increased Cold Damage" }, } },
- ["ColdDamagePercent3"] = { type = "Suffix", affix = "of Ice", "(16-18)% increased Cold Damage", statOrder = { 1371 }, level = 36, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(16-18)% increased Cold Damage" }, } },
- ["ColdDamagePercent4"] = { type = "Suffix", affix = "of Rime", "(19-22)% increased Cold Damage", statOrder = { 1371 }, level = 50, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(19-22)% increased Cold Damage" }, } },
- ["ColdDamagePercent5"] = { type = "Suffix", affix = "of Floe", "(23-26)% increased Cold Damage", statOrder = { 1371 }, level = 64, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "amulet", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(23-26)% increased Cold Damage" }, } },
- ["ColdDamagePercent6"] = { type = "Suffix", affix = "of Glaciation", "(27-30)% increased Cold Damage", statOrder = { 1371 }, level = 76, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-30)% increased Cold Damage" }, } },
- ["ColdDamagePercentTwoHand1"] = { type = "Suffix", affix = "of Snow", "(18-22)% increased Cold Damage", statOrder = { 1371 }, level = 12, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(18-22)% increased Cold Damage" }, } },
- ["ColdDamagePercentTwoHand2"] = { type = "Suffix", affix = "of Sleet", "(23-28)% increased Cold Damage", statOrder = { 1371 }, level = 24, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(23-28)% increased Cold Damage" }, } },
- ["ColdDamagePercentTwoHand3"] = { type = "Suffix", affix = "of Ice", "(29-34)% increased Cold Damage", statOrder = { 1371 }, level = 36, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(29-34)% increased Cold Damage" }, } },
- ["ColdDamagePercentTwoHand4"] = { type = "Suffix", affix = "of Rime", "(35-39)% increased Cold Damage", statOrder = { 1371 }, level = 50, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(35-39)% increased Cold Damage" }, } },
- ["ColdDamagePercentTwoHand5"] = { type = "Suffix", affix = "of Floe", "(40-44)% increased Cold Damage", statOrder = { 1371 }, level = 64, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(40-44)% increased Cold Damage" }, } },
- ["ColdDamagePercentTwoHand6"] = { type = "Suffix", affix = "of Glaciation", "(45-50)% increased Cold Damage", statOrder = { 1371 }, level = 76, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(45-50)% increased Cold Damage" }, } },
- ["ColdDamagePercentEssence1"] = { type = "Suffix", affix = "of the Essence", "(6-10)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(6-10)% increased Cold Damage" }, } },
- ["ColdDamagePercentEssence2"] = { type = "Suffix", affix = "of the Essence", "(11-14)% increased Cold Damage", statOrder = { 1371 }, level = 10, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(11-14)% increased Cold Damage" }, } },
- ["ColdDamagePercentEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% increased Cold Damage", statOrder = { 1371 }, level = 26, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(15-18)% increased Cold Damage" }, } },
- ["ColdDamagePercentEssence4_"] = { type = "Suffix", affix = "of the Essence", "(19-22)% increased Cold Damage", statOrder = { 1371 }, level = 42, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(19-22)% increased Cold Damage" }, } },
- ["ColdDamagePercentEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Cold Damage", statOrder = { 1371 }, level = 58, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(23-26)% increased Cold Damage" }, } },
- ["ColdDamagePercentEssence6_"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Cold Damage", statOrder = { 1371 }, level = 74, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-30)% increased Cold Damage" }, } },
- ["ColdDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Cold Damage", statOrder = { 1371 }, level = 82, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(31-34)% increased Cold Damage" }, } },
- ["LightningDamagePercent1"] = { type = "Suffix", affix = "of Sparks", "(10-12)% increased Lightning Damage", statOrder = { 1382 }, level = 10, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(10-12)% increased Lightning Damage" }, } },
- ["LightningDamagePercent2"] = { type = "Suffix", affix = "of Static", "(13-15)% increased Lightning Damage", statOrder = { 1382 }, level = 23, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(13-15)% increased Lightning Damage" }, } },
- ["LightningDamagePercent3"] = { type = "Suffix", affix = "of Electricity", "(16-18)% increased Lightning Damage", statOrder = { 1382 }, level = 36, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(16-18)% increased Lightning Damage" }, } },
- ["LightningDamagePercent4"] = { type = "Suffix", affix = "of Voltage", "(19-22)% increased Lightning Damage", statOrder = { 1382 }, level = 50, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(19-22)% increased Lightning Damage" }, } },
- ["LightningDamagePercent5"] = { type = "Suffix", affix = "of Discharge", "(23-26)% increased Lightning Damage", statOrder = { 1382 }, level = 64, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "amulet", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(23-26)% increased Lightning Damage" }, } },
- ["LightningDamagePercent6"] = { type = "Suffix", affix = "of Arcing", "(27-30)% increased Lightning Damage", statOrder = { 1382 }, level = 76, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(27-30)% increased Lightning Damage" }, } },
- ["LightningDamagePercentTwoHand1"] = { type = "Suffix", affix = "of Sparks", "(18-22)% increased Lightning Damage", statOrder = { 1382 }, level = 10, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(18-22)% increased Lightning Damage" }, } },
- ["LightningDamagePercentTwoHand2"] = { type = "Suffix", affix = "of Static", "(23-28)% increased Lightning Damage", statOrder = { 1382 }, level = 23, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(23-28)% increased Lightning Damage" }, } },
- ["LightningDamagePercentTwoHand3"] = { type = "Suffix", affix = "of Electricity", "(29-34)% increased Lightning Damage", statOrder = { 1382 }, level = 36, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(29-34)% increased Lightning Damage" }, } },
- ["LightningDamagePercentTwoHand4"] = { type = "Suffix", affix = "of Voltage", "(35-39)% increased Lightning Damage", statOrder = { 1382 }, level = 50, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(35-39)% increased Lightning Damage" }, } },
- ["LightningDamagePercentTwoHand5"] = { type = "Suffix", affix = "of Discharge", "(40-44)% increased Lightning Damage", statOrder = { 1382 }, level = 64, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(40-44)% increased Lightning Damage" }, } },
- ["LightningDamagePercentTwoHand6"] = { type = "Suffix", affix = "of Arcing", "(45-50)% increased Lightning Damage", statOrder = { 1382 }, level = 76, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(45-50)% increased Lightning Damage" }, } },
- ["LightningDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Lightning Damage", statOrder = { 1382 }, level = 82, group = "LightningDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(31-34)% increased Lightning Damage" }, } },
- ["LifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Gain (7-10) Life per Enemy Killed", statOrder = { 1753 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (7-10) Life per Enemy Killed" }, } },
- ["LifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Gain (12-18) Life per Enemy Killed", statOrder = { 1753 }, level = 23, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (12-18) Life per Enemy Killed" }, } },
- ["LifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Gain (24-32) Life per Enemy Killed", statOrder = { 1753 }, level = 40, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (24-32) Life per Enemy Killed" }, } },
- ["LifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Gain (35-44) Life per Enemy Killed", statOrder = { 1753 }, level = 52, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (35-44) Life per Enemy Killed" }, } },
- ["LifeGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Feat", "Gain (56-72) Life per Enemy Killed", statOrder = { 1753 }, level = 66, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (56-72) Life per Enemy Killed" }, } },
- ["LifeGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Masterstroke", "Gain (84-110) Life per Enemy Killed", statOrder = { 1753 }, level = 81, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (84-110) Life per Enemy Killed" }, } },
- ["ManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Gain (4-6) Mana per Enemy Killed", statOrder = { 1768 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (4-6) Mana per Enemy Killed" }, } },
- ["ManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Gain (7-10) Mana per Enemy Killed", statOrder = { 1768 }, level = 24, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (7-10) Mana per Enemy Killed" }, } },
- ["ManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Consumption", "Gain (11-15) Mana per Enemy Killed", statOrder = { 1768 }, level = 40, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (11-15) Mana per Enemy Killed" }, } },
- ["ManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Diffusion", "Gain (16-25) Mana per Enemy Killed", statOrder = { 1768 }, level = 52, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (16-25) Mana per Enemy Killed" }, } },
- ["ManaGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Permeation", "Gain (26-37) Mana per Enemy Killed", statOrder = { 1768 }, level = 66, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (26-37) Mana per Enemy Killed" }, } },
- ["ManaGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Retention", "Gain (38-50) Mana per Enemy Killed", statOrder = { 1768 }, level = 81, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (38-50) Mana per Enemy Killed" }, } },
- ["LocalCriticalStrikeChance1"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(10-14)% increased Critical Strike Chance" }, } },
- ["LocalCriticalStrikeChance2"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Critical Strike Chance", statOrder = { 1469 }, level = 20, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-19)% increased Critical Strike Chance" }, } },
- ["LocalCriticalStrikeChance3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Critical Strike Chance", statOrder = { 1469 }, level = 30, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-24)% increased Critical Strike Chance" }, } },
- ["LocalCriticalStrikeChance4"] = { type = "Suffix", affix = "of Puncturing", "(25-29)% increased Critical Strike Chance", statOrder = { 1469 }, level = 44, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(25-29)% increased Critical Strike Chance" }, } },
- ["LocalCriticalStrikeChance5"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Critical Strike Chance", statOrder = { 1469 }, level = 59, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-34)% increased Critical Strike Chance" }, } },
- ["LocalCriticalStrikeChance6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Critical Strike Chance", statOrder = { 1469 }, level = 73, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(35-38)% increased Critical Strike Chance" }, } },
- ["LocalCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-14)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(10-14)% to Global Critical Strike Multiplier" }, } },
- ["LocalCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(15-19)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-19)% to Global Critical Strike Multiplier" }, } },
- ["LocalCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 30, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-24)% to Global Critical Strike Multiplier" }, } },
- ["LocalCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 44, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(25-29)% to Global Critical Strike Multiplier" }, } },
- ["LocalCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(30-34)% to Global Critical Strike Multiplier" }, } },
- ["LocalCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 73, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(35-38)% to Global Critical Strike Multiplier" }, } },
- ["LocalIncreaseSocketedGemLevel1"] = { type = "Prefix", affix = "Paragon's", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 50, group = "LocalIncreaseSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "staff", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 1000, 1000, 0, 0, 0, 0, 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } },
- ["LocalIncreaseSocketedGemUnsetRing1"] = { type = "Prefix", affix = "Exemplary", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 2, group = "LocalIncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } },
- ["LocalIncreaseSocketedGemUnsetRing2"] = { type = "Prefix", affix = "Quintessential", "+2 to Level of Socketed Gems", statOrder = { 167 }, level = 50, group = "LocalIncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } },
- ["LocalIncreaseSocketedGemUnsetRing3"] = { type = "Prefix", affix = "Flawless", "+3 to Level of Socketed Gems", statOrder = { 167 }, level = 76, group = "LocalIncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 250, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+3 to Level of Socketed Gems" }, } },
- ["GlobalSpellGemsLevel1"] = { type = "Prefix", affix = "Magister's", "+1 to Level of all Spell Skill Gems", statOrder = { 1613 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skill Gems" }, } },
- ["GlobalSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Magister's", "+(1-2) to Level of all Spell Skill Gems", statOrder = { 1613 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+(1-2) to Level of all Spell Skill Gems" }, } },
- ["LocalIncreaseSocketedFireGemLevel1"] = { type = "Prefix", affix = "Flame Spinner's", "+1 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 2, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+1 to Level of Socketed Fire Gems" }, } },
- ["LocalIncreaseSocketedFireGemLevel2_"] = { type = "Prefix", affix = "Lava Caller's", "+2 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 55, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } },
- ["GlobalFireSpellGemsLevel1_"] = { type = "Prefix", affix = "Flame Shaper's", "+1 to Level of all Fire Spell Skill Gems", statOrder = { 1615 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 250, 250, 250, 250, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skill Gems" }, } },
- ["GlobalFireSpellGemsLevelTwoHand1__"] = { type = "Prefix", affix = "Flame Shaper's", "+(1-2) to Level of all Fire Spell Skill Gems", statOrder = { 1615 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+(1-2) to Level of all Fire Spell Skill Gems" }, } },
- ["GlobalFireSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Lava Conjurer's", "+3 to Level of all Fire Spell Skill Gems", statOrder = { 1615 }, level = 77, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+3 to Level of all Fire Spell Skill Gems" }, } },
- ["LocalIncreaseSocketedColdGemLevel1"] = { type = "Prefix", affix = "Frost Weaver's", "+1 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 2, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+1 to Level of Socketed Cold Gems" }, } },
- ["LocalIncreaseSocketedColdGemLevel2"] = { type = "Prefix", affix = "Winterbringer's", "+2 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 55, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } },
- ["GlobalColdSpellGemsLevel1_"] = { type = "Prefix", affix = "Frost Singer's", "+1 to Level of all Cold Spell Skill Gems", statOrder = { 1616 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 250, 250, 250, 250, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skill Gems" }, } },
- ["GlobalColdSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Frost Singer's", "+(1-2) to Level of all Cold Spell Skill Gems", statOrder = { 1616 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(1-2) to Level of all Cold Spell Skill Gems" }, } },
- ["GlobalColdSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Winter Beckoner's", "+3 to Level of all Cold Spell Skill Gems", statOrder = { 1616 }, level = 77, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+3 to Level of all Cold Spell Skill Gems" }, } },
- ["LocalIncreaseSocketedLightningGemLevel1"] = { type = "Prefix", affix = "Thunder Lord's", "+1 to Level of Socketed Lightning Gems", statOrder = { 174 }, level = 2, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+1 to Level of Socketed Lightning Gems" }, } },
- ["LocalIncreaseSocketedLightningGemLevel2"] = { type = "Prefix", affix = "Tempest King's", "+2 to Level of Socketed Lightning Gems", statOrder = { 174 }, level = 55, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+2 to Level of Socketed Lightning Gems" }, } },
- ["GlobalLightningSpellGemsLevel1"] = { type = "Prefix", affix = "Thunderhand's", "+1 to Level of all Lightning Spell Skill Gems", statOrder = { 1617 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 250, 250, 250, 250, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skill Gems" }, } },
- ["GlobalLightningSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Thunderhand's", "+(1-2) to Level of all Lightning Spell Skill Gems", statOrder = { 1617 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+(1-2) to Level of all Lightning Spell Skill Gems" }, } },
- ["GlobalLightningSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Tempest Master's", "+3 to Level of all Lightning Spell Skill Gems", statOrder = { 1617 }, level = 77, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+3 to Level of all Lightning Spell Skill Gems" }, } },
- ["LocalIncreaseSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Nihilist's", "+1 to Level of Socketed Chaos Gems", statOrder = { 175 }, level = 4, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+1 to Level of Socketed Chaos Gems" }, } },
- ["LocalIncreaseSocketedChaosGemLevel2"] = { type = "Prefix", affix = "Anarchist's", "+2 to Level of Socketed Chaos Gems", statOrder = { 175 }, level = 55, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+2 to Level of Socketed Chaos Gems" }, } },
- ["GlobalChaosSpellGemsLevel1"] = { type = "Prefix", affix = "Mad Lord's", "+1 to Level of all Chaos Spell Skill Gems", statOrder = { 1618 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "dagger", "focus", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skill Gems" }, } },
- ["GlobalChaosSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Mad Lord's", "+(1-2) to Level of all Chaos Spell Skill Gems", statOrder = { 1618 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+(1-2) to Level of all Chaos Spell Skill Gems" }, } },
- ["GlobalChaosSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Splintermind's", "+3 to Level of all Chaos Spell Skill Gems", statOrder = { 1618 }, level = 77, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+3 to Level of all Chaos Spell Skill Gems" }, } },
- ["GlobalPhysicalSpellGemsLevel1"] = { type = "Prefix", affix = "Lithomancer's", "+1 to Level of all Physical Spell Skill Gems", statOrder = { 1614 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skill Gems" }, } },
- ["GlobalPhysicalSpellGemsLevelTwoHand1_"] = { type = "Prefix", affix = "Lithomancer's", "+(1-2) to Level of all Physical Spell Skill Gems", statOrder = { 1614 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+(1-2) to Level of all Physical Spell Skill Gems" }, } },
- ["GlobalPhysicalSpellGemsLevelTwoHand2_"] = { type = "Prefix", affix = "Tecton's", "+3 to Level of all Physical Spell Skill Gems", statOrder = { 1614 }, level = 77, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+3 to Level of all Physical Spell Skill Gems" }, } },
- ["LocalIncreaseSocketedSpellGemLevelRace"] = { type = "Prefix", affix = "Competitor's", "+1 to Level of Socketed Spell Gems", statOrder = { 179 }, level = 1, group = "LocalIncreaseSocketedSpellGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [446733281] = { "+1 to Level of Socketed Spell Gems" }, } },
- ["LocalIncreaseSocketedMeleeGemLevel1"] = { type = "Prefix", affix = "Combatant's", "+1 to Level of Socketed Melee Gems", statOrder = { 184 }, level = 8, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { "bow", "wand", "focus", "shield", "weapon", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "gem" }, tradeHashes = { [829382474] = { "+1 to Level of Socketed Melee Gems" }, } },
- ["LocalIncreaseSocketedMeleeGemLevel"] = { type = "Prefix", affix = "Weaponmaster's", "+2 to Level of Socketed Melee Gems", statOrder = { 184 }, level = 63, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { "bow", "wand", "focus", "shield", "weapon", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "gem" }, tradeHashes = { [829382474] = { "+2 to Level of Socketed Melee Gems" }, } },
- ["LocalIncreaseSocketedBowGemLevel1"] = { type = "Prefix", affix = "Fletcher's", "+1 to Level of Socketed Bow Gems", statOrder = { 183 }, level = 9, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "gem" }, tradeHashes = { [2027269580] = { "+1 to Level of Socketed Bow Gems" }, } },
- ["LocalIncreaseSocketedBowGemLevel2"] = { type = "Prefix", affix = "Sharpshooter's", "+2 to Level of Socketed Bow Gems", statOrder = { 183 }, level = 64, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "gem" }, tradeHashes = { [2027269580] = { "+2 to Level of Socketed Bow Gems" }, } },
- ["LocalIncreaseSocketedMinionGemLevel1"] = { type = "Prefix", affix = "Reanimator's", "+1 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 14, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+1 to Level of Socketed Minion Gems" }, } },
- ["LocalIncreaseSocketedMinionGemLevel2"] = { type = "Prefix", affix = "Summoner's", "+2 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 65, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } },
- ["LocalIncreaseSocketedMinionGemLevel3_"] = { type = "Prefix", affix = "Necromancer's", "+3 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 86, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+3 to Level of Socketed Minion Gems" }, } },
- ["GlobalIncreaseMinionSpellSkillGemLevel1"] = { type = "Prefix", affix = "Taskmaster's", "+1 to Level of all Minion Skill Gems", statOrder = { 1619 }, level = 14, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skill Gems" }, } },
- ["GlobalIncreaseMinionSpellSkillGemLevel2"] = { type = "Prefix", affix = "Overseer's", "+2 to Level of all Minion Skill Gems", statOrder = { 1619 }, level = 75, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 25, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+2 to Level of all Minion Skill Gems" }, } },
- ["LocalIncreasedAccuracy1"] = { type = "Suffix", affix = "of Calm", "+(5-15) to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(5-15) to Accuracy Rating" }, } },
- ["LocalIncreasedAccuracy2"] = { type = "Suffix", affix = "of Steadiness", "+(16-60) to Accuracy Rating", statOrder = { 2029 }, level = 12, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(16-60) to Accuracy Rating" }, } },
- ["LocalIncreasedAccuracy3"] = { type = "Suffix", affix = "of Accuracy", "+(61-100) to Accuracy Rating", statOrder = { 2029 }, level = 20, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(61-100) to Accuracy Rating" }, } },
- ["LocalIncreasedAccuracy4"] = { type = "Suffix", affix = "of Precision", "+(101-130) to Accuracy Rating", statOrder = { 2029 }, level = 26, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(101-130) to Accuracy Rating" }, } },
- ["LocalIncreasedAccuracy5"] = { type = "Suffix", affix = "of the Sniper", "+(131-165) to Accuracy Rating", statOrder = { 2029 }, level = 33, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(131-165) to Accuracy Rating" }, } },
- ["LocalIncreasedAccuracy6"] = { type = "Suffix", affix = "of the Marksman", "+(166-200) to Accuracy Rating", statOrder = { 2029 }, level = 41, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(166-200) to Accuracy Rating" }, } },
- ["LocalIncreasedAccuracy7"] = { type = "Suffix", affix = "of the Deadeye", "+(201-250) to Accuracy Rating", statOrder = { 2029 }, level = 50, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(201-250) to Accuracy Rating" }, } },
- ["LocalIncreasedAccuracy"] = { type = "Suffix", affix = "of the Ranger", "+(251-320) to Accuracy Rating", statOrder = { 2029 }, level = 63, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(251-320) to Accuracy Rating" }, } },
- ["LocalIncreasedAccuracy9_"] = { type = "Suffix", affix = "of the Assassin", "+(321-360) to Accuracy Rating", statOrder = { 2029 }, level = 80, group = "LocalAccuracyRating", weightKey = { "bow", "wand", "weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(321-360) to Accuracy Rating" }, } },
- ["LocalIncreasedAccuracyEssence7"] = { type = "Suffix", affix = "of the Essence", "+(361-380) to Accuracy Rating", statOrder = { 2029 }, level = 82, group = "LocalAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(361-380) to Accuracy Rating" }, } },
- ["LocalIncreasedAccuracyNew1"] = { type = "Suffix", affix = "of Steadiness", "+(80-130) to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(80-130) to Accuracy Rating" }, } },
- ["LocalIncreasedAccuracyNew2"] = { type = "Suffix", affix = "of Precision", "+(131-215) to Accuracy Rating", statOrder = { 2029 }, level = 20, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(131-215) to Accuracy Rating" }, } },
- ["LocalIncreasedAccuracyNew3"] = { type = "Suffix", affix = "of the Sniper", "+(216-325) to Accuracy Rating", statOrder = { 2029 }, level = 40, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(216-325) to Accuracy Rating" }, } },
- ["LocalIncreasedAccuracyNew4"] = { type = "Suffix", affix = "of the Marksman", "+(326-455) to Accuracy Rating", statOrder = { 2029 }, level = 60, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(326-455) to Accuracy Rating" }, } },
- ["LocalIncreasedAccuracyNew5"] = { type = "Suffix", affix = "of the Ranger", "+(456-624) to Accuracy Rating", statOrder = { 2029 }, level = 75, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(456-624) to Accuracy Rating" }, } },
- ["LocalIncreasedAccuracyNew6"] = { type = "Suffix", affix = "of Lioneye", "+(625-780) to Accuracy Rating", statOrder = { 2029 }, level = 85, group = "LocalAccuracyRating", weightKey = { "bow", "wand", "weapon", "default", }, weightVal = { 1000, 1000, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(625-780) to Accuracy Rating" }, } },
- ["CannotBeFrozenWarbands"] = { type = "Prefix", affix = "Mutewind", "Cannot be Frozen", statOrder = { 1843 }, level = 1, group = "CannotBeFrozen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, } },
- ["AdditionalArrowBow1_"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrder = { 1799 }, level = 70, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } },
- ["AdditionalArrowBow2_"] = { type = "Suffix", affix = "of Many", "Bow Attacks fire 2 additional Arrows", statOrder = { 1799 }, level = 86, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } },
- ["AdditionalArrowQuiver1_"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrder = { 1799 }, level = 70, group = "AdditionalArrows", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } },
- ["MinionRunSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions have (13-15)% increased Movement Speed", statOrder = { 1774 }, level = 10, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (13-15)% increased Movement Speed" }, } },
- ["MinionRunSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "Minions have (16-18)% increased Movement Speed", statOrder = { 1774 }, level = 26, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (16-18)% increased Movement Speed" }, } },
- ["MinionRunSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "Minions have (19-21)% increased Movement Speed", statOrder = { 1774 }, level = 42, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (19-21)% increased Movement Speed" }, } },
- ["MinionRunSpeedEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions have (22-24)% increased Movement Speed", statOrder = { 1774 }, level = 58, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (22-24)% increased Movement Speed" }, } },
- ["MinionRunSpeedEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions have (25-27)% increased Movement Speed", statOrder = { 1774 }, level = 74, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (25-27)% increased Movement Speed" }, } },
- ["MinionRunSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions have (28-30)% increased Movement Speed", statOrder = { 1774 }, level = 82, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (28-30)% increased Movement Speed" }, } },
- ["MinionLifeEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions have (13-15)% increased maximum Life", statOrder = { 1771 }, level = 10, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (13-15)% increased maximum Life" }, } },
- ["MinionLifeEssence3_"] = { type = "Suffix", affix = "of the Essence", "Minions have (16-18)% increased maximum Life", statOrder = { 1771 }, level = 26, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (16-18)% increased maximum Life" }, } },
- ["MinionLifeEssence4"] = { type = "Suffix", affix = "of the Essence", "Minions have (19-21)% increased maximum Life", statOrder = { 1771 }, level = 42, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (19-21)% increased maximum Life" }, } },
- ["MinionLifeEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions have (22-24)% increased maximum Life", statOrder = { 1771 }, level = 58, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (22-24)% increased maximum Life" }, } },
- ["MinionLifeEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions have (25-27)% increased maximum Life", statOrder = { 1771 }, level = 74, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (25-27)% increased maximum Life" }, } },
- ["MinionLifeEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions have (28-30)% increased maximum Life", statOrder = { 1771 }, level = 82, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (28-30)% increased maximum Life" }, } },
- ["MinionDamageEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions deal (7-10)% increased Damage", statOrder = { 1978 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (7-10)% increased Damage" }, } },
- ["MinionDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "Minions deal (11-14)% increased Damage", statOrder = { 1978 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (11-14)% increased Damage" }, } },
- ["MinionDamageEssence4_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (15-18)% increased Damage", statOrder = { 1978 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-18)% increased Damage" }, } },
- ["MinionDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions deal (19-22)% increased Damage", statOrder = { 1978 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (19-22)% increased Damage" }, } },
- ["MinionDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions deal (23-26)% increased Damage", statOrder = { 1978 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (23-26)% increased Damage" }, } },
- ["MinionDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions deal (27-30)% increased Damage", statOrder = { 1978 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (27-30)% increased Damage" }, } },
- ["MinionAccuracyEssence2_"] = { type = "Suffix", affix = "of the Essence", "(13-15)% increased Minion Accuracy Rating", statOrder = { 9269 }, level = 10, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(13-15)% increased Minion Accuracy Rating" }, } },
- ["MinionAccuracyEssence3_"] = { type = "Suffix", affix = "of the Essence", "(16-18)% increased Minion Accuracy Rating", statOrder = { 9269 }, level = 26, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(16-18)% increased Minion Accuracy Rating" }, } },
- ["MinionAccuracyEssence4___"] = { type = "Suffix", affix = "of the Essence", "(19-21)% increased Minion Accuracy Rating", statOrder = { 9269 }, level = 42, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(19-21)% increased Minion Accuracy Rating" }, } },
- ["MinionAccuracyEssence5"] = { type = "Suffix", affix = "of the Essence", "(22-24)% increased Minion Accuracy Rating", statOrder = { 9269 }, level = 58, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(22-24)% increased Minion Accuracy Rating" }, } },
- ["MinionAccuracyEssence6"] = { type = "Suffix", affix = "of the Essence", "(25-27)% increased Minion Accuracy Rating", statOrder = { 9269 }, level = 74, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(25-27)% increased Minion Accuracy Rating" }, } },
- ["MinionAccuracyEssence7_"] = { type = "Suffix", affix = "of the Essence", "(28-30)% increased Minion Accuracy Rating", statOrder = { 9269 }, level = 82, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(28-30)% increased Minion Accuracy Rating" }, } },
- ["MinionDamageGlovesEssence2"] = { type = "Prefix", affix = "Essences", "Minions deal (13-15)% increased Damage", statOrder = { 1978 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (13-15)% increased Damage" }, } },
- ["MinionDamageGlovesEssence3"] = { type = "Prefix", affix = "Essences", "Minions deal (16-18)% increased Damage", statOrder = { 1978 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (16-18)% increased Damage" }, } },
- ["MinionDamageGlovesEssence4"] = { type = "Prefix", affix = "Essences", "Minions deal (19-21)% increased Damage", statOrder = { 1978 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (19-21)% increased Damage" }, } },
- ["MinionDamageGlovesEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (22-24)% increased Damage", statOrder = { 1978 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (22-24)% increased Damage" }, } },
- ["MinionDamageGlovesEssence6___"] = { type = "Prefix", affix = "Essences", "Minions deal (25-27)% increased Damage", statOrder = { 1978 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (25-27)% increased Damage" }, } },
- ["MinionDamageGlovesEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (28-30)% increased Damage", statOrder = { 1978 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (28-30)% increased Damage" }, } },
- ["MinionDamageEssenceTwoHand2"] = { type = "Suffix", affix = "of the Essence", "Minions deal (10-15)% increased Damage", statOrder = { 1978 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (10-15)% increased Damage" }, } },
- ["MinionDamageEssenceTwoHand3_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (16-21)% increased Damage", statOrder = { 1978 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (16-21)% increased Damage" }, } },
- ["MinionDamageEssenceTwoHand4"] = { type = "Suffix", affix = "of the Essence", "Minions deal (22-27)% increased Damage", statOrder = { 1978 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (22-27)% increased Damage" }, } },
- ["MinionDamageEssenceTwoHand5_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (28-33)% increased Damage", statOrder = { 1978 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (28-33)% increased Damage" }, } },
- ["MinionDamageEssenceTwoHand6"] = { type = "Suffix", affix = "of the Essence", "Minions deal (34-39)% increased Damage", statOrder = { 1978 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (34-39)% increased Damage" }, } },
- ["MinionDamageEssenceTwoHand7_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (40-45)% increased Damage", statOrder = { 1978 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (40-45)% increased Damage" }, } },
- ["BeltIncreasedFlaskChargesGained1"] = { type = "Suffix", affix = "of Refilling", "(5-10)% increased Flask Charges gained", statOrder = { 2188 }, level = 2, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(5-10)% increased Flask Charges gained" }, } },
- ["BeltIncreasedFlaskChargesGained2"] = { type = "Suffix", affix = "of Restocking", "(11-16)% increased Flask Charges gained", statOrder = { 2188 }, level = 16, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(11-16)% increased Flask Charges gained" }, } },
- ["BeltIncreasedFlaskChargesGained3_____"] = { type = "Suffix", affix = "of Replenishing", "(17-22)% increased Flask Charges gained", statOrder = { 2188 }, level = 32, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(17-22)% increased Flask Charges gained" }, } },
- ["BeltIncreasedFlaskChargesGained4"] = { type = "Suffix", affix = "of Pouring", "(23-28)% increased Flask Charges gained", statOrder = { 2188 }, level = 48, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(23-28)% increased Flask Charges gained" }, } },
- ["BeltIncreasedFlaskChargesGained5_"] = { type = "Suffix", affix = "of Brimming", "(29-34)% increased Flask Charges gained", statOrder = { 2188 }, level = 70, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(29-34)% increased Flask Charges gained" }, } },
- ["BeltIncreasedFlaskChargesGained6"] = { type = "Suffix", affix = "of Overflowing", "(35-40)% increased Flask Charges gained", statOrder = { 2188 }, level = 84, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(35-40)% increased Flask Charges gained" }, } },
- ["BeltIncreasedFlaskEffect1_"] = { type = "Prefix", affix = "Distilling", "Flasks applied to you have (4-6)% increased Effect", statOrder = { 2747 }, level = 45, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 250, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (4-6)% increased Effect" }, } },
- ["BeltIncreasedFlaskEffect2"] = { type = "Prefix", affix = "Condensing", "Flasks applied to you have (7-9)% increased Effect", statOrder = { 2747 }, level = 65, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 250, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (7-9)% increased Effect" }, } },
- ["BeltIncreasedFlaskEffect3"] = { type = "Prefix", affix = "Magnifying", "Flasks applied to you have (10-12)% increased Effect", statOrder = { 2747 }, level = 85, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 250, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (10-12)% increased Effect" }, } },
- ["BeltReducedFlaskChargesUsed1"] = { type = "Suffix", affix = "of Sipping", "(10-20)% reduced Flask Charges used", statOrder = { 2189 }, level = 3, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(10-20)% reduced Flask Charges used" }, } },
- ["BeltIncreasedFlaskDuration1"] = { type = "Suffix", affix = "of Sipping", "(4-9)% increased Flask Effect Duration", statOrder = { 2192 }, level = 8, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(4-9)% increased Flask Effect Duration" }, } },
- ["BeltIncreasedFlaskDuration2"] = { type = "Suffix", affix = "of Tasting", "(10-15)% increased Flask Effect Duration", statOrder = { 2192 }, level = 34, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(10-15)% increased Flask Effect Duration" }, } },
- ["BeltIncreasedFlaskDuration3"] = { type = "Suffix", affix = "of Savouring", "(16-21)% increased Flask Effect Duration", statOrder = { 2192 }, level = 50, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(16-21)% increased Flask Effect Duration" }, } },
- ["BeltIncreasedFlaskDuration4"] = { type = "Suffix", affix = "of Relishing", "(22-27)% increased Flask Effect Duration", statOrder = { 2192 }, level = 66, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(22-27)% increased Flask Effect Duration" }, } },
- ["BeltIncreasedFlaskDuration5_"] = { type = "Suffix", affix = "of Reveling", "(28-33)% increased Flask Effect Duration", statOrder = { 2192 }, level = 82, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(28-33)% increased Flask Effect Duration" }, } },
- ["BeltFlaskLifeRecoveryRate1"] = { type = "Prefix", affix = "Restoring", "(5-10)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 5, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(5-10)% increased Flask Life Recovery rate" }, } },
- ["BeltFlaskLifeRecoveryRate2"] = { type = "Prefix", affix = "Recovering", "(11-16)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 21, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(11-16)% increased Flask Life Recovery rate" }, } },
- ["BeltFlaskLifeRecoveryRate3_"] = { type = "Prefix", affix = "Renewing", "(17-22)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 35, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(17-22)% increased Flask Life Recovery rate" }, } },
- ["BeltFlaskLifeRecoveryRate4"] = { type = "Prefix", affix = "Refreshing", "(23-28)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 49, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(23-28)% increased Flask Life Recovery rate" }, } },
- ["BeltFlaskLifeRecoveryRate5"] = { type = "Prefix", affix = "Rejuvenating", "(29-34)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 63, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(29-34)% increased Flask Life Recovery rate" }, } },
- ["BeltFlaskLifeRecoveryRate6"] = { type = "Prefix", affix = "Regenerating", "(35-40)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 77, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(35-40)% increased Flask Life Recovery rate" }, } },
- ["BeltFlaskLifeRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(8-11)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(8-11)% increased Flask Life Recovery rate" }, } },
- ["BeltFlaskLifeRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(12-15)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 10, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(12-15)% increased Flask Life Recovery rate" }, } },
- ["BeltFlaskLifeRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(16-19)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 26, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(16-19)% increased Flask Life Recovery rate" }, } },
- ["BeltFlaskLifeRecoveryRateEssence4"] = { type = "Prefix", affix = "Essences", "(20-23)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 42, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(20-23)% increased Flask Life Recovery rate" }, } },
- ["BeltFlaskLifeRecoveryRateEssence5"] = { type = "Prefix", affix = "Essences", "(24-27)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 58, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(24-27)% increased Flask Life Recovery rate" }, } },
- ["BeltFlaskLifeRecoveryRateEssence6"] = { type = "Prefix", affix = "Essences", "(28-31)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 74, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(28-31)% increased Flask Life Recovery rate" }, } },
- ["BeltFlaskLifeRecoveryRateEssence7"] = { type = "Prefix", affix = "Essences", "(32-35)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 82, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(32-35)% increased Flask Life Recovery rate" }, } },
- ["BeltFlaskManaRecoveryRate1_"] = { type = "Prefix", affix = "Affecting", "(5-10)% increased Flask Mana Recovery rate", statOrder = { 2195 }, level = 5, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(5-10)% increased Flask Mana Recovery rate" }, } },
- ["BeltFlaskManaRecoveryRate2"] = { type = "Prefix", affix = "Stirring", "(11-16)% increased Flask Mana Recovery rate", statOrder = { 2195 }, level = 21, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(11-16)% increased Flask Mana Recovery rate" }, } },
- ["BeltFlaskManaRecoveryRate3_"] = { type = "Prefix", affix = "Heartening", "(17-22)% increased Flask Mana Recovery rate", statOrder = { 2195 }, level = 35, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(17-22)% increased Flask Mana Recovery rate" }, } },
- ["BeltFlaskManaRecoveryRate4__"] = { type = "Prefix", affix = "Exciting", "(23-28)% increased Flask Mana Recovery rate", statOrder = { 2195 }, level = 49, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(23-28)% increased Flask Mana Recovery rate" }, } },
- ["BeltFlaskManaRecoveryRate5"] = { type = "Prefix", affix = "Galvanizing", "(29-34)% increased Flask Mana Recovery rate", statOrder = { 2195 }, level = 63, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(29-34)% increased Flask Mana Recovery rate" }, } },
- ["BeltFlaskManaRecoveryRate6"] = { type = "Prefix", affix = "Inspiring", "(35-40)% increased Flask Mana Recovery rate", statOrder = { 2195 }, level = 77, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(35-40)% increased Flask Mana Recovery rate" }, } },
- ["BeltFlaskManaRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Flask Mana Recovery rate", statOrder = { 2195 }, level = 58, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(11-15)% increased Flask Mana Recovery rate" }, } },
- ["BeltFlaskManaRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Flask Mana Recovery rate", statOrder = { 2195 }, level = 74, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(16-20)% increased Flask Mana Recovery rate" }, } },
- ["BeltFlaskManaRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Flask Mana Recovery rate", statOrder = { 2195 }, level = 82, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(21-25)% increased Flask Mana Recovery rate" }, } },
- ["ChanceToAvoidShockEssence2_"] = { type = "Suffix", affix = "of the Essence", "(35-38)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 10, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(35-38)% chance to Avoid being Shocked" }, } },
- ["ChanceToAvoidShockEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 26, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(39-42)% chance to Avoid being Shocked" }, } },
- ["ChanceToAvoidShockEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 42, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(43-46)% chance to Avoid being Shocked" }, } },
- ["ChanceToAvoidShockEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 58, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(47-50)% chance to Avoid being Shocked" }, } },
- ["ChanceToAvoidShockEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 74, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-55)% chance to Avoid being Shocked" }, } },
- ["ChanceToAvoidShockEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 82, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(56-60)% chance to Avoid being Shocked" }, } },
- ["AttackerTakesDamage1"] = { type = "Prefix", affix = "Thorny", "Reflects (1-4) Physical Damage to Melee Attackers", statOrder = { 2207 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (1-4) Physical Damage to Melee Attackers" }, } },
- ["AttackerTakesDamage2"] = { type = "Prefix", affix = "Spiny", "Reflects (5-10) Physical Damage to Melee Attackers", statOrder = { 2207 }, level = 10, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (5-10) Physical Damage to Melee Attackers" }, } },
- ["AttackerTakesDamage3"] = { type = "Prefix", affix = "Barbed", "Reflects (11-24) Physical Damage to Melee Attackers", statOrder = { 2207 }, level = 20, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (11-24) Physical Damage to Melee Attackers" }, } },
- ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Jagged", "Reflects (25-50) Physical Damage to Melee Attackers", statOrder = { 2207 }, level = 35, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (25-50) Physical Damage to Melee Attackers" }, } },
- ["AttackerTakesDamageEssence5"] = { type = "Prefix", affix = "Essences", "Reflects (51-100) Physical Damage to Melee Attackers", statOrder = { 2207 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (51-100) Physical Damage to Melee Attackers" }, } },
- ["AttackerTakesDamageEssence6"] = { type = "Prefix", affix = "Essences", "Reflects (101-150) Physical Damage to Melee Attackers", statOrder = { 2207 }, level = 74, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (101-150) Physical Damage to Melee Attackers" }, } },
- ["AttackerTakesDamageEssence7"] = { type = "Prefix", affix = "Essences", "Reflects (151-200) Physical Damage to Melee Attackers", statOrder = { 2207 }, level = 82, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (151-200) Physical Damage to Melee Attackers" }, } },
- ["ChanceToAvoidFreezeEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(39-42)% chance to Avoid being Frozen" }, } },
- ["ChanceToAvoidFreezeEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(43-46)% chance to Avoid being Frozen" }, } },
- ["ChanceToAvoidFreezeEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(47-50)% chance to Avoid being Frozen" }, } },
- ["ChanceToAvoidFreezeEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(51-55)% chance to Avoid being Frozen" }, } },
- ["ChanceToAvoidFreezeEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(56-60)% chance to Avoid being Frozen" }, } },
- ["AdditionalBlockChance1"] = { type = "Suffix", affix = "of Intercepting", "+(1-3)% Chance to Block", statOrder = { 2254 }, level = 10, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(1-3)% Chance to Block" }, } },
- ["AdditionalBlockChance2"] = { type = "Suffix", affix = "of Walling", "+(4-5)% Chance to Block", statOrder = { 2254 }, level = 25, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(4-5)% Chance to Block" }, } },
- ["AdditionalBlockChance3"] = { type = "Suffix", affix = "of Blocking", "+(6-7)% Chance to Block", statOrder = { 2254 }, level = 40, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(6-7)% Chance to Block" }, } },
- ["AdditionalBlockChance4_"] = { type = "Suffix", affix = "of the Stalwart", "+(8-9)% Chance to Block", statOrder = { 2254 }, level = 55, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(8-9)% Chance to Block" }, } },
- ["AdditionalBlockChance5"] = { type = "Suffix", affix = "of the Buttress", "+(10-11)% Chance to Block", statOrder = { 2254 }, level = 66, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(10-11)% Chance to Block" }, } },
- ["AdditionalBlockChance6"] = { type = "Suffix", affix = "of the Sentinel", "+(12-13)% Chance to Block", statOrder = { 2254 }, level = 77, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(12-13)% Chance to Block" }, } },
- ["AdditionalBlockChance7"] = { type = "Suffix", affix = "of the Citadel", "+(14-15)% Chance to Block", statOrder = { 2254 }, level = 86, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(14-15)% Chance to Block" }, } },
- ["AdditionalShieldBlockChance1"] = { type = "Suffix", affix = "of the Essence", "+(1-2)% Chance to Block", statOrder = { 2254 }, level = 42, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(1-2)% Chance to Block" }, } },
- ["AdditionalShieldBlockChance2"] = { type = "Suffix", affix = "of the Essence", "+(3-4)% Chance to Block", statOrder = { 2254 }, level = 58, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-4)% Chance to Block" }, } },
- ["AdditionalShieldBlockChance3"] = { type = "Suffix", affix = "of the Essence", "+(5-6)% Chance to Block", statOrder = { 2254 }, level = 74, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(5-6)% Chance to Block" }, } },
- ["AdditionalShieldBlockChance4"] = { type = "Suffix", affix = "of the Essence", "+(7-8)% Chance to Block", statOrder = { 2254 }, level = 82, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(7-8)% Chance to Block" }, } },
- ["PhysicalDamageTakenAsFirePercentWarbands"] = { type = "Prefix", affix = "Redblade", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } },
- ["ChanceToAvoidIgniteEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 42, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(43-46)% chance to Avoid being Ignited" }, } },
- ["ChanceToAvoidIgniteEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 58, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(47-50)% chance to Avoid being Ignited" }, } },
- ["ChanceToAvoidIgniteEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 74, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-55)% chance to Avoid being Ignited" }, } },
- ["ChanceToAvoidIgniteEssence7_"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 82, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(56-60)% chance to Avoid being Ignited" }, } },
- ["ChanceToBlockProjectileAttacks1_"] = { type = "Suffix", affix = "of Deflection", "+(1-2)% chance to Block Projectile Attack Damage", statOrder = { 2469 }, level = 8, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(1-2)% chance to Block Projectile Attack Damage" }, } },
- ["ChanceToBlockProjectileAttacks2"] = { type = "Suffix", affix = "of Protection", "+(3-4)% chance to Block Projectile Attack Damage", statOrder = { 2469 }, level = 19, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(3-4)% chance to Block Projectile Attack Damage" }, } },
- ["ChanceToBlockProjectileAttacks3"] = { type = "Suffix", affix = "of Cover", "+(5-6)% chance to Block Projectile Attack Damage", statOrder = { 2469 }, level = 30, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(5-6)% chance to Block Projectile Attack Damage" }, } },
- ["ChanceToBlockProjectileAttacks4"] = { type = "Suffix", affix = "of Asylum", "+(7-8)% chance to Block Projectile Attack Damage", statOrder = { 2469 }, level = 55, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(7-8)% chance to Block Projectile Attack Damage" }, } },
- ["ChanceToBlockProjectileAttacks5_"] = { type = "Suffix", affix = "of Refuge", "+(9-10)% chance to Block Projectile Attack Damage", statOrder = { 2469 }, level = 70, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(9-10)% chance to Block Projectile Attack Damage" }, } },
- ["ChanceToBlockProjectileAttacks6"] = { type = "Suffix", affix = "of Sanctuary", "+(11-12)% chance to Block Projectile Attack Damage", statOrder = { 2469 }, level = 81, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(11-12)% chance to Block Projectile Attack Damage" }, } },
- ["AllDamageMasterVendorItem"] = { type = "Prefix", affix = "Leo's", "(5-15)% increased Damage", statOrder = { 1196 }, level = 1, group = "AllDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(5-15)% increased Damage" }, } },
- ["ReducedManaReservationCostEssence4"] = { type = "Suffix", affix = "of the Essence", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 42, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "4% increased Mana Reservation Efficiency of Skills" }, } },
- ["ReducedManaReservationCostEssence5"] = { type = "Suffix", affix = "of the Essence", "6% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 58, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "6% increased Mana Reservation Efficiency of Skills" }, } },
- ["ReducedManaReservationCostEssence6"] = { type = "Suffix", affix = "of the Essence", "8% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 74, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "8% increased Mana Reservation Efficiency of Skills" }, } },
- ["ReducedManaReservationCostEssence7"] = { type = "Suffix", affix = "of the Essence", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 82, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "10% increased Mana Reservation Efficiency of Skills" }, } },
- ["ManaReservationEfficiencyEssence4"] = { type = "Suffix", affix = "of the Essence", "(3-4)% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 42, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(3-4)% increased Mana Reservation Efficiency of Skills" }, } },
- ["ManaReservationEfficiencyEssence5__"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 58, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(5-6)% increased Mana Reservation Efficiency of Skills" }, } },
- ["ManaReservationEfficiencyEssence6_"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 74, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(7-8)% increased Mana Reservation Efficiency of Skills" }, } },
- ["ManaReservationEfficiencyEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 82, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(9-10)% increased Mana Reservation Efficiency of Skills" }, } },
- ["ReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "18% reduced Attribute Requirements", statOrder = { 1080 }, level = 36, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 1000, 850, 650, 750, 450, 550, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "18% reduced Attribute Requirements" }, } },
- ["ReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "32% reduced Attribute Requirements", statOrder = { 1080 }, level = 60, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 1000, 850, 650, 750, 450, 550, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "32% reduced Attribute Requirements" }, } },
- ["LightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 1438, 2505 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "ring", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [803737631] = { "+(10-20) to Accuracy Rating" }, } },
- ["LightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 1438, 2505 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "ring", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [803737631] = { "+(21-40) to Accuracy Rating" }, } },
- ["LightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "(16-20)% increased Global Accuracy Rating", "15% increased Light Radius", statOrder = { 1439, 2505 }, level = 30, group = "LightRadiusAndAccuracyPercent", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [624954515] = { "(16-20)% increased Global Accuracy Rating" }, } },
- ["LightRadiusAndAccuracyNew1"] = { type = "Suffix", affix = "of Shining", "(9-11)% increased Global Accuracy Rating", "5% increased Light Radius", statOrder = { 1439, 2505 }, level = 8, group = "LightRadiusAndAccuracyPercent", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [624954515] = { "(9-11)% increased Global Accuracy Rating" }, } },
- ["LightRadiusAndAccuracyNew2"] = { type = "Suffix", affix = "of Light", "(12-15)% increased Global Accuracy Rating", "10% increased Light Radius", statOrder = { 1439, 2505 }, level = 15, group = "LightRadiusAndAccuracyPercent", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [624954515] = { "(12-15)% increased Global Accuracy Rating" }, } },
- ["LocalLightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 2029, 2505 }, level = 8, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [691932474] = { "+(10-20) to Accuracy Rating" }, } },
- ["LocalLightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 2029, 2505 }, level = 15, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [691932474] = { "+(21-40) to Accuracy Rating" }, } },
- ["LocalLightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "(16-20)% increased Global Accuracy Rating", "15% increased Light Radius", statOrder = { 1439, 2505 }, level = 30, group = "LocalLightRadiusAndAccuracyPercent", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [624954515] = { "(16-20)% increased Global Accuracy Rating" }, } },
- ["LocalLightRadiusAndAccuracyNew1_"] = { type = "Suffix", affix = "of Shining", "(9-11)% increased Global Accuracy Rating", "5% increased Light Radius", statOrder = { 1439, 2505 }, level = 8, group = "LocalLightRadiusAndAccuracyPercent", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [624954515] = { "(9-11)% increased Global Accuracy Rating" }, } },
- ["LocalLightRadiusAndAccuracyNew2"] = { type = "Suffix", affix = "of Light", "(12-15)% increased Global Accuracy Rating", "10% increased Light Radius", statOrder = { 1439, 2505 }, level = 15, group = "LocalLightRadiusAndAccuracyPercent", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [624954515] = { "(12-15)% increased Global Accuracy Rating" }, } },
- ["LocalIncreasedMeleeWeaponRangeEssence5"] = { type = "Suffix", affix = "of the Essence", "+0.1 metres to Weapon Range", statOrder = { 2750 }, level = 58, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.1 metres to Weapon Range" }, } },
- ["LocalIncreasedMeleeWeaponRangeEssence6"] = { type = "Suffix", affix = "of the Essence", "+0.2 metres to Weapon Range", statOrder = { 2750 }, level = 74, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } },
- ["LocalIncreasedMeleeWeaponRangeEssence7"] = { type = "Suffix", affix = "of the Essence", "+0.3 metres to Weapon Range", statOrder = { 2750 }, level = 82, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.3 metres to Weapon Range" }, } },
- ["GainLifeOnBlock1"] = { type = "Suffix", affix = "of Repairing", "(5-15) Life gained when you Block", statOrder = { 1762 }, level = 11, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(5-15) Life gained when you Block" }, } },
- ["GainLifeOnBlock2_"] = { type = "Suffix", affix = "of Resurgence", "(16-25) Life gained when you Block", statOrder = { 1762 }, level = 22, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(16-25) Life gained when you Block" }, } },
- ["GainLifeOnBlock3"] = { type = "Suffix", affix = "of Renewal", "(26-40) Life gained when you Block", statOrder = { 1762 }, level = 36, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(26-40) Life gained when you Block" }, } },
- ["GainLifeOnBlock4"] = { type = "Suffix", affix = "of Revival", "(41-60) Life gained when you Block", statOrder = { 1762 }, level = 48, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(41-60) Life gained when you Block" }, } },
- ["GainLifeOnBlock5"] = { type = "Suffix", affix = "of Rebounding", "(61-85) Life gained when you Block", statOrder = { 1762 }, level = 60, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(61-85) Life gained when you Block" }, } },
- ["GainLifeOnBlock6_"] = { type = "Suffix", affix = "of Revitalization", "(86-100) Life gained when you Block", statOrder = { 1762 }, level = 75, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(86-100) Life gained when you Block" }, } },
- ["GainManaOnBlock1"] = { type = "Suffix", affix = "of Redirection", "(4-12) Mana gained when you Block", statOrder = { 1763 }, level = 15, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(4-12) Mana gained when you Block" }, } },
- ["GainManaOnBlock2"] = { type = "Suffix", affix = "of Transformation", "(13-21) Mana gained when you Block", statOrder = { 1763 }, level = 32, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(13-21) Mana gained when you Block" }, } },
- ["GainManaOnBlock3"] = { type = "Suffix", affix = "of Conservation", "(22-30) Mana gained when you Block", statOrder = { 1763 }, level = 58, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(22-30) Mana gained when you Block" }, } },
- ["GainManaOnBlock4"] = { type = "Suffix", affix = "of Utilisation", "(31-39) Mana gained when you Block", statOrder = { 1763 }, level = 75, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(31-39) Mana gained when you Block" }, } },
- ["FishingLineStrength"] = { type = "Prefix", affix = "Filigree", "(20-40)% increased Fishing Line Strength", statOrder = { 2849 }, level = 1, group = "FishingLineStrength", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1842038569] = { "(20-40)% increased Fishing Line Strength" }, } },
- ["FishingPoolConsumption"] = { type = "Prefix", affix = "Calming", "(15-30)% reduced Fishing Pool Consumption", statOrder = { 2850 }, level = 1, group = "FishingPoolConsumption", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1550221644] = { "(15-30)% reduced Fishing Pool Consumption" }, } },
- ["FishingLureType"] = { type = "Prefix", affix = "Alluring", "Rhoa Feather Lure", statOrder = { 2851 }, level = 1, group = "FishingLureType", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3360430812] = { "Rhoa Feather Lure" }, } },
- ["FishingHookType"] = { type = "Suffix", affix = "of Snaring", "Karui Stone Hook", statOrder = { 2852 }, level = 1, group = "FishingHookType", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2054162825] = { "Karui Stone Hook" }, } },
- ["FishingCastDistance"] = { type = "Suffix", affix = "of Flight", "(30-50)% increased Fishing Range", statOrder = { 2853 }, level = 1, group = "FishingCastDistance", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [170497091] = { "(30-50)% increased Fishing Range" }, } },
- ["FishingQuantity"] = { type = "Suffix", affix = "of Fascination", "(15-20)% increased Quantity of Fish Caught", statOrder = { 2854 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3802667447] = { "(15-20)% increased Quantity of Fish Caught" }, } },
- ["FishingRarity"] = { type = "Suffix", affix = "of Bounty", "(25-40)% increased Rarity of Fish Caught", statOrder = { 2855 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "(25-40)% increased Rarity of Fish Caught" }, } },
- ["ChanceToDodge1"] = { type = "Suffix", affix = "of Mist", "+3% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 35, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+3% chance to Suppress Spell Damage" }, } },
- ["ChanceToDodge2"] = { type = "Suffix", affix = "of Haze", "+4% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 62, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+4% chance to Suppress Spell Damage" }, } },
- ["ChanceToDodge3"] = { type = "Suffix", affix = "of Fog", "+6% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 78, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+6% chance to Suppress Spell Damage" }, } },
- ["ChanceToDodgeEssence4"] = { type = "Suffix", affix = "of the Essence", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 42, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, } },
- ["ChanceToDodgeEssence5"] = { type = "Suffix", affix = "of the Essence", "+(7-9)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 58, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(7-9)% chance to Suppress Spell Damage" }, } },
- ["ChanceToDodgeEssence6"] = { type = "Suffix", affix = "of the Essence", "+(10-12)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 74, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(10-12)% chance to Suppress Spell Damage" }, } },
- ["ChanceToDodgeEssence7"] = { type = "Suffix", affix = "of the Essence", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 82, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(13-15)% chance to Suppress Spell Damage" }, } },
- ["ChanceToDodgeSpells1"] = { type = "Suffix", affix = "of Prayers", "+3% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 35, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+3% chance to Suppress Spell Damage" }, } },
- ["ChanceToDodgeSpells2"] = { type = "Suffix", affix = "of Invocations", "+4% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 62, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+4% chance to Suppress Spell Damage" }, } },
- ["ChanceToDodgeSpells3"] = { type = "Suffix", affix = "of Incantations", "+6% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 78, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+6% chance to Suppress Spell Damage" }, } },
- ["ChanceToDodgeSpellsEssence5"] = { type = "Suffix", affix = "of the Essence", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, } },
- ["ChanceToDodgeSpellsEssence6"] = { type = "Suffix", affix = "of the Essence", "+(7-9)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(7-9)% chance to Suppress Spell Damage" }, } },
- ["ChanceToDodgeSpellsEssence7"] = { type = "Suffix", affix = "of the Essence", "+(10-12)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(10-12)% chance to Suppress Spell Damage" }, } },
- ["ChaosResistanceWhileUsingFlaskEssence1"] = { type = "Suffix", affix = "of the Essence", "+50% to Chaos Resistance during any Flask Effect", statOrder = { 3306 }, level = 63, group = "ChaosResistanceWhileUsingFlask", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+50% to Chaos Resistance during any Flask Effect" }, } },
- ["SpellBlockPercentage1__"] = { type = "Suffix", affix = "of the Barrier", "(4-6)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 30, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(4-6)% Chance to Block Spell Damage" }, } },
- ["SpellBlockPercentage2"] = { type = "Suffix", affix = "of the Bulwark", "(7-9)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 52, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(7-9)% Chance to Block Spell Damage" }, } },
- ["SpellBlockPercentage3_"] = { type = "Suffix", affix = "of the Barricade", "(10-12)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 71, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(10-12)% Chance to Block Spell Damage" }, } },
- ["SpellBlockPercentage4_"] = { type = "Suffix", affix = "of the Bastion", "(13-15)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 84, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(13-15)% Chance to Block Spell Damage" }, } },
- ["LocalIncreasedBlockPercentage1"] = { type = "Prefix", affix = "Steadfast", "(40-45)% increased Chance to Block", statOrder = { 95 }, level = 2, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(40-45)% increased Chance to Block" }, } },
- ["LocalIncreasedBlockPercentage2"] = { type = "Prefix", affix = "Unrelenting", "(46-51)% increased Chance to Block", statOrder = { 95 }, level = 15, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(46-51)% increased Chance to Block" }, } },
- ["LocalIncreasedBlockPercentage3"] = { type = "Prefix", affix = "Adamant", "(52-57)% increased Chance to Block", statOrder = { 95 }, level = 35, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(52-57)% increased Chance to Block" }, } },
- ["LocalIncreasedBlockPercentage4"] = { type = "Prefix", affix = "Warded", "(58-63)% increased Chance to Block", statOrder = { 95 }, level = 48, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(58-63)% increased Chance to Block" }, } },
- ["LocalIncreasedBlockPercentage5"] = { type = "Prefix", affix = "Unwavering", "(64-69)% increased Chance to Block", statOrder = { 95 }, level = 61, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(64-69)% increased Chance to Block" }, } },
- ["LocalIncreasedBlockPercentage6"] = { type = "Prefix", affix = "Enduring", "(70-75)% increased Chance to Block", statOrder = { 95 }, level = 77, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(70-75)% increased Chance to Block" }, } },
- ["LocalIncreasedBlockPercentage7"] = { type = "Prefix", affix = "Unyielding", "(76-81)% increased Chance to Block", statOrder = { 95 }, level = 86, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(76-81)% increased Chance to Block" }, } },
- ["ShieldSpellBlockPercentage1"] = { type = "Prefix", affix = "Mystic", "(4-5)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 16, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(4-5)% Chance to Block Spell Damage" }, } },
- ["ShieldSpellBlockPercentage2"] = { type = "Prefix", affix = "Clairvoyant", "(6-7)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 28, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(6-7)% Chance to Block Spell Damage" }, } },
- ["ShieldSpellBlockPercentage3"] = { type = "Prefix", affix = "Enigmatic", "(8-9)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 40, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(8-9)% Chance to Block Spell Damage" }, } },
- ["ShieldSpellBlockPercentage4"] = { type = "Prefix", affix = "Enlightened", "(10-11)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 55, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(10-11)% Chance to Block Spell Damage" }, } },
- ["ShieldSpellBlockPercentage5"] = { type = "Prefix", affix = "Seer's", "(12-13)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 66, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(12-13)% Chance to Block Spell Damage" }, } },
- ["ShieldSpellBlockPercentage6"] = { type = "Prefix", affix = "Oracle's", "(14-15)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 77, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(14-15)% Chance to Block Spell Damage" }, } },
- ["LocalIncreaseSocketedSupportGemLevelIntMasterVendorItem"] = { type = "Prefix", affix = "Catarina's", "+1 to Level of Socketed Support Gems", statOrder = { 194 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [4154259475] = { "+1 to Level of Socketed Support Gems" }, } },
- ["IncreasedChaosDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Chaos Damage", statOrder = { 1390 }, level = 58, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(23-26)% increased Chaos Damage" }, } },
- ["IncreasedChaosDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Chaos Damage", statOrder = { 1390 }, level = 74, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-30)% increased Chaos Damage" }, } },
- ["IncreasedChaosDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Chaos Damage", statOrder = { 1390 }, level = 82, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(31-34)% increased Chaos Damage" }, } },
- ["IncreasedLifeLeechRateEssence1"] = { type = "Suffix", affix = "of the Essence", "150% increased total Recovery per second from Life Leech", statOrder = { 2162 }, level = 63, group = "IncreasedLifeLeechRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "150% increased total Recovery per second from Life Leech" }, } },
- ["ChaosLeechedAsLifeEssence1_"] = { type = "Suffix", affix = "of the Essence", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1687 }, level = 63, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.5% of Chaos Damage Leeched as Life" }, } },
- ["ReduceGlobalFlatManaCostStrIntMasterVendor"] = { type = "Prefix", affix = "Elreon's", "-(8-4) to Total Mana Cost of Skills", statOrder = { 1896 }, level = 1, group = "IncreaseManaCostFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3736589033] = { "-(8-4) to Total Mana Cost of Skills" }, } },
- ["LifeLeechSpeedDexIntMasterVendorItem"] = { type = "Prefix", affix = "Vorici's", "(20-40)% increased total Recovery per second from Life Leech", statOrder = { 2162 }, level = 1, group = "LifeLeechSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "(20-40)% increased total Recovery per second from Life Leech" }, } },
- ["SocketedGemQualityStrMasterVendorItem"] = { type = "Prefix", affix = "Haku's", "+(3-6)% to Quality of Socketed Support Gems", statOrder = { 210 }, level = 1, group = "IncreaseSocketedSupportGemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [1328548975] = { "+(3-6)% to Quality of Socketed Support Gems" }, } },
- ["BleedOnHitGainedDexMasterVendorItem"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrder = { 2486 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1401349154] = { "25% chance to cause Bleeding on Hit" }, } },
- ["BleedOnHitGainedDexMasterVendorItemUpdated_"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrder = { 2488 }, level = 1, group = "CausesBleedingChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } },
- ["AlwaysHitsStrDexMasterVendorItem"] = { type = "Prefix", affix = "Vagan's", "Hits can't be Evaded", statOrder = { 2048 }, level = 1, group = "AlwaysHits", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Hits can't be Evaded" }, } },
- ["MapInvasionBossMasterVendorItem"] = { type = "Prefix", affix = "Kirac's", "Area is inhabited by an additional Invasion Boss", statOrder = { 2625 }, level = 1, group = "MapExtraInvasionBosses", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [223497523] = { "" }, [3629113735] = { "" }, [279246355] = { "Area is inhabited by an additional Invasion Boss" }, [2390685262] = { "" }, } },
- ["LightningPenetrationWarbands"] = { type = "Prefix", affix = "Turncoat's", "Damage Penetrates (6-10)% Lightning Resistance", statOrder = { 2989 }, level = 60, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (6-10)% Lightning Resistance" }, } },
- ["LightningResistancePenetrationEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2989 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 5% Lightning Resistance" }, } },
- ["LightningResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2989 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } },
- ["LightningResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2989 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } },
- ["LightningResistancePenetrationEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2989 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } },
- ["LightningResistancePenetrationTwoHandEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Lightning Resistance", statOrder = { 2989 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (9-10)% Lightning Resistance" }, } },
- ["LightningResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Lightning Resistance", statOrder = { 2989 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (11-12)% Lightning Resistance" }, } },
- ["LightningResistancePenetrationTwoHandEssence3_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Lightning Resistance", statOrder = { 2989 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (13-14)% Lightning Resistance" }, } },
- ["LightningResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Lightning Resistance", statOrder = { 2989 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (15-16)% Lightning Resistance" }, } },
- ["FireResistancePenetrationWarbands"] = { type = "Prefix", affix = "Betrayer's", "Damage Penetrates (6-10)% Fire Resistance", statOrder = { 2986 }, level = 60, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (6-10)% Fire Resistance" }, } },
- ["FireResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Fire Resistance", statOrder = { 2986 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } },
- ["FireResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Fire Resistance", statOrder = { 2986 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 5% Fire Resistance" }, } },
- ["FireResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Fire Resistance", statOrder = { 2986 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } },
- ["FireResistancePenetrationEssence4___"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Fire Resistance", statOrder = { 2986 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } },
- ["FireResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Fire Resistance", statOrder = { 2986 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } },
- ["FireResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Fire Resistance", statOrder = { 2986 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (7-8)% Fire Resistance" }, } },
- ["FireResistancePenetrationTwoHandEssence2_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Fire Resistance", statOrder = { 2986 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (9-10)% Fire Resistance" }, } },
- ["FireResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Fire Resistance", statOrder = { 2986 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (11-12)% Fire Resistance" }, } },
- ["FireResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Fire Resistance", statOrder = { 2986 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (13-14)% Fire Resistance" }, } },
- ["FireResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Fire Resistance", statOrder = { 2986 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (15-16)% Fire Resistance" }, } },
- ["ColdResistancePenetrationWarbands"] = { type = "Prefix", affix = "Deceiver's", "Damage Penetrates (6-10)% Cold Resistance", statOrder = { 2988 }, level = 60, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (6-10)% Cold Resistance" }, } },
- ["ColdResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 3% Cold Resistance", statOrder = { 2988 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 3% Cold Resistance" }, } },
- ["ColdResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Cold Resistance", statOrder = { 2988 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, } },
- ["ColdResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Cold Resistance", statOrder = { 2988 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 5% Cold Resistance" }, } },
- ["ColdResistancePenetrationEssence4_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Cold Resistance", statOrder = { 2988 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } },
- ["ColdResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Cold Resistance", statOrder = { 2988 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } },
- ["ColdResistancePenetrationEssence6_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Cold Resistance", statOrder = { 2988 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } },
- ["ColdResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (5-6)% Cold Resistance", statOrder = { 2988 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-6)% Cold Resistance" }, } },
- ["ColdResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Cold Resistance", statOrder = { 2988 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (7-8)% Cold Resistance" }, } },
- ["ColdResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Cold Resistance", statOrder = { 2988 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (9-10)% Cold Resistance" }, } },
- ["ColdResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Cold Resistance", statOrder = { 2988 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (11-12)% Cold Resistance" }, } },
- ["ColdResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Cold Resistance", statOrder = { 2988 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (13-14)% Cold Resistance" }, } },
- ["ColdResistancePenetrationTwoHandEssence6__"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Cold Resistance", statOrder = { 2988 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (15-16)% Cold Resistance" }, } },
- ["ChanceToAvoidElementalStatusAilments1"] = { type = "Suffix", affix = "of Stoicism", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 23, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(16-20)% chance to Avoid Elemental Ailments" }, } },
- ["ChanceToAvoidElementalStatusAilments2"] = { type = "Suffix", affix = "of Resolve", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 41, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(21-25)% chance to Avoid Elemental Ailments" }, } },
- ["ChanceToAvoidElementalStatusAilments3__"] = { type = "Suffix", affix = "of Fortitude", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 57, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(26-30)% chance to Avoid Elemental Ailments" }, } },
- ["ChanceToAvoidElementalStatusAilments4"] = { type = "Suffix", affix = "of Will", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 73, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(31-35)% chance to Avoid Elemental Ailments" }, } },
- ["ChanceToAvoidElementalStatusAilmentsEssence1"] = { type = "Suffix", affix = "of the Essence", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 42, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(16-20)% chance to Avoid Elemental Ailments" }, } },
- ["ChanceToAvoidElementalStatusAilmentsEssence2"] = { type = "Suffix", affix = "of the Essence", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 58, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(21-25)% chance to Avoid Elemental Ailments" }, } },
- ["ChanceToAvoidElementalStatusAilmentsEssence3"] = { type = "Suffix", affix = "of the Essence", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 74, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(26-30)% chance to Avoid Elemental Ailments" }, } },
- ["ChanceToAvoidElementalStatusAilmentsEssence4"] = { type = "Suffix", affix = "of the Essence", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 82, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(31-35)% chance to Avoid Elemental Ailments" }, } },
- ["AttackAndCastSpeed1"] = { type = "Suffix", affix = "of Zeal", "(3-4)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 15, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(3-4)% increased Attack and Cast Speed" }, } },
- ["AttackAndCastSpeed2"] = { type = "Suffix", affix = "of Fervour", "(5-6)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 45, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-6)% increased Attack and Cast Speed" }, } },
- ["AttackAndCastSpeed3"] = { type = "Suffix", affix = "of Haste", "(7-8)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 70, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(7-8)% increased Attack and Cast Speed" }, } },
- ["LifeLeechPermyriadLocal1"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 50, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadLocal2"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 60, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadLocal3"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 70, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(1-1.2)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadLocalSuffix1"] = { type = "Suffix", affix = "of the Remora", "(2-2.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 20, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(2-2.4)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadLocalSuffix2"] = { type = "Suffix", affix = "of the Lamprey", "(2.6-3.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 45, group = "LifeLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(2.6-3.2)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadLocalSuffix3"] = { type = "Suffix", affix = "of the Vampire", "(3.5-4.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 70, group = "LifeLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(3.5-4.5)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadLocalEssence1"] = { type = "Prefix", affix = "Essences", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.5-0.7)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadLocalEssence2"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 10, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadLocalEssence3"] = { type = "Prefix", affix = "Essences", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 26, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.7-0.9)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadLocalEssence4"] = { type = "Prefix", affix = "Essences", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 42, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.8-1)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadLocalEssence5"] = { type = "Prefix", affix = "Essences", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 58, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.9-1.1)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadLocalEssence6"] = { type = "Prefix", affix = "Essences", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 74, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(1-1.2)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadLocalEssence7"] = { type = "Prefix", affix = "Essences", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 82, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(1.1-1.3)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadLocalSuffixEssence1"] = { type = "Suffix", affix = "of the Essence", "(2-2.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(2-2.2)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadLocalSuffixEssence2"] = { type = "Suffix", affix = "of the Essence", "(2.3-2.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 10, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(2.3-2.4)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadLocalSuffixEssence3"] = { type = "Suffix", affix = "of the Essence", "(2.5-2.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 26, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(2.5-2.8)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadLocalSuffixEssence4"] = { type = "Suffix", affix = "of the Essence", "(2.9-3.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 42, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(2.9-3.2)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadLocalSuffixEssence5"] = { type = "Suffix", affix = "of the Essence", "(3.3-3.6)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 58, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(3.3-3.6)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadLocalSuffixEssence6"] = { type = "Suffix", affix = "of the Essence", "(3.7-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 74, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(3.7-4)% of Physical Attack Damage Leeched as Life" }, } },
- ["LifeLeechPermyriadLocalSuffixEssence7"] = { type = "Suffix", affix = "of the Essence", "(4.1-4.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 82, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(4.1-4.4)% of Physical Attack Damage Leeched as Life" }, } },
- ["ManaLeechPermyriadLocal1"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1706 }, level = 50, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Mana" }, } },
- ["ManaLeechPermyriadLocalSuffix1"] = { type = "Suffix", affix = "of Thirst", "(2.6-3.2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1706 }, level = 50, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(2.6-3.2)% of Physical Attack Damage Leeched as Mana" }, } },
- ["AttackDamagePercent1"] = { type = "Prefix", affix = "Bully's", "(4-8)% increased Attack Damage", statOrder = { 1203 }, level = 4, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(4-8)% increased Attack Damage" }, } },
- ["AttackDamagePercent2"] = { type = "Prefix", affix = "Thug's", "(9-16)% increased Attack Damage", statOrder = { 1203 }, level = 15, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(9-16)% increased Attack Damage" }, } },
- ["AttackDamagePercent3"] = { type = "Prefix", affix = "Brute's", "(17-24)% increased Attack Damage", statOrder = { 1203 }, level = 30, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(17-24)% increased Attack Damage" }, } },
- ["AttackDamagePercent4"] = { type = "Prefix", affix = "Assailant's", "(25-29)% increased Attack Damage", statOrder = { 1203 }, level = 60, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(25-29)% increased Attack Damage" }, } },
- ["AttackDamagePercent5"] = { type = "Prefix", affix = "Predator's", "(30-34)% increased Attack Damage", statOrder = { 1203 }, level = 81, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(30-34)% increased Attack Damage" }, } },
- ["SummonTotemCastSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(21-25)% increased Totem Placement speed", statOrder = { 2583 }, level = 42, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(21-25)% increased Totem Placement speed" }, } },
- ["SummonTotemCastSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "(26-30)% increased Totem Placement speed", statOrder = { 2583 }, level = 58, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(26-30)% increased Totem Placement speed" }, } },
- ["SummonTotemCastSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "(31-35)% increased Totem Placement speed", statOrder = { 2583 }, level = 74, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(31-35)% increased Totem Placement speed" }, } },
- ["SummonTotemCastSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(36-45)% increased Totem Placement speed", statOrder = { 2583 }, level = 82, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(36-45)% increased Totem Placement speed" }, } },
- ["StunAvoidance1"] = { type = "Suffix", affix = "of Composure", "(11-13)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(11-13)% chance to Avoid being Stunned" }, } },
- ["StunAvoidance2"] = { type = "Suffix", affix = "of Surefootedness", "(14-16)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(14-16)% chance to Avoid being Stunned" }, } },
- ["StunAvoidance3"] = { type = "Suffix", affix = "of Persistence", "(17-19)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(17-19)% chance to Avoid being Stunned" }, } },
- ["StunAvoidance4"] = { type = "Suffix", affix = "of Relentlessness", "(20-22)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(20-22)% chance to Avoid being Stunned" }, } },
- ["StunAvoidanceEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 58, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(23-26)% chance to Avoid being Stunned" }, } },
- ["StunAvoidanceEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 74, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(27-30)% chance to Avoid being Stunned" }, } },
- ["StunAvoidanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-44)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 82, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(31-44)% chance to Avoid being Stunned" }, } },
- ["IncreasedStunThresholdEssence5"] = { type = "Suffix", affix = "of the Essence", "(31-39)% increased Stun Threshold", statOrder = { 3277 }, level = 58, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(31-39)% increased Stun Threshold" }, } },
- ["IncreasedStunThresholdEssence6"] = { type = "Suffix", affix = "of the Essence", "(40-45)% increased Stun Threshold", statOrder = { 3277 }, level = 74, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(40-45)% increased Stun Threshold" }, } },
- ["IncreasedStunThresholdEssence7"] = { type = "Suffix", affix = "of the Essence", "(46-60)% increased Stun Threshold", statOrder = { 3277 }, level = 82, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(46-60)% increased Stun Threshold" }, } },
- ["SpellAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage to Spells", statOrder = { 1409 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (1-2) to (3-4) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamage2_"] = { type = "Prefix", affix = "Smouldering", "Adds (6-8) to (12-14) Fire Damage to Spells", statOrder = { 1409 }, level = 11, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (6-8) to (12-14) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (10-12) to (19-23) Fire Damage to Spells", statOrder = { 1409 }, level = 18, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-12) to (19-23) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-18) to (27-31) Fire Damage to Spells", statOrder = { 1409 }, level = 26, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-18) to (27-31) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (19-25) to (37-44) Fire Damage to Spells", statOrder = { 1409 }, level = 33, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-25) to (37-44) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (24-33) to (48-57) Fire Damage to Spells", statOrder = { 1409 }, level = 42, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (24-33) to (48-57) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (31-42) to (64-73) Fire Damage to Spells", statOrder = { 1409 }, level = 51, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (31-42) to (64-73) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (40-52) to (79-91) Fire Damage to Spells", statOrder = { 1409 }, level = 62, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (40-52) to (79-91) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (49-66) to (98-115) Fire Damage to Spells", statOrder = { 1409 }, level = 74, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (49-66) to (98-115) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (45-54) to (80-90) Fire Damage to Spells", statOrder = { 1409 }, level = 82, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (45-54) to (80-90) Fire Damage to Spells" }, } },
- ["SpellAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold Damage to Spells", statOrder = { 1410 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds 1 to (2-3) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (5-7) to (10-12) Cold Damage to Spells", statOrder = { 1410 }, level = 11, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (5-7) to (10-12) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (8-10) to (16-18) Cold Damage to Spells", statOrder = { 1410 }, level = 18, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (8-10) to (16-18) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (22-25) Cold Damage to Spells", statOrder = { 1410 }, level = 26, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (11-15) to (22-25) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (16-20) to (30-36) Cold Damage to Spells", statOrder = { 1410 }, level = 33, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (16-20) to (30-36) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamage6_"] = { type = "Prefix", affix = "Frozen", "Adds (20-26) to (40-46) Cold Damage to Spells", statOrder = { 1410 }, level = 42, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (20-26) to (40-46) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (26-35) to (51-60) Cold Damage to Spells", statOrder = { 1410 }, level = 51, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (26-35) to (51-60) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (33-43) to (64-75) Cold Damage to Spells", statOrder = { 1410 }, level = 62, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (33-43) to (64-75) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (41-54) to (81-93) Cold Damage to Spells", statOrder = { 1410 }, level = 74, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (41-54) to (81-93) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (35-45) to (66-74) Cold Damage to Spells", statOrder = { 1410 }, level = 82, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (35-45) to (66-74) Cold Damage to Spells" }, } },
- ["SpellAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-5) Lightning Damage to Spells", statOrder = { 1411 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (4-5) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (21-22) Lightning Damage to Spells", statOrder = { 1411 }, level = 11, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (21-22) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (33-35) Lightning Damage to Spells", statOrder = { 1411 }, level = 18, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (33-35) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (46-48) Lightning Damage to Spells", statOrder = { 1411 }, level = 26, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (46-48) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (2-5) to (64-68) Lightning Damage to Spells", statOrder = { 1411 }, level = 33, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (64-68) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (2-7) to (84-88) Lightning Damage to Spells", statOrder = { 1411 }, level = 42, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-7) to (84-88) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-9) to (109-115) Lightning Damage to Spells", statOrder = { 1411 }, level = 51, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-9) to (109-115) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (4-11) to (136-144) Lightning Damage to Spells", statOrder = { 1411 }, level = 62, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-11) to (136-144) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (4-14) to (170-179) Lightning Damage to Spells", statOrder = { 1411 }, level = 74, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-14) to (170-179) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-11) to (134-144) Lightning Damage to Spells", statOrder = { 1411 }, level = 82, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-11) to (134-144) Lightning Damage to Spells" }, } },
- ["SpellAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (4-5) Fire Damage to Spells", statOrder = { 1409 }, level = 1, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (1-2) to (4-5) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-11) to (17-19) Fire Damage to Spells", statOrder = { 1409 }, level = 11, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (8-11) to (17-19) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (13-17) to (26-29) Fire Damage to Spells", statOrder = { 1409 }, level = 18, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-17) to (26-29) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (18-23) to (36-42) Fire Damage to Spells", statOrder = { 1409 }, level = 26, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (18-23) to (36-42) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (25-33) to (50-59) Fire Damage to Spells", statOrder = { 1409 }, level = 33, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (25-33) to (50-59) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamageTwoHand6_"] = { type = "Prefix", affix = "Scorching", "Adds (32-44) to (65-76) Fire Damage to Spells", statOrder = { 1409 }, level = 42, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (32-44) to (65-76) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (42-56) to (85-99) Fire Damage to Spells", statOrder = { 1409 }, level = 51, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (42-56) to (85-99) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamageTwoHand8"] = { type = "Prefix", affix = "Blasting", "Adds (53-70) to (107-123) Fire Damage to Spells", statOrder = { 1409 }, level = 62, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (53-70) to (107-123) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (66-88) to (132-155) Fire Damage to Spells", statOrder = { 1409 }, level = 74, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (66-88) to (132-155) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamageTwoHandEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (67-81) to (120-135) Fire Damage to Spells", statOrder = { 1409 }, level = 82, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (67-81) to (120-135) Fire Damage to Spells" }, } },
- ["SpellAddedColdDamageTwoHand1_"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage to Spells", statOrder = { 1410 }, level = 1, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (1-2) to (3-4) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (8-10) to (15-18) Cold Damage to Spells", statOrder = { 1410 }, level = 11, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (8-10) to (15-18) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (12-15) to (23-28) Cold Damage to Spells", statOrder = { 1410 }, level = 18, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (12-15) to (23-28) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-22) to (33-38) Cold Damage to Spells", statOrder = { 1410 }, level = 26, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (16-22) to (33-38) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (24-30) to (45-53) Cold Damage to Spells", statOrder = { 1410 }, level = 33, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (24-30) to (45-53) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (30-40) to (59-69) Cold Damage to Spells", statOrder = { 1410 }, level = 42, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (30-40) to (59-69) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (39-52) to (77-90) Cold Damage to Spells", statOrder = { 1410 }, level = 51, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (39-52) to (77-90) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (49-64) to (96-113) Cold Damage to Spells", statOrder = { 1410 }, level = 62, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (49-64) to (96-113) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (61-81) to (120-140) Cold Damage to Spells", statOrder = { 1410 }, level = 74, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (61-81) to (120-140) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (57-66) to (100-111) Cold Damage to Spells", statOrder = { 1410 }, level = 82, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (57-66) to (100-111) Cold Damage to Spells" }, } },
- ["SpellAddedLightningDamageTwoHand1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-7) Lightning Damage to Spells", statOrder = { 1411 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (6-7) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-3) to (32-34) Lightning Damage to Spells", statOrder = { 1411 }, level = 11, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-3) to (32-34) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-4) to (49-52) Lightning Damage to Spells", statOrder = { 1411 }, level = 18, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (49-52) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (2-5) to (69-73) Lightning Damage to Spells", statOrder = { 1411 }, level = 26, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (69-73) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (2-8) to (97-102) Lightning Damage to Spells", statOrder = { 1411 }, level = 33, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-8) to (97-102) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (3-10) to (126-133) Lightning Damage to Spells", statOrder = { 1411 }, level = 42, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-10) to (126-133) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (5-12) to (164-173) Lightning Damage to Spells", statOrder = { 1411 }, level = 51, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-12) to (164-173) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (5-17) to (204-216) Lightning Damage to Spells", statOrder = { 1411 }, level = 62, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-17) to (204-216) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamageTwoHand9_"] = { type = "Prefix", affix = "Electrocuting", "Adds (7-20) to (255-270) Lightning Damage to Spells", statOrder = { 1411 }, level = 74, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (7-20) to (255-270) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (6-16) to (201-216) Lightning Damage to Spells", statOrder = { 1411 }, level = 82, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (6-16) to (201-216) Lightning Damage to Spells" }, } },
- ["LocalAddedChaosDamage1"] = { type = "Prefix", affix = "Malicious", "Adds (56-87) to (105-160) Chaos Damage", statOrder = { 1395 }, level = 83, group = "LocalChaosDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 600, 600, 600, 400, 250, 250, 600, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (56-87) to (105-160) Chaos Damage" }, } },
- ["LocalAddedChaosDamageEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (37-59) to (79-103) Chaos Damage", statOrder = { 1395 }, level = 62, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (37-59) to (79-103) Chaos Damage" }, } },
- ["LocalAddedChaosDamageEssence2__"] = { type = "Prefix", affix = "Essences", "Adds (43-67) to (89-113) Chaos Damage", statOrder = { 1395 }, level = 74, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (43-67) to (89-113) Chaos Damage" }, } },
- ["LocalAddedChaosDamageEssence3"] = { type = "Prefix", affix = "Essences", "Adds (53-79) to (101-131) Chaos Damage", statOrder = { 1395 }, level = 82, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (53-79) to (101-131) Chaos Damage" }, } },
- ["LocalAddedChaosDamageTwoHand1"] = { type = "Prefix", affix = "Malicious", "Adds (98-149) to (183-280) Chaos Damage", statOrder = { 1395 }, level = 83, group = "LocalChaosDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 700, 600, 600, 250, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (98-149) to (183-280) Chaos Damage" }, } },
- ["LocalAddedChaosDamageTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Adds (61-103) to (149-193) Chaos Damage", statOrder = { 1395 }, level = 62, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (61-103) to (149-193) Chaos Damage" }, } },
- ["LocalAddedChaosDamageTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Adds (73-113) to (163-205) Chaos Damage", statOrder = { 1395 }, level = 74, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (73-113) to (163-205) Chaos Damage" }, } },
- ["LocalAddedChaosDamageTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Adds (89-131) to (181-229) Chaos Damage", statOrder = { 1395 }, level = 82, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (89-131) to (181-229) Chaos Damage" }, } },
- ["RarityDuringFlaskEffectWarbands"] = { type = "Prefix", affix = "Brinerot", "30% increased Rarity of Items found during any Flask Effect", statOrder = { 2761 }, level = 1, group = "RarityDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "drop" }, tradeHashes = { [301625329] = { "30% increased Rarity of Items found during any Flask Effect" }, } },
- ["DamageDuringFlaskEffectWarbands"] = { type = "Prefix", affix = "Brinerot", "(20-25)% increased Damage during any Flask Effect", statOrder = { 4087 }, level = 1, group = "DamageDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "damage" }, tradeHashes = { [2947215268] = { "(20-25)% increased Damage during any Flask Effect" }, } },
- ["PierceChanceEssence5"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrder = { 9781 }, level = 1, group = "Quiver1AdditionalPierceOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2125444333] = { "Projectiles Pierce an additional Target" }, } },
- ["PierceChanceEssence6_"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrder = { 9781 }, level = 1, group = "Quiver1AdditionalPierceOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2125444333] = { "Projectiles Pierce an additional Target" }, } },
- ["PierceChanceEssence7"] = { type = "Prefix", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 9782 }, level = 1, group = "Quiver2AdditionalPierceOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3640956958] = { "Projectiles Pierce 2 additional Targets" }, } },
- ["AdditionalPierceEssence5"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce an additional Target", statOrder = { 1795 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } },
- ["AdditionalPierceEssence6_"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce an additional Target", statOrder = { 1795 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } },
- ["AdditionalPierceEssence7"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce 2 additional Targets", statOrder = { 1795 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } },
- ["CannotBePoisonedEssence1"] = { type = "Suffix", affix = "of the Essence", "Cannot be Poisoned", statOrder = { 3374 }, level = 63, group = "CannotBePoisoned", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } },
- ["ChanceToAvoidFireDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Fire Damage from Hits", statOrder = { 3378 }, level = 42, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(6-7)% chance to Avoid Fire Damage from Hits" }, } },
- ["ChanceToAvoidFireDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Fire Damage from Hits", statOrder = { 3378 }, level = 58, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(7-8)% chance to Avoid Fire Damage from Hits" }, } },
- ["ChanceToAvoidFireDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Fire Damage from Hits", statOrder = { 3378 }, level = 74, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(8-9)% chance to Avoid Fire Damage from Hits" }, } },
- ["ChanceToAvoidFireDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3378 }, level = 82, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(9-10)% chance to Avoid Fire Damage from Hits" }, } },
- ["ChanceToAvoidColdDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "(5-6)% chance to Avoid Cold Damage from Hits", statOrder = { 3379 }, level = 26, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(5-6)% chance to Avoid Cold Damage from Hits" }, } },
- ["ChanceToAvoidColdDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Cold Damage from Hits", statOrder = { 3379 }, level = 42, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(6-7)% chance to Avoid Cold Damage from Hits" }, } },
- ["ChanceToAvoidColdDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Cold Damage from Hits", statOrder = { 3379 }, level = 58, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(7-8)% chance to Avoid Cold Damage from Hits" }, } },
- ["ChanceToAvoidColdDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Cold Damage from Hits", statOrder = { 3379 }, level = 74, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(8-9)% chance to Avoid Cold Damage from Hits" }, } },
- ["ChanceToAvoidColdDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3379 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(9-10)% chance to Avoid Cold Damage from Hits" }, } },
- ["ChanceToAvoidLightningDamageEssence2"] = { type = "Suffix", affix = "of the Essence", "(4-5)% chance to Avoid Lightning Damage from Hits", statOrder = { 3380 }, level = 10, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(4-5)% chance to Avoid Lightning Damage from Hits" }, } },
- ["ChanceToAvoidLightningDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "(5-6)% chance to Avoid Lightning Damage from Hits", statOrder = { 3380 }, level = 26, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(5-6)% chance to Avoid Lightning Damage from Hits" }, } },
- ["ChanceToAvoidLightningDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Lightning Damage from Hits", statOrder = { 3380 }, level = 42, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(6-7)% chance to Avoid Lightning Damage from Hits" }, } },
- ["ChanceToAvoidLightningDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Lightning Damage from Hits", statOrder = { 3380 }, level = 58, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(7-8)% chance to Avoid Lightning Damage from Hits" }, } },
- ["ChanceToAvoidLightningDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Lightning Damage from Hits", statOrder = { 3380 }, level = 74, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(8-9)% chance to Avoid Lightning Damage from Hits" }, } },
- ["ChanceToAvoidLightningDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3380 }, level = 82, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(9-10)% chance to Avoid Lightning Damage from Hits" }, } },
- ["QuiverAddedChaosEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (11-15) to (27-33) Chaos Damage to Attacks", statOrder = { 1392 }, level = 62, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (11-15) to (27-33) Chaos Damage to Attacks" }, } },
- ["QuiverAddedChaosEssence2_"] = { type = "Prefix", affix = "Essences", "Adds (17-21) to (37-43) Chaos Damage to Attacks", statOrder = { 1392 }, level = 74, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (17-21) to (37-43) Chaos Damage to Attacks" }, } },
- ["QuiverAddedChaosEssence3__"] = { type = "Prefix", affix = "Essences", "Adds (23-37) to (49-61) Chaos Damage to Attacks", statOrder = { 1392 }, level = 82, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (23-37) to (49-61) Chaos Damage to Attacks" }, } },
- ["PoisonDuration1"] = { type = "Suffix", affix = "of Rot", "(8-12)% increased Poison Duration", statOrder = { 3175 }, level = 30, group = "PoisonDuration", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(8-12)% increased Poison Duration" }, } },
- ["PoisonDuration2"] = { type = "Suffix", affix = "of Putrefaction", "(13-18)% increased Poison Duration", statOrder = { 3175 }, level = 60, group = "PoisonDuration", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(13-18)% increased Poison Duration" }, } },
- ["PoisonDurationEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrder = { 1390, 3175 }, level = 1, group = "PoisonDurationChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(13-18)% increased Poison Duration" }, [736967255] = { "(26-30)% increased Chaos Damage" }, } },
- ["SocketedGemsDealAdditionalFireDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 175 to 225 Added Fire Damage", statOrder = { 561 }, level = 63, group = "SocketedGemsDealAdditionalFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "elemental_damage", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1289910726] = { "Socketed Gems deal 175 to 225 Added Fire Damage" }, } },
- ["SocketedGemsHaveMoreAttackAndCastSpeedEssence1"] = { type = "Suffix", affix = "", "Socketed Gems have 20% more Attack and Cast Speed", statOrder = { 555 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack", "caster", "speed", "gem" }, tradeHashes = { [346351023] = { "Socketed Gems have 20% more Attack and Cast Speed" }, } },
- ["SocketedGemsHaveMoreAttackAndCastSpeedEssenceNew1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 16% more Attack and Cast Speed", statOrder = { 555 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack", "caster", "speed", "gem" }, tradeHashes = { [346351023] = { "Socketed Gems have 16% more Attack and Cast Speed" }, } },
- ["SocketedGemsAddPercentageOfPhysicalAsLightningEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems gain 50% of Physical Damage as extra Lightning Damage", statOrder = { 562 }, level = 63, group = "SocketedGemsAddPercentageOfPhysicalAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "gem" }, tradeHashes = { [1859937391] = { "Socketed Gems gain 50% of Physical Damage as extra Lightning Damage" }, } },
- ["SocketedGemsDealMoreElementalDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Elemental Damage", statOrder = { 558 }, level = 63, group = "SocketedGemsDealMoreElementalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, tradeHashes = { [3835899275] = { "Socketed Gems deal 30% more Elemental Damage" }, } },
- ["ElementalDamageTakenWhileStationaryEssence1"] = { type = "Suffix", affix = "of the Essence", "5% reduced Elemental Damage Taken while stationary", statOrder = { 4317 }, level = 63, group = "ElementalDamageTakenWhileStationary", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [3859593448] = { "5% reduced Elemental Damage Taken while stationary" }, [2936538132] = { "" }, } },
- ["BurningGroundWhileMovingEssence1"] = { type = "Suffix", affix = "of the Essence", "Drops Burning Ground while moving, dealing 2500 Fire Damage per second for 4 seconds", statOrder = { 4314 }, level = 63, group = "BurningGroundWhileMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2876075610] = { "" }, [685387835] = { "" }, [223497523] = { "" }, } },
- ["PhysicalDamageTakenAsColdEssence1"] = { type = "Prefix", affix = "Essences", "15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 63, group = "PhysicalDamageTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "15% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["ReducedDamageFromCriticalStrikesPerEnduranceChargeEssence1"] = { type = "Suffix", affix = "of the Essence", "You take 10% reduced Extra Damage from Critical Strikes per Endurance Charge", statOrder = { 1519 }, level = 63, group = "ReducedDamageFromCriticalStrikesPerEnduranceCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [2380848911] = { "You take 10% reduced Extra Damage from Critical Strikes per Endurance Charge" }, } },
- ["FireDamageAsPortionOfPhysicalDamageEssence1"] = { type = "Prefix", affix = "Essences", "Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 10% of Physical Damage as Extra Fire Damage" }, } },
- ["FireDamageAsPortionOfPhysicalDamageEssence2"] = { type = "Prefix", affix = "Essences", "Gain 15% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 15% of Physical Damage as Extra Fire Damage" }, } },
- ["ChaosDamageOverTimeTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "25% reduced Chaos Damage taken over time", statOrder = { 1953 }, level = 63, group = "ChaosDamageOverTimeTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [3762784591] = { "25% reduced Chaos Damage taken over time" }, } },
- ["SocketedSkillsCriticalChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have +3.5% Critical Strike Chance", statOrder = { 546 }, level = 63, group = "SocketedSkillsCriticalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1681904129] = { "Socketed Gems have +3.5% Critical Strike Chance" }, } },
- ["AttackAndCastSpeedDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "10% increased Attack and Cast Speed during any Flask Effect", statOrder = { 4279 }, level = 63, group = "AttackAndCastSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "caster", "speed" }, tradeHashes = { [614350381] = { "10% increased Attack and Cast Speed during any Flask Effect" }, } },
- ["MovementVelocityDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Movement Speed during any Flask Effect", statOrder = { 3191 }, level = 63, group = "MovementSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "speed" }, tradeHashes = { [304970526] = { "10% increased Movement Speed during any Flask Effect" }, } },
- ["AddedColdDamagePerFrenzyChargeEssence1"] = { type = "Prefix", affix = "Essences", "4 to 7 Added Cold Damage per Frenzy Charge", statOrder = { 4278 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "4 to 7 Added Cold Damage per Frenzy Charge" }, } },
- ["AddedColdDamagePerFrenzyChargeEssenceQuiver1"] = { type = "Prefix", affix = "Essences", "8 to 12 Added Cold Damage per Frenzy Charge", statOrder = { 4278 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "8 to 12 Added Cold Damage per Frenzy Charge" }, } },
- ["AddedFireDamageIfBlockedRecentlyEssence1"] = { type = "Suffix", affix = "of the Essence", "Adds 60 to 100 Fire Damage if you've Blocked Recently", statOrder = { 4280 }, level = 63, group = "AddedFireDamageIfBlockedRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3623716321] = { "Adds 60 to 100 Fire Damage if you've Blocked Recently" }, } },
- ["SocketedSkillAlwaysIgniteEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 50% chance to Ignite", statOrder = { 539 }, level = 63, group = "DisplaySupportedSkillsHaveAChanceToIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3984519770] = { "Socketed Gems have 50% chance to Ignite" }, } },
- ["SocketedSkillDamageOnLowLifeEssence1__"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage while on Low Life", statOrder = { 557 }, level = 63, group = "DisplaySupportedSkillsDealDamageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1235873320] = { "Socketed Gems deal 30% more Damage while on Low Life" }, } },
- ["ElementalPenetrationDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "Damage Penetrates 5% Elemental Resistances during any Flask Effect", statOrder = { 4272 }, level = 63, group = "ElementalPenetrationDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, tradeHashes = { [3392890360] = { "Damage Penetrates 5% Elemental Resistances during any Flask Effect" }, } },
- ["AdditionalPhysicalDamageReductionDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "5% additional Physical Damage Reduction during any Flask Effect", statOrder = { 4273 }, level = 63, group = "AdditionalPhysicalDamageReductionDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "physical" }, tradeHashes = { [2693266036] = { "5% additional Physical Damage Reduction during any Flask Effect" }, } },
- ["ReflectDamageTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "You and your Minions take 40% reduced Reflected Damage", statOrder = { 9881 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3577248251] = { "You and your Minions take 40% reduced Reflected Damage" }, } },
+ ["Strength1"] = { type = "Suffix", affix = "of the Brute", "+(8-12) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(8-12) to Strength" }, } },
+ ["Strength2"] = { type = "Suffix", affix = "of the Wrestler", "+(13-17) to Strength", statOrder = { 1177 }, level = 11, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(13-17) to Strength" }, } },
+ ["Strength3"] = { type = "Suffix", affix = "of the Bear", "+(18-22) to Strength", statOrder = { 1177 }, level = 22, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(18-22) to Strength" }, } },
+ ["Strength4"] = { type = "Suffix", affix = "of the Lion", "+(23-27) to Strength", statOrder = { 1177 }, level = 33, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(23-27) to Strength" }, } },
+ ["Strength5"] = { type = "Suffix", affix = "of the Gorilla", "+(28-32) to Strength", statOrder = { 1177 }, level = 44, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(28-32) to Strength" }, } },
+ ["Strength6"] = { type = "Suffix", affix = "of the Goliath", "+(33-37) to Strength", statOrder = { 1177 }, level = 55, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(33-37) to Strength" }, } },
+ ["Strength7"] = { type = "Suffix", affix = "of the Leviathan", "+(38-42) to Strength", statOrder = { 1177 }, level = 66, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(38-42) to Strength" }, } },
+ ["Strength8"] = { type = "Suffix", affix = "of the Titan", "+(43-50) to Strength", statOrder = { 1177 }, level = 74, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(43-50) to Strength" }, } },
+ ["Strength9"] = { type = "Suffix", affix = "of the Gods", "+(51-55) to Strength", statOrder = { 1177 }, level = 82, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(51-55) to Strength" }, } },
+ ["Strength10"] = { type = "Suffix", affix = "of the Godslayer", "+(56-60) to Strength", statOrder = { 1177 }, level = 85, group = "Strength", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(56-60) to Strength" }, } },
+ ["StrengthEssence7_"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Strength", statOrder = { 1177 }, level = 82, group = "Strength", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(51-58) to Strength" }, } },
+ ["Dexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(8-12) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(8-12) to Dexterity" }, } },
+ ["Dexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(13-17) to Dexterity", statOrder = { 1178 }, level = 11, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(13-17) to Dexterity" }, } },
+ ["Dexterity3"] = { type = "Suffix", affix = "of the Fox", "+(18-22) to Dexterity", statOrder = { 1178 }, level = 22, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(18-22) to Dexterity" }, } },
+ ["Dexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(23-27) to Dexterity", statOrder = { 1178 }, level = 33, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(23-27) to Dexterity" }, } },
+ ["Dexterity5"] = { type = "Suffix", affix = "of the Panther", "+(28-32) to Dexterity", statOrder = { 1178 }, level = 44, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(28-32) to Dexterity" }, } },
+ ["Dexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(33-37) to Dexterity", statOrder = { 1178 }, level = 55, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(33-37) to Dexterity" }, } },
+ ["Dexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(38-42) to Dexterity", statOrder = { 1178 }, level = 66, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(38-42) to Dexterity" }, } },
+ ["Dexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(43-50) to Dexterity", statOrder = { 1178 }, level = 74, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(43-50) to Dexterity" }, } },
+ ["Dexterity9"] = { type = "Suffix", affix = "of the Wind", "+(51-55) to Dexterity", statOrder = { 1178 }, level = 82, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(51-55) to Dexterity" }, } },
+ ["Dexterity10"] = { type = "Suffix", affix = "of the Blur", "+(56-60) to Dexterity", statOrder = { 1178 }, level = 85, group = "Dexterity", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(56-60) to Dexterity" }, } },
+ ["DexterityEssence7"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Dexterity", statOrder = { 1178 }, level = 82, group = "Dexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(51-58) to Dexterity" }, } },
+ ["Intelligence1"] = { type = "Suffix", affix = "of the Pupil", "+(8-12) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(8-12) to Intelligence" }, } },
+ ["Intelligence2"] = { type = "Suffix", affix = "of the Student", "+(13-17) to Intelligence", statOrder = { 1179 }, level = 11, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(13-17) to Intelligence" }, } },
+ ["Intelligence3"] = { type = "Suffix", affix = "of the Prodigy", "+(18-22) to Intelligence", statOrder = { 1179 }, level = 22, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(18-22) to Intelligence" }, } },
+ ["Intelligence4"] = { type = "Suffix", affix = "of the Augur", "+(23-27) to Intelligence", statOrder = { 1179 }, level = 33, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(23-27) to Intelligence" }, } },
+ ["Intelligence5"] = { type = "Suffix", affix = "of the Philosopher", "+(28-32) to Intelligence", statOrder = { 1179 }, level = 44, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(28-32) to Intelligence" }, } },
+ ["Intelligence6"] = { type = "Suffix", affix = "of the Sage", "+(33-37) to Intelligence", statOrder = { 1179 }, level = 55, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(33-37) to Intelligence" }, } },
+ ["Intelligence7"] = { type = "Suffix", affix = "of the Savant", "+(38-42) to Intelligence", statOrder = { 1179 }, level = 66, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(38-42) to Intelligence" }, } },
+ ["Intelligence8"] = { type = "Suffix", affix = "of the Virtuoso", "+(43-50) to Intelligence", statOrder = { 1179 }, level = 74, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(43-50) to Intelligence" }, } },
+ ["Intelligence9"] = { type = "Suffix", affix = "of the Genius", "+(51-55) to Intelligence", statOrder = { 1179 }, level = 82, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(51-55) to Intelligence" }, } },
+ ["Intelligence10"] = { type = "Suffix", affix = "of the Polymath", "+(56-60) to Intelligence", statOrder = { 1179 }, level = 85, group = "Intelligence", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(56-60) to Intelligence" }, } },
+ ["IntelligenceEssence7"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Intelligence", statOrder = { 1179 }, level = 82, group = "Intelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(51-58) to Intelligence" }, } },
+ ["AllAttributes1"] = { type = "Suffix", affix = "of the Clouds", "+(1-4) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(1-4) to all Attributes" }, } },
+ ["AllAttributes2"] = { type = "Suffix", affix = "of the Sky", "+(5-8) to all Attributes", statOrder = { 1176 }, level = 11, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-8) to all Attributes" }, } },
+ ["AllAttributes3"] = { type = "Suffix", affix = "of the Meteor", "+(9-12) to all Attributes", statOrder = { 1176 }, level = 22, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(9-12) to all Attributes" }, } },
+ ["AllAttributes4"] = { type = "Suffix", affix = "of the Comet", "+(13-16) to all Attributes", statOrder = { 1176 }, level = 33, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(13-16) to all Attributes" }, } },
+ ["AllAttributes5"] = { type = "Suffix", affix = "of the Heavens", "+(17-20) to all Attributes", statOrder = { 1176 }, level = 44, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(17-20) to all Attributes" }, } },
+ ["AllAttributes6"] = { type = "Suffix", affix = "of the Galaxy", "+(21-24) to all Attributes", statOrder = { 1176 }, level = 55, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(21-24) to all Attributes" }, } },
+ ["AllAttributes7"] = { type = "Suffix", affix = "of the Universe", "+(25-28) to all Attributes", statOrder = { 1176 }, level = 66, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(25-28) to all Attributes" }, } },
+ ["AllAttributes8"] = { type = "Suffix", affix = "of the Infinite", "+(29-32) to all Attributes", statOrder = { 1176 }, level = 77, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(29-32) to all Attributes" }, } },
+ ["AllAttributes9_"] = { type = "Suffix", affix = "of the Multiverse", "+(33-35) to all Attributes", statOrder = { 1176 }, level = 85, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(33-35) to all Attributes" }, } },
+ ["IncreasedLife0"] = { type = "Prefix", affix = "Hale", "+(3-9) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(3-9) to maximum Life" }, } },
+ ["IncreasedLife1"] = { type = "Prefix", affix = "Healthy", "+(10-24) to maximum Life", statOrder = { 1569 }, level = 5, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-24) to maximum Life" }, } },
+ ["IncreasedLife2"] = { type = "Prefix", affix = "Sanguine", "+(25-39) to maximum Life", statOrder = { 1569 }, level = 11, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-39) to maximum Life" }, } },
+ ["IncreasedLife3"] = { type = "Prefix", affix = "Stalwart", "+(40-54) to maximum Life", statOrder = { 1569 }, level = 18, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-54) to maximum Life" }, } },
+ ["IncreasedLife4"] = { type = "Prefix", affix = "Stout", "+(55-69) to maximum Life", statOrder = { 1569 }, level = 24, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(55-69) to maximum Life" }, } },
+ ["IncreasedLife5"] = { type = "Prefix", affix = "Robust", "+(70-84) to maximum Life", statOrder = { 1569 }, level = 30, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-84) to maximum Life" }, } },
+ ["IncreasedLife6"] = { type = "Prefix", affix = "Rotund", "+(85-99) to maximum Life", statOrder = { 1569 }, level = 36, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(85-99) to maximum Life" }, } },
+ ["IncreasedLife7"] = { type = "Prefix", affix = "Virile", "+(100-114) to maximum Life", statOrder = { 1569 }, level = 44, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-114) to maximum Life" }, } },
+ ["IncreasedLife8"] = { type = "Prefix", affix = "Athlete's", "+(115-129) to maximum Life", statOrder = { 1569 }, level = 54, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "ring", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(115-129) to maximum Life" }, } },
+ ["IncreasedLife9"] = { type = "Prefix", affix = "Fecund", "+(130-144) to maximum Life", statOrder = { 1569 }, level = 64, group = "IncreasedLife", weightKey = { "fishing_rod", "boots", "gloves", "weapon", "ring", "amulet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(130-144) to maximum Life" }, } },
+ ["IncreasedLife10"] = { type = "Prefix", affix = "Vigorous", "+(145-159) to maximum Life", statOrder = { 1569 }, level = 73, group = "IncreasedLife", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(145-159) to maximum Life" }, } },
+ ["IncreasedLife11"] = { type = "Prefix", affix = "Rapturous", "+(160-174) to maximum Life", statOrder = { 1569 }, level = 81, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(160-174) to maximum Life" }, } },
+ ["IncreasedLife12"] = { type = "Prefix", affix = "Prime", "+(175-189) to maximum Life", statOrder = { 1569 }, level = 86, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(175-189) to maximum Life" }, } },
+ ["IncreasedLifeEssence1_"] = { type = "Prefix", affix = "Essences", "+(5-14) to maximum Life", statOrder = { 1569 }, level = 3, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(5-14) to maximum Life" }, } },
+ ["IncreasedLifeEssence2"] = { type = "Prefix", affix = "Essences", "+(15-30) to maximum Life", statOrder = { 1569 }, level = 10, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(15-30) to maximum Life" }, } },
+ ["IncreasedLifeEssence3"] = { type = "Prefix", affix = "Essences", "+(31-45) to maximum Life", statOrder = { 1569 }, level = 26, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(31-45) to maximum Life" }, } },
+ ["IncreasedLifeEssence4"] = { type = "Prefix", affix = "Essences", "+(46-60) to maximum Life", statOrder = { 1569 }, level = 42, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(46-60) to maximum Life" }, } },
+ ["IncreasedLifeEssence5"] = { type = "Prefix", affix = "Essences", "+(61-75) to maximum Life", statOrder = { 1569 }, level = 58, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(61-75) to maximum Life" }, } },
+ ["IncreasedLifeEssence6"] = { type = "Prefix", affix = "Essences", "+(76-90) to maximum Life", statOrder = { 1569 }, level = 74, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(76-90) to maximum Life" }, } },
+ ["IncreasedLifeEssenceChest1"] = { type = "Prefix", affix = "Essences", "+(120-126) to maximum Life", statOrder = { 1569 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(120-126) to maximum Life" }, } },
+ ["IncreasedLifeEssenceShield1"] = { type = "Prefix", affix = "Essences", "+(110-116) to maximum Life", statOrder = { 1569 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(110-116) to maximum Life" }, } },
+ ["IncreasedLifeEssenceHelm1"] = { type = "Prefix", affix = "Essences", "+(100-106) to maximum Life", statOrder = { 1569 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-106) to maximum Life" }, } },
+ ["IncreasedLifeEssenceBootsGloves1"] = { type = "Prefix", affix = "Essences", "+(91-105) to maximum Life", statOrder = { 1569 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(91-105) to maximum Life" }, } },
+ ["IncreasedLifeEnhancedMod"] = { type = "Prefix", affix = "Guatelitzi's", "+(70-79) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1569, 1571 }, level = 1, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(3-5)% increased maximum Life" }, [3299347043] = { "+(70-79) to maximum Life" }, } },
+ ["IncreasedLifeEnhancedBodyMod___"] = { type = "Prefix", affix = "Guatelitzi's", "+(110-119) to maximum Life", "(8-10)% increased maximum Life", statOrder = { 1569, 1571 }, level = 1, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, [3299347043] = { "+(110-119) to maximum Life" }, } },
+ ["IncreasedMana1"] = { type = "Prefix", affix = "Beryl", "+(15-19) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-19) to maximum Mana" }, } },
+ ["IncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "+(20-24) to maximum Mana", statOrder = { 1579 }, level = 11, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-24) to maximum Mana" }, } },
+ ["IncreasedMana3"] = { type = "Prefix", affix = "Azure", "+(25-29) to maximum Mana", statOrder = { 1579 }, level = 17, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-29) to maximum Mana" }, } },
+ ["IncreasedMana4"] = { type = "Prefix", affix = "Sapphire", "+(30-34) to maximum Mana", statOrder = { 1579 }, level = 23, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-34) to maximum Mana" }, } },
+ ["IncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "+(35-39) to maximum Mana", statOrder = { 1579 }, level = 29, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(35-39) to maximum Mana" }, } },
+ ["IncreasedMana6"] = { type = "Prefix", affix = "Aqua", "+(40-44) to maximum Mana", statOrder = { 1579 }, level = 35, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-44) to maximum Mana" }, } },
+ ["IncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "+(45-49) to maximum Mana", statOrder = { 1579 }, level = 42, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(45-49) to maximum Mana" }, } },
+ ["IncreasedMana8"] = { type = "Prefix", affix = "Gentian", "+(50-54) to maximum Mana", statOrder = { 1579 }, level = 51, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-54) to maximum Mana" }, } },
+ ["IncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "+(55-59) to maximum Mana", statOrder = { 1579 }, level = 60, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(55-59) to maximum Mana" }, } },
+ ["IncreasedMana10"] = { type = "Prefix", affix = "Mazarine", "+(60-64) to maximum Mana", statOrder = { 1579 }, level = 69, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-64) to maximum Mana" }, } },
+ ["IncreasedMana11"] = { type = "Prefix", affix = "Blue", "+(65-68) to maximum Mana", statOrder = { 1579 }, level = 75, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(65-68) to maximum Mana" }, } },
+ ["IncreasedMana12"] = { type = "Prefix", affix = "Zaffre", "+(69-73) to maximum Mana", statOrder = { 1579 }, level = 81, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-73) to maximum Mana" }, } },
+ ["IncreasedMana13"] = { type = "Prefix", affix = "Ultramarine", "+(74-78) to maximum Mana", statOrder = { 1579 }, level = 85, group = "IncreasedMana", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, } },
+ ["IncreasedManaEssence7"] = { type = "Prefix", affix = "Essences", "+(69-77) to maximum Mana", statOrder = { 1579 }, level = 82, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-77) to maximum Mana" }, } },
+ ["IncreasedManaEnhancedModPercent"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(7-10)% increased maximum Mana", statOrder = { 1579, 1580 }, level = 1, group = "IncreasedManaAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-73) to maximum Mana" }, [2748665614] = { "(7-10)% increased maximum Mana" }, } },
+ ["IncreasedManaEnhancedModOnHit_"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1579, 1744 }, level = 1, group = "IncreasedManaAndOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [820939409] = { "Gain (2-3) Mana per Enemy Hit with Attacks" }, } },
+ ["IncreasedManaEnhancedModRegen"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Regenerate (5-7) Mana per second", statOrder = { 1579, 1582 }, level = 1, group = "IncreasedManaAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [4291461939] = { "Regenerate (5-7) Mana per second" }, } },
+ ["IncreasedManaEnhancedModReservation"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 1579, 2232 }, level = 1, group = "IncreasedManaAndReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-73) to maximum Mana" }, [1269219558] = { "(6-10)% increased Mana Reservation Efficiency of Skills" }, } },
+ ["IncreasedManaEnhancedModCost"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "-(8-6) to Total Mana Cost of Skills", statOrder = { 1579, 1891 }, level = 1, group = "IncreasedManaAndCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [3736589033] = { "-(8-6) to Total Mana Cost of Skills" }, } },
+ ["IncreasedManaWeapon1"] = { type = "Prefix", affix = "Beryl", "+(30-39) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-39) to maximum Mana" }, } },
+ ["IncreasedManaWeapon2__"] = { type = "Prefix", affix = "Cobalt", "+(40-49) to maximum Mana", statOrder = { 1579 }, level = 11, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-49) to maximum Mana" }, } },
+ ["IncreasedManaWeapon3_"] = { type = "Prefix", affix = "Azure", "+(50-59) to maximum Mana", statOrder = { 1579 }, level = 17, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-59) to maximum Mana" }, } },
+ ["IncreasedManaWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(60-69) to maximum Mana", statOrder = { 1579 }, level = 23, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-69) to maximum Mana" }, } },
+ ["IncreasedManaWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(70-79) to maximum Mana", statOrder = { 1579 }, level = 29, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(70-79) to maximum Mana" }, } },
+ ["IncreasedManaWeapon6"] = { type = "Prefix", affix = "Aqua", "+(80-89) to maximum Mana", statOrder = { 1579 }, level = 35, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-89) to maximum Mana" }, } },
+ ["IncreasedManaWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(90-99) to maximum Mana", statOrder = { 1579 }, level = 42, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(90-99) to maximum Mana" }, } },
+ ["IncreasedManaWeapon8"] = { type = "Prefix", affix = "Gentian", "+(100-109) to maximum Mana", statOrder = { 1579 }, level = 51, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-109) to maximum Mana" }, } },
+ ["IncreasedManaWeapon9___"] = { type = "Prefix", affix = "Chalybeous", "+(110-119) to maximum Mana", statOrder = { 1579 }, level = 60, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(110-119) to maximum Mana" }, } },
+ ["IncreasedManaWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(120-129) to maximum Mana", statOrder = { 1579 }, level = 69, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 800, 800, 800, 800, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(120-129) to maximum Mana" }, } },
+ ["IncreasedManaWeapon11"] = { type = "Prefix", affix = "Blue", "+(130-139) to maximum Mana", statOrder = { 1579 }, level = 75, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 600, 600, 600, 600, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(130-139) to maximum Mana" }, } },
+ ["IncreasedManaWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(140-159) to maximum Mana", statOrder = { 1579 }, level = 81, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 400, 400, 400, 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(140-159) to maximum Mana" }, } },
+ ["IncreasedManaTwoHandWeapon1"] = { type = "Prefix", affix = "Beryl", "+(40-49) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-49) to maximum Mana" }, } },
+ ["IncreasedManaTwoHandWeapon2_"] = { type = "Prefix", affix = "Cobalt", "+(50-59) to maximum Mana", statOrder = { 1579 }, level = 11, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-59) to maximum Mana" }, } },
+ ["IncreasedManaTwoHandWeapon3_"] = { type = "Prefix", affix = "Azure", "+(60-69) to maximum Mana", statOrder = { 1579 }, level = 17, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-69) to maximum Mana" }, } },
+ ["IncreasedManaTwoHandWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(70-79) to maximum Mana", statOrder = { 1579 }, level = 23, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(70-79) to maximum Mana" }, } },
+ ["IncreasedManaTwoHandWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(80-89) to maximum Mana", statOrder = { 1579 }, level = 29, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-89) to maximum Mana" }, } },
+ ["IncreasedManaTwoHandWeapon6"] = { type = "Prefix", affix = "Aqua", "+(90-99) to maximum Mana", statOrder = { 1579 }, level = 35, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(90-99) to maximum Mana" }, } },
+ ["IncreasedManaTwoHandWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(100-119) to maximum Mana", statOrder = { 1579 }, level = 42, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-119) to maximum Mana" }, } },
+ ["IncreasedManaTwoHandWeapon8_"] = { type = "Prefix", affix = "Gentian", "+(120-139) to maximum Mana", statOrder = { 1579 }, level = 51, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(120-139) to maximum Mana" }, } },
+ ["IncreasedManaTwoHandWeapon9"] = { type = "Prefix", affix = "Chalybeous", "+(140-159) to maximum Mana", statOrder = { 1579 }, level = 60, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(140-159) to maximum Mana" }, } },
+ ["IncreasedManaTwoHandWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(160-179) to maximum Mana", statOrder = { 1579 }, level = 69, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(160-179) to maximum Mana" }, } },
+ ["IncreasedManaTwoHandWeapon11"] = { type = "Prefix", affix = "Blue", "+(180-199) to maximum Mana", statOrder = { 1579 }, level = 75, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 600, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(180-199) to maximum Mana" }, } },
+ ["IncreasedManaTwoHandWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(200-229) to maximum Mana", statOrder = { 1579 }, level = 81, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(200-229) to maximum Mana" }, } },
+ ["IncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(1-3) to maximum Energy Shield", statOrder = { 1558 }, level = 3, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(1-3) to maximum Energy Shield" }, } },
+ ["IncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(4-8) to maximum Energy Shield", statOrder = { 1558 }, level = 11, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(4-8) to maximum Energy Shield" }, } },
+ ["IncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(9-12) to maximum Energy Shield", statOrder = { 1558 }, level = 17, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(9-12) to maximum Energy Shield" }, } },
+ ["IncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(13-15) to maximum Energy Shield", statOrder = { 1558 }, level = 23, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(13-15) to maximum Energy Shield" }, } },
+ ["IncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(16-19) to maximum Energy Shield", statOrder = { 1558 }, level = 29, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(16-19) to maximum Energy Shield" }, } },
+ ["IncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(20-22) to maximum Energy Shield", statOrder = { 1558 }, level = 35, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(20-22) to maximum Energy Shield" }, } },
+ ["IncreasedEnergyShield7"] = { type = "Prefix", affix = "Seething", "+(23-26) to maximum Energy Shield", statOrder = { 1558 }, level = 42, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(23-26) to maximum Energy Shield" }, } },
+ ["IncreasedEnergyShield8"] = { type = "Prefix", affix = "Blazing", "+(27-31) to maximum Energy Shield", statOrder = { 1558 }, level = 50, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(27-31) to maximum Energy Shield" }, } },
+ ["IncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(32-37) to maximum Energy Shield", statOrder = { 1558 }, level = 59, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(32-37) to maximum Energy Shield" }, } },
+ ["IncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(38-43) to maximum Energy Shield", statOrder = { 1558 }, level = 68, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(38-43) to maximum Energy Shield" }, } },
+ ["IncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(44-47) to maximum Energy Shield", statOrder = { 1558 }, level = 74, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(44-47) to maximum Energy Shield" }, } },
+ ["IncreasedEnergyShield12"] = { type = "Prefix", affix = "Dazzling", "+(48-51) to maximum Energy Shield", statOrder = { 1558 }, level = 80, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(48-51) to maximum Energy Shield" }, } },
+ ["IncreasedEnergyShieldEnhancedModES"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "(7-10)% increased maximum Energy Shield", statOrder = { 1558, 1561 }, level = 1, group = "EnergyShieldAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(7-10)% increased maximum Energy Shield" }, [3489782002] = { "+(44-47) to maximum Energy Shield" }, } },
+ ["IncreasedEnergyShieldEnhancedModRegen_"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Regenerate 0.4% of Energy Shield per second", statOrder = { 1558, 2646 }, level = 1, group = "EnergyShieldAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 0.4% of Energy Shield per second" }, [3489782002] = { "+(44-47) to maximum Energy Shield" }, } },
+ ["LocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(3-5) to maximum Energy Shield", statOrder = { 1559 }, level = 3, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(3-5) to maximum Energy Shield" }, } },
+ ["LocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(6-11) to maximum Energy Shield", statOrder = { 1559 }, level = 11, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(6-11) to maximum Energy Shield" }, } },
+ ["LocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(12-16) to maximum Energy Shield", statOrder = { 1559 }, level = 17, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(12-16) to maximum Energy Shield" }, } },
+ ["LocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(17-23) to maximum Energy Shield", statOrder = { 1559 }, level = 23, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(17-23) to maximum Energy Shield" }, } },
+ ["LocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(24-30) to maximum Energy Shield", statOrder = { 1559 }, level = 29, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(24-30) to maximum Energy Shield" }, } },
+ ["LocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(31-38) to maximum Energy Shield", statOrder = { 1559 }, level = 35, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(31-38) to maximum Energy Shield" }, } },
+ ["LocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Seething", "+(39-49) to maximum Energy Shield", statOrder = { 1559 }, level = 43, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(39-49) to maximum Energy Shield" }, } },
+ ["LocalIncreasedEnergyShield8"] = { type = "Prefix", affix = "Blazing", "+(50-61) to maximum Energy Shield", statOrder = { 1559 }, level = 51, group = "LocalEnergyShield", weightKey = { "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-61) to maximum Energy Shield" }, } },
+ ["LocalIncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(62-76) to maximum Energy Shield", statOrder = { 1559 }, level = 60, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(62-76) to maximum Energy Shield" }, } },
+ ["LocalIncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(77-90) to maximum Energy Shield", statOrder = { 1559 }, level = 69, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(77-90) to maximum Energy Shield" }, } },
+ ["LocalIncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(91-100) to maximum Energy Shield", statOrder = { 1559 }, level = 75, group = "LocalEnergyShield", weightKey = { "shield", "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(91-100) to maximum Energy Shield" }, } },
+ ["LocalIncreasedEnergyShieldEssenceChest5"] = { type = "Prefix", affix = "Essences", "+(62-72) to maximum Energy Shield", statOrder = { 1559 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(62-72) to maximum Energy Shield" }, } },
+ ["LocalIncreasedEnergyShieldEssenceChest6"] = { type = "Prefix", affix = "Essences", "+(73-82) to maximum Energy Shield", statOrder = { 1559 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(73-82) to maximum Energy Shield" }, } },
+ ["LocalIncreasedEnergyShieldEssenceChest7__"] = { type = "Prefix", affix = "Essences", "+(88-95) to maximum Energy Shield", statOrder = { 1559 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(88-95) to maximum Energy Shield" }, } },
+ ["LocalIncreasedEnergyShieldEssenceShield5"] = { type = "Prefix", affix = "Essences", "+(50-59) to maximum Energy Shield", statOrder = { 1559 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-59) to maximum Energy Shield" }, } },
+ ["LocalIncreasedEnergyShieldEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(60-69) to maximum Energy Shield", statOrder = { 1559 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(60-69) to maximum Energy Shield" }, } },
+ ["LocalIncreasedEnergyShieldEssenceShield7"] = { type = "Prefix", affix = "Essences", "+(75-85) to maximum Energy Shield", statOrder = { 1559 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(75-85) to maximum Energy Shield" }, } },
+ ["LocalIncreasedEnergyShieldEssenceBootsGloves4"] = { type = "Prefix", affix = "Essences", "+(18-26) to maximum Energy Shield", statOrder = { 1559 }, level = 42, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(18-26) to maximum Energy Shield" }, } },
+ ["LocalIncreasedEnergyShieldEssenceBootsGloves5"] = { type = "Prefix", affix = "Essences", "+(27-32) to maximum Energy Shield", statOrder = { 1559 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(27-32) to maximum Energy Shield" }, } },
+ ["LocalIncreasedEnergyShieldEssenceBootsGloves6"] = { type = "Prefix", affix = "Essences", "+(28-35) to maximum Energy Shield", statOrder = { 1559 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(28-35) to maximum Energy Shield" }, } },
+ ["LocalIncreasedEnergyShieldEssenceBootsGloves7"] = { type = "Prefix", affix = "Essences", "+(38-45) to maximum Energy Shield", statOrder = { 1559 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(38-45) to maximum Energy Shield" }, } },
+ ["LocalIncreasedEnergyShieldEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(39-45) to maximum Energy Shield", statOrder = { 1559 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(39-45) to maximum Energy Shield" }, } },
+ ["LocalIncreasedEnergyShieldEssenceHelm6"] = { type = "Prefix", affix = "Essences", "+(46-51) to maximum Energy Shield", statOrder = { 1559 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(46-51) to maximum Energy Shield" }, } },
+ ["LocalIncreasedEnergyShieldEssenceHelm7"] = { type = "Prefix", affix = "Essences", "+(52-58) to maximum Energy Shield", statOrder = { 1559 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(52-58) to maximum Energy Shield" }, } },
+ ["AddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds 1 to 2 Physical Damage to Attacks", statOrder = { 1266 }, level = 5, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 2 Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-5) Physical Damage to Attacks", statOrder = { 1266 }, level = 13, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-3) to (4-5) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (3-4) to (6-7) Physical Damage to Attacks", statOrder = { 1266 }, level = 19, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-4) to (6-7) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (9-10) Physical Damage to Attacks", statOrder = { 1266 }, level = 28, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-6) to (9-10) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1266 }, level = 35, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (11-12) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1266 }, level = 44, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-9) to (13-15) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-10) to (15-18) Physical Damage to Attacks", statOrder = { 1266 }, level = 52, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 0, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (7-10) to (15-18) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (9-12) to (19-22) Physical Damage to Attacks", statOrder = { 1266 }, level = 64, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 0, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (9-12) to (19-22) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (11-15) to (22-26) Physical Damage to Attacks", statOrder = { 1266 }, level = 76, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 0, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (11-15) to (22-26) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamageQuiver1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to 3 Physical Damage to Attacks", statOrder = { 1266 }, level = 5, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (1-2) to 3 Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamageQuiver2"] = { type = "Prefix", affix = "Burnished", "Adds (3-4) to (6-8) Physical Damage to Attacks", statOrder = { 1266 }, level = 13, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-4) to (6-8) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamageQuiver3"] = { type = "Prefix", affix = "Polished", "Adds (5-6) to (9-10) Physical Damage to Attacks", statOrder = { 1266 }, level = 19, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-6) to (9-10) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamageQuiver4"] = { type = "Prefix", affix = "Honed", "Adds (6-9) to (13-16) Physical Damage to Attacks", statOrder = { 1266 }, level = 28, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-9) to (13-16) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamageQuiver5"] = { type = "Prefix", affix = "Gleaming", "Adds (8-11) to (16-18) Physical Damage to Attacks", statOrder = { 1266 }, level = 35, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (8-11) to (16-18) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamageQuiver6"] = { type = "Prefix", affix = "Annealed", "Adds (10-13) to (19-23) Physical Damage to Attacks", statOrder = { 1266 }, level = 44, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (10-13) to (19-23) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamageQuiver7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (11-16) to (23-26) Physical Damage to Attacks", statOrder = { 1266 }, level = 52, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (11-16) to (23-26) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamageQuiver8"] = { type = "Prefix", affix = "Tempered", "Adds (14-19) to (28-33) Physical Damage to Attacks", statOrder = { 1266 }, level = 64, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (14-19) to (28-33) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamageQuiver9"] = { type = "Prefix", affix = "Flaring", "Adds (17-23) to (34-39) Physical Damage to Attacks", statOrder = { 1266 }, level = 76, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (17-23) to (34-39) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamageEssenceAmulet7"] = { type = "Prefix", affix = "Essences", "Adds (16-18) to (27-30) Physical Damage to Attacks", statOrder = { 1266 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (16-18) to (27-30) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamageEssenceRing5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-13) Physical Damage to Attacks", statOrder = { 1266 }, level = 58, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-8) to (12-13) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamageEssenceRing6"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-15) Physical Damage to Attacks", statOrder = { 1266 }, level = 74, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (7-9) to (13-15) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamageEssenceRing7"] = { type = "Prefix", affix = "Essences", "Adds (10-11) to (16-17) Physical Damage to Attacks", statOrder = { 1266 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (10-11) to (16-17) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamageEssenceGlovesQuiver4"] = { type = "Prefix", affix = "Essences", "Adds (3-5) to (7-8) Physical Damage to Attacks", statOrder = { 1266 }, level = 42, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-5) to (7-8) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamageEssenceGlovesQuiver5"] = { type = "Prefix", affix = "Essences", "Adds (4-5) to (8-9) Physical Damage to Attacks", statOrder = { 1266 }, level = 58, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-5) to (8-9) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamageEssenceGlovesQuiver6"] = { type = "Prefix", affix = "Essences", "Adds (5-6) to (9-10) Physical Damage to Attacks", statOrder = { 1266 }, level = 74, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-6) to (9-10) Physical Damage to Attacks" }, } },
+ ["AddedPhysicalDamageEssenceGlovesQuiver7"] = { type = "Prefix", affix = "Essences", "Adds (6-7) to (10-11) Physical Damage to Attacks", statOrder = { 1266 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-7) to (10-11) Physical Damage to Attacks" }, } },
+ ["AddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds 1 to 2 Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds 1 to 2 Fire Damage to Attacks" }, } },
+ ["AddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (7-8) Fire Damage to Attacks", statOrder = { 1360 }, level = 12, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (3-5) to (7-8) Fire Damage to Attacks" }, } },
+ ["AddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (5-7) to (11-13) Fire Damage to Attacks", statOrder = { 1360 }, level = 20, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (5-7) to (11-13) Fire Damage to Attacks" }, } },
+ ["AddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (7-10) to (15-18) Fire Damage to Attacks", statOrder = { 1360 }, level = 28, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (7-10) to (15-18) Fire Damage to Attacks" }, } },
+ ["AddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1360 }, level = 35, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (9-12) to (19-22) Fire Damage to Attacks" }, } },
+ ["AddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Attacks", statOrder = { 1360 }, level = 44, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (11-15) to (23-27) Fire Damage to Attacks" }, } },
+ ["AddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Attacks", statOrder = { 1360 }, level = 52, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (13-18) to (27-31) Fire Damage to Attacks" }, } },
+ ["AddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Attacks", statOrder = { 1360 }, level = 64, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (16-22) to (32-38) Fire Damage to Attacks" }, } },
+ ["AddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Attacks", statOrder = { 1360 }, level = 76, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 50, 250, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (19-25) to (39-45) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageQuiver1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to 3 Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (1-2) to 3 Fire Damage to Attacks" }, } },
+ ["AddedFireDamageQuiver2"] = { type = "Prefix", affix = "Smouldering", "Adds (5-7) to (10-12) Fire Damage to Attacks", statOrder = { 1360 }, level = 12, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (5-7) to (10-12) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageQuiver3"] = { type = "Prefix", affix = "Smoking", "Adds (8-10) to (15-18) Fire Damage to Attacks", statOrder = { 1360 }, level = 20, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-10) to (15-18) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageQuiver4"] = { type = "Prefix", affix = "Burning", "Adds (11-14) to (21-25) Fire Damage to Attacks", statOrder = { 1360 }, level = 28, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (11-14) to (21-25) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageQuiver5_"] = { type = "Prefix", affix = "Flaming", "Adds (13-18) to (27-31) Fire Damage to Attacks", statOrder = { 1360 }, level = 35, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (13-18) to (27-31) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageQuiver6"] = { type = "Prefix", affix = "Scorching", "Adds (17-22) to (33-38) Fire Damage to Attacks", statOrder = { 1360 }, level = 44, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (17-22) to (33-38) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageQuiver7"] = { type = "Prefix", affix = "Incinerating", "Adds (20-27) to (40-47) Fire Damage to Attacks", statOrder = { 1360 }, level = 52, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (20-27) to (40-47) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageQuiver8__"] = { type = "Prefix", affix = "Blasting", "Adds (27-35) to (53-62) Fire Damage to Attacks", statOrder = { 1360 }, level = 64, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (27-35) to (53-62) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageQuiver9"] = { type = "Prefix", affix = "Cremating", "Adds (37-50) to (74-87) Fire Damage to Attacks", statOrder = { 1360 }, level = 76, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (37-50) to (74-87) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageQuiverEssence10"] = { type = "Prefix", affix = "Essences", "Adds (41-55) to (81-96) Fire Damage to Attacks", statOrder = { 1360 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (41-55) to (81-96) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (23-27) to (43-48) Fire Damage to Attacks", statOrder = { 1360 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (23-27) to (43-48) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageEssenceGlovesQuiver4"] = { type = "Prefix", affix = "Essences", "Adds (5-7) to (11-14) Fire Damage to Attacks", statOrder = { 1360 }, level = 42, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (5-7) to (11-14) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageEssenceGlovesQuiver5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (13-17) Fire Damage to Attacks", statOrder = { 1360 }, level = 58, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (6-8) to (13-17) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageEssenceGlovesQuiver6"] = { type = "Prefix", affix = "Essences", "Adds (8-10) to (16-18) Fire Damage to Attacks", statOrder = { 1360 }, level = 74, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (8-10) to (16-18) Fire Damage to Attacks" }, } },
+ ["AddedFireDamageEssenceGlovesQuiver7"] = { type = "Prefix", affix = "Essences", "Adds (9-11) to (17-21) Fire Damage to Attacks", statOrder = { 1360 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (9-11) to (17-21) Fire Damage to Attacks" }, } },
+ ["AddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to 2 Cold Damage to Attacks", statOrder = { 1369 }, level = 2, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 1 to 2 Cold Damage to Attacks" }, } },
+ ["AddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (7-8) Cold Damage to Attacks", statOrder = { 1369 }, level = 13, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (3-4) to (7-8) Cold Damage to Attacks" }, } },
+ ["AddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (5-7) to (10-12) Cold Damage to Attacks", statOrder = { 1369 }, level = 21, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (5-7) to (10-12) Cold Damage to Attacks" }, } },
+ ["AddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (6-9) to (13-16) Cold Damage to Attacks", statOrder = { 1369 }, level = 29, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (6-9) to (13-16) Cold Damage to Attacks" }, } },
+ ["AddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Attacks", statOrder = { 1369 }, level = 36, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (8-11) to (16-19) Cold Damage to Attacks" }, } },
+ ["AddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1369 }, level = 45, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (10-13) to (20-24) Cold Damage to Attacks" }, } },
+ ["AddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Attacks", statOrder = { 1369 }, level = 53, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (12-16) to (24-28) Cold Damage to Attacks" }, } },
+ ["AddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Attacks", statOrder = { 1369 }, level = 65, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (14-19) to (29-34) Cold Damage to Attacks" }, } },
+ ["AddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Attacks", statOrder = { 1369 }, level = 77, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 50, 250, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (17-22) to (34-40) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageQuiver1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to 3 Cold Damage to Attacks", statOrder = { 1369 }, level = 2, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (1-2) to 3 Cold Damage to Attacks" }, } },
+ ["AddedColdDamageQuiver2"] = { type = "Prefix", affix = "Chilled", "Adds (5-6) to (9-10) Cold Damage to Attacks", statOrder = { 1369 }, level = 13, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (5-6) to (9-10) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageQuiver3_"] = { type = "Prefix", affix = "Icy", "Adds (7-9) to (14-16) Cold Damage to Attacks", statOrder = { 1369 }, level = 21, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (7-9) to (14-16) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageQuiver4__"] = { type = "Prefix", affix = "Frigid", "Adds (10-13) to (19-22) Cold Damage to Attacks", statOrder = { 1369 }, level = 29, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (10-13) to (19-22) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageQuiver5"] = { type = "Prefix", affix = "Freezing", "Adds (12-16) to (24-28) Cold Damage to Attacks", statOrder = { 1369 }, level = 36, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (12-16) to (24-28) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageQuiver6"] = { type = "Prefix", affix = "Frozen", "Adds (15-20) to (30-35) Cold Damage to Attacks", statOrder = { 1369 }, level = 45, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (15-20) to (30-35) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageQuiver7"] = { type = "Prefix", affix = "Glaciated", "Adds (18-24) to (36-42) Cold Damage to Attacks", statOrder = { 1369 }, level = 53, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (18-24) to (36-42) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageQuiver8"] = { type = "Prefix", affix = "Polar", "Adds (23-32) to (48-55) Cold Damage to Attacks", statOrder = { 1369 }, level = 65, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (23-32) to (48-55) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageQuiver9_"] = { type = "Prefix", affix = "Entombing", "Adds (33-45) to (67-78) Cold Damage to Attacks", statOrder = { 1369 }, level = 77, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (33-45) to (67-78) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageQuiverEssence10"] = { type = "Prefix", affix = "Essences", "Adds (36-50) to (74-86) Cold Damage to Attacks", statOrder = { 1369 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (36-50) to (74-86) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (20-24) to (38-44) Cold Damage to Attacks", statOrder = { 1369 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (20-24) to (38-44) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageEssenceQuiverGloves4"] = { type = "Prefix", affix = "Essences", "Adds (6-7) to (11-14) Cold Damage to Attacks", statOrder = { 1369 }, level = 42, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (6-7) to (11-14) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageEssenceQuiverGloves5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-15) Cold Damage to Attacks", statOrder = { 1369 }, level = 58, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (6-8) to (12-15) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageEssenceQuiverGloves6"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-16) Cold Damage to Attacks", statOrder = { 1369 }, level = 74, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (7-9) to (13-16) Cold Damage to Attacks" }, } },
+ ["AddedColdDamageEssenceQuiverGloves7"] = { type = "Prefix", affix = "Essences", "Adds (8-10) to (14-17) Cold Damage to Attacks", statOrder = { 1369 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (8-10) to (14-17) Cold Damage to Attacks" }, } },
+ ["AddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to 5 Lightning Damage to Attacks", statOrder = { 1380 }, level = 3, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 5 Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (14-15) Lightning Damage to Attacks", statOrder = { 1380 }, level = 13, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (14-15) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (22-23) Lightning Damage to Attacks", statOrder = { 1380 }, level = 22, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (22-23) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (27-28) Lightning Damage to Attacks", statOrder = { 1380 }, level = 28, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (27-28) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Attacks", statOrder = { 1380 }, level = 35, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (33-34) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Attacks", statOrder = { 1380 }, level = 44, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-4) to (40-43) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Attacks", statOrder = { 1380 }, level = 52, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-5) to (47-50) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Attacks", statOrder = { 1380 }, level = 64, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (3-6) to (57-61) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Attacks", statOrder = { 1380 }, level = 76, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 50, 250, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (3-7) to (68-72) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamageQuiver1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (3-4) Lightning Damage to Attacks", statOrder = { 1380 }, level = 3, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (3-4) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamageQuiver2"] = { type = "Prefix", affix = "Buzzing", "Adds 2 to (16-18) Lightning Damage to Attacks", statOrder = { 1380 }, level = 13, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 2 to (16-18) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamageQuiver3"] = { type = "Prefix", affix = "Snapping", "Adds (1-3) to (25-28) Lightning Damage to Attacks", statOrder = { 1380 }, level = 22, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (25-28) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamageQuiver4"] = { type = "Prefix", affix = "Crackling", "Adds (2-3) to (35-40) Lightning Damage to Attacks", statOrder = { 1380 }, level = 28, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-3) to (35-40) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamageQuiver5_"] = { type = "Prefix", affix = "Sparking", "Adds (2-4) to (44-50) Lightning Damage to Attacks", statOrder = { 1380 }, level = 35, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-4) to (44-50) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamageQuiver6___"] = { type = "Prefix", affix = "Arcing", "Adds (2-5) to (56-62) Lightning Damage to Attacks", statOrder = { 1380 }, level = 44, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-5) to (56-62) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamageQuiver7"] = { type = "Prefix", affix = "Shocking", "Adds (2-6) to (66-75) Lightning Damage to Attacks", statOrder = { 1380 }, level = 52, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (2-6) to (66-75) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamageQuiver8"] = { type = "Prefix", affix = "Discharging", "Adds (3-8) to (89-99) Lightning Damage to Attacks", statOrder = { 1380 }, level = 64, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (3-8) to (89-99) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamageQuiver9"] = { type = "Prefix", affix = "Electrocuting", "Adds (5-11) to (124-140) Lightning Damage to Attacks", statOrder = { 1380 }, level = 76, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (5-11) to (124-140) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamageQuiverEssence10__"] = { type = "Prefix", affix = "Essences", "Adds (6-13) to (136-155) Lightning Damage to Attacks", statOrder = { 1380 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (6-13) to (136-155) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-8) to (71-76) Lightning Damage to Attacks", statOrder = { 1380 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (4-8) to (71-76) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamageEssenceQuiverGloves3_"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (21-22) Lightning Damage to Attacks", statOrder = { 1380 }, level = 26, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (21-22) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamageEssenceQuiverGloves4"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (23-24) Lightning Damage to Attacks", statOrder = { 1380 }, level = 42, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (23-24) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamageEssenceQuiverGloves5"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (25-26) Lightning Damage to Attacks", statOrder = { 1380 }, level = 58, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (25-26) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamageEssenceQuiverGloves6"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (27-28) Lightning Damage to Attacks", statOrder = { 1380 }, level = 74, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (27-28) Lightning Damage to Attacks" }, } },
+ ["AddedLightningDamageEssenceQuiverGloves7"] = { type = "Prefix", affix = "Essences", "Adds (1-3) to (29-30) Lightning Damage to Attacks", statOrder = { 1380 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (29-30) Lightning Damage to Attacks" }, } },
+ ["AddedChaosDamageQuiver1"] = { type = "Prefix", affix = "Malicious", "Adds (27-41) to (55-69) Chaos Damage to Attacks", statOrder = { 1387 }, level = 83, group = "ChaosDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (27-41) to (55-69) Chaos Damage to Attacks" }, } },
+ ["AddedFireDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (11-13) Fire Damage to Attacks", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1360, 1955 }, level = 1, group = "FireDamagePhysConvertedToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, [1573130764] = { "Adds (5-7) to (11-13) Fire Damage to Attacks" }, } },
+ ["AddedColdDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (10-12) Cold Damage to Attacks", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1369, 1957 }, level = 1, group = "ColdDamagePhysConvertedToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, [4067062424] = { "Adds (5-7) to (10-12) Cold Damage to Attacks" }, } },
+ ["AddedLightningDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (1-2) to (22-23) Lightning Damage to Attacks", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1380, 1959 }, level = 1, group = "LightningDamagePhysConvertedToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (22-23) Lightning Damage to Attacks" }, [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } },
+ ["LifeLeech1"] = { type = "Prefix", affix = "Remora's", "(1-2)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 9, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(1-2)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeech2"] = { type = "Prefix", affix = "Lamprey's", "(3-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 25, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(3-4)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeech3"] = { type = "Prefix", affix = "Vampire's", "(5-6)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 72, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3933739162] = { "(5-6)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriad1"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 50, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriad2"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 60, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriad3"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 70, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1-1.2)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadSuffix1"] = { type = "Suffix", affix = "of the Remora", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 50, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadSuffix2"] = { type = "Suffix", affix = "of the Lamprey", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 60, group = "LifeLeechPermyriad", weightKey = { "ranged", "amulet", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadSuffix3"] = { type = "Suffix", affix = "of the Vampire", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 70, group = "LifeLeechPermyriad", weightKey = { "ranged", "amulet", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1-1.2)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadEssence1"] = { type = "Prefix", affix = "Essences", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.5-0.7)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadEssence2"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 10, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadEssence3_"] = { type = "Prefix", affix = "Essences", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 26, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.7-0.9)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadEssence4"] = { type = "Prefix", affix = "Essences", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 42, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.8-1)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadEssence5"] = { type = "Prefix", affix = "Essences", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 58, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.9-1.1)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadEssence6"] = { type = "Prefix", affix = "Essences", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 74, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1-1.2)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 82, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1.1-1.3)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadSuffixEssence1"] = { type = "Suffix", affix = "of the Essence", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.5-0.7)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadSuffixEssence2"] = { type = "Suffix", affix = "of the Essence", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 10, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadSuffixEssence3_"] = { type = "Suffix", affix = "of the Essence", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 26, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.7-0.9)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadSuffixEssence4"] = { type = "Suffix", affix = "of the Essence", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 42, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.8-1)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadSuffixEssence5"] = { type = "Suffix", affix = "of the Essence", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 58, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(0.9-1.1)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadSuffixEssence6"] = { type = "Suffix", affix = "of the Essence", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 74, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1-1.2)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadSuffixEssence7"] = { type = "Suffix", affix = "of the Essence", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 82, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [3593843976] = { "(1.1-1.3)% of Physical Attack Damage Leeched as Life" }, } },
+ ["ElementalDamagePercent1"] = { type = "Prefix", affix = "Augur's", "(4-8)% increased Elemental Damage", statOrder = { 1980 }, level = 4, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(4-8)% increased Elemental Damage" }, } },
+ ["ElementalDamagePercent2"] = { type = "Prefix", affix = "Auspex's", "(9-16)% increased Elemental Damage", statOrder = { 1980 }, level = 15, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(9-16)% increased Elemental Damage" }, } },
+ ["ElementalDamagePercent3"] = { type = "Prefix", affix = "Druid's", "(17-24)% increased Elemental Damage", statOrder = { 1980 }, level = 30, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(17-24)% increased Elemental Damage" }, } },
+ ["ElementalDamagePercent4"] = { type = "Prefix", affix = "Haruspex's", "(25-29)% increased Elemental Damage", statOrder = { 1980 }, level = 60, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(25-29)% increased Elemental Damage" }, } },
+ ["ElementalDamagePercent5"] = { type = "Prefix", affix = "Harbinger's", "(30-34)% increased Elemental Damage", statOrder = { 1980 }, level = 81, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(30-34)% increased Elemental Damage" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { type = "Prefix", affix = "Squire's", "(15-19)% increased Physical Damage", "+(16-20) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 1, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(15-19)% increased Physical Damage" }, [691932474] = { "+(16-20) to Accuracy Rating" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { type = "Prefix", affix = "Journeyman's", "(20-24)% increased Physical Damage", "+(21-46) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 11, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(20-24)% increased Physical Damage" }, [691932474] = { "+(21-46) to Accuracy Rating" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { type = "Prefix", affix = "Reaver's", "(25-34)% increased Physical Damage", "+(47-72) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 23, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [691932474] = { "+(47-72) to Accuracy Rating" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { type = "Prefix", affix = "Mercenary's", "(35-44)% increased Physical Damage", "+(73-97) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 35, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [691932474] = { "+(73-97) to Accuracy Rating" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { type = "Prefix", affix = "Champion's", "(45-54)% increased Physical Damage", "+(98-123) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 46, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [691932474] = { "+(98-123) to Accuracy Rating" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { type = "Prefix", affix = "Conqueror's", "(55-64)% increased Physical Damage", "+(124-149) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 60, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [691932474] = { "+(124-149) to Accuracy Rating" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { type = "Prefix", affix = "Emperor's", "(65-74)% increased Physical Damage", "+(150-174) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 73, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-74)% increased Physical Damage" }, [691932474] = { "+(150-174) to Accuracy Rating" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { type = "Prefix", affix = "Dictator's", "(75-79)% increased Physical Damage", "+(175-200) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 83, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(75-79)% increased Physical Damage" }, [691932474] = { "+(175-200) to Accuracy Rating" }, } },
+ ["LocalIncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(40-49)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(40-49)% increased Physical Damage" }, } },
+ ["LocalIncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(50-64)% increased Physical Damage", statOrder = { 1232 }, level = 11, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(50-64)% increased Physical Damage" }, } },
+ ["LocalIncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(65-84)% increased Physical Damage", statOrder = { 1232 }, level = 23, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-84)% increased Physical Damage" }, } },
+ ["LocalIncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Vicious", "(85-109)% increased Physical Damage", statOrder = { 1232 }, level = 35, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(85-109)% increased Physical Damage" }, } },
+ ["LocalIncreasedPhysicalDamagePercent5"] = { type = "Prefix", affix = "Bloodthirsty", "(110-134)% increased Physical Damage", statOrder = { 1232 }, level = 46, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(110-134)% increased Physical Damage" }, } },
+ ["LocalIncreasedPhysicalDamagePercent6"] = { type = "Prefix", affix = "Cruel", "(135-154)% increased Physical Damage", statOrder = { 1232 }, level = 60, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(135-154)% increased Physical Damage" }, } },
+ ["LocalIncreasedPhysicalDamagePercent7"] = { type = "Prefix", affix = "Tyrannical", "(155-169)% increased Physical Damage", statOrder = { 1232 }, level = 73, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(155-169)% increased Physical Damage" }, } },
+ ["LocalIncreasedPhysicalDamagePercent8"] = { type = "Prefix", affix = "Merciless", "(170-179)% increased Physical Damage", statOrder = { 1232 }, level = 83, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(170-179)% increased Physical Damage" }, } },
+ ["LocalIncreasedPhysicalDamageEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (9-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1232, 1935 }, level = 1, group = "LocalPhysicalDamagePercentAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, tradeHashes = { [1805374733] = { "(155-169)% increased Physical Damage" }, [3319896421] = { "Gain (9-10)% of Physical Damage as Extra Chaos Damage" }, } },
+ ["IncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(8-12)% increased Global Physical Damage", statOrder = { 1231 }, level = 4, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(8-12)% increased Global Physical Damage" }, } },
+ ["IncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(13-17)% increased Global Physical Damage", statOrder = { 1231 }, level = 15, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(13-17)% increased Global Physical Damage" }, } },
+ ["IncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(18-22)% increased Global Physical Damage", statOrder = { 1231 }, level = 30, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(18-22)% increased Global Physical Damage" }, } },
+ ["IncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Cruel", "(23-28)% increased Global Physical Damage", statOrder = { 1231 }, level = 60, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(23-28)% increased Global Physical Damage" }, } },
+ ["IncreasedPhysicalDamagePercent5__"] = { type = "Prefix", affix = "Merciless", "(29-33)% increased Global Physical Damage", statOrder = { 1231 }, level = 81, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(29-33)% increased Global Physical Damage" }, } },
+ ["LocalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds 1 to (2-3) Physical Damage", statOrder = { 1276 }, level = 2, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 1 to (2-3) Physical Damage" }, } },
+ ["LocalAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (4-5) to (8-9) Physical Damage", statOrder = { 1276 }, level = 13, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (4-5) to (8-9) Physical Damage" }, } },
+ ["LocalAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (6-9) to (13-15) Physical Damage", statOrder = { 1276 }, level = 21, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (6-9) to (13-15) Physical Damage" }, } },
+ ["LocalAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (8-12) to (17-20) Physical Damage", statOrder = { 1276 }, level = 29, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (17-20) Physical Damage" }, } },
+ ["LocalAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (11-14) to (21-25) Physical Damage", statOrder = { 1276 }, level = 36, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (11-14) to (21-25) Physical Damage" }, } },
+ ["LocalAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (13-18) to (27-31) Physical Damage", statOrder = { 1276 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (13-18) to (27-31) Physical Damage" }, } },
+ ["LocalAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (16-21) to (32-38) Physical Damage", statOrder = { 1276 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (16-21) to (32-38) Physical Damage" }, } },
+ ["LocalAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (19-25) to (39-45) Physical Damage", statOrder = { 1276 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (19-25) to (39-45) Physical Damage" }, } },
+ ["LocalAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (22-29) to (45-52) Physical Damage", statOrder = { 1276 }, level = 77, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (22-29) to (45-52) Physical Damage" }, } },
+ ["LocalAddedPhysicalDamageEssenceNew7"] = { type = "Prefix", affix = "Essences", "Adds (20-26) to (40-47) Physical Damage", statOrder = { 1276 }, level = 82, group = "LocalPhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (20-26) to (40-47) Physical Damage" }, } },
+ ["LocalAddedPhysicalDamageTwoHand1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to (4-5) Physical Damage", statOrder = { 1276 }, level = 2, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds 2 to (4-5) Physical Damage" }, } },
+ ["LocalAddedPhysicalDamageTwoHand2"] = { type = "Prefix", affix = "Burnished", "Adds (6-8) to (12-15) Physical Damage", statOrder = { 1276 }, level = 13, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (6-8) to (12-15) Physical Damage" }, } },
+ ["LocalAddedPhysicalDamageTwoHand3"] = { type = "Prefix", affix = "Polished", "Adds (10-13) to (21-25) Physical Damage", statOrder = { 1276 }, level = 21, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-13) to (21-25) Physical Damage" }, } },
+ ["LocalAddedPhysicalDamageTwoHand4"] = { type = "Prefix", affix = "Honed", "Adds (13-17) to (28-32) Physical Damage", statOrder = { 1276 }, level = 29, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (13-17) to (28-32) Physical Damage" }, } },
+ ["LocalAddedPhysicalDamageTwoHand5"] = { type = "Prefix", affix = "Gleaming", "Adds (16-22) to (35-40) Physical Damage", statOrder = { 1276 }, level = 36, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (16-22) to (35-40) Physical Damage" }, } },
+ ["LocalAddedPhysicalDamageTwoHand6"] = { type = "Prefix", affix = "Annealed", "Adds (20-28) to (43-51) Physical Damage", statOrder = { 1276 }, level = 46, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (20-28) to (43-51) Physical Damage" }, } },
+ ["LocalAddedPhysicalDamageTwoHand7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (25-33) to (52-61) Physical Damage", statOrder = { 1276 }, level = 54, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (25-33) to (52-61) Physical Damage" }, } },
+ ["LocalAddedPhysicalDamageTwoHand8"] = { type = "Prefix", affix = "Tempered", "Adds (30-40) to (63-73) Physical Damage", statOrder = { 1276 }, level = 65, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (30-40) to (63-73) Physical Damage" }, } },
+ ["LocalAddedPhysicalDamageTwoHand9"] = { type = "Prefix", affix = "Flaring", "Adds (34-47) to (72-84) Physical Damage", statOrder = { 1276 }, level = 77, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (34-47) to (72-84) Physical Damage" }, } },
+ ["LocalAddedPhysicalDamageTwoHandEssenceNew7__"] = { type = "Prefix", affix = "Essences", "Adds (31-42) to (65-75) Physical Damage", statOrder = { 1276 }, level = 82, group = "LocalPhysicalDamageTwoHanded", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (31-42) to (65-75) Physical Damage" }, } },
+ ["LocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(11-28)% increased Energy Shield", statOrder = { 1560 }, level = 3, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(11-28)% increased Energy Shield" }, } },
+ ["LocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(27-42)% increased Energy Shield", statOrder = { 1560 }, level = 18, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(27-42)% increased Energy Shield" }, } },
+ ["LocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(43-55)% increased Energy Shield", statOrder = { 1560 }, level = 30, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(43-55)% increased Energy Shield" }, } },
+ ["LocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(56-67)% increased Energy Shield", statOrder = { 1560 }, level = 44, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(56-67)% increased Energy Shield" }, } },
+ ["LocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(68-79)% increased Energy Shield", statOrder = { 1560 }, level = 60, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(68-79)% increased Energy Shield" }, } },
+ ["LocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(80-91)% increased Energy Shield", statOrder = { 1560 }, level = 72, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-91)% increased Energy Shield" }, } },
+ ["LocalIncreasedEnergyShieldPercent7_"] = { type = "Prefix", affix = "Unassailable", "(92-100)% increased Energy Shield", statOrder = { 1560 }, level = 84, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(92-100)% increased Energy Shield" }, } },
+ ["LocalIncreasedEnergyShieldPercent8"] = { type = "Prefix", affix = "Unfaltering", "(101-110)% increased Energy Shield", statOrder = { 1560 }, level = 86, group = "LocalEnergyShieldPercent", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(101-110)% increased Energy Shield" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(15-26)% increased Armour", statOrder = { 1542 }, level = 3, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(15-26)% increased Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(27-42)% increased Armour", statOrder = { 1542 }, level = 17, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(27-42)% increased Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(43-55)% increased Armour", statOrder = { 1542 }, level = 29, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(43-55)% increased Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(56-67)% increased Armour", statOrder = { 1542 }, level = 42, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(56-67)% increased Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(68-79)% increased Armour", statOrder = { 1542 }, level = 60, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(68-79)% increased Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(80-91)% increased Armour", statOrder = { 1542 }, level = 72, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-91)% increased Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(92-100)% increased Armour", statOrder = { 1542 }, level = 84, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(92-100)% increased Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingPercent8_"] = { type = "Prefix", affix = "Impenetrable", "(101-110)% increased Armour", statOrder = { 1542 }, level = 86, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(101-110)% increased Armour" }, } },
+ ["LocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(15-26)% increased Evasion Rating", statOrder = { 1550 }, level = 3, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(15-26)% increased Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(27-42)% increased Evasion Rating", statOrder = { 1550 }, level = 19, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(27-42)% increased Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(43-55)% increased Evasion Rating", statOrder = { 1550 }, level = 30, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(43-55)% increased Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(56-67)% increased Evasion Rating", statOrder = { 1550 }, level = 44, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(56-67)% increased Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(68-79)% increased Evasion Rating", statOrder = { 1550 }, level = 60, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(68-79)% increased Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(80-91)% increased Evasion Rating", statOrder = { 1550 }, level = 72, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-91)% increased Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(92-100)% increased Evasion Rating", statOrder = { 1550 }, level = 84, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(92-100)% increased Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRatingPercent8"] = { type = "Prefix", affix = "Illusion's", "(101-110)% increased Evasion Rating", statOrder = { 1550 }, level = 86, group = "LocalEvasionRatingIncreasePercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(101-110)% increased Evasion Rating" }, } },
+ ["LocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(15-26)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 3, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(15-26)% increased Armour and Energy Shield" }, } },
+ ["LocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(27-42)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 19, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(27-42)% increased Armour and Energy Shield" }, } },
+ ["LocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(43-55)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 30, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(43-55)% increased Armour and Energy Shield" }, } },
+ ["LocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(56-67)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 44, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(56-67)% increased Armour and Energy Shield" }, } },
+ ["LocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(68-79)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 60, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(68-79)% increased Armour and Energy Shield" }, } },
+ ["LocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(80-91)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 72, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-91)% increased Armour and Energy Shield" }, } },
+ ["LocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(92-100)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 84, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(92-100)% increased Armour and Energy Shield" }, } },
+ ["LocalIncreasedArmourAndEnergyShield8"] = { type = "Prefix", affix = "Interpermeated", "(101-110)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 86, group = "LocalArmourAndEnergyShield", weightKey = { "int_armour", "str_dex_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(101-110)% increased Armour and Energy Shield" }, } },
+ ["LocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(15-26)% increased Armour and Evasion", statOrder = { 1553 }, level = 3, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(15-26)% increased Armour and Evasion" }, } },
+ ["LocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(27-42)% increased Armour and Evasion", statOrder = { 1553 }, level = 19, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(27-42)% increased Armour and Evasion" }, } },
+ ["LocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(43-55)% increased Armour and Evasion", statOrder = { 1553 }, level = 30, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(43-55)% increased Armour and Evasion" }, } },
+ ["LocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(56-67)% increased Armour and Evasion", statOrder = { 1553 }, level = 44, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(56-67)% increased Armour and Evasion" }, } },
+ ["LocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(68-79)% increased Armour and Evasion", statOrder = { 1553 }, level = 60, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(68-79)% increased Armour and Evasion" }, } },
+ ["LocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(80-91)% increased Armour and Evasion", statOrder = { 1553 }, level = 72, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-91)% increased Armour and Evasion" }, } },
+ ["LocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(92-100)% increased Armour and Evasion", statOrder = { 1553 }, level = 84, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(92-100)% increased Armour and Evasion" }, } },
+ ["LocalIncreasedArmourAndEvasion8"] = { type = "Prefix", affix = "Victor's", "(101-110)% increased Armour and Evasion", statOrder = { 1553 }, level = 86, group = "LocalArmourAndEvasion", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(101-110)% increased Armour and Evasion" }, } },
+ ["LocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 3, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(15-26)% increased Evasion and Energy Shield" }, } },
+ ["LocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 19, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(27-42)% increased Evasion and Energy Shield" }, } },
+ ["LocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 30, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(43-55)% increased Evasion and Energy Shield" }, } },
+ ["LocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 44, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(56-67)% increased Evasion and Energy Shield" }, } },
+ ["LocalIncreasedEvasionAndEnergyShield5_"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 60, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(68-79)% increased Evasion and Energy Shield" }, } },
+ ["LocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 72, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(80-91)% increased Evasion and Energy Shield" }, } },
+ ["LocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(92-100)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 84, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(92-100)% increased Evasion and Energy Shield" }, } },
+ ["LocalIncreasedEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 86, group = "LocalEvasionAndEnergyShield", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(101-110)% increased Evasion and Energy Shield" }, } },
+ ["LocalIncreasedArmourEvasionEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(27-42)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 3, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(27-42)% increased Armour, Evasion and Energy Shield" }, } },
+ ["LocalIncreasedArmourEvasionEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(43-55)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 19, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(43-55)% increased Armour, Evasion and Energy Shield" }, } },
+ ["LocalIncreasedArmourEvasionEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(56-67)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 30, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(56-67)% increased Armour, Evasion and Energy Shield" }, } },
+ ["LocalIncreasedArmourEvasionEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(68-79)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 44, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(68-79)% increased Armour, Evasion and Energy Shield" }, } },
+ ["LocalIncreasedArmourEvasionEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(80-91)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 60, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(80-91)% increased Armour, Evasion and Energy Shield" }, } },
+ ["LocalIncreasedArmourEvasionEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(92-100)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 72, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(92-100)% increased Armour, Evasion and Energy Shield" }, } },
+ ["LocalIncreasedArmourEvasionEnergyShield7__"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 85, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "dex_int_armour", "body_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(101-110)% increased Armour, Evasion and Energy Shield" }, } },
+ ["LocalIncreasedEnergyShieldPercentAndStunRecovery1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1560, 1902 }, level = 3, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, } },
+ ["LocalIncreasedEnergyShieldPercentAndStunRecovery2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1560, 1902 }, level = 18, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, } },
+ ["LocalIncreasedEnergyShieldPercentAndStunRecovery3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1560, 1902 }, level = 30, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, } },
+ ["LocalIncreasedEnergyShieldPercentAndStunRecovery4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1560, 1902 }, level = 44, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, } },
+ ["LocalIncreasedEnergyShieldPercentAndStunRecovery5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1560, 1902 }, level = 60, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, } },
+ ["LocalIncreasedEnergyShieldPercentAndStunRecovery6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1560, 1902 }, level = 78, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour", "(6-7)% increased Stun and Block Recovery", statOrder = { 1542, 1902 }, level = 1, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour", "(8-9)% increased Stun and Block Recovery", statOrder = { 1542, 1902 }, level = 17, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour", "(10-11)% increased Stun and Block Recovery", statOrder = { 1542, 1902 }, level = 29, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour", "(12-13)% increased Stun and Block Recovery", statOrder = { 1542, 1902 }, level = 42, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour", "(14-15)% increased Stun and Block Recovery", statOrder = { 1542, 1902 }, level = 60, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour", "(16-17)% increased Stun and Block Recovery", statOrder = { 1542, 1902 }, level = 78, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingPercentAndAdditionalBlockChance1"] = { type = "Prefix", affix = "Reliable", "(25-30)% increased Armour", "+2% Chance to Block", statOrder = { 1542, 2249 }, level = 45, group = "LocalPhysicalDamageReductionRatingPercentAndBlockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "defences", "armour" }, tradeHashes = { [1062208444] = { "(25-30)% increased Armour" }, [4253454700] = { "+2% Chance to Block" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingPercentAndAdditionalBlockChance2"] = { type = "Prefix", affix = "Unfailing", "(31-36)% increased Armour", "+3% Chance to Block", statOrder = { 1542, 2249 }, level = 78, group = "LocalPhysicalDamageReductionRatingPercentAndBlockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "defences", "armour" }, tradeHashes = { [1062208444] = { "(31-36)% increased Armour" }, [4253454700] = { "+3% Chance to Block" }, } },
+ ["LocalIncreasedEvasionRatingPercentAndStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion Rating", "(6-7)% increased Stun and Block Recovery", statOrder = { 1550, 1902 }, level = 2, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, } },
+ ["LocalIncreasedEvasionRatingPercentAndStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion Rating", "(8-9)% increased Stun and Block Recovery", statOrder = { 1550, 1902 }, level = 19, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, } },
+ ["LocalIncreasedEvasionRatingPercentAndStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion Rating", "(10-11)% increased Stun and Block Recovery", statOrder = { 1550, 1902 }, level = 30, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, } },
+ ["LocalIncreasedEvasionRatingPercentAndStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion Rating", "(12-13)% increased Stun and Block Recovery", statOrder = { 1550, 1902 }, level = 44, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, } },
+ ["LocalIncreasedEvasionRatingPercentAndStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion Rating", "(14-15)% increased Stun and Block Recovery", statOrder = { 1550, 1902 }, level = 60, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, } },
+ ["LocalIncreasedEvasionRatingPercentAndStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion Rating", "(16-17)% increased Stun and Block Recovery", statOrder = { 1550, 1902 }, level = 78, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, } },
+ ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Armour and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1552, 1902 }, level = 2, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } },
+ ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Armour and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1552, 1902 }, level = 19, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } },
+ ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Armour and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1552, 1902 }, level = 30, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } },
+ ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Armour and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1552, 1902 }, level = 44, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } },
+ ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Armour and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1552, 1902 }, level = 60, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } },
+ ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Armour and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1552, 1902 }, level = 78, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } },
+ ["LocalIncreasedArmourAndEvasionAndStunRecovery1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour and Evasion", "(6-7)% increased Stun and Block Recovery", statOrder = { 1553, 1902 }, level = 2, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, } },
+ ["LocalIncreasedArmourAndEvasionAndStunRecovery2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour and Evasion", "(8-9)% increased Stun and Block Recovery", statOrder = { 1553, 1902 }, level = 19, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, } },
+ ["LocalIncreasedArmourAndEvasionAndStunRecovery3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour and Evasion", "(10-11)% increased Stun and Block Recovery", statOrder = { 1553, 1902 }, level = 30, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, } },
+ ["LocalIncreasedArmourAndEvasionAndStunRecovery4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour and Evasion", "(12-13)% increased Stun and Block Recovery", statOrder = { 1553, 1902 }, level = 44, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, } },
+ ["LocalIncreasedArmourAndEvasionAndStunRecovery5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour and Evasion", "(14-15)% increased Stun and Block Recovery", statOrder = { 1553, 1902 }, level = 60, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, } },
+ ["LocalIncreasedArmourAndEvasionAndStunRecovery6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour and Evasion", "(16-17)% increased Stun and Block Recovery", statOrder = { 1553, 1902 }, level = 78, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, } },
+ ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1554, 1902 }, level = 2, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, } },
+ ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1554, 1902 }, level = 19, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, } },
+ ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1554, 1902 }, level = 30, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, } },
+ ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1554, 1902 }, level = 44, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, } },
+ ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1554, 1902 }, level = 60, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, } },
+ ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1554, 1902 }, level = 78, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, } },
+ ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Armour, Evasion and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1555, 1902 }, level = 2, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, [3523867985] = { "(6-13)% increased Armour, Evasion and Energy Shield" }, } },
+ ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Armour, Evasion and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1555, 1902 }, level = 19, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, [3523867985] = { "(14-20)% increased Armour, Evasion and Energy Shield" }, } },
+ ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Armour, Evasion and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1555, 1902 }, level = 30, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, [3523867985] = { "(21-26)% increased Armour, Evasion and Energy Shield" }, } },
+ ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Armour, Evasion and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1555, 1902 }, level = 44, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, [3523867985] = { "(27-32)% increased Armour, Evasion and Energy Shield" }, } },
+ ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Armour, Evasion and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1555, 1902 }, level = 60, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, [3523867985] = { "(33-38)% increased Armour, Evasion and Energy Shield" }, } },
+ ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Armour, Evasion and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1555, 1902 }, level = 78, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, [3523867985] = { "(39-42)% increased Armour, Evasion and Energy Shield" }, } },
+ ["LocalAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (1-2) to (3-4) Fire Damage" }, } },
+ ["LocalAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-10) to (15-18) Fire Damage", statOrder = { 1362 }, level = 11, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (8-10) to (15-18) Fire Damage" }, } },
+ ["LocalAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (12-17) to (25-29) Fire Damage", statOrder = { 1362 }, level = 18, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (12-17) to (25-29) Fire Damage" }, } },
+ ["LocalAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (17-24) to (35-41) Fire Damage", statOrder = { 1362 }, level = 26, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (17-24) to (35-41) Fire Damage" }, } },
+ ["LocalAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (24-33) to (49-57) Fire Damage", statOrder = { 1362 }, level = 33, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (24-33) to (49-57) Fire Damage" }, } },
+ ["LocalAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (34-46) to (68-80) Fire Damage", statOrder = { 1362 }, level = 42, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (34-46) to (68-80) Fire Damage" }, } },
+ ["LocalAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (46-62) to (93-107) Fire Damage", statOrder = { 1362 }, level = 51, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (46-62) to (93-107) Fire Damage" }, } },
+ ["LocalAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (59-81) to (120-140) Fire Damage", statOrder = { 1362 }, level = 62, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (59-81) to (120-140) Fire Damage" }, } },
+ ["LocalAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (74-101) to (150-175) Fire Damage", statOrder = { 1362 }, level = 74, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (74-101) to (150-175) Fire Damage" }, } },
+ ["LocalAddedFireDamage10_"] = { type = "Prefix", affix = "Carbonising", "Adds (89-121) to (180-210) Fire Damage", statOrder = { 1362 }, level = 82, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 180, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (89-121) to (180-210) Fire Damage" }, } },
+ ["LocalAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (80-109) to (162-189) Fire Damage", statOrder = { 1362 }, level = 82, group = "LocalFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (80-109) to (162-189) Fire Damage" }, } },
+ ["LocalAddedFireDamageEnhancedMod_"] = { type = "Prefix", affix = "Topotante's", "Adds (59-79) to (118-138) Fire Damage", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrder = { 1362, 3762 }, level = 1, group = "LocalFireDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (13-15)% Fire Resistance" }, [709508406] = { "Adds (59-79) to (118-138) Fire Damage" }, } },
+ ["LocalAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (3-5) to (6-7) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (3-5) to (6-7) Fire Damage" }, } },
+ ["LocalAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (14-20) to (29-33) Fire Damage", statOrder = { 1362 }, level = 11, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (14-20) to (29-33) Fire Damage" }, } },
+ ["LocalAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (23-31) to (47-54) Fire Damage", statOrder = { 1362 }, level = 18, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (23-31) to (47-54) Fire Damage" }, } },
+ ["LocalAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (32-44) to (65-76) Fire Damage", statOrder = { 1362 }, level = 26, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (32-44) to (65-76) Fire Damage" }, } },
+ ["LocalAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (45-61) to (91-106) Fire Damage", statOrder = { 1362 }, level = 33, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (45-61) to (91-106) Fire Damage" }, } },
+ ["LocalAddedFireDamageTwoHand6"] = { type = "Prefix", affix = "Scorching", "Adds (63-85) to (128-148) Fire Damage", statOrder = { 1362 }, level = 42, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (63-85) to (128-148) Fire Damage" }, } },
+ ["LocalAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (85-115) to (172-200) Fire Damage", statOrder = { 1362 }, level = 51, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (85-115) to (172-200) Fire Damage" }, } },
+ ["LocalAddedFireDamageTwoHand8_"] = { type = "Prefix", affix = "Blasting", "Adds (110-150) to (223-260) Fire Damage", statOrder = { 1362 }, level = 62, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1120, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (110-150) to (223-260) Fire Damage" }, } },
+ ["LocalAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (137-188) to (279-325) Fire Damage", statOrder = { 1362 }, level = 74, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 490, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (137-188) to (279-325) Fire Damage" }, } },
+ ["LocalAddedFireDamageTwoHand10"] = { type = "Prefix", affix = "Carbonising", "Adds (165-225) to (335-390) Fire Damage", statOrder = { 1362 }, level = 82, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 126, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (165-225) to (335-390) Fire Damage" }, } },
+ ["LocalAddedFireDamageRanged1"] = { type = "Prefix", affix = "Heated", "Adds (3-5) to (6-7) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (3-5) to (6-7) Fire Damage" }, } },
+ ["LocalAddedFireDamageRanged2"] = { type = "Prefix", affix = "Smouldering", "Adds (14-20) to (29-33) Fire Damage", statOrder = { 1362 }, level = 11, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (14-20) to (29-33) Fire Damage" }, } },
+ ["LocalAddedFireDamageRanged3"] = { type = "Prefix", affix = "Smoking", "Adds (23-31) to (47-54) Fire Damage", statOrder = { 1362 }, level = 18, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (23-31) to (47-54) Fire Damage" }, } },
+ ["LocalAddedFireDamageRanged4"] = { type = "Prefix", affix = "Burning", "Adds (32-44) to (65-76) Fire Damage", statOrder = { 1362 }, level = 26, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (32-44) to (65-76) Fire Damage" }, } },
+ ["LocalAddedFireDamageRanged5"] = { type = "Prefix", affix = "Flaming", "Adds (45-61) to (91-106) Fire Damage", statOrder = { 1362 }, level = 33, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (45-61) to (91-106) Fire Damage" }, } },
+ ["LocalAddedFireDamageRanged6"] = { type = "Prefix", affix = "Scorching", "Adds (63-85) to (128-148) Fire Damage", statOrder = { 1362 }, level = 42, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (63-85) to (128-148) Fire Damage" }, } },
+ ["LocalAddedFireDamageRanged7"] = { type = "Prefix", affix = "Incinerating", "Adds (85-115) to (172-200) Fire Damage", statOrder = { 1362 }, level = 51, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (85-115) to (172-200) Fire Damage" }, } },
+ ["LocalAddedFireDamageRanged8"] = { type = "Prefix", affix = "Blasting", "Adds (110-150) to (223-260) Fire Damage", statOrder = { 1362 }, level = 62, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (110-150) to (223-260) Fire Damage" }, } },
+ ["LocalAddedFireDamageRanged9_"] = { type = "Prefix", affix = "Cremating", "Adds (137-188) to (279-325) Fire Damage", statOrder = { 1362 }, level = 74, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (137-188) to (279-325) Fire Damage" }, } },
+ ["LocalAddedFireDamageRanged10"] = { type = "Prefix", affix = "Carbonising", "Adds (165-225) to (335-390) Fire Damage", statOrder = { 1362 }, level = 82, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (165-225) to (335-390) Fire Damage" }, } },
+ ["LocalAddedFireDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (149-203) to (302-351) Fire Damage", statOrder = { 1362 }, level = 82, group = "LocalFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (149-203) to (302-351) Fire Damage" }, } },
+ ["LocalAddedFireDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (109-147) to (220-256) Fire Damage", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrder = { 1362, 3762 }, level = 1, group = "LocalFireDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (13-15)% Fire Resistance" }, [709508406] = { "Adds (109-147) to (220-256) Fire Damage" }, } },
+ ["LocalAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage", statOrder = { 1371 }, level = 2, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (1-2) to (3-4) Cold Damage" }, } },
+ ["LocalAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (7-9) to (14-16) Cold Damage", statOrder = { 1371 }, level = 12, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (7-9) to (14-16) Cold Damage" }, } },
+ ["LocalAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (11-15) to (23-26) Cold Damage", statOrder = { 1371 }, level = 19, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-15) to (23-26) Cold Damage" }, } },
+ ["LocalAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (16-21) to (31-37) Cold Damage", statOrder = { 1371 }, level = 27, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (16-21) to (31-37) Cold Damage" }, } },
+ ["LocalAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (22-30) to (44-51) Cold Damage", statOrder = { 1371 }, level = 34, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (22-30) to (44-51) Cold Damage" }, } },
+ ["LocalAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (31-42) to (62-71) Cold Damage", statOrder = { 1371 }, level = 43, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (31-42) to (62-71) Cold Damage" }, } },
+ ["LocalAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (41-57) to (83-97) Cold Damage", statOrder = { 1371 }, level = 52, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (41-57) to (83-97) Cold Damage" }, } },
+ ["LocalAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (54-74) to (108-126) Cold Damage", statOrder = { 1371 }, level = 63, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (54-74) to (108-126) Cold Damage" }, } },
+ ["LocalAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (68-92) to (136-157) Cold Damage", statOrder = { 1371 }, level = 75, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (68-92) to (136-157) Cold Damage" }, } },
+ ["LocalAddedColdDamage10__"] = { type = "Prefix", affix = "Crystalising", "Adds (81-111) to (163-189) Cold Damage", statOrder = { 1371 }, level = 82, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 180, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (81-111) to (163-189) Cold Damage" }, } },
+ ["LocalAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (73-100) to (147-170) Cold Damage", statOrder = { 1371 }, level = 82, group = "LocalColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (73-100) to (147-170) Cold Damage" }, } },
+ ["LocalAddedColdDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (53-72) to (107-124) Cold Damage", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrder = { 1371, 3763 }, level = 1, group = "LocalColdDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (53-72) to (107-124) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (13-15)% Cold Resistance" }, } },
+ ["LocalAddedColdDamageTwoHand1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (6-7) Cold Damage", statOrder = { 1371 }, level = 2, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (2-3) to (6-7) Cold Damage" }, } },
+ ["LocalAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (12-17) to (26-30) Cold Damage", statOrder = { 1371 }, level = 12, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (12-17) to (26-30) Cold Damage" }, } },
+ ["LocalAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (21-28) to (42-48) Cold Damage", statOrder = { 1371 }, level = 19, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (21-28) to (42-48) Cold Damage" }, } },
+ ["LocalAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (29-40) to (58-68) Cold Damage", statOrder = { 1371 }, level = 27, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (29-40) to (58-68) Cold Damage" }, } },
+ ["LocalAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (41-55) to (81-95) Cold Damage", statOrder = { 1371 }, level = 34, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (41-55) to (81-95) Cold Damage" }, } },
+ ["LocalAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (57-77) to (114-132) Cold Damage", statOrder = { 1371 }, level = 43, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (57-77) to (114-132) Cold Damage" }, } },
+ ["LocalAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (77-104) to (154-178) Cold Damage", statOrder = { 1371 }, level = 52, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (77-104) to (154-178) Cold Damage" }, } },
+ ["LocalAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (99-136) to (200-232) Cold Damage", statOrder = { 1371 }, level = 63, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1120, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (99-136) to (200-232) Cold Damage" }, } },
+ ["LocalAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (124-170) to (250-290) Cold Damage", statOrder = { 1371 }, level = 75, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 490, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (124-170) to (250-290) Cold Damage" }, } },
+ ["LocalAddedColdDamageTwoHand10"] = { type = "Prefix", affix = "Crystalising", "Adds (149-204) to (300-348) Cold Damage", statOrder = { 1371 }, level = 82, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 126, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (149-204) to (300-348) Cold Damage" }, } },
+ ["LocalAddedColdDamageRanged1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (6-7) Cold Damage", statOrder = { 1371 }, level = 2, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (2-3) to (6-7) Cold Damage" }, } },
+ ["LocalAddedColdDamageRanged2"] = { type = "Prefix", affix = "Chilled", "Adds (12-17) to (26-30) Cold Damage", statOrder = { 1371 }, level = 12, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (12-17) to (26-30) Cold Damage" }, } },
+ ["LocalAddedColdDamageRanged3"] = { type = "Prefix", affix = "Icy", "Adds (21-28) to (42-48) Cold Damage", statOrder = { 1371 }, level = 19, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (21-28) to (42-48) Cold Damage" }, } },
+ ["LocalAddedColdDamageRanged4"] = { type = "Prefix", affix = "Frigid", "Adds (29-40) to (58-68) Cold Damage", statOrder = { 1371 }, level = 27, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (29-40) to (58-68) Cold Damage" }, } },
+ ["LocalAddedColdDamageRanged5"] = { type = "Prefix", affix = "Freezing", "Adds (41-55) to (81-95) Cold Damage", statOrder = { 1371 }, level = 34, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (41-55) to (81-95) Cold Damage" }, } },
+ ["LocalAddedColdDamageRanged6"] = { type = "Prefix", affix = "Frozen", "Adds (57-77) to (114-132) Cold Damage", statOrder = { 1371 }, level = 43, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (57-77) to (114-132) Cold Damage" }, } },
+ ["LocalAddedColdDamageRanged7"] = { type = "Prefix", affix = "Glaciated", "Adds (77-104) to (154-178) Cold Damage", statOrder = { 1371 }, level = 52, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (77-104) to (154-178) Cold Damage" }, } },
+ ["LocalAddedColdDamageRanged8"] = { type = "Prefix", affix = "Polar", "Adds (99-136) to (200-232) Cold Damage", statOrder = { 1371 }, level = 63, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (99-136) to (200-232) Cold Damage" }, } },
+ ["LocalAddedColdDamageRanged9"] = { type = "Prefix", affix = "Entombing", "Adds (124-170) to (250-290) Cold Damage", statOrder = { 1371 }, level = 75, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (124-170) to (250-290) Cold Damage" }, } },
+ ["LocalAddedColdDamageRanged10"] = { type = "Prefix", affix = "Crystalising", "Adds (149-204) to (300-348) Cold Damage", statOrder = { 1371 }, level = 82, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (149-204) to (300-348) Cold Damage" }, } },
+ ["LocalAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (134-184) to (270-313) Cold Damage", statOrder = { 1371 }, level = 82, group = "LocalColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (134-184) to (270-313) Cold Damage" }, } },
+ ["LocalAddedColdDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (100-132) to (197-230) Cold Damage", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrder = { 1371, 3763 }, level = 1, group = "LocalColdDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (100-132) to (197-230) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (13-15)% Cold Resistance" }, } },
+ ["LocalAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (5-6) Lightning Damage", statOrder = { 1382 }, level = 3, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (5-6) Lightning Damage" }, } },
+ ["LocalAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 2 to (25-29) Lightning Damage", statOrder = { 1382 }, level = 13, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 2 to (25-29) Lightning Damage" }, } },
+ ["LocalAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds 2 to (41-48) Lightning Damage", statOrder = { 1382 }, level = 19, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 2 to (41-48) Lightning Damage" }, } },
+ ["LocalAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds 3 to (57-67) Lightning Damage", statOrder = { 1382 }, level = 31, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 3 to (57-67) Lightning Damage" }, } },
+ ["LocalAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (4-5) to (80-94) Lightning Damage", statOrder = { 1382 }, level = 34, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (4-5) to (80-94) Lightning Damage" }, } },
+ ["LocalAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (5-8) to (112-131) Lightning Damage", statOrder = { 1382 }, level = 42, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (5-8) to (112-131) Lightning Damage" }, } },
+ ["LocalAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (8-10) to (152-176) Lightning Damage", statOrder = { 1382 }, level = 51, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (8-10) to (152-176) Lightning Damage" }, } },
+ ["LocalAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (10-14) to (197-229) Lightning Damage", statOrder = { 1382 }, level = 63, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (10-14) to (197-229) Lightning Damage" }, } },
+ ["LocalAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (13-17) to (247-286) Lightning Damage", statOrder = { 1382 }, level = 74, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (13-17) to (247-286) Lightning Damage" }, } },
+ ["LocalAddedLightningDamage10"] = { type = "Prefix", affix = "Vapourising", "Adds (15-21) to (296-344) Lightning Damage", statOrder = { 1382 }, level = 82, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 180, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (15-21) to (296-344) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (13-19) to (266-310) Lightning Damage", statOrder = { 1382 }, level = 82, group = "LocalLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (13-19) to (266-310) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (7-17) to (198-224) Lightning Damage", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 1, group = "LocalLightningDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance" }, [3336890334] = { "Adds (7-17) to (198-224) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageTwoHand1_"] = { type = "Prefix", affix = "Humming", "Adds 2 to (10-11) Lightning Damage", statOrder = { 1382 }, level = 3, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 2 to (10-11) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds 3 to (46-53) Lightning Damage", statOrder = { 1382 }, level = 13, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 3 to (46-53) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (4-5) to (76-88) Lightning Damage", statOrder = { 1382 }, level = 19, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (4-5) to (76-88) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (5-8) to (106-123) Lightning Damage", statOrder = { 1382 }, level = 31, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (5-8) to (106-123) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (8-10) to (148-173) Lightning Damage", statOrder = { 1382 }, level = 34, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (8-10) to (148-173) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (11-14) to (208-242) Lightning Damage", statOrder = { 1382 }, level = 42, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (11-14) to (208-242) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (14-20) to (281-327) Lightning Damage", statOrder = { 1382 }, level = 51, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (14-20) to (281-327) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (19-25) to (366-425) Lightning Damage", statOrder = { 1382 }, level = 63, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1120, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (19-25) to (366-425) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageTwoHand9"] = { type = "Prefix", affix = "Electrocuting", "Adds (23-32) to (458-531) Lightning Damage", statOrder = { 1382 }, level = 74, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 490, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (23-32) to (458-531) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageTwoHand10"] = { type = "Prefix", affix = "Vapourising", "Adds (28-38) to (549-638) Lightning Damage", statOrder = { 1382 }, level = 82, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 126, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (28-38) to (549-638) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageRanged1"] = { type = "Prefix", affix = "Humming", "Adds 2 to (10-11) Lightning Damage", statOrder = { 1382 }, level = 3, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 2 to (10-11) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageRanged2"] = { type = "Prefix", affix = "Buzzing", "Adds 3 to (46-53) Lightning Damage", statOrder = { 1382 }, level = 13, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 3 to (46-53) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageRanged3___"] = { type = "Prefix", affix = "Snapping", "Adds (4-5) to (76-88) Lightning Damage", statOrder = { 1382 }, level = 19, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (4-5) to (76-88) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageRanged4"] = { type = "Prefix", affix = "Crackling", "Adds (5-8) to (106-123) Lightning Damage", statOrder = { 1382 }, level = 31, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (5-8) to (106-123) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageRanged5"] = { type = "Prefix", affix = "Sparking", "Adds (8-10) to (148-173) Lightning Damage", statOrder = { 1382 }, level = 34, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (8-10) to (148-173) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageRanged6_"] = { type = "Prefix", affix = "Arcing", "Adds (11-14) to (208-242) Lightning Damage", statOrder = { 1382 }, level = 42, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (11-14) to (208-242) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageRanged7"] = { type = "Prefix", affix = "Shocking", "Adds (14-20) to (281-327) Lightning Damage", statOrder = { 1382 }, level = 51, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (14-20) to (281-327) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageRanged8"] = { type = "Prefix", affix = "Discharging", "Adds (19-25) to (366-425) Lightning Damage", statOrder = { 1382 }, level = 63, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (19-25) to (366-425) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageRanged9"] = { type = "Prefix", affix = "Electrocuting", "Adds (23-32) to (458-531) Lightning Damage", statOrder = { 1382 }, level = 74, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (23-32) to (458-531) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageRanged10_"] = { type = "Prefix", affix = "Vapourising", "Adds (28-38) to (549-638) Lightning Damage", statOrder = { 1382 }, level = 82, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (28-38) to (549-638) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (25-34) to (494-575) Lightning Damage", statOrder = { 1382 }, level = 82, group = "LocalLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (25-34) to (494-575) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (12-31) to (367-415) Lightning Damage", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 1, group = "LocalLightningDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance" }, [3336890334] = { "Adds (12-31) to (367-415) Lightning Damage" }, } },
+ ["IncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(4-8)% increased Armour", statOrder = { 1541 }, level = 2, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(4-8)% increased Armour" }, } },
+ ["IncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(9-13)% increased Armour", statOrder = { 1541 }, level = 18, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(9-13)% increased Armour" }, } },
+ ["IncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(14-18)% increased Armour", statOrder = { 1541 }, level = 30, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(14-18)% increased Armour" }, } },
+ ["IncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(19-23)% increased Armour", statOrder = { 1541 }, level = 42, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(19-23)% increased Armour" }, } },
+ ["IncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(24-28)% increased Armour", statOrder = { 1541 }, level = 56, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(24-28)% increased Armour" }, } },
+ ["IncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(29-32)% increased Armour", statOrder = { 1541 }, level = 70, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(29-32)% increased Armour" }, } },
+ ["IncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(33-36)% increased Armour", statOrder = { 1541 }, level = 77, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(33-36)% increased Armour" }, } },
+ ["IncreasedPhysicalDamageReductionRatingPercentEssence6"] = { type = "Prefix", affix = "Essences", "(29-31)% increased Armour", statOrder = { 1541 }, level = 77, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(29-31)% increased Armour" }, } },
+ ["IncreasedPhysicalDamageReductionRatingPercentEssence7"] = { type = "Prefix", affix = "Essences", "(32-33)% increased Armour", statOrder = { 1541 }, level = 82, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(32-33)% increased Armour" }, } },
+ ["IncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Agile", "(4-8)% increased Evasion Rating", statOrder = { 1549 }, level = 2, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(4-8)% increased Evasion Rating" }, } },
+ ["IncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Dancer's", "(9-13)% increased Evasion Rating", statOrder = { 1549 }, level = 19, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(9-13)% increased Evasion Rating" }, } },
+ ["IncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Acrobat's", "(14-18)% increased Evasion Rating", statOrder = { 1549 }, level = 30, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(14-18)% increased Evasion Rating" }, } },
+ ["IncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Fleet", "(19-23)% increased Evasion Rating", statOrder = { 1549 }, level = 42, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(19-23)% increased Evasion Rating" }, } },
+ ["IncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Blurred", "(24-28)% increased Evasion Rating", statOrder = { 1549 }, level = 56, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(24-28)% increased Evasion Rating" }, } },
+ ["IncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Phased", "(29-32)% increased Evasion Rating", statOrder = { 1549 }, level = 70, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(29-32)% increased Evasion Rating" }, } },
+ ["IncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Vaporous", "(33-36)% increased Evasion Rating", statOrder = { 1549 }, level = 77, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(33-36)% increased Evasion Rating" }, } },
+ ["IncreasedEvasionRatingPercentEssence6"] = { type = "Prefix", affix = "Essences", "(29-31)% increased Evasion Rating", statOrder = { 1549 }, level = 77, group = "GlobalEvasionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(29-31)% increased Evasion Rating" }, } },
+ ["IncreasedEvasionRatingPercentEssence7"] = { type = "Prefix", affix = "Essences", "(32-33)% increased Evasion Rating", statOrder = { 1549 }, level = 82, group = "GlobalEvasionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(32-33)% increased Evasion Rating" }, } },
+ ["IncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(2-4)% increased maximum Energy Shield", statOrder = { 1561 }, level = 3, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(2-4)% increased maximum Energy Shield" }, } },
+ ["IncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(5-7)% increased maximum Energy Shield", statOrder = { 1561 }, level = 18, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(5-7)% increased maximum Energy Shield" }, } },
+ ["IncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(8-10)% increased maximum Energy Shield", statOrder = { 1561 }, level = 30, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(8-10)% increased maximum Energy Shield" }, } },
+ ["IncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(11-13)% increased maximum Energy Shield", statOrder = { 1561 }, level = 42, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(11-13)% increased maximum Energy Shield" }, } },
+ ["IncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(14-16)% increased maximum Energy Shield", statOrder = { 1561 }, level = 56, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(14-16)% increased maximum Energy Shield" }, } },
+ ["IncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(17-19)% increased maximum Energy Shield", statOrder = { 1561 }, level = 70, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(17-19)% increased maximum Energy Shield" }, } },
+ ["IncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(20-22)% increased maximum Energy Shield", statOrder = { 1561 }, level = 77, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(20-22)% increased maximum Energy Shield" }, } },
+ ["IncreasedEnergyShieldPercentEssence1"] = { type = "Prefix", affix = "Essences", "(4-6)% increased maximum Energy Shield", statOrder = { 1561 }, level = 10, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(4-6)% increased maximum Energy Shield" }, } },
+ ["IncreasedEnergyShieldPercentEssence4"] = { type = "Prefix", affix = "Essences", "(11-13)% increased maximum Energy Shield", statOrder = { 1561 }, level = 10, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(11-13)% increased maximum Energy Shield" }, } },
+ ["IncreasedEnergyShieldPercentEssence5"] = { type = "Prefix", affix = "Essences", "(14-16)% increased maximum Energy Shield", statOrder = { 1561 }, level = 10, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(14-16)% increased maximum Energy Shield" }, } },
+ ["IncreasedEnergyShieldPercentEssence6"] = { type = "Prefix", affix = "Essences", "(17-18)% increased maximum Energy Shield", statOrder = { 1561 }, level = 77, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(17-18)% increased maximum Energy Shield" }, } },
+ ["IncreasedEnergyShieldPercentEssence7_"] = { type = "Prefix", affix = "Essences", "(18-19)% increased maximum Energy Shield", statOrder = { 1561 }, level = 82, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(18-19)% increased maximum Energy Shield" }, } },
+ ["IncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(3-10) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(3-10) to Evasion Rating" }, } },
+ ["IncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(11-35) to Evasion Rating", statOrder = { 1544 }, level = 18, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(11-35) to Evasion Rating" }, } },
+ ["IncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(36-60) to Evasion Rating", statOrder = { 1544 }, level = 29, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(36-60) to Evasion Rating" }, } },
+ ["IncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(61-80) to Evasion Rating", statOrder = { 1544 }, level = 42, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(61-80) to Evasion Rating" }, } },
+ ["IncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(81-120) to Evasion Rating", statOrder = { 1544 }, level = 58, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(81-120) to Evasion Rating" }, } },
+ ["IncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(121-150) to Evasion Rating", statOrder = { 1544 }, level = 72, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(121-150) to Evasion Rating" }, } },
+ ["IncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "+(151-170) to Evasion Rating", statOrder = { 1544 }, level = 84, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(151-170) to Evasion Rating" }, } },
+ ["IncreasedEvasionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(151-180) to Evasion Rating", statOrder = { 1544 }, level = 82, group = "EvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(151-180) to Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(6-12) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(6-12) to Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(13-35) to Evasion Rating", statOrder = { 1548 }, level = 11, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(13-35) to Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(36-63) to Evasion Rating", statOrder = { 1548 }, level = 17, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(36-63) to Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(64-82) to Evasion Rating", statOrder = { 1548 }, level = 23, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(64-82) to Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(83-101) to Evasion Rating", statOrder = { 1548 }, level = 29, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(83-101) to Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(102-120) to Evasion Rating", statOrder = { 1548 }, level = 35, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(102-120) to Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRating7_"] = { type = "Prefix", affix = "Vaporous", "+(121-150) to Evasion Rating", statOrder = { 1548 }, level = 43, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(121-150) to Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(151-200) to Evasion Rating", statOrder = { 1548 }, level = 51, group = "LocalEvasionRating", weightKey = { "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(151-200) to Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRating9___"] = { type = "Prefix", affix = "Adroit", "+(201-300) to Evasion Rating", statOrder = { 1548 }, level = 60, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(201-300) to Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRating10"] = { type = "Prefix", affix = "Lissome", "+(301-400) to Evasion Rating", statOrder = { 1548 }, level = 69, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(301-400) to Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRating11"] = { type = "Prefix", affix = "Fugitive", "+(401-500) to Evasion Rating", statOrder = { 1548 }, level = 77, group = "LocalEvasionRating", weightKey = { "shield", "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(401-500) to Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(390-475) to Evasion Rating", statOrder = { 1548 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(390-475) to Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRatingEssenceHelm4__"] = { type = "Prefix", affix = "Essences", "+(40-49) to Evasion Rating", statOrder = { 1548 }, level = 42, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(40-49) to Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRatingEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(121-140) to Evasion Rating", statOrder = { 1548 }, level = 58, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(121-140) to Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRatingEssenceHelm6"] = { type = "Prefix", affix = "Essences", "+(141-160) to Evasion Rating", statOrder = { 1548 }, level = 74, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(141-160) to Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRatingEssenceHelm7"] = { type = "Prefix", affix = "Essences", "+(161-180) to Evasion Rating", statOrder = { 1548 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(161-180) to Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRatingEssenceGlovesBoots3"] = { type = "Prefix", affix = "Essences", "+(21-25) to Evasion Rating", statOrder = { 1548 }, level = 26, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(21-25) to Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRatingEssenceGlovesBoots4"] = { type = "Prefix", affix = "Essences", "+(81-90) to Evasion Rating", statOrder = { 1548 }, level = 42, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(81-90) to Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRatingEssenceGlovesBoots5"] = { type = "Prefix", affix = "Essences", "+(91-105) to Evasion Rating", statOrder = { 1548 }, level = 58, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(91-105) to Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRatingEssenceGlovesBoots6"] = { type = "Prefix", affix = "Essences", "+(106-120) to Evasion Rating", statOrder = { 1548 }, level = 74, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(106-120) to Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRatingEssenceGlovesBoots7"] = { type = "Prefix", affix = "Essences", "+(121-135) to Evasion Rating", statOrder = { 1548 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(121-135) to Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRatingEssenceShield5"] = { type = "Prefix", affix = "Essences", "+(151-225) to Evasion Rating", statOrder = { 1548 }, level = 58, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(151-225) to Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRatingEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(226-300) to Evasion Rating", statOrder = { 1548 }, level = 74, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(226-300) to Evasion Rating" }, } },
+ ["LocalIncreasedEvasionRatingEssenceShield7____"] = { type = "Prefix", affix = "Essences", "+(301-375) to Evasion Rating", statOrder = { 1548 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(301-375) to Evasion Rating" }, } },
+ ["IncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(3-10) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(3-10) to Armour" }, } },
+ ["IncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(11-35) to Armour", statOrder = { 1539 }, level = 18, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(11-35) to Armour" }, } },
+ ["IncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(36-60) to Armour", statOrder = { 1539 }, level = 30, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(36-60) to Armour" }, } },
+ ["IncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(61-138) to Armour", statOrder = { 1539 }, level = 44, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(61-138) to Armour" }, } },
+ ["IncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(139-322) to Armour", statOrder = { 1539 }, level = 57, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(139-322) to Armour" }, } },
+ ["IncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(323-400) to Armour", statOrder = { 1539 }, level = 71, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(323-400) to Armour" }, } },
+ ["IncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "+(401-460) to Armour", statOrder = { 1539 }, level = 83, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(401-460) to Armour" }, } },
+ ["IncreasedPhysicalDamageReductionRating8_"] = { type = "Prefix", affix = "Enveloped", "+(461-540) to Armour", statOrder = { 1539 }, level = 86, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(461-540) to Armour" }, } },
+ ["IncreasedPhysicalDamageReductionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(481-520) to Armour", statOrder = { 1539 }, level = 82, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(481-520) to Armour" }, } },
+ ["IncreasedPhysicalDamageReductionRatingEssenceRing5"] = { type = "Prefix", affix = "Essences", "+(80-120) to Armour", statOrder = { 1539 }, level = 58, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(80-120) to Armour" }, } },
+ ["IncreasedPhysicalDamageReductionRatingEssenceRing6"] = { type = "Prefix", affix = "Essences", "+(121-200) to Armour", statOrder = { 1539 }, level = 74, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(121-200) to Armour" }, } },
+ ["IncreasedPhysicalDamageReductionRatingEssenceRing7"] = { type = "Prefix", affix = "Essences", "+(201-300) to Armour", statOrder = { 1539 }, level = 82, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(201-300) to Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(6-12) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(6-12) to Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(13-35) to Armour", statOrder = { 1540 }, level = 11, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(13-35) to Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(36-63) to Armour", statOrder = { 1540 }, level = 17, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(36-63) to Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(64-82) to Armour", statOrder = { 1540 }, level = 23, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(64-82) to Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(83-101) to Armour", statOrder = { 1540 }, level = 29, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(83-101) to Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(102-120) to Armour", statOrder = { 1540 }, level = 35, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(102-120) to Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRating7__"] = { type = "Prefix", affix = "Encased", "+(121-150) to Armour", statOrder = { 1540 }, level = 43, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(121-150) to Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRating8"] = { type = "Prefix", affix = "Enveloped", "+(151-200) to Armour", statOrder = { 1540 }, level = 51, group = "LocalPhysicalDamageReductionRating", weightKey = { "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(151-200) to Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRating9_"] = { type = "Prefix", affix = "Abating", "+(201-300) to Armour", statOrder = { 1540 }, level = 60, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(201-300) to Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(301-400) to Armour", statOrder = { 1540 }, level = 69, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(301-400) to Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRating11"] = { type = "Prefix", affix = "Impervious", "+(401-500) to Armour", statOrder = { 1540 }, level = 77, group = "LocalPhysicalDamageReductionRating", weightKey = { "shield", "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(401-500) to Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(390-475) to Armour", statOrder = { 1540 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(390-475) to Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(121-140) to Armour", statOrder = { 1540 }, level = 58, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(121-140) to Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm6_"] = { type = "Prefix", affix = "Essences", "+(141-160) to Armour", statOrder = { 1540 }, level = 74, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(141-160) to Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm7_"] = { type = "Prefix", affix = "Essences", "+(161-180) to Armour", statOrder = { 1540 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(161-180) to Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves5"] = { type = "Prefix", affix = "Essences", "+(91-105) to Armour", statOrder = { 1540 }, level = 58, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(91-105) to Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves6"] = { type = "Prefix", affix = "Essences", "+(106-120) to Armour", statOrder = { 1540 }, level = 74, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(106-120) to Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves7"] = { type = "Prefix", affix = "Essences", "+(121-135) to Armour", statOrder = { 1540 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(121-135) to Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingEssenceShield5_"] = { type = "Prefix", affix = "Essences", "+(151-225) to Armour", statOrder = { 1540 }, level = 58, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(151-225) to Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(226-300) to Armour", statOrder = { 1540 }, level = 74, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(226-300) to Armour" }, } },
+ ["LocalIncreasedPhysicalDamageReductionRatingEssenceShield7____"] = { type = "Prefix", affix = "Essences", "+(301-375) to Armour", statOrder = { 1540 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(301-375) to Armour" }, } },
+ ["LocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "+(5-9) to Armour", "+(5-9) to Evasion Rating", statOrder = { 1540, 1548 }, level = 1, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(5-9) to Armour" }, [53045048] = { "+(5-9) to Evasion Rating" }, } },
+ ["LocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "+(10-27) to Armour", "+(10-27) to Evasion Rating", statOrder = { 1540, 1548 }, level = 18, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(10-27) to Armour" }, [53045048] = { "+(10-27) to Evasion Rating" }, } },
+ ["LocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "+(28-48) to Armour", "+(28-48) to Evasion Rating", statOrder = { 1540, 1548 }, level = 30, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(28-48) to Armour" }, [53045048] = { "+(28-48) to Evasion Rating" }, } },
+ ["LocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "+(49-85) to Armour", "+(49-85) to Evasion Rating", statOrder = { 1540, 1548 }, level = 38, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(49-85) to Armour" }, [53045048] = { "+(49-85) to Evasion Rating" }, } },
+ ["LocalBaseArmourAndEvasionRating5"] = { type = "Prefix", affix = "Sturdy", "+(86-145) to Armour", "+(86-145) to Evasion Rating", statOrder = { 1540, 1548 }, level = 46, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(86-145) to Armour" }, [53045048] = { "+(86-145) to Evasion Rating" }, } },
+ ["LocalBaseArmourAndEvasionRating6_"] = { type = "Prefix", affix = "Resilient", "+(146-220) to Armour", "+(146-220) to Evasion Rating", statOrder = { 1540, 1548 }, level = 58, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(146-220) to Armour" }, [53045048] = { "+(146-220) to Evasion Rating" }, } },
+ ["LocalBaseArmourAndEvasionRating7"] = { type = "Prefix", affix = "Adaptable", "+(221-300) to Armour", "+(221-300) to Evasion Rating", statOrder = { 1540, 1548 }, level = 69, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(221-300) to Armour" }, [53045048] = { "+(221-300) to Evasion Rating" }, } },
+ ["LocalBaseArmourAndEvasionRating8"] = { type = "Prefix", affix = "Versatile", "+(301-375) to Armour", "+(301-375) to Evasion Rating", statOrder = { 1540, 1548 }, level = 79, group = "LocalBaseArmourAndEvasionRating", weightKey = { "shield", "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(301-375) to Armour" }, [53045048] = { "+(301-375) to Evasion Rating" }, } },
+ ["LocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "+(5-9) to Armour", "+(3-4) to maximum Energy Shield", statOrder = { 1540, 1559 }, level = 1, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(5-9) to Armour" }, [4052037485] = { "+(3-4) to maximum Energy Shield" }, } },
+ ["LocalBaseArmourAndEnergyShield2_"] = { type = "Prefix", affix = "Anointed", "+(10-27) to Armour", "+(5-12) to maximum Energy Shield", statOrder = { 1540, 1559 }, level = 18, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(10-27) to Armour" }, [4052037485] = { "+(5-12) to maximum Energy Shield" }, } },
+ ["LocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "+(28-48) to Armour", "+(13-22) to maximum Energy Shield", statOrder = { 1540, 1559 }, level = 30, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(28-48) to Armour" }, [4052037485] = { "+(13-22) to maximum Energy Shield" }, } },
+ ["LocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "+(49-85) to Armour", "+(23-28) to maximum Energy Shield", statOrder = { 1540, 1559 }, level = 38, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(49-85) to Armour" }, [4052037485] = { "+(23-28) to maximum Energy Shield" }, } },
+ ["LocalBaseArmourAndEnergyShield5"] = { type = "Prefix", affix = "Beatified", "+(86-145) to Armour", "+(29-48) to maximum Energy Shield", statOrder = { 1540, 1559 }, level = 46, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(86-145) to Armour" }, [4052037485] = { "+(29-48) to maximum Energy Shield" }, } },
+ ["LocalBaseArmourAndEnergyShield6"] = { type = "Prefix", affix = "Consecrated", "+(146-220) to Armour", "+(49-60) to maximum Energy Shield", statOrder = { 1540, 1559 }, level = 58, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(146-220) to Armour" }, [4052037485] = { "+(49-60) to maximum Energy Shield" }, } },
+ ["LocalBaseArmourAndEnergyShield7"] = { type = "Prefix", affix = "Saintly", "+(221-300) to Armour", "+(61-72) to maximum Energy Shield", statOrder = { 1540, 1559 }, level = 69, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(221-300) to Armour" }, [4052037485] = { "+(61-72) to maximum Energy Shield" }, } },
+ ["LocalBaseArmourAndEnergyShield8"] = { type = "Prefix", affix = "Godly", "+(301-375) to Armour", "+(73-80) to maximum Energy Shield", statOrder = { 1540, 1559 }, level = 79, group = "LocalBaseArmourAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(301-375) to Armour" }, [4052037485] = { "+(73-80) to maximum Energy Shield" }, } },
+ ["LocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "+(5-9) to Evasion Rating", "+(3-4) to maximum Energy Shield", statOrder = { 1548, 1559 }, level = 1, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(5-9) to Evasion Rating" }, [4052037485] = { "+(3-4) to maximum Energy Shield" }, } },
+ ["LocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "+(10-27) to Evasion Rating", "+(5-12) to maximum Energy Shield", statOrder = { 1548, 1559 }, level = 18, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(10-27) to Evasion Rating" }, [4052037485] = { "+(5-12) to maximum Energy Shield" }, } },
+ ["LocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "+(28-48) to Evasion Rating", "+(13-22) to maximum Energy Shield", statOrder = { 1548, 1559 }, level = 30, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(28-48) to Evasion Rating" }, [4052037485] = { "+(13-22) to maximum Energy Shield" }, } },
+ ["LocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "+(49-85) to Evasion Rating", "+(23-28) to maximum Energy Shield", statOrder = { 1548, 1559 }, level = 38, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(49-85) to Evasion Rating" }, [4052037485] = { "+(23-28) to maximum Energy Shield" }, } },
+ ["LocalBaseEvasionRatingAndEnergyShield5_"] = { type = "Prefix", affix = "Spirit's", "+(86-145) to Evasion Rating", "+(29-48) to maximum Energy Shield", statOrder = { 1548, 1559 }, level = 46, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(86-145) to Evasion Rating" }, [4052037485] = { "+(29-48) to maximum Energy Shield" }, } },
+ ["LocalBaseEvasionRatingAndEnergyShield6"] = { type = "Prefix", affix = "Eidolon's", "+(146-220) to Evasion Rating", "+(49-60) to maximum Energy Shield", statOrder = { 1548, 1559 }, level = 58, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(146-220) to Evasion Rating" }, [4052037485] = { "+(49-60) to maximum Energy Shield" }, } },
+ ["LocalBaseEvasionRatingAndEnergyShield7___"] = { type = "Prefix", affix = "Apparition's", "+(221-300) to Evasion Rating", "+(61-72) to maximum Energy Shield", statOrder = { 1548, 1559 }, level = 69, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(221-300) to Evasion Rating" }, [4052037485] = { "+(61-72) to maximum Energy Shield" }, } },
+ ["LocalBaseEvasionRatingAndEnergyShield8___"] = { type = "Prefix", affix = "Phantasm's", "+(301-375) to Evasion Rating", "+(73-80) to maximum Energy Shield", statOrder = { 1548, 1559 }, level = 79, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(301-375) to Evasion Rating" }, [4052037485] = { "+(73-80) to maximum Energy Shield" }, } },
+ ["LocalBaseArmourAndEvasionRatingAndLife1"] = { type = "Prefix", affix = "Rhoa's", "+(8-10) to Armour", "+(8-10) to Evasion Rating", "+(18-23) to maximum Life", statOrder = { 1540, 1548, 1569 }, level = 30, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(8-10) to Armour" }, [3299347043] = { "+(18-23) to maximum Life" }, [53045048] = { "+(8-10) to Evasion Rating" }, } },
+ ["LocalBaseArmourAndEvasionRatingAndLife2"] = { type = "Prefix", affix = "Rhex's", "+(11-21) to Armour", "+(11-21) to Evasion Rating", "+(24-28) to maximum Life", statOrder = { 1540, 1548, 1569 }, level = 46, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(11-21) to Armour" }, [3299347043] = { "+(24-28) to maximum Life" }, [53045048] = { "+(11-21) to Evasion Rating" }, } },
+ ["LocalBaseArmourAndEvasionRatingAndLife3"] = { type = "Prefix", affix = "Chimeral's", "+(22-48) to Armour", "+(22-48) to Evasion Rating", "+(29-33) to maximum Life", statOrder = { 1540, 1548, 1569 }, level = 62, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(22-48) to Armour" }, [3299347043] = { "+(29-33) to maximum Life" }, [53045048] = { "+(22-48) to Evasion Rating" }, } },
+ ["LocalBaseArmourAndEvasionRatingAndLife4"] = { type = "Prefix", affix = "Bull's", "+(49-60) to Armour", "+(49-60) to Evasion Rating", "+(34-38) to maximum Life", statOrder = { 1540, 1548, 1569 }, level = 78, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(49-60) to Armour" }, [3299347043] = { "+(34-38) to maximum Life" }, [53045048] = { "+(49-60) to Evasion Rating" }, } },
+ ["LocalBaseArmourAndEnergyShieldAndLife1_"] = { type = "Prefix", affix = "Coelacanth's", "+(8-10) to Armour", "+(3-5) to maximum Energy Shield", "+(18-23) to maximum Life", statOrder = { 1540, 1559, 1569 }, level = 30, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(8-10) to Armour" }, [3299347043] = { "+(18-23) to maximum Life" }, [4052037485] = { "+(3-5) to maximum Energy Shield" }, } },
+ ["LocalBaseArmourAndEnergyShieldAndLife2_"] = { type = "Prefix", affix = "Swordfish's", "+(11-21) to Armour", "+(6-8) to maximum Energy Shield", "+(24-28) to maximum Life", statOrder = { 1540, 1559, 1569 }, level = 46, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(11-21) to Armour" }, [3299347043] = { "+(24-28) to maximum Life" }, [4052037485] = { "+(6-8) to maximum Energy Shield" }, } },
+ ["LocalBaseArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Shark's", "+(22-48) to Armour", "+(9-12) to maximum Energy Shield", "+(29-33) to maximum Life", statOrder = { 1540, 1559, 1569 }, level = 62, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(22-48) to Armour" }, [3299347043] = { "+(29-33) to maximum Life" }, [4052037485] = { "+(9-12) to maximum Energy Shield" }, } },
+ ["LocalBaseArmourAndEnergyShieldAndLife4_"] = { type = "Prefix", affix = "Whale's", "+(49-60) to Armour", "+(13-15) to maximum Energy Shield", "+(34-38) to maximum Life", statOrder = { 1540, 1559, 1569 }, level = 78, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(49-60) to Armour" }, [3299347043] = { "+(34-38) to maximum Life" }, [4052037485] = { "+(13-15) to maximum Energy Shield" }, } },
+ ["LocalBaseEvasionRatingAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Vulture's", "+(8-10) to Evasion Rating", "+(3-5) to maximum Energy Shield", "+(18-23) to maximum Life", statOrder = { 1548, 1559, 1569 }, level = 30, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(8-10) to Evasion Rating" }, [3299347043] = { "+(18-23) to maximum Life" }, [4052037485] = { "+(3-5) to maximum Energy Shield" }, } },
+ ["LocalBaseEvasionRatingAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Kingfisher's", "+(11-21) to Evasion Rating", "+(6-8) to maximum Energy Shield", "+(24-28) to maximum Life", statOrder = { 1548, 1559, 1569 }, level = 46, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(11-21) to Evasion Rating" }, [3299347043] = { "+(24-28) to maximum Life" }, [4052037485] = { "+(6-8) to maximum Energy Shield" }, } },
+ ["LocalBaseEvasionRatingAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Owl's", "+(22-48) to Evasion Rating", "+(9-12) to maximum Energy Shield", "+(29-33) to maximum Life", statOrder = { 1548, 1559, 1569 }, level = 62, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(22-48) to Evasion Rating" }, [3299347043] = { "+(29-33) to maximum Life" }, [4052037485] = { "+(9-12) to maximum Energy Shield" }, } },
+ ["LocalBaseEvasionRatingAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Eagle's", "+(49-60) to Evasion Rating", "+(13-15) to maximum Energy Shield", "+(34-38) to maximum Life", statOrder = { 1548, 1559, 1569 }, level = 78, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(49-60) to Evasion Rating" }, [3299347043] = { "+(34-38) to maximum Life" }, [4052037485] = { "+(13-15) to maximum Energy Shield" }, } },
+ ["LocalBaseArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "+(20-32) to Armour", "+(18-23) to maximum Life", statOrder = { 1540, 1569 }, level = 30, group = "LocalBaseArmourAndLife", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "armour" }, tradeHashes = { [3484657501] = { "+(20-32) to Armour" }, [3299347043] = { "+(18-23) to maximum Life" }, } },
+ ["LocalBaseArmourAndLife2"] = { type = "Prefix", affix = "Urchin's", "+(33-48) to Armour", "+(24-28) to maximum Life", statOrder = { 1540, 1569 }, level = 46, group = "LocalBaseArmourAndLife", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "armour" }, tradeHashes = { [3484657501] = { "+(33-48) to Armour" }, [3299347043] = { "+(24-28) to maximum Life" }, } },
+ ["LocalBaseArmourAndLife3"] = { type = "Prefix", affix = "Nautilus's", "+(49-96) to Armour", "+(29-33) to maximum Life", statOrder = { 1540, 1569 }, level = 62, group = "LocalBaseArmourAndLife", weightKey = { "boots", "gloves", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "armour" }, tradeHashes = { [3484657501] = { "+(49-96) to Armour" }, [3299347043] = { "+(29-33) to maximum Life" }, } },
+ ["LocalBaseArmourAndLife4"] = { type = "Prefix", affix = "Crocodile's", "+(97-144) to Armour", "+(34-38) to maximum Life", statOrder = { 1540, 1569 }, level = 78, group = "LocalBaseArmourAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "life", "defences", "armour" }, tradeHashes = { [3484657501] = { "+(97-144) to Armour" }, [3299347043] = { "+(34-38) to maximum Life" }, } },
+ ["LocalBaseEvasionRatingAndLife1"] = { type = "Prefix", affix = "Flea's", "+(14-20) to Evasion Rating", "+(18-23) to maximum Life", statOrder = { 1548, 1569 }, level = 30, group = "LocalBaseEvasionRatingAndLife", weightKey = { "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "evasion" }, tradeHashes = { [53045048] = { "+(14-20) to Evasion Rating" }, [3299347043] = { "+(18-23) to maximum Life" }, } },
+ ["LocalBaseEvasionRatingAndLife2"] = { type = "Prefix", affix = "Fawn's", "+(21-42) to Evasion Rating", "+(24-28) to maximum Life", statOrder = { 1548, 1569 }, level = 46, group = "LocalBaseEvasionRatingAndLife", weightKey = { "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "evasion" }, tradeHashes = { [53045048] = { "+(21-42) to Evasion Rating" }, [3299347043] = { "+(24-28) to maximum Life" }, } },
+ ["LocalBaseEvasionRatingAndLife3"] = { type = "Prefix", affix = "Ram's", "+(43-95) to Evasion Rating", "+(29-33) to maximum Life", statOrder = { 1548, 1569 }, level = 62, group = "LocalBaseEvasionRatingAndLife", weightKey = { "boots", "gloves", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "evasion" }, tradeHashes = { [53045048] = { "+(43-95) to Evasion Rating" }, [3299347043] = { "+(29-33) to maximum Life" }, } },
+ ["LocalBaseEvasionRatingAndLife4"] = { type = "Prefix", affix = "Ibex's", "+(96-120) to Evasion Rating", "+(34-38) to maximum Life", statOrder = { 1548, 1569 }, level = 78, group = "LocalBaseEvasionRatingAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "life", "defences", "evasion" }, tradeHashes = { [53045048] = { "+(96-120) to Evasion Rating" }, [3299347043] = { "+(34-38) to maximum Life" }, } },
+ ["LocalBaseEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "+(8-10) to maximum Energy Shield", "+(18-23) to maximum Life", statOrder = { 1559, 1569 }, level = 30, group = "LocalBaseEnergyShieldAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3299347043] = { "+(18-23) to maximum Life" }, [4052037485] = { "+(8-10) to maximum Energy Shield" }, } },
+ ["LocalBaseEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "+(11-15) to maximum Energy Shield", "+(24-28) to maximum Life", statOrder = { 1559, 1569 }, level = 46, group = "LocalBaseEnergyShieldAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3299347043] = { "+(24-28) to maximum Life" }, [4052037485] = { "+(11-15) to maximum Energy Shield" }, } },
+ ["LocalBaseEnergyShieldAndLife3_"] = { type = "Prefix", affix = "Abbot's", "+(16-25) to maximum Energy Shield", "+(29-33) to maximum Life", statOrder = { 1559, 1569 }, level = 62, group = "LocalBaseEnergyShieldAndLife", weightKey = { "boots", "gloves", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3299347043] = { "+(29-33) to maximum Life" }, [4052037485] = { "+(16-25) to maximum Energy Shield" }, } },
+ ["LocalBaseEnergyShieldAndLife4_"] = { type = "Prefix", affix = "Exarch's", "+(26-30) to maximum Energy Shield", "+(34-38) to maximum Life", statOrder = { 1559, 1569 }, level = 78, group = "LocalBaseEnergyShieldAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [3299347043] = { "+(34-38) to maximum Life" }, [4052037485] = { "+(26-30) to maximum Energy Shield" }, } },
+ ["LocalBaseEnergyShieldAndMana1"] = { type = "Prefix", affix = "Acolyte's", "+(8-10) to maximum Energy Shield", "+(11-15) to maximum Mana", statOrder = { 1559, 1579 }, level = 30, group = "LocalBaseEnergyShieldAndMana", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, tradeHashes = { [1050105434] = { "+(11-15) to maximum Mana" }, [4052037485] = { "+(8-10) to maximum Energy Shield" }, } },
+ ["LocalBaseEnergyShieldAndMana2"] = { type = "Prefix", affix = "Deacon's", "+(11-15) to maximum Energy Shield", "+(16-19) to maximum Mana", statOrder = { 1559, 1579 }, level = 46, group = "LocalBaseEnergyShieldAndMana", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, tradeHashes = { [1050105434] = { "+(16-19) to maximum Mana" }, [4052037485] = { "+(11-15) to maximum Energy Shield" }, } },
+ ["LocalBaseEnergyShieldAndMana3"] = { type = "Prefix", affix = "Priest's", "+(16-25) to maximum Energy Shield", "+(20-22) to maximum Mana", statOrder = { 1559, 1579 }, level = 62, group = "LocalBaseEnergyShieldAndMana", weightKey = { "boots", "gloves", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, tradeHashes = { [1050105434] = { "+(20-22) to maximum Mana" }, [4052037485] = { "+(16-25) to maximum Energy Shield" }, } },
+ ["LocalBaseEnergyShieldAndMana4"] = { type = "Prefix", affix = "Bishop's", "+(26-30) to maximum Energy Shield", "+(23-25) to maximum Mana", statOrder = { 1559, 1579 }, level = 78, group = "LocalBaseEnergyShieldAndMana", weightKey = { "shield", "boots", "gloves", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, tradeHashes = { [1050105434] = { "+(23-25) to maximum Mana" }, [4052037485] = { "+(26-30) to maximum Energy Shield" }, } },
+ ["MovementVelocity1"] = { type = "Prefix", affix = "Runner's", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } },
+ ["MovementVelocity2"] = { type = "Prefix", affix = "Sprinter's", "15% increased Movement Speed", statOrder = { 1798 }, level = 15, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } },
+ ["MovementVelocity3"] = { type = "Prefix", affix = "Stallion's", "20% increased Movement Speed", statOrder = { 1798 }, level = 30, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } },
+ ["MovementVelocity4"] = { type = "Prefix", affix = "Gazelle's", "25% increased Movement Speed", statOrder = { 1798 }, level = 40, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } },
+ ["MovementVelocity5"] = { type = "Prefix", affix = "Cheetah's", "30% increased Movement Speed", statOrder = { 1798 }, level = 55, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } },
+ ["MovementVelocity6"] = { type = "Prefix", affix = "Hellion's", "35% increased Movement Speed", statOrder = { 1798 }, level = 86, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "35% increased Movement Speed" }, } },
+ ["MovementVelocityEssence7"] = { type = "Prefix", affix = "Essences", "32% increased Movement Speed", statOrder = { 1798 }, level = 82, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "32% increased Movement Speed" }, } },
+ ["MovementVelocityEnhancedModSpeed"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "5% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1798, 3243 }, level = 1, group = "MovementVelocitySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [308396001] = { "5% increased Movement Speed if you haven't been Hit Recently" }, [2250533757] = { "30% increased Movement Speed" }, } },
+ ["MovementVelocityEnhancedModDodge_"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid Bleeding", statOrder = { 1798, 4216 }, level = 1, group = "MovementVelocityDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1618589784] = { "(10-15)% chance to Avoid Bleeding" }, [2250533757] = { "30% increased Movement Speed" }, } },
+ ["MovementVelocityEnhancedModSpellDodge_"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid being Poisoned", statOrder = { 1798, 1849 }, level = 1, group = "MovementVelocitySpellDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [4053951709] = { "(10-15)% chance to Avoid being Poisoned" }, [2250533757] = { "30% increased Movement Speed" }, } },
+ ["SpellDamage1"] = { type = "Prefix", affix = "Chanter's", "(3-7)% increased Spell Damage", statOrder = { 1223 }, level = 5, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(3-7)% increased Spell Damage" }, } },
+ ["SpellDamage2"] = { type = "Prefix", affix = "Mage's", "(8-12)% increased Spell Damage", statOrder = { 1223 }, level = 20, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(8-12)% increased Spell Damage" }, } },
+ ["SpellDamage3"] = { type = "Prefix", affix = "Sorcerer's", "(13-17)% increased Spell Damage", statOrder = { 1223 }, level = 38, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(13-17)% increased Spell Damage" }, } },
+ ["SpellDamage4"] = { type = "Prefix", affix = "Thaumaturgist's", "(18-22)% increased Spell Damage", statOrder = { 1223 }, level = 56, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-22)% increased Spell Damage" }, } },
+ ["SpellDamage5"] = { type = "Prefix", affix = "Wizard's", "(23-26)% increased Spell Damage", statOrder = { 1223 }, level = 76, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-26)% increased Spell Damage" }, } },
+ ["SpellDamageOnWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(10-19)% increased Spell Damage", statOrder = { 1223 }, level = 2, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-19)% increased Spell Damage" }, } },
+ ["SpellDamageOnWeapon2"] = { type = "Prefix", affix = "Adept's", "(20-29)% increased Spell Damage", statOrder = { 1223 }, level = 11, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-29)% increased Spell Damage" }, } },
+ ["SpellDamageOnWeapon3"] = { type = "Prefix", affix = "Scholar's", "(30-39)% increased Spell Damage", statOrder = { 1223 }, level = 23, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-39)% increased Spell Damage" }, } },
+ ["SpellDamageOnWeapon4"] = { type = "Prefix", affix = "Professor's", "(40-54)% increased Spell Damage", statOrder = { 1223 }, level = 35, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 600, 600, 600, 600, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-54)% increased Spell Damage" }, } },
+ ["SpellDamageOnWeapon5"] = { type = "Prefix", affix = "Occultist's", "(55-69)% increased Spell Damage", statOrder = { 1223 }, level = 46, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 300, 300, 300, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(55-69)% increased Spell Damage" }, } },
+ ["SpellDamageOnWeapon6"] = { type = "Prefix", affix = "Incanter's", "(70-84)% increased Spell Damage", statOrder = { 1223 }, level = 58, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 150, 150, 150, 150, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(70-84)% increased Spell Damage" }, } },
+ ["SpellDamageOnWeapon7"] = { type = "Prefix", affix = "Glyphic", "(85-99)% increased Spell Damage", statOrder = { 1223 }, level = 64, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 80, 80, 80, 80, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(85-99)% increased Spell Damage" }, } },
+ ["SpellDamageOnWeapon8_"] = { type = "Prefix", affix = "Runic", "(100-109)% increased Spell Damage", statOrder = { 1223 }, level = 84, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 40, 40, 40, 40, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(100-109)% increased Spell Damage" }, } },
+ ["SpellDamageOnWeaponEssence5_"] = { type = "Prefix", affix = "Essences", "(50-66)% increased Spell Damage", statOrder = { 1223 }, level = 58, group = "WeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-66)% increased Spell Damage" }, } },
+ ["SpellDamageOnWeaponEssence6"] = { type = "Prefix", affix = "Essences", "(67-82)% increased Spell Damage", statOrder = { 1223 }, level = 74, group = "WeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(67-82)% increased Spell Damage" }, } },
+ ["SpellDamageOnWeaponEssence7"] = { type = "Prefix", affix = "Essences", "(83-94)% increased Spell Damage", statOrder = { 1223 }, level = 82, group = "WeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(83-94)% increased Spell Damage" }, } },
+ ["SpellDamageOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(70-74)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1223, 9488 }, level = 1, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2974417149] = { "(70-74)% increased Spell Damage" }, [2063695047] = { "Gain 5% of Non-Chaos Damage as extra Chaos Damage" }, } },
+ ["SpellDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(15-29)% increased Spell Damage", statOrder = { 1223 }, level = 2, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-29)% increased Spell Damage" }, } },
+ ["SpellDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Adept's", "(30-44)% increased Spell Damage", statOrder = { 1223 }, level = 11, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-44)% increased Spell Damage" }, } },
+ ["SpellDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Scholar's", "(45-59)% increased Spell Damage", statOrder = { 1223 }, level = 23, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-59)% increased Spell Damage" }, } },
+ ["SpellDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Professor's", "(60-84)% increased Spell Damage", statOrder = { 1223 }, level = 35, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-84)% increased Spell Damage" }, } },
+ ["SpellDamageOnTwoHandWeapon5"] = { type = "Prefix", affix = "Occultist's", "(85-104)% increased Spell Damage", statOrder = { 1223 }, level = 46, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(85-104)% increased Spell Damage" }, } },
+ ["SpellDamageOnTwoHandWeapon6"] = { type = "Prefix", affix = "Incanter's", "(105-124)% increased Spell Damage", statOrder = { 1223 }, level = 58, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 150, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(105-124)% increased Spell Damage" }, } },
+ ["SpellDamageOnTwoHandWeapon7"] = { type = "Prefix", affix = "Glyphic", "(125-149)% increased Spell Damage", statOrder = { 1223 }, level = 79, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 80, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(125-149)% increased Spell Damage" }, } },
+ ["SpellDamageOnTwoHandWeapon8"] = { type = "Prefix", affix = "Runic", "(150-164)% increased Spell Damage", statOrder = { 1223 }, level = 84, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 40, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(150-164)% increased Spell Damage" }, } },
+ ["SpellDamageOnTwoHandWeaponEssence5"] = { type = "Prefix", affix = "Essences", "(85-106)% increased Spell Damage", statOrder = { 1223 }, level = 58, group = "TwoHandWeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(85-106)% increased Spell Damage" }, } },
+ ["SpellDamageOnTwoHandWeaponEssence6"] = { type = "Prefix", affix = "Essences", "(107-122)% increased Spell Damage", statOrder = { 1223 }, level = 74, group = "TwoHandWeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(107-122)% increased Spell Damage" }, } },
+ ["SpellDamageOnTwoHandWeaponEssence7"] = { type = "Prefix", affix = "Essences", "(123-144)% increased Spell Damage", statOrder = { 1223 }, level = 82, group = "TwoHandWeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(123-144)% increased Spell Damage" }, } },
+ ["SpellDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(105-110)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1223, 9488 }, level = 1, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2974417149] = { "(105-110)% increased Spell Damage" }, [2063695047] = { "Gain 5% of Non-Chaos Damage as extra Chaos Damage" }, } },
+ ["SpellDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Caster's", "(5-9)% increased Spell Damage", "+(17-20) to maximum Mana", statOrder = { 1223, 1579 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(5-9)% increased Spell Damage" }, [1050105434] = { "+(17-20) to maximum Mana" }, } },
+ ["SpellDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(10-14)% increased Spell Damage", "+(21-24) to maximum Mana", statOrder = { 1223, 1579 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-14)% increased Spell Damage" }, [1050105434] = { "+(21-24) to maximum Mana" }, } },
+ ["SpellDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Wizard's", "(15-19)% increased Spell Damage", "+(25-28) to maximum Mana", statOrder = { 1223, 1579 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-19)% increased Spell Damage" }, [1050105434] = { "+(25-28) to maximum Mana" }, } },
+ ["SpellDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Warlock's", "(20-24)% increased Spell Damage", "+(29-33) to maximum Mana", statOrder = { 1223, 1579 }, level = 35, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 600, 600, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-24)% increased Spell Damage" }, [1050105434] = { "+(29-33) to maximum Mana" }, } },
+ ["SpellDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Mage's", "(25-29)% increased Spell Damage", "+(34-37) to maximum Mana", statOrder = { 1223, 1579 }, level = 46, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 400, 300, 300, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(25-29)% increased Spell Damage" }, [1050105434] = { "+(34-37) to maximum Mana" }, } },
+ ["SpellDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Archmage's", "(30-34)% increased Spell Damage", "+(38-41) to maximum Mana", statOrder = { 1223, 1579 }, level = 58, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 150, 150, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-34)% increased Spell Damage" }, [1050105434] = { "+(38-41) to maximum Mana" }, } },
+ ["SpellDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Lich's", "(35-39)% increased Spell Damage", "+(42-45) to maximum Mana", statOrder = { 1223, 1579 }, level = 80, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 75, 75, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-39)% increased Spell Damage" }, [1050105434] = { "+(42-45) to maximum Mana" }, } },
+ ["SpellDamageAndManaOnTwoHandWeapon1"] = { type = "Prefix", affix = "Caster's", "(8-14)% increased Spell Damage", "+(26-30) to maximum Mana", statOrder = { 1223, 1579 }, level = 2, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(8-14)% increased Spell Damage" }, [1050105434] = { "+(26-30) to maximum Mana" }, } },
+ ["SpellDamageAndManaOnTwoHandWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(15-22)% increased Spell Damage", "+(31-35) to maximum Mana", statOrder = { 1223, 1579 }, level = 11, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-22)% increased Spell Damage" }, [1050105434] = { "+(31-35) to maximum Mana" }, } },
+ ["SpellDamageAndManaOnTwoHandWeapon3"] = { type = "Prefix", affix = "Wizard's", "(23-29)% increased Spell Damage", "+(36-41) to maximum Mana", statOrder = { 1223, 1579 }, level = 23, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-29)% increased Spell Damage" }, [1050105434] = { "+(36-41) to maximum Mana" }, } },
+ ["SpellDamageAndManaOnTwoHandWeapon4"] = { type = "Prefix", affix = "Warlock's", "(30-37)% increased Spell Damage", "+(42-47) to maximum Mana", statOrder = { 1223, 1579 }, level = 35, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-37)% increased Spell Damage" }, [1050105434] = { "+(42-47) to maximum Mana" }, } },
+ ["SpellDamageAndManaOnTwoHandWeapon5"] = { type = "Prefix", affix = "Mage's", "(38-44)% increased Spell Damage", "+(48-53) to maximum Mana", statOrder = { 1223, 1579 }, level = 46, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(38-44)% increased Spell Damage" }, [1050105434] = { "+(48-53) to maximum Mana" }, } },
+ ["SpellDamageAndManaOnTwoHandWeapon6"] = { type = "Prefix", affix = "Archmage's", "(45-50)% increased Spell Damage", "+(54-59) to maximum Mana", statOrder = { 1223, 1579 }, level = 58, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 150, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-50)% increased Spell Damage" }, [1050105434] = { "+(54-59) to maximum Mana" }, } },
+ ["SpellDamageAndManaOnTwoHandWeapon7"] = { type = "Prefix", affix = "Lich's", "(51-55)% increased Spell Damage", "+(60-64) to maximum Mana", statOrder = { 1223, 1579 }, level = 80, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 75, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(51-55)% increased Spell Damage" }, [1050105434] = { "+(60-64) to maximum Mana" }, } },
+ ["TrapDamageOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Trap Damage", statOrder = { 1194 }, level = 1, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(90-95)% increased Trap Damage" }, } },
+ ["TrapDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Trap Damage", statOrder = { 1194 }, level = 1, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(133-138)% increased Trap Damage" }, } },
+ ["TrapThrowSpeedEnhancedMod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 1, group = "TrapThrowSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(20-22)% increased Trap Throwing Speed" }, } },
+ ["TrapCooldownRecoveryAndDurationEnhancedMod"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Trap Duration", "(14-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 1923, 3461 }, level = 1, group = "TrapCooldownRecoveryAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2001530951] = { "(17-20)% increased Trap Duration" }, [3417757416] = { "(14-15)% increased Cooldown Recovery Rate for throwing Traps" }, } },
+ ["TrapAreaOfEffectEnhancedMod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (22-25)% increased Area of Effect", statOrder = { 3479 }, level = 1, group = "TrapAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4050593908] = { "Skills used by Traps have (22-25)% increased Area of Effect" }, } },
+ ["LocalIncreaseSocketedTrapGemLevelEnhancedMod_"] = { type = "Prefix", affix = "Matatl's", "+2 to Level of Socketed Trap Gems", statOrder = { 186 }, level = 1, group = "LocalIncreaseSocketedTrapGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [407139870] = { "+2 to Level of Socketed Trap Gems" }, } },
+ ["MinionDamageOnWeaponEnhancedMod__"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (90-95)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (90-95)% increased Damage" }, } },
+ ["MinionDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (133-138)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (133-138)% increased Damage" }, } },
+ ["MinionAttackAndCastSpeedEnhancedMod"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (13-15)% increased Attack Speed", "Minions have (13-15)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 1, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (13-15)% increased Attack Speed" }, [4000101551] = { "Minions have (13-15)% increased Cast Speed" }, } },
+ ["MinionDurationEnhancedMod_"] = { type = "Suffix", affix = "of Citaqualotl", "(17-20)% increased Minion Duration", statOrder = { 5032 }, level = 1, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(17-20)% increased Minion Duration" }, } },
+ ["LocalIncreaseSocketedMinionGemLevelEnhancedMod"] = { type = "Prefix", affix = "Citaqualotl's", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } },
+ ["FireDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Searing", "(10-19)% increased Fire Damage", statOrder = { 1357 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-19)% increased Fire Damage" }, } },
+ ["FireDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Sizzling", "(20-29)% increased Fire Damage", statOrder = { 1357 }, level = 11, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(20-29)% increased Fire Damage" }, } },
+ ["FireDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Blistering", "(30-39)% increased Fire Damage", statOrder = { 1357 }, level = 23, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-39)% increased Fire Damage" }, } },
+ ["FireDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Cauterising", "(40-54)% increased Fire Damage", statOrder = { 1357 }, level = 35, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(40-54)% increased Fire Damage" }, } },
+ ["FireDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Volcanic", "(55-69)% increased Fire Damage", statOrder = { 1357 }, level = 46, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(55-69)% increased Fire Damage" }, } },
+ ["FireDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Magmatic", "(70-84)% increased Fire Damage", statOrder = { 1357 }, level = 58, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 50, 50, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(70-84)% increased Fire Damage" }, } },
+ ["FireDamagePrefixOnWeapon7_"] = { type = "Prefix", affix = "Pyroclastic", "(85-99)% increased Fire Damage", statOrder = { 1357 }, level = 64, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 25, 25, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(85-99)% increased Fire Damage" }, } },
+ ["FireDamagePrefixOnWeapon8_"] = { type = "Prefix", affix = "Xoph's", "(100-109)% increased Fire Damage", statOrder = { 1357 }, level = 84, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 12, 12, 12, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(100-109)% increased Fire Damage" }, } },
+ ["FireDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Searing", "(15-29)% increased Fire Damage", statOrder = { 1357 }, level = 2, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(15-29)% increased Fire Damage" }, } },
+ ["FireDamagePrefixOnTwoHandWeapon2___"] = { type = "Prefix", affix = "Sizzling", "(30-44)% increased Fire Damage", statOrder = { 1357 }, level = 11, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-44)% increased Fire Damage" }, } },
+ ["FireDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Blistering", "(45-59)% increased Fire Damage", statOrder = { 1357 }, level = 23, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(45-59)% increased Fire Damage" }, } },
+ ["FireDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Cauterising", "(60-84)% increased Fire Damage", statOrder = { 1357 }, level = 35, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(60-84)% increased Fire Damage" }, } },
+ ["FireDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Volcanic", "(85-104)% increased Fire Damage", statOrder = { 1357 }, level = 46, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(85-104)% increased Fire Damage" }, } },
+ ["FireDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Magmatic", "(105-124)% increased Fire Damage", statOrder = { 1357 }, level = 58, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(105-124)% increased Fire Damage" }, } },
+ ["FireDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Pyroclastic", "(125-149)% increased Fire Damage", statOrder = { 1357 }, level = 79, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(125-149)% increased Fire Damage" }, } },
+ ["FireDamagePrefixOnTwoHandWeapon8_"] = { type = "Prefix", affix = "Xoph's", "(150-164)% increased Fire Damage", statOrder = { 1357 }, level = 84, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 13, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(150-164)% increased Fire Damage" }, } },
+ ["FireDamagePrefixOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Fire Damage", "Adds (15-20) to (30-35) Fire Damage to Spells", statOrder = { 1357, 1404 }, level = 1, group = "FireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [3962278098] = { "(75-79)% increased Fire Damage" }, [1133016593] = { "Adds (15-20) to (30-35) Fire Damage to Spells" }, } },
+ ["FireDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Fire Damage", "Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1357, 1404 }, level = 1, group = "TwoHandFireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [3962278098] = { "(111-115)% increased Fire Damage" }, [1133016593] = { "Adds (20-27) to (41-48) Fire Damage to Spells" }, } },
+ ["ColdDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Bitter", "(10-19)% increased Cold Damage", statOrder = { 1366 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-19)% increased Cold Damage" }, } },
+ ["ColdDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Biting", "(20-29)% increased Cold Damage", statOrder = { 1366 }, level = 11, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(20-29)% increased Cold Damage" }, } },
+ ["ColdDamagePrefixOnWeapon3_"] = { type = "Prefix", affix = "Alpine", "(30-39)% increased Cold Damage", statOrder = { 1366 }, level = 23, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-39)% increased Cold Damage" }, } },
+ ["ColdDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Snowy", "(40-54)% increased Cold Damage", statOrder = { 1366 }, level = 35, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(40-54)% increased Cold Damage" }, } },
+ ["ColdDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Hailing", "(55-69)% increased Cold Damage", statOrder = { 1366 }, level = 46, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(55-69)% increased Cold Damage" }, } },
+ ["ColdDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Crystalline", "(70-84)% increased Cold Damage", statOrder = { 1366 }, level = 58, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 50, 50, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(70-84)% increased Cold Damage" }, } },
+ ["ColdDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Cryomancer's", "(85-99)% increased Cold Damage", statOrder = { 1366 }, level = 64, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 25, 25, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(85-99)% increased Cold Damage" }, } },
+ ["ColdDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Tul's", "(100-109)% increased Cold Damage", statOrder = { 1366 }, level = 84, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 12, 12, 12, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(100-109)% increased Cold Damage" }, } },
+ ["ColdDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Bitter", "(15-29)% increased Cold Damage", statOrder = { 1366 }, level = 2, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(15-29)% increased Cold Damage" }, } },
+ ["ColdDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Biting", "(30-44)% increased Cold Damage", statOrder = { 1366 }, level = 11, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(30-44)% increased Cold Damage" }, } },
+ ["ColdDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Alpine", "(45-59)% increased Cold Damage", statOrder = { 1366 }, level = 23, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(45-59)% increased Cold Damage" }, } },
+ ["ColdDamagePrefixOnTwoHandWeapon4_"] = { type = "Prefix", affix = "Snowy", "(60-84)% increased Cold Damage", statOrder = { 1366 }, level = 35, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(60-84)% increased Cold Damage" }, } },
+ ["ColdDamagePrefixOnTwoHandWeapon5_"] = { type = "Prefix", affix = "Hailing", "(85-104)% increased Cold Damage", statOrder = { 1366 }, level = 46, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(85-104)% increased Cold Damage" }, } },
+ ["ColdDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Crystalline", "(105-124)% increased Cold Damage", statOrder = { 1366 }, level = 58, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(105-124)% increased Cold Damage" }, } },
+ ["ColdDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Cryomancer's", "(125-149)% increased Cold Damage", statOrder = { 1366 }, level = 79, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(125-149)% increased Cold Damage" }, } },
+ ["ColdDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Tul's", "(150-164)% increased Cold Damage", statOrder = { 1366 }, level = 84, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 13, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(150-164)% increased Cold Damage" }, } },
+ ["ColdDamagePrefixOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Cold Damage", "Adds (12-16) to (25-29) Cold Damage to Spells", statOrder = { 1366, 1405 }, level = 1, group = "ColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3291658075] = { "(75-79)% increased Cold Damage" }, [2469416729] = { "Adds (12-16) to (25-29) Cold Damage to Spells" }, } },
+ ["ColdDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Cold Damage", "Adds (19-25) to (37-44) Cold Damage to Spells", statOrder = { 1366, 1405 }, level = 1, group = "TwoHandColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3291658075] = { "(111-115)% increased Cold Damage" }, [2469416729] = { "Adds (19-25) to (37-44) Cold Damage to Spells" }, } },
+ ["LightningDamagePrefixOnWeapon1_"] = { type = "Prefix", affix = "Charged", "(10-19)% increased Lightning Damage", statOrder = { 1377 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(10-19)% increased Lightning Damage" }, } },
+ ["LightningDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Hissing", "(20-29)% increased Lightning Damage", statOrder = { 1377 }, level = 11, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(20-29)% increased Lightning Damage" }, } },
+ ["LightningDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Bolting", "(30-39)% increased Lightning Damage", statOrder = { 1377 }, level = 23, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(30-39)% increased Lightning Damage" }, } },
+ ["LightningDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Coursing", "(40-54)% increased Lightning Damage", statOrder = { 1377 }, level = 35, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(40-54)% increased Lightning Damage" }, } },
+ ["LightningDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Striking", "(55-69)% increased Lightning Damage", statOrder = { 1377 }, level = 46, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(55-69)% increased Lightning Damage" }, } },
+ ["LightningDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Smiting", "(70-84)% increased Lightning Damage", statOrder = { 1377 }, level = 58, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 50, 50, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(70-84)% increased Lightning Damage" }, } },
+ ["LightningDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Ionising", "(85-99)% increased Lightning Damage", statOrder = { 1377 }, level = 64, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 25, 25, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(85-99)% increased Lightning Damage" }, } },
+ ["LightningDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Esh's", "(100-109)% increased Lightning Damage", statOrder = { 1377 }, level = 84, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 12, 12, 12, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(100-109)% increased Lightning Damage" }, } },
+ ["LightningDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Charged", "(15-29)% increased Lightning Damage", statOrder = { 1377 }, level = 2, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(15-29)% increased Lightning Damage" }, } },
+ ["LightningDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Hissing", "(30-44)% increased Lightning Damage", statOrder = { 1377 }, level = 11, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(30-44)% increased Lightning Damage" }, } },
+ ["LightningDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Bolting", "(45-59)% increased Lightning Damage", statOrder = { 1377 }, level = 23, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(45-59)% increased Lightning Damage" }, } },
+ ["LightningDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Coursing", "(60-84)% increased Lightning Damage", statOrder = { 1377 }, level = 35, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(60-84)% increased Lightning Damage" }, } },
+ ["LightningDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Striking", "(85-104)% increased Lightning Damage", statOrder = { 1377 }, level = 46, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(85-104)% increased Lightning Damage" }, } },
+ ["LightningDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Smiting", "(105-124)% increased Lightning Damage", statOrder = { 1377 }, level = 58, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(105-124)% increased Lightning Damage" }, } },
+ ["LightningDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Ionising", "(125-149)% increased Lightning Damage", statOrder = { 1377 }, level = 79, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(125-149)% increased Lightning Damage" }, } },
+ ["LightningDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Esh's", "(150-164)% increased Lightning Damage", statOrder = { 1377 }, level = 84, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 13, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(150-164)% increased Lightning Damage" }, } },
+ ["LightningDamagePrefixOnWeaponEnhancedMod_"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Lightning Damage", "Adds (1-4) to (53-56) Lightning Damage to Spells", statOrder = { 1377, 1406 }, level = 1, group = "LightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (53-56) Lightning Damage to Spells" }, [2231156303] = { "(75-79)% increased Lightning Damage" }, } },
+ ["LightningDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Lightning Damage", "Adds (2-6) to (79-84) Lightning Damage to Spells", statOrder = { 1377, 1406 }, level = 1, group = "TwoHandLightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (79-84) Lightning Damage to Spells" }, [2231156303] = { "(111-115)% increased Lightning Damage" }, } },
+ ["WeaponElementalDamage1"] = { type = "Prefix", affix = "Catalysing", "(5-10)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(5-10)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamage2"] = { type = "Prefix", affix = "Infusing", "(11-20)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(11-20)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamage3"] = { type = "Prefix", affix = "Empowering", "(21-30)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(21-30)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamage4"] = { type = "Prefix", affix = "Unleashed", "(31-36)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(31-36)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamage5"] = { type = "Prefix", affix = "Overpowering", "(37-42)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(37-42)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamage6_"] = { type = "Prefix", affix = "Devastating", "(43-50)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "amulet", "belt", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(43-50)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamageEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(11-15)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamageEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 10, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(16-20)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamageEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 26, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(21-25)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamageEssence4"] = { type = "Prefix", affix = "Essences", "(26-29)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 42, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(26-29)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamageEssence5"] = { type = "Prefix", affix = "Essences", "(30-34)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 58, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(30-34)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamageEssence6_"] = { type = "Prefix", affix = "Essences", "(35-38)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 74, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(35-38)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamageEssence7"] = { type = "Prefix", affix = "Essences", "(39-42)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 82, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(39-42)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamageOnWeapons1_"] = { type = "Prefix", affix = "Catalysing", "(11-20)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(11-20)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamageOnWeapons2"] = { type = "Prefix", affix = "Infusing", "(21-30)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(21-30)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamageOnWeapons3_"] = { type = "Prefix", affix = "Empowering", "(31-36)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(31-36)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamageOnWeapons4"] = { type = "Prefix", affix = "Unleashed", "(37-42)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(37-42)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamageOnWeapons5_"] = { type = "Prefix", affix = "Overpowering", "(43-50)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(43-50)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamageOnWeapons6"] = { type = "Prefix", affix = "Devastating", "(51-59)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(51-59)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamageOnTwohandWeapon1"] = { type = "Prefix", affix = "Catalysing", "(19-34)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(19-34)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamageOnTwohandWeapon2____"] = { type = "Prefix", affix = "Infusing", "(36-51)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(36-51)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamageOnTwohandWeapon3"] = { type = "Prefix", affix = "Empowering", "(53-61)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(53-61)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamageOnTwohandWeapon4"] = { type = "Prefix", affix = "Unleashed", "(63-71)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(63-71)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamageOnTwohandWeapon5"] = { type = "Prefix", affix = "Overpowering", "(73-85)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(73-85)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamageOnTwohandWeapon6"] = { type = "Prefix", affix = "Devastating", "(87-100)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(87-100)% increased Elemental Damage with Attack Skills" }, } },
+ ["ManaLeech1"] = { type = "Prefix", affix = "Thirsty", "(1-2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 9, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "(1-2)% of Physical Attack Damage Leeched as Mana" }, } },
+ ["ManaLeech2"] = { type = "Prefix", affix = "Parched", "(3-4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 74, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3907785920] = { "(3-4)% of Physical Attack Damage Leeched as Mana" }, } },
+ ["ManaLeechPermyriad1"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 50, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Mana" }, } },
+ ["ManaLeechPermyriad2"] = { type = "Prefix", affix = "Parched", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 70, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Mana" }, } },
+ ["ManaLeechPermyriadSuffix1"] = { type = "Suffix", affix = "of Thirst", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 50, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Mana" }, } },
+ ["ManaLeechPermyriadSuffix2"] = { type = "Suffix", affix = "of Parching", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 70, group = "ManaLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Mana" }, } },
+ ["ManaLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 82, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.9-1)% of Physical Attack Damage Leeched as Mana" }, } },
+ ["ManaLeechPermyriadSuffixEssence7"] = { type = "Suffix", affix = "of the Essence", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 82, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [3237948413] = { "(0.9-1)% of Physical Attack Damage Leeched as Mana" }, } },
+ ["LocalManaLeechPermyriadEssence5"] = { type = "Prefix", affix = "Essences", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 58, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Mana" }, } },
+ ["LocalManaLeechPermyriadEssence6"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 74, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Mana" }, } },
+ ["LocalManaLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 82, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(0.9-1)% of Physical Attack Damage Leeched as Mana" }, } },
+ ["ItemFoundQuantityIncrease1"] = { type = "Suffix", affix = "of Collecting", "(4-8)% increased Quantity of Items found", statOrder = { 1592 }, level = 2, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(4-8)% increased Quantity of Items found" }, } },
+ ["ItemFoundQuantityIncrease2"] = { type = "Suffix", affix = "of Gathering", "(9-12)% increased Quantity of Items found", statOrder = { 1592 }, level = 32, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(9-12)% increased Quantity of Items found" }, } },
+ ["ItemFoundQuantityIncrease3"] = { type = "Suffix", affix = "of Hoarding", "(13-16)% increased Quantity of Items found", statOrder = { 1592 }, level = 55, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(13-16)% increased Quantity of Items found" }, } },
+ ["ItemFoundQuantityIncrease4"] = { type = "Suffix", affix = "of Amassment", "(17-20)% increased Quantity of Items found", statOrder = { 1592 }, level = 77, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [884586851] = { "(17-20)% increased Quantity of Items found" }, } },
+ ["ItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(6-10)% increased Rarity of Items found", statOrder = { 1596 }, level = 3, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(6-10)% increased Rarity of Items found" }, } },
+ ["ItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(11-14)% increased Rarity of Items found", statOrder = { 1596 }, level = 30, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(11-14)% increased Rarity of Items found" }, } },
+ ["ItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(15-20)% increased Rarity of Items found", statOrder = { 1596 }, level = 53, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-20)% increased Rarity of Items found" }, } },
+ ["ItemFoundRarityIncrease4"] = { type = "Suffix", affix = "of Excavation", "(21-26)% increased Rarity of Items found", statOrder = { 1596 }, level = 75, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(21-26)% increased Rarity of Items found" }, } },
+ ["ItemFoundRarityIncreasePrefix1"] = { type = "Prefix", affix = "Magpie's", "(8-12)% increased Rarity of Items found", statOrder = { 1596 }, level = 20, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(8-12)% increased Rarity of Items found" }, } },
+ ["ItemFoundRarityIncreasePrefix2"] = { type = "Prefix", affix = "Pirate's", "(13-18)% increased Rarity of Items found", statOrder = { 1596 }, level = 39, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(13-18)% increased Rarity of Items found" }, } },
+ ["ItemFoundRarityIncreasePrefix3"] = { type = "Prefix", affix = "Dragon's", "(19-24)% increased Rarity of Items found", statOrder = { 1596 }, level = 62, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(19-24)% increased Rarity of Items found" }, } },
+ ["ItemFoundRarityIncreasePrefix4_"] = { type = "Prefix", affix = "Perandus'", "(25-28)% increased Rarity of Items found", statOrder = { 1596 }, level = 84, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(25-28)% increased Rarity of Items found" }, } },
+ ["IncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "(5-8)% increased Cast Speed", statOrder = { 1446 }, level = 2, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 800, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(5-8)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "(9-12)% increased Cast Speed", statOrder = { 1446 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 800, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(9-12)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "(13-16)% increased Cast Speed", statOrder = { 1446 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 800, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-16)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeed4"] = { type = "Suffix", affix = "of Legerdemain", "(17-20)% increased Cast Speed", statOrder = { 1446 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(17-20)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeed5"] = { type = "Suffix", affix = "of Prestidigitation", "(21-24)% increased Cast Speed", statOrder = { 1446 }, level = 55, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(21-24)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeed6"] = { type = "Suffix", affix = "of Sortilege", "(25-28)% increased Cast Speed", statOrder = { 1446 }, level = 72, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "default", }, weightVal = { 500, 0, 0, 500, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-28)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeed7"] = { type = "Suffix", affix = "of Finesse", "(29-32)% increased Cast Speed", statOrder = { 1446 }, level = 83, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "default", }, weightVal = { 250, 0, 0, 250, 250, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(29-32)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "(26-28)% increased Cast Speed", statOrder = { 1446 }, level = 82, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(26-28)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedTwoHand1_"] = { type = "Suffix", affix = "of Talent", "(8-13)% increased Cast Speed", statOrder = { 1446 }, level = 2, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-13)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedTwoHand2"] = { type = "Suffix", affix = "of Nimbleness", "(14-19)% increased Cast Speed", statOrder = { 1446 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(14-19)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedTwoHand3"] = { type = "Suffix", affix = "of Expertise", "(20-25)% increased Cast Speed", statOrder = { 1446 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-25)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedTwoHand4"] = { type = "Suffix", affix = "of Legerdemain", "(26-31)% increased Cast Speed", statOrder = { 1446 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(26-31)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedTwoHand5"] = { type = "Suffix", affix = "of Prestidigitation", "(32-37)% increased Cast Speed", statOrder = { 1446 }, level = 55, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(32-37)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedTwoHand6"] = { type = "Suffix", affix = "of Sortilege", "(38-43)% increased Cast Speed", statOrder = { 1446 }, level = 72, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(38-43)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedTwoHand7"] = { type = "Suffix", affix = "of Finesse", "(44-49)% increased Cast Speed", statOrder = { 1446 }, level = 83, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(44-49)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedTwoHandEssence7"] = { type = "Suffix", affix = "of the Essence", "(39-42)% increased Cast Speed", statOrder = { 1446 }, level = 82, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(39-42)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(29-32)% increased Cast Speed", statOrder = { 1407, 1446 }, level = 1, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, tradeHashes = { [2300399854] = { "Adds (17-24) to (36-40) Chaos Damage to Spells" }, [2891184298] = { "(29-32)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedTwoHandEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "Adds (24-32) to (49-57) Chaos Damage to Spells", "(44-49)% increased Cast Speed", statOrder = { 1407, 1446 }, level = 1, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, tradeHashes = { [2300399854] = { "Adds (24-32) to (49-57) Chaos Damage to Spells" }, [2891184298] = { "(44-49)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedRing3"] = { type = "Suffix", affix = "of the Essence", "(13-14)% increased Cast Speed", statOrder = { 1446 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-14)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedRing4"] = { type = "Suffix", affix = "of the Essence", "(15-16)% increased Cast Speed", statOrder = { 1446 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(15-16)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedFishing"] = { type = "Suffix", affix = "of Casting", "(24-28)% increased Cast Speed", statOrder = { 1446 }, level = 10, group = "IncreasedCastSpeedFishing", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "red_herring", "caster", "speed" }, tradeHashes = { [2891184298] = { "(24-28)% increased Cast Speed" }, } },
+ ["LocalIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-7)% increased Attack Speed" }, } },
+ ["LocalIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 1413 }, level = 11, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, } },
+ ["LocalIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 1413 }, level = 22, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(11-13)% increased Attack Speed" }, } },
+ ["LocalIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 1413 }, level = 30, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 500, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(14-16)% increased Attack Speed" }, } },
+ ["LocalIncreasedAttackSpeed5"] = { type = "Suffix", affix = "of Acclaim", "(17-19)% increased Attack Speed", statOrder = { 1413 }, level = 37, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 500, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, } },
+ ["LocalIncreasedAttackSpeed6"] = { type = "Suffix", affix = "of Fame", "(20-22)% increased Attack Speed", statOrder = { 1413 }, level = 45, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-22)% increased Attack Speed" }, } },
+ ["LocalIncreasedAttackSpeed7"] = { type = "Suffix", affix = "of Infamy", "(23-25)% increased Attack Speed", statOrder = { 1413 }, level = 60, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(23-25)% increased Attack Speed" }, } },
+ ["LocalIncreasedAttackSpeed8"] = { type = "Suffix", affix = "of Celebration", "(26-27)% increased Attack Speed", statOrder = { 1413 }, level = 77, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(26-27)% increased Attack Speed" }, } },
+ ["LocalIncreasedAttackSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "(28-30)% increased Attack Speed", statOrder = { 1413 }, level = 82, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(28-30)% increased Attack Speed" }, } },
+ ["LocalIncreasedAttackSpeedEssenceRanged4_"] = { type = "Suffix", affix = "of the Essence", "(11-12)% increased Attack Speed", statOrder = { 1413 }, level = 42, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(11-12)% increased Attack Speed" }, } },
+ ["LocalIncreasedAttackSpeedEssenceRanged5"] = { type = "Suffix", affix = "of the Essence", "(13-14)% increased Attack Speed", statOrder = { 1413 }, level = 58, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(13-14)% increased Attack Speed" }, } },
+ ["LocalIncreasedAttackSpeedEssenceRanged6"] = { type = "Suffix", affix = "of the Essence", "(15-16)% increased Attack Speed", statOrder = { 1413 }, level = 74, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(15-16)% increased Attack Speed" }, } },
+ ["LocalIncreasedAttackSpeedEssenceRanged7"] = { type = "Suffix", affix = "of the Essence", "(17-18)% increased Attack Speed", statOrder = { 1413 }, level = 82, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(17-18)% increased Attack Speed" }, } },
+ ["LocalIncreasedAttackSpeedEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(26-27)% increased Attack Speed", statOrder = { 1390, 1413 }, level = 1, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, tradeHashes = { [210067635] = { "(26-27)% increased Attack Speed" }, [2223678961] = { "Adds (23-36) to (49-61) Chaos Damage" }, } },
+ ["LocalIncreasedAttackSpeedRangedEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(14-16)% increased Attack Speed", statOrder = { 1390, 1413 }, level = 1, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, tradeHashes = { [210067635] = { "(14-16)% increased Attack Speed" }, [2223678961] = { "Adds (23-36) to (49-61) Chaos Damage" }, } },
+ ["IncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "ring", "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-7)% increased Attack Speed" }, } },
+ ["IncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 1410 }, level = 11, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-10)% increased Attack Speed" }, } },
+ ["IncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 1410 }, level = 22, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(11-13)% increased Attack Speed" }, } },
+ ["IncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Grandmastery", "(14-16)% increased Attack Speed", statOrder = { 1410 }, level = 76, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(14-16)% increased Attack Speed" }, } },
+ ["IncreasedAttackSpeedEssenceGloves7"] = { type = "Suffix", affix = "of the Essence", "(17-18)% increased Attack Speed", statOrder = { 1410 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(17-18)% increased Attack Speed" }, } },
+ ["IncreasedAttackSpeedEssenceJewellery4"] = { type = "Suffix", affix = "of the Essence", "(4-5)% increased Attack Speed", statOrder = { 1410 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(4-5)% increased Attack Speed" }, } },
+ ["IncreasedAttackSpeedEssenceJewellery5"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Attack Speed", statOrder = { 1410 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-6)% increased Attack Speed" }, } },
+ ["IncreasedAttackSpeedEssenceJewellery6"] = { type = "Suffix", affix = "of the Essence", "(6-7)% increased Attack Speed", statOrder = { 1410 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-7)% increased Attack Speed" }, } },
+ ["IncreasedAttackSpeedEssenceJewellery7"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Attack Speed", statOrder = { 1410 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-8)% increased Attack Speed" }, } },
+ ["IncreasedAttackSpeedEssenceQuiver4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% increased Attack Speed", statOrder = { 1410 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-7)% increased Attack Speed" }, } },
+ ["IncreasedAttackSpeedEssenceQuiver5_"] = { type = "Suffix", affix = "of the Essence", "(8-9)% increased Attack Speed", statOrder = { 1410 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-9)% increased Attack Speed" }, } },
+ ["IncreasedAttackSpeedEssenceQuiver6"] = { type = "Suffix", affix = "of the Essence", "(10-12)% increased Attack Speed", statOrder = { 1410 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(10-12)% increased Attack Speed" }, } },
+ ["IncreasedAttackSpeedEssenceQuiver7___"] = { type = "Suffix", affix = "of the Essence", "(13-15)% increased Attack Speed", statOrder = { 1410 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(13-15)% increased Attack Speed" }, } },
+ ["IncreasedAccuracy1"] = { type = "Suffix", affix = "of Calm", "+(5-15) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(5-15) to Accuracy Rating" }, } },
+ ["IncreasedAccuracy2"] = { type = "Suffix", affix = "of Steadiness", "+(16-60) to Accuracy Rating", statOrder = { 1433 }, level = 12, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(16-60) to Accuracy Rating" }, } },
+ ["IncreasedAccuracy3"] = { type = "Suffix", affix = "of Accuracy", "+(61-100) to Accuracy Rating", statOrder = { 1433 }, level = 20, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(61-100) to Accuracy Rating" }, } },
+ ["IncreasedAccuracy4"] = { type = "Suffix", affix = "of Precision", "+(101-130) to Accuracy Rating", statOrder = { 1433 }, level = 26, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(101-130) to Accuracy Rating" }, } },
+ ["IncreasedAccuracy5"] = { type = "Suffix", affix = "of the Sniper", "+(131-165) to Accuracy Rating", statOrder = { 1433 }, level = 33, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(131-165) to Accuracy Rating" }, } },
+ ["IncreasedAccuracy6"] = { type = "Suffix", affix = "of the Marksman", "+(166-200) to Accuracy Rating", statOrder = { 1433 }, level = 41, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(166-200) to Accuracy Rating" }, } },
+ ["IncreasedAccuracy7"] = { type = "Suffix", affix = "of the Deadeye", "+(201-250) to Accuracy Rating", statOrder = { 1433 }, level = 50, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(201-250) to Accuracy Rating" }, } },
+ ["IncreasedAccuracy8"] = { type = "Suffix", affix = "of the Ranger", "+(251-320) to Accuracy Rating", statOrder = { 1433 }, level = 63, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(251-320) to Accuracy Rating" }, } },
+ ["IncreasedAccuracy9"] = { type = "Suffix", affix = "of the Assassin", "+(321-400) to Accuracy Rating", statOrder = { 1433 }, level = 76, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(321-400) to Accuracy Rating" }, } },
+ ["IncreasedAccuracy10"] = { type = "Suffix", affix = "of Lioneye", "+(401-500) to Accuracy Rating", statOrder = { 1433 }, level = 85, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(401-500) to Accuracy Rating" }, } },
+ ["IncreasedAccuracyEssence7"] = { type = "Suffix", affix = "of the Essence", "+(401-440) to Accuracy Rating", statOrder = { 1433 }, level = 82, group = "IncreasedAccuracy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(401-440) to Accuracy Rating" }, } },
+ ["IncreasedAccuracyNew1_"] = { type = "Suffix", affix = "of Steadiness", "+(50-100) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(50-100) to Accuracy Rating" }, } },
+ ["IncreasedAccuracyNew2"] = { type = "Suffix", affix = "of Precision", "+(100-165) to Accuracy Rating", statOrder = { 1433 }, level = 20, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(100-165) to Accuracy Rating" }, } },
+ ["IncreasedAccuracyNew3"] = { type = "Suffix", affix = "of the Sniper", "+(166-250) to Accuracy Rating", statOrder = { 1433 }, level = 40, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(166-250) to Accuracy Rating" }, } },
+ ["IncreasedAccuracyNew4"] = { type = "Suffix", affix = "of the Marksman", "+(251-350) to Accuracy Rating", statOrder = { 1433 }, level = 60, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(251-350) to Accuracy Rating" }, } },
+ ["IncreasedAccuracyNew5_"] = { type = "Suffix", affix = "of the Ranger", "+(351-480) to Accuracy Rating", statOrder = { 1433 }, level = 75, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(351-480) to Accuracy Rating" }, } },
+ ["IncreasedAccuracyNew6"] = { type = "Suffix", affix = "of Lioneye", "+(481-600) to Accuracy Rating", statOrder = { 1433 }, level = 85, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(481-600) to Accuracy Rating" }, } },
+ ["LifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "Regenerate (1-2) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (1-2) Life per second" }, } },
+ ["LifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "Regenerate (2.1-8) Life per second", statOrder = { 1574 }, level = 7, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (2.1-8) Life per second" }, } },
+ ["LifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "Regenerate (8.1-16) Life per second", statOrder = { 1574 }, level = 19, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (8.1-16) Life per second" }, } },
+ ["LifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "Regenerate (16.1-24) Life per second", statOrder = { 1574 }, level = 31, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (16.1-24) Life per second" }, } },
+ ["LifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "Regenerate (24.1-32) Life per second", statOrder = { 1574 }, level = 44, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (24.1-32) Life per second" }, } },
+ ["LifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "Regenerate (32.1-48) Life per second", statOrder = { 1574 }, level = 55, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (32.1-48) Life per second" }, } },
+ ["LifeRegeneration7"] = { type = "Suffix", affix = "of Ryslatha", "Regenerate (48.1-64) Life per second", statOrder = { 1574 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (48.1-64) Life per second" }, } },
+ ["LifeRegeneration8_"] = { type = "Suffix", affix = "of the Phoenix", "Regenerate (64.1-96) Life per second", statOrder = { 1574 }, level = 74, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "ring", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (64.1-96) Life per second" }, } },
+ ["LifeRegeneration9"] = { type = "Suffix", affix = "of Recuperation", "Regenerate (96.1-128) Life per second", statOrder = { 1574 }, level = 78, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "ring", "amulet", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (96.1-128) Life per second" }, } },
+ ["LifeRegeneration10__"] = { type = "Suffix", affix = "of Life-giving", "Regenerate (128.1-152) Life per second", statOrder = { 1574 }, level = 83, group = "LifeRegeneration", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (128.1-152) Life per second" }, } },
+ ["LifeRegeneration11____"] = { type = "Suffix", affix = "of Convalescence", "Regenerate (152.1-176) Life per second", statOrder = { 1574 }, level = 86, group = "LifeRegeneration", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (152.1-176) Life per second" }, } },
+ ["LifeRegenerationEssence2"] = { type = "Suffix", affix = "of the Essence", "Regenerate (2-5) Life per second", statOrder = { 1574 }, level = 10, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (2-5) Life per second" }, } },
+ ["LifeRegenerationEssence7"] = { type = "Suffix", affix = "of the Essence", "Regenerate (30-40) Life per second", statOrder = { 1574 }, level = 82, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (30-40) Life per second" }, } },
+ ["LifeRegenerationEnhancedMod"] = { type = "Suffix", affix = "of Guatelitzi", "Regenerate (16-20) Life per second", "Regenerate 0.4% of Life per second", statOrder = { 1574, 1944 }, level = 1, group = "LifeRegenerationAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (16-20) Life per second" }, [836936635] = { "Regenerate 0.4% of Life per second" }, } },
+ ["LifeRegenerationPercent1"] = { type = "Suffix", affix = "of Youthfulness", "Regenerate (0.4-0.5)% of Life per second", statOrder = { 1944 }, level = 18, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (0.4-0.5)% of Life per second" }, } },
+ ["LifeRegenerationPercent2__"] = { type = "Suffix", affix = "of Vitality", "Regenerate (0.6-0.7)% of Life per second", statOrder = { 1944 }, level = 36, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (0.6-0.7)% of Life per second" }, } },
+ ["LifeRegenerationPercent3_"] = { type = "Suffix", affix = "of Longevity", "Regenerate (0.8-0.9)% of Life per second", statOrder = { 1944 }, level = 60, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (0.8-0.9)% of Life per second" }, } },
+ ["LifeRegenerationPercent4"] = { type = "Suffix", affix = "of Immortality", "Regenerate (1-1.1)% of Life per second", statOrder = { 1944 }, level = 81, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-1.1)% of Life per second" }, } },
+ ["ManaRegeneration1"] = { type = "Suffix", affix = "of Excitement", "(10-19)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 2, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(10-19)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegeneration2"] = { type = "Suffix", affix = "of Joy", "(20-29)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 18, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-29)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegeneration3"] = { type = "Suffix", affix = "of Elation", "(30-39)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 29, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-39)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegeneration4"] = { type = "Suffix", affix = "of Bliss", "(40-49)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 42, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-49)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegeneration5"] = { type = "Suffix", affix = "of Euphoria", "(50-59)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(50-59)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegeneration6"] = { type = "Suffix", affix = "of Nirvana", "(60-69)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 79, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-69)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationTwoHand1"] = { type = "Suffix", affix = "of Excitement", "(20-32)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 2, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-32)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationTwoHand2"] = { type = "Suffix", affix = "of Joy", "(33-45)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 18, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(33-45)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationTwoHand3"] = { type = "Suffix", affix = "of Elation", "(46-58)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 29, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(46-58)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationTwoHand4"] = { type = "Suffix", affix = "of Bliss", "(59-72)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 42, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(59-72)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationTwoHand5"] = { type = "Suffix", affix = "of Euphoria", "(73-85)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 55, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(73-85)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationTwoHand6"] = { type = "Suffix", affix = "of Nirvana", "(86-105)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 79, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(86-105)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationEssence7_"] = { type = "Suffix", affix = "of the Essence", "(70-76)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 82, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(70-76)% increased Mana Regeneration Rate" }, } },
+ ["StunThresholdReduction1"] = { type = "Suffix", affix = "of the Pugilist", "(5-7)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 5, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(5-7)% reduced Enemy Stun Threshold" }, } },
+ ["StunThresholdReduction2"] = { type = "Suffix", affix = "of the Brawler", "(8-9)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 20, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(8-9)% reduced Enemy Stun Threshold" }, } },
+ ["StunThresholdReduction3"] = { type = "Suffix", affix = "of the Boxer", "(10-11)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 30, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(10-11)% reduced Enemy Stun Threshold" }, } },
+ ["StunThresholdReduction4"] = { type = "Suffix", affix = "of the Combatant", "(12-13)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 44, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(12-13)% reduced Enemy Stun Threshold" }, } },
+ ["StunThresholdReduction5"] = { type = "Suffix", affix = "of the Gladiator", "(14-15)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 58, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(14-15)% reduced Enemy Stun Threshold" }, } },
+ ["StunThresholdReductionEssence7"] = { type = "Suffix", affix = "of the Essence", "(16-17)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 82, group = "StunThresholdReduction", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(16-17)% reduced Enemy Stun Threshold" }, } },
+ ["CriticalStrikeChance1"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 5, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(10-14)% increased Global Critical Strike Chance" }, } },
+ ["CriticalStrikeChance2"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 20, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-19)% increased Global Critical Strike Chance" }, } },
+ ["CriticalStrikeChance3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 30, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-24)% increased Global Critical Strike Chance" }, } },
+ ["CriticalStrikeChance4"] = { type = "Suffix", affix = "of Rupturing", "(25-29)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 44, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(25-29)% increased Global Critical Strike Chance" }, } },
+ ["CriticalStrikeChance5"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 58, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-34)% increased Global Critical Strike Chance" }, } },
+ ["CriticalStrikeChance6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 72, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(35-38)% increased Global Critical Strike Chance" }, } },
+ ["CriticalStrikeChance7"] = { type = "Suffix", affix = "of Rending", "(39-44)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 85, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(39-44)% increased Global Critical Strike Chance" }, } },
+ ["CriticalStrikeChanceWithBows1_"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 5, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(10-14)% increased Critical Strike Chance with Bows" }, } },
+ ["CriticalStrikeChanceWithBows2_"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 20, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(15-19)% increased Critical Strike Chance with Bows" }, } },
+ ["CriticalStrikeChanceWithBows3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 30, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(20-24)% increased Critical Strike Chance with Bows" }, } },
+ ["CriticalStrikeChanceWithBows4"] = { type = "Suffix", affix = "of Rupturing", "(25-29)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 44, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(25-29)% increased Critical Strike Chance with Bows" }, } },
+ ["CriticalStrikeChanceWithBows5_"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 58, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(30-34)% increased Critical Strike Chance with Bows" }, } },
+ ["CriticalStrikeChanceWithBows6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 72, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(35-38)% increased Critical Strike Chance with Bows" }, } },
+ ["CriticalStrikeChanceWithBows7"] = { type = "Suffix", affix = "of Rending", "(39-44)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 85, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2091591880] = { "(39-44)% increased Critical Strike Chance with Bows" }, } },
+ ["CriticalStrikeChanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(39-42)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 82, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(39-42)% increased Global Critical Strike Chance" }, } },
+ ["CriticalStrikeChanceEssenceGloves4"] = { type = "Suffix", affix = "of the Essence", "(15-17)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 42, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-17)% increased Global Critical Strike Chance" }, } },
+ ["CriticalStrikeChanceEssenceGloves5"] = { type = "Suffix", affix = "of the Essence", "(18-20)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 58, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(18-20)% increased Global Critical Strike Chance" }, } },
+ ["CriticalStrikeChanceEssenceGloves6"] = { type = "Suffix", affix = "of the Essence", "(21-23)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 74, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(21-23)% increased Global Critical Strike Chance" }, } },
+ ["CriticalStrikeChanceEssenceGloves7"] = { type = "Suffix", affix = "of the Essence", "(24-26)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 82, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(24-26)% increased Global Critical Strike Chance" }, } },
+ ["FireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+(6-11)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(6-11)% to Fire Resistance" }, } },
+ ["FireResist2"] = { type = "Suffix", affix = "of the Salamander", "+(12-17)% to Fire Resistance", statOrder = { 1625 }, level = 12, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(12-17)% to Fire Resistance" }, } },
+ ["FireResist3"] = { type = "Suffix", affix = "of the Drake", "+(18-23)% to Fire Resistance", statOrder = { 1625 }, level = 24, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(18-23)% to Fire Resistance" }, } },
+ ["FireResist4"] = { type = "Suffix", affix = "of the Kiln", "+(24-29)% to Fire Resistance", statOrder = { 1625 }, level = 36, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(24-29)% to Fire Resistance" }, } },
+ ["FireResist5"] = { type = "Suffix", affix = "of the Furnace", "+(30-35)% to Fire Resistance", statOrder = { 1625 }, level = 48, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(30-35)% to Fire Resistance" }, } },
+ ["FireResist6"] = { type = "Suffix", affix = "of the Volcano", "+(36-41)% to Fire Resistance", statOrder = { 1625 }, level = 60, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(36-41)% to Fire Resistance" }, } },
+ ["FireResist7"] = { type = "Suffix", affix = "of the Magma", "+(42-45)% to Fire Resistance", statOrder = { 1625 }, level = 72, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(42-45)% to Fire Resistance" }, } },
+ ["FireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+(46-48)% to Fire Resistance", statOrder = { 1625 }, level = 84, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(46-48)% to Fire Resistance" }, } },
+ ["ColdResist1"] = { type = "Suffix", affix = "of the Inuit", "+(6-11)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(6-11)% to Cold Resistance" }, } },
+ ["ColdResist2"] = { type = "Suffix", affix = "of the Seal", "+(12-17)% to Cold Resistance", statOrder = { 1631 }, level = 14, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(12-17)% to Cold Resistance" }, } },
+ ["ColdResist3"] = { type = "Suffix", affix = "of the Penguin", "+(18-23)% to Cold Resistance", statOrder = { 1631 }, level = 26, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(18-23)% to Cold Resistance" }, } },
+ ["ColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+(24-29)% to Cold Resistance", statOrder = { 1631 }, level = 38, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(24-29)% to Cold Resistance" }, } },
+ ["ColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+(30-35)% to Cold Resistance", statOrder = { 1631 }, level = 50, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(30-35)% to Cold Resistance" }, } },
+ ["ColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+(36-41)% to Cold Resistance", statOrder = { 1631 }, level = 60, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(36-41)% to Cold Resistance" }, } },
+ ["ColdResist7"] = { type = "Suffix", affix = "of the Ice", "+(42-45)% to Cold Resistance", statOrder = { 1631 }, level = 72, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(42-45)% to Cold Resistance" }, } },
+ ["ColdResist8"] = { type = "Suffix", affix = "of Haast", "+(46-48)% to Cold Resistance", statOrder = { 1631 }, level = 84, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, } },
+ ["LightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+(6-11)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(6-11)% to Lightning Resistance" }, } },
+ ["LightningResist2"] = { type = "Suffix", affix = "of the Squall", "+(12-17)% to Lightning Resistance", statOrder = { 1636 }, level = 13, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(12-17)% to Lightning Resistance" }, } },
+ ["LightningResist3"] = { type = "Suffix", affix = "of the Storm", "+(18-23)% to Lightning Resistance", statOrder = { 1636 }, level = 25, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(18-23)% to Lightning Resistance" }, } },
+ ["LightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+(24-29)% to Lightning Resistance", statOrder = { 1636 }, level = 37, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(24-29)% to Lightning Resistance" }, } },
+ ["LightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+(30-35)% to Lightning Resistance", statOrder = { 1636 }, level = 49, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(30-35)% to Lightning Resistance" }, } },
+ ["LightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+(36-41)% to Lightning Resistance", statOrder = { 1636 }, level = 60, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(36-41)% to Lightning Resistance" }, } },
+ ["LightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+(42-45)% to Lightning Resistance", statOrder = { 1636 }, level = 72, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(42-45)% to Lightning Resistance" }, } },
+ ["LightningResist8"] = { type = "Suffix", affix = "of Ephij", "+(46-48)% to Lightning Resistance", statOrder = { 1636 }, level = 84, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(46-48)% to Lightning Resistance" }, } },
+ ["FireResistEnhancedModPhys_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(9-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1625, 2447 }, level = 1, group = "FireResistancePhysTakenAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire", "resistance" }, tradeHashes = { [3342989455] = { "(9-10)% of Physical Damage from Hits taken as Fire Damage" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } },
+ ["ColdResistEnhancedModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(9-10)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1631, 2448 }, level = 1, group = "ColdResistancePhysTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [1871056256] = { "(9-10)% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["LightningResistEnhancedModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(9-10)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1636, 2449 }, level = 1, group = "LightningResistancePhysTakenAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "lightning", "resistance" }, tradeHashes = { [425242359] = { "(9-10)% of Physical Damage from Hits taken as Lightning Damage" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } },
+ ["FireResistEnhancedModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched as Life", statOrder = { 1625, 1670 }, level = 1, group = "FireResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, tradeHashes = { [3848282610] = { "0.4% of Fire Damage Leeched as Life" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } },
+ ["ColdResistEnhancedModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched as Life", statOrder = { 1631, 1675 }, level = 1, group = "ColdResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [3999401129] = { "0.4% of Cold Damage Leeched as Life" }, } },
+ ["LightningResistEnhancedModLeech_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1636, 1679 }, level = 1, group = "LightningResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning", "resistance" }, tradeHashes = { [80079005] = { "0.4% of Lightning Damage Leeched as Life" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } },
+ ["FireResistEnhancedModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(45-52) to (75-78) added Fire Damage against Burning Enemies", statOrder = { 1625, 10321 }, level = 1, group = "FireResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [165402179] = { "(45-52) to (75-78) added Fire Damage against Burning Enemies" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } },
+ ["ColdResistEnhancedModAilments__"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(30-50)% increased Damage with Hits against Chilled Enemies", statOrder = { 1631, 6070 }, level = 1, group = "ColdResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [2805714016] = { "(30-50)% increased Damage with Hits against Chilled Enemies" }, } },
+ ["LightningResistEnhancedModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(40-60)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 1636, 5913 }, level = 1, group = "LightningResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance", "critical" }, tradeHashes = { [276103140] = { "(40-60)% increased Critical Strike Chance against Shocked Enemies" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } },
+ ["ChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+(5-10)% to Chaos Resistance", statOrder = { 1641 }, level = 16, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(5-10)% to Chaos Resistance" }, } },
+ ["ChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+(11-15)% to Chaos Resistance", statOrder = { 1641 }, level = 30, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(11-15)% to Chaos Resistance" }, } },
+ ["ChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+(16-20)% to Chaos Resistance", statOrder = { 1641 }, level = 44, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(16-20)% to Chaos Resistance" }, } },
+ ["ChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+(21-25)% to Chaos Resistance", statOrder = { 1641 }, level = 56, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(21-25)% to Chaos Resistance" }, } },
+ ["ChaosResist5"] = { type = "Suffix", affix = "of Exile", "+(26-30)% to Chaos Resistance", statOrder = { 1641 }, level = 65, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(26-30)% to Chaos Resistance" }, } },
+ ["ChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+(31-35)% to Chaos Resistance", statOrder = { 1641 }, level = 81, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(31-35)% to Chaos Resistance" }, } },
+ ["ChaosResistEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "+(31-35)% to Chaos Resistance", "(9-10)% reduced Chaos Damage taken over time", statOrder = { 1641, 1948 }, level = 1, group = "ChaosResistanceDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3762784591] = { "(9-10)% reduced Chaos Damage taken over time" }, [2923486259] = { "+(31-35)% to Chaos Resistance" }, } },
+ ["AllResistances1"] = { type = "Suffix", affix = "of the Crystal", "+(3-5)% to all Elemental Resistances", statOrder = { 1619 }, level = 12, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(3-5)% to all Elemental Resistances" }, } },
+ ["AllResistances2"] = { type = "Suffix", affix = "of the Prism", "+(6-8)% to all Elemental Resistances", statOrder = { 1619 }, level = 24, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(6-8)% to all Elemental Resistances" }, } },
+ ["AllResistances3"] = { type = "Suffix", affix = "of the Kaleidoscope", "+(9-11)% to all Elemental Resistances", statOrder = { 1619 }, level = 36, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(9-11)% to all Elemental Resistances" }, } },
+ ["AllResistances4"] = { type = "Suffix", affix = "of Variegation", "+(12-14)% to all Elemental Resistances", statOrder = { 1619 }, level = 48, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(12-14)% to all Elemental Resistances" }, } },
+ ["AllResistances5"] = { type = "Suffix", affix = "of the Rainbow", "+(15-16)% to all Elemental Resistances", statOrder = { 1619 }, level = 60, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(15-16)% to all Elemental Resistances" }, } },
+ ["AllResistances6"] = { type = "Suffix", affix = "of the Span", "+(17-18)% to all Elemental Resistances", statOrder = { 1619 }, level = 85, group = "AllResistances", weightKey = { "shield", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(17-18)% to all Elemental Resistances" }, } },
+ ["CriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(8-12)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(8-12)% to Global Critical Strike Multiplier" }, } },
+ ["CriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(13-19)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(13-19)% to Global Critical Strike Multiplier" }, } },
+ ["CriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 31, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-24)% to Global Critical Strike Multiplier" }, } },
+ ["CriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(25-29)% to Global Critical Strike Multiplier" }, } },
+ ["CriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(30-34)% to Global Critical Strike Multiplier" }, } },
+ ["CriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(35-38)% to Global Critical Strike Multiplier" }, } },
+ ["CriticalMultiplierWithBows1"] = { type = "Suffix", affix = "of Ire", "+(8-12)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 8, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(8-12)% to Critical Strike Multiplier with Bows" }, } },
+ ["CriticalMultiplierWithBows2"] = { type = "Suffix", affix = "of Anger", "+(13-19)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 21, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(13-19)% to Critical Strike Multiplier with Bows" }, } },
+ ["CriticalMultiplierWithBows3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 31, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(20-24)% to Critical Strike Multiplier with Bows" }, } },
+ ["CriticalMultiplierWithBows4__"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 45, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(25-29)% to Critical Strike Multiplier with Bows" }, } },
+ ["CriticalMultiplierWithBows5_"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 59, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(30-34)% to Critical Strike Multiplier with Bows" }, } },
+ ["CriticalMultiplierWithBows6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 74, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [1712221299] = { "+(35-38)% to Critical Strike Multiplier with Bows" }, } },
+ ["CriitcalMultiplierEssence7"] = { type = "Suffix", affix = "of the Essence", "+(35-41)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 82, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(35-41)% to Global Critical Strike Multiplier" }, } },
+ ["CriticalMultiplierEssenceRing5_"] = { type = "Suffix", affix = "of the Essence", "+(15-17)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 58, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-17)% to Global Critical Strike Multiplier" }, } },
+ ["CriticalMultiplierEssenceRing6_"] = { type = "Suffix", affix = "of the Essence", "+(18-20)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(18-20)% to Global Critical Strike Multiplier" }, } },
+ ["CriticalMultiplierEssenceRing7"] = { type = "Suffix", affix = "of the Essence", "+(21-25)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 82, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(21-25)% to Global Critical Strike Multiplier" }, } },
+ ["StunRecovery1"] = { type = "Suffix", affix = "of Thick Skin", "(11-13)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(11-13)% increased Stun and Block Recovery" }, } },
+ ["StunRecovery2"] = { type = "Suffix", affix = "of Stone Skin", "(14-16)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 17, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(14-16)% increased Stun and Block Recovery" }, } },
+ ["StunRecovery3"] = { type = "Suffix", affix = "of Iron Skin", "(17-19)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 28, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(17-19)% increased Stun and Block Recovery" }, } },
+ ["StunRecovery4"] = { type = "Suffix", affix = "of Steel Skin", "(20-22)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 42, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(20-22)% increased Stun and Block Recovery" }, } },
+ ["StunRecovery5"] = { type = "Suffix", affix = "of Adamantite Skin", "(23-25)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 56, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(23-25)% increased Stun and Block Recovery" }, } },
+ ["StunRecovery6"] = { type = "Suffix", affix = "of Corundum Skin", "(26-28)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 79, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(26-28)% increased Stun and Block Recovery" }, } },
+ ["StunRecoveryEssence7"] = { type = "Suffix", affix = "of the Essence", "(29-34)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 82, group = "StunRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2511217560] = { "(29-34)% increased Stun and Block Recovery" }, } },
+ ["StunDuration1"] = { type = "Suffix", affix = "of Impact", "(11-15)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 5, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(11-15)% increased Stun Duration on Enemies" }, } },
+ ["StunDuration2"] = { type = "Suffix", affix = "of Dazing", "(16-20)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 18, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(16-20)% increased Stun Duration on Enemies" }, } },
+ ["StunDuration3"] = { type = "Suffix", affix = "of Stunning", "(21-25)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 30, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(21-25)% increased Stun Duration on Enemies" }, } },
+ ["StunDuration4"] = { type = "Suffix", affix = "of Slamming", "(26-30)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 44, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(26-30)% increased Stun Duration on Enemies" }, } },
+ ["StunDuration5"] = { type = "Suffix", affix = "of Staggering", "(31-35)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 58, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(31-35)% increased Stun Duration on Enemies" }, } },
+ ["StunDurationEssence7"] = { type = "Suffix", affix = "of the Essence", "(36-39)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 82, group = "StunDurationIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(36-39)% increased Stun Duration on Enemies" }, } },
+ ["SpellCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-19)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(10-19)% increased Spell Critical Strike Chance" }, } },
+ ["SpellCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(20-39)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(20-39)% increased Spell Critical Strike Chance" }, } },
+ ["SpellCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-59)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(40-59)% increased Spell Critical Strike Chance" }, } },
+ ["SpellCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(60-79)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(60-79)% increased Spell Critical Strike Chance" }, } },
+ ["SpellCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(80-99)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(80-99)% increased Spell Critical Strike Chance" }, } },
+ ["SpellCriticalStrikeChance6_"] = { type = "Suffix", affix = "of Unmaking", "(100-109)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(100-109)% increased Spell Critical Strike Chance" }, } },
+ ["SpellCriticalStrikeChanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(110-119)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 82, group = "SpellCriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(110-119)% increased Spell Critical Strike Chance" }, } },
+ ["ProjectileSpeed1"] = { type = "Suffix", affix = "of Darting", "(10-17)% increased Projectile Speed", statOrder = { 1796 }, level = 14, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(10-17)% increased Projectile Speed" }, } },
+ ["ProjectileSpeed2"] = { type = "Suffix", affix = "of Flight", "(18-25)% increased Projectile Speed", statOrder = { 1796 }, level = 27, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(18-25)% increased Projectile Speed" }, } },
+ ["ProjectileSpeed3"] = { type = "Suffix", affix = "of Propulsion", "(26-33)% increased Projectile Speed", statOrder = { 1796 }, level = 41, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(26-33)% increased Projectile Speed" }, } },
+ ["ProjectileSpeed4"] = { type = "Suffix", affix = "of the Zephyr", "(34-41)% increased Projectile Speed", statOrder = { 1796 }, level = 55, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(34-41)% increased Projectile Speed" }, } },
+ ["ProjectileSpeed5"] = { type = "Suffix", affix = "of the Gale", "(42-46)% increased Projectile Speed", statOrder = { 1796 }, level = 82, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(42-46)% increased Projectile Speed" }, } },
+ ["ProjectileSpeedEssence6"] = { type = "Suffix", affix = "of the Essence", "(47-52)% increased Projectile Speed", statOrder = { 1796 }, level = 28, group = "ProjectileSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(47-52)% increased Projectile Speed" }, } },
+ ["LifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain 2 Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 8, group = "LifeGainPerTarget", weightKey = { "amulet", "ring", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 2 Life per Enemy Hit with Attacks" }, } },
+ ["LifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain 3 Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 20, group = "LifeGainPerTarget", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 3 Life per Enemy Hit with Attacks" }, } },
+ ["LifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain 4 Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 30, group = "LifeGainPerTarget", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 4 Life per Enemy Hit with Attacks" }, } },
+ ["LifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "Gain 5 Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 40, group = "LifeGainPerTarget", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 5 Life per Enemy Hit with Attacks" }, } },
+ ["LifeGainPerTargetLocal1"] = { type = "Suffix", affix = "of Rejuvenation", "Grants (2-3) Life per Enemy Hit", statOrder = { 1738 }, level = 8, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (2-3) Life per Enemy Hit" }, } },
+ ["LifeGainPerTargetLocal2"] = { type = "Suffix", affix = "of Restoration", "Grants (4-6) Life per Enemy Hit", statOrder = { 1738 }, level = 20, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (4-6) Life per Enemy Hit" }, } },
+ ["LifeGainPerTargetLocal3"] = { type = "Suffix", affix = "of Regrowth", "Grants (7-10) Life per Enemy Hit", statOrder = { 1738 }, level = 30, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (7-10) Life per Enemy Hit" }, } },
+ ["LifeGainPerTargetLocal4"] = { type = "Suffix", affix = "of Nourishment", "Grants (11-14) Life per Enemy Hit", statOrder = { 1738 }, level = 40, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (11-14) Life per Enemy Hit" }, } },
+ ["LifeGainPerTargetLocal5"] = { type = "Suffix", affix = "of Regenesis", "Grants (15-18) Life per Enemy Hit", statOrder = { 1738 }, level = 50, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (15-18) Life per Enemy Hit" }, } },
+ ["LifeGainPerTargetLocal6"] = { type = "Suffix", affix = "of Renewal", "Grants (19-22) Life per Enemy Hit", statOrder = { 1738 }, level = 60, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (19-22) Life per Enemy Hit" }, } },
+ ["LifeGainPerTargetLocal7"] = { type = "Suffix", affix = "of Recuperation", "Grants (23-26) Life per Enemy Hit", statOrder = { 1738 }, level = 70, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (23-26) Life per Enemy Hit" }, } },
+ ["LifeGainPerTargetLocal8"] = { type = "Suffix", affix = "of Revitalization", "Grants (27-30) Life per Enemy Hit", statOrder = { 1738 }, level = 80, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants (27-30) Life per Enemy Hit" }, } },
+ ["FireDamagePercent1"] = { type = "Suffix", affix = "of Embers", "(10-12)% increased Fire Damage", statOrder = { 1357 }, level = 8, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(10-12)% increased Fire Damage" }, } },
+ ["FireDamagePercent2"] = { type = "Suffix", affix = "of Coals", "(13-15)% increased Fire Damage", statOrder = { 1357 }, level = 22, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(13-15)% increased Fire Damage" }, } },
+ ["FireDamagePercent3"] = { type = "Suffix", affix = "of Cinders", "(16-18)% increased Fire Damage", statOrder = { 1357 }, level = 36, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(16-18)% increased Fire Damage" }, } },
+ ["FireDamagePercent4"] = { type = "Suffix", affix = "of Flames", "(19-22)% increased Fire Damage", statOrder = { 1357 }, level = 50, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(19-22)% increased Fire Damage" }, } },
+ ["FireDamagePercent5"] = { type = "Suffix", affix = "of Immolation", "(23-26)% increased Fire Damage", statOrder = { 1357 }, level = 64, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "amulet", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(23-26)% increased Fire Damage" }, } },
+ ["FireDamagePercent6"] = { type = "Suffix", affix = "of Ashes", "(27-30)% increased Fire Damage", statOrder = { 1357 }, level = 76, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-30)% increased Fire Damage" }, } },
+ ["FireDamagePercentTwoHand1"] = { type = "Suffix", affix = "of Embers", "(18-22)% increased Fire Damage", statOrder = { 1357 }, level = 8, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(18-22)% increased Fire Damage" }, } },
+ ["FireDamagePercentTwoHand2"] = { type = "Suffix", affix = "of Coals", "(23-28)% increased Fire Damage", statOrder = { 1357 }, level = 22, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(23-28)% increased Fire Damage" }, } },
+ ["FireDamagePercentTwoHand3"] = { type = "Suffix", affix = "of Cinders", "(29-34)% increased Fire Damage", statOrder = { 1357 }, level = 36, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(29-34)% increased Fire Damage" }, } },
+ ["FireDamagePercentTwoHand4"] = { type = "Suffix", affix = "of Flames", "(35-39)% increased Fire Damage", statOrder = { 1357 }, level = 50, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(35-39)% increased Fire Damage" }, } },
+ ["FireDamagePercentTwoHand5"] = { type = "Suffix", affix = "of Immolation", "(40-44)% increased Fire Damage", statOrder = { 1357 }, level = 64, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(40-44)% increased Fire Damage" }, } },
+ ["FireDamagePercentTwoHand6"] = { type = "Suffix", affix = "of Ashes", "(45-50)% increased Fire Damage", statOrder = { 1357 }, level = 76, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(45-50)% increased Fire Damage" }, } },
+ ["FireDamagePercentEssence2_"] = { type = "Suffix", affix = "of the Essence", "(11-14)% increased Fire Damage", statOrder = { 1357 }, level = 10, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(11-14)% increased Fire Damage" }, } },
+ ["FireDamagePercentEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% increased Fire Damage", statOrder = { 1357 }, level = 26, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(15-18)% increased Fire Damage" }, } },
+ ["FireDamagePercentEssence4"] = { type = "Suffix", affix = "of the Essence", "(19-22)% increased Fire Damage", statOrder = { 1357 }, level = 42, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(19-22)% increased Fire Damage" }, } },
+ ["FireDamagePercentEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Fire Damage", statOrder = { 1357 }, level = 58, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(23-26)% increased Fire Damage" }, } },
+ ["FireDamagePercentEssence6_"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Fire Damage", statOrder = { 1357 }, level = 74, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-30)% increased Fire Damage" }, } },
+ ["FireDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Fire Damage", statOrder = { 1357 }, level = 82, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(31-34)% increased Fire Damage" }, } },
+ ["ColdDamagePercent1"] = { type = "Suffix", affix = "of Snow", "(10-12)% increased Cold Damage", statOrder = { 1366 }, level = 12, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(10-12)% increased Cold Damage" }, } },
+ ["ColdDamagePercent2"] = { type = "Suffix", affix = "of Sleet", "(13-15)% increased Cold Damage", statOrder = { 1366 }, level = 24, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(13-15)% increased Cold Damage" }, } },
+ ["ColdDamagePercent3"] = { type = "Suffix", affix = "of Ice", "(16-18)% increased Cold Damage", statOrder = { 1366 }, level = 36, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(16-18)% increased Cold Damage" }, } },
+ ["ColdDamagePercent4"] = { type = "Suffix", affix = "of Rime", "(19-22)% increased Cold Damage", statOrder = { 1366 }, level = 50, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(19-22)% increased Cold Damage" }, } },
+ ["ColdDamagePercent5"] = { type = "Suffix", affix = "of Floe", "(23-26)% increased Cold Damage", statOrder = { 1366 }, level = 64, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "amulet", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(23-26)% increased Cold Damage" }, } },
+ ["ColdDamagePercent6"] = { type = "Suffix", affix = "of Glaciation", "(27-30)% increased Cold Damage", statOrder = { 1366 }, level = 76, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-30)% increased Cold Damage" }, } },
+ ["ColdDamagePercentTwoHand1"] = { type = "Suffix", affix = "of Snow", "(18-22)% increased Cold Damage", statOrder = { 1366 }, level = 12, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(18-22)% increased Cold Damage" }, } },
+ ["ColdDamagePercentTwoHand2"] = { type = "Suffix", affix = "of Sleet", "(23-28)% increased Cold Damage", statOrder = { 1366 }, level = 24, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(23-28)% increased Cold Damage" }, } },
+ ["ColdDamagePercentTwoHand3"] = { type = "Suffix", affix = "of Ice", "(29-34)% increased Cold Damage", statOrder = { 1366 }, level = 36, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(29-34)% increased Cold Damage" }, } },
+ ["ColdDamagePercentTwoHand4"] = { type = "Suffix", affix = "of Rime", "(35-39)% increased Cold Damage", statOrder = { 1366 }, level = 50, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(35-39)% increased Cold Damage" }, } },
+ ["ColdDamagePercentTwoHand5"] = { type = "Suffix", affix = "of Floe", "(40-44)% increased Cold Damage", statOrder = { 1366 }, level = 64, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(40-44)% increased Cold Damage" }, } },
+ ["ColdDamagePercentTwoHand6"] = { type = "Suffix", affix = "of Glaciation", "(45-50)% increased Cold Damage", statOrder = { 1366 }, level = 76, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(45-50)% increased Cold Damage" }, } },
+ ["ColdDamagePercentEssence1"] = { type = "Suffix", affix = "of the Essence", "(6-10)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(6-10)% increased Cold Damage" }, } },
+ ["ColdDamagePercentEssence2"] = { type = "Suffix", affix = "of the Essence", "(11-14)% increased Cold Damage", statOrder = { 1366 }, level = 10, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(11-14)% increased Cold Damage" }, } },
+ ["ColdDamagePercentEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% increased Cold Damage", statOrder = { 1366 }, level = 26, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(15-18)% increased Cold Damage" }, } },
+ ["ColdDamagePercentEssence4_"] = { type = "Suffix", affix = "of the Essence", "(19-22)% increased Cold Damage", statOrder = { 1366 }, level = 42, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(19-22)% increased Cold Damage" }, } },
+ ["ColdDamagePercentEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Cold Damage", statOrder = { 1366 }, level = 58, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(23-26)% increased Cold Damage" }, } },
+ ["ColdDamagePercentEssence6_"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Cold Damage", statOrder = { 1366 }, level = 74, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-30)% increased Cold Damage" }, } },
+ ["ColdDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Cold Damage", statOrder = { 1366 }, level = 82, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(31-34)% increased Cold Damage" }, } },
+ ["LightningDamagePercent1"] = { type = "Suffix", affix = "of Sparks", "(10-12)% increased Lightning Damage", statOrder = { 1377 }, level = 10, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(10-12)% increased Lightning Damage" }, } },
+ ["LightningDamagePercent2"] = { type = "Suffix", affix = "of Static", "(13-15)% increased Lightning Damage", statOrder = { 1377 }, level = 23, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(13-15)% increased Lightning Damage" }, } },
+ ["LightningDamagePercent3"] = { type = "Suffix", affix = "of Electricity", "(16-18)% increased Lightning Damage", statOrder = { 1377 }, level = 36, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(16-18)% increased Lightning Damage" }, } },
+ ["LightningDamagePercent4"] = { type = "Suffix", affix = "of Voltage", "(19-22)% increased Lightning Damage", statOrder = { 1377 }, level = 50, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(19-22)% increased Lightning Damage" }, } },
+ ["LightningDamagePercent5"] = { type = "Suffix", affix = "of Discharge", "(23-26)% increased Lightning Damage", statOrder = { 1377 }, level = 64, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "amulet", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(23-26)% increased Lightning Damage" }, } },
+ ["LightningDamagePercent6"] = { type = "Suffix", affix = "of Arcing", "(27-30)% increased Lightning Damage", statOrder = { 1377 }, level = 76, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(27-30)% increased Lightning Damage" }, } },
+ ["LightningDamagePercentTwoHand1"] = { type = "Suffix", affix = "of Sparks", "(18-22)% increased Lightning Damage", statOrder = { 1377 }, level = 10, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(18-22)% increased Lightning Damage" }, } },
+ ["LightningDamagePercentTwoHand2"] = { type = "Suffix", affix = "of Static", "(23-28)% increased Lightning Damage", statOrder = { 1377 }, level = 23, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(23-28)% increased Lightning Damage" }, } },
+ ["LightningDamagePercentTwoHand3"] = { type = "Suffix", affix = "of Electricity", "(29-34)% increased Lightning Damage", statOrder = { 1377 }, level = 36, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(29-34)% increased Lightning Damage" }, } },
+ ["LightningDamagePercentTwoHand4"] = { type = "Suffix", affix = "of Voltage", "(35-39)% increased Lightning Damage", statOrder = { 1377 }, level = 50, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(35-39)% increased Lightning Damage" }, } },
+ ["LightningDamagePercentTwoHand5"] = { type = "Suffix", affix = "of Discharge", "(40-44)% increased Lightning Damage", statOrder = { 1377 }, level = 64, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(40-44)% increased Lightning Damage" }, } },
+ ["LightningDamagePercentTwoHand6"] = { type = "Suffix", affix = "of Arcing", "(45-50)% increased Lightning Damage", statOrder = { 1377 }, level = 76, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(45-50)% increased Lightning Damage" }, } },
+ ["LightningDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Lightning Damage", statOrder = { 1377 }, level = 82, group = "LightningDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(31-34)% increased Lightning Damage" }, } },
+ ["LifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Gain (7-10) Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (7-10) Life per Enemy Killed" }, } },
+ ["LifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Gain (12-18) Life per Enemy Killed", statOrder = { 1748 }, level = 23, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (12-18) Life per Enemy Killed" }, } },
+ ["LifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Gain (24-32) Life per Enemy Killed", statOrder = { 1748 }, level = 40, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (24-32) Life per Enemy Killed" }, } },
+ ["LifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Gain (35-44) Life per Enemy Killed", statOrder = { 1748 }, level = 52, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (35-44) Life per Enemy Killed" }, } },
+ ["LifeGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Feat", "Gain (56-72) Life per Enemy Killed", statOrder = { 1748 }, level = 66, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (56-72) Life per Enemy Killed" }, } },
+ ["LifeGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Masterstroke", "Gain (84-110) Life per Enemy Killed", statOrder = { 1748 }, level = 81, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (84-110) Life per Enemy Killed" }, } },
+ ["ManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Gain (4-6) Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (4-6) Mana per Enemy Killed" }, } },
+ ["ManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Gain (7-10) Mana per Enemy Killed", statOrder = { 1763 }, level = 24, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (7-10) Mana per Enemy Killed" }, } },
+ ["ManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Consumption", "Gain (11-15) Mana per Enemy Killed", statOrder = { 1763 }, level = 40, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (11-15) Mana per Enemy Killed" }, } },
+ ["ManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Diffusion", "Gain (16-25) Mana per Enemy Killed", statOrder = { 1763 }, level = 52, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (16-25) Mana per Enemy Killed" }, } },
+ ["ManaGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Permeation", "Gain (26-37) Mana per Enemy Killed", statOrder = { 1763 }, level = 66, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (26-37) Mana per Enemy Killed" }, } },
+ ["ManaGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Retention", "Gain (38-50) Mana per Enemy Killed", statOrder = { 1763 }, level = 81, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (38-50) Mana per Enemy Killed" }, } },
+ ["LocalCriticalStrikeChance1"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(10-14)% increased Critical Strike Chance" }, } },
+ ["LocalCriticalStrikeChance2"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Critical Strike Chance", statOrder = { 1464 }, level = 20, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-19)% increased Critical Strike Chance" }, } },
+ ["LocalCriticalStrikeChance3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Critical Strike Chance", statOrder = { 1464 }, level = 30, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(20-24)% increased Critical Strike Chance" }, } },
+ ["LocalCriticalStrikeChance4"] = { type = "Suffix", affix = "of Puncturing", "(25-29)% increased Critical Strike Chance", statOrder = { 1464 }, level = 44, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(25-29)% increased Critical Strike Chance" }, } },
+ ["LocalCriticalStrikeChance5"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Critical Strike Chance", statOrder = { 1464 }, level = 59, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-34)% increased Critical Strike Chance" }, } },
+ ["LocalCriticalStrikeChance6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Critical Strike Chance", statOrder = { 1464 }, level = 73, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, tradeHashes = { [2375316951] = { "(35-38)% increased Critical Strike Chance" }, } },
+ ["LocalCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-14)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(10-14)% to Global Critical Strike Multiplier" }, } },
+ ["LocalCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(15-19)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-19)% to Global Critical Strike Multiplier" }, } },
+ ["LocalCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 30, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-24)% to Global Critical Strike Multiplier" }, } },
+ ["LocalCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 44, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(25-29)% to Global Critical Strike Multiplier" }, } },
+ ["LocalCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(30-34)% to Global Critical Strike Multiplier" }, } },
+ ["LocalCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 73, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "+(35-38)% to Global Critical Strike Multiplier" }, } },
+ ["LocalIncreaseSocketedGemLevel1"] = { type = "Prefix", affix = "Paragon's", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 50, group = "LocalIncreaseSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "staff", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 1000, 1000, 0, 0, 0, 0, 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } },
+ ["LocalIncreaseSocketedGemUnsetRing1"] = { type = "Prefix", affix = "Exemplary", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 2, group = "LocalIncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } },
+ ["LocalIncreaseSocketedGemUnsetRing2"] = { type = "Prefix", affix = "Quintessential", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 50, group = "LocalIncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+2 to Level of Socketed Gems" }, } },
+ ["LocalIncreaseSocketedGemUnsetRing3"] = { type = "Prefix", affix = "Flawless", "+3 to Level of Socketed Gems", statOrder = { 162 }, level = 76, group = "LocalIncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 250, 0 }, modTags = { "gem" }, tradeHashes = { [2843100721] = { "+3 to Level of Socketed Gems" }, } },
+ ["GlobalSpellGemsLevel1"] = { type = "Prefix", affix = "Magister's", "+1 to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skill Gems" }, } },
+ ["GlobalSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Magister's", "+(1-2) to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+(1-2) to Level of all Spell Skill Gems" }, } },
+ ["LocalIncreaseSocketedFireGemLevel1"] = { type = "Prefix", affix = "Flame Spinner's", "+1 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 2, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+1 to Level of Socketed Fire Gems" }, } },
+ ["LocalIncreaseSocketedFireGemLevel2_"] = { type = "Prefix", affix = "Lava Caller's", "+2 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 55, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } },
+ ["GlobalFireSpellGemsLevel1_"] = { type = "Prefix", affix = "Flame Shaper's", "+1 to Level of all Fire Spell Skill Gems", statOrder = { 1610 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 250, 250, 250, 250, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skill Gems" }, } },
+ ["GlobalFireSpellGemsLevelTwoHand1__"] = { type = "Prefix", affix = "Flame Shaper's", "+(1-2) to Level of all Fire Spell Skill Gems", statOrder = { 1610 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+(1-2) to Level of all Fire Spell Skill Gems" }, } },
+ ["GlobalFireSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Lava Conjurer's", "+3 to Level of all Fire Spell Skill Gems", statOrder = { 1610 }, level = 77, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+3 to Level of all Fire Spell Skill Gems" }, } },
+ ["LocalIncreaseSocketedColdGemLevel1"] = { type = "Prefix", affix = "Frost Weaver's", "+1 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 2, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+1 to Level of Socketed Cold Gems" }, } },
+ ["LocalIncreaseSocketedColdGemLevel2"] = { type = "Prefix", affix = "Winterbringer's", "+2 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 55, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } },
+ ["GlobalColdSpellGemsLevel1_"] = { type = "Prefix", affix = "Frost Singer's", "+1 to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 250, 250, 250, 250, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skill Gems" }, } },
+ ["GlobalColdSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Frost Singer's", "+(1-2) to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(1-2) to Level of all Cold Spell Skill Gems" }, } },
+ ["GlobalColdSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Winter Beckoner's", "+3 to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 77, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+3 to Level of all Cold Spell Skill Gems" }, } },
+ ["LocalIncreaseSocketedLightningGemLevel1"] = { type = "Prefix", affix = "Thunder Lord's", "+1 to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 2, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+1 to Level of Socketed Lightning Gems" }, } },
+ ["LocalIncreaseSocketedLightningGemLevel2"] = { type = "Prefix", affix = "Tempest King's", "+2 to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 55, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+2 to Level of Socketed Lightning Gems" }, } },
+ ["GlobalLightningSpellGemsLevel1"] = { type = "Prefix", affix = "Thunderhand's", "+1 to Level of all Lightning Spell Skill Gems", statOrder = { 1612 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 250, 250, 250, 250, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skill Gems" }, } },
+ ["GlobalLightningSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Thunderhand's", "+(1-2) to Level of all Lightning Spell Skill Gems", statOrder = { 1612 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+(1-2) to Level of all Lightning Spell Skill Gems" }, } },
+ ["GlobalLightningSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Tempest Master's", "+3 to Level of all Lightning Spell Skill Gems", statOrder = { 1612 }, level = 77, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+3 to Level of all Lightning Spell Skill Gems" }, } },
+ ["LocalIncreaseSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Nihilist's", "+1 to Level of Socketed Chaos Gems", statOrder = { 170 }, level = 4, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+1 to Level of Socketed Chaos Gems" }, } },
+ ["LocalIncreaseSocketedChaosGemLevel2"] = { type = "Prefix", affix = "Anarchist's", "+2 to Level of Socketed Chaos Gems", statOrder = { 170 }, level = 55, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+2 to Level of Socketed Chaos Gems" }, } },
+ ["GlobalChaosSpellGemsLevel1"] = { type = "Prefix", affix = "Mad Lord's", "+1 to Level of all Chaos Spell Skill Gems", statOrder = { 1613 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "dagger", "focus", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skill Gems" }, } },
+ ["GlobalChaosSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Mad Lord's", "+(1-2) to Level of all Chaos Spell Skill Gems", statOrder = { 1613 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+(1-2) to Level of all Chaos Spell Skill Gems" }, } },
+ ["GlobalChaosSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Splintermind's", "+3 to Level of all Chaos Spell Skill Gems", statOrder = { 1613 }, level = 77, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+3 to Level of all Chaos Spell Skill Gems" }, } },
+ ["GlobalPhysicalSpellGemsLevel1"] = { type = "Prefix", affix = "Lithomancer's", "+1 to Level of all Physical Spell Skill Gems", statOrder = { 1609 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skill Gems" }, } },
+ ["GlobalPhysicalSpellGemsLevelTwoHand1_"] = { type = "Prefix", affix = "Lithomancer's", "+(1-2) to Level of all Physical Spell Skill Gems", statOrder = { 1609 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+(1-2) to Level of all Physical Spell Skill Gems" }, } },
+ ["GlobalPhysicalSpellGemsLevelTwoHand2_"] = { type = "Prefix", affix = "Tecton's", "+3 to Level of all Physical Spell Skill Gems", statOrder = { 1609 }, level = 77, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+3 to Level of all Physical Spell Skill Gems" }, } },
+ ["LocalIncreaseSocketedSpellGemLevelRace"] = { type = "Prefix", affix = "Competitor's", "+1 to Level of Socketed Spell Gems", statOrder = { 174 }, level = 1, group = "LocalIncreaseSocketedSpellGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [446733281] = { "+1 to Level of Socketed Spell Gems" }, } },
+ ["LocalIncreaseSocketedMeleeGemLevel1"] = { type = "Prefix", affix = "Combatant's", "+1 to Level of Socketed Melee Gems", statOrder = { 179 }, level = 8, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { "bow", "wand", "focus", "shield", "weapon", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "gem" }, tradeHashes = { [829382474] = { "+1 to Level of Socketed Melee Gems" }, } },
+ ["LocalIncreaseSocketedMeleeGemLevel"] = { type = "Prefix", affix = "Weaponmaster's", "+2 to Level of Socketed Melee Gems", statOrder = { 179 }, level = 63, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { "bow", "wand", "focus", "shield", "weapon", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "gem" }, tradeHashes = { [829382474] = { "+2 to Level of Socketed Melee Gems" }, } },
+ ["LocalIncreaseSocketedBowGemLevel1"] = { type = "Prefix", affix = "Fletcher's", "+1 to Level of Socketed Bow Gems", statOrder = { 178 }, level = 9, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "gem" }, tradeHashes = { [2027269580] = { "+1 to Level of Socketed Bow Gems" }, } },
+ ["LocalIncreaseSocketedBowGemLevel2"] = { type = "Prefix", affix = "Sharpshooter's", "+2 to Level of Socketed Bow Gems", statOrder = { 178 }, level = 64, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "gem" }, tradeHashes = { [2027269580] = { "+2 to Level of Socketed Bow Gems" }, } },
+ ["LocalIncreaseSocketedMinionGemLevel1"] = { type = "Prefix", affix = "Reanimator's", "+1 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 14, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+1 to Level of Socketed Minion Gems" }, } },
+ ["LocalIncreaseSocketedMinionGemLevel2"] = { type = "Prefix", affix = "Summoner's", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 65, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } },
+ ["LocalIncreaseSocketedMinionGemLevel3_"] = { type = "Prefix", affix = "Necromancer's", "+3 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 86, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+3 to Level of Socketed Minion Gems" }, } },
+ ["GlobalIncreaseMinionSpellSkillGemLevel1"] = { type = "Prefix", affix = "Taskmaster's", "+1 to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 14, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skill Gems" }, } },
+ ["GlobalIncreaseMinionSpellSkillGemLevel2"] = { type = "Prefix", affix = "Overseer's", "+2 to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 75, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 25, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+2 to Level of all Minion Skill Gems" }, } },
+ ["LocalIncreasedAccuracy1"] = { type = "Suffix", affix = "of Calm", "+(5-15) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(5-15) to Accuracy Rating" }, } },
+ ["LocalIncreasedAccuracy2"] = { type = "Suffix", affix = "of Steadiness", "+(16-60) to Accuracy Rating", statOrder = { 2024 }, level = 12, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(16-60) to Accuracy Rating" }, } },
+ ["LocalIncreasedAccuracy3"] = { type = "Suffix", affix = "of Accuracy", "+(61-100) to Accuracy Rating", statOrder = { 2024 }, level = 20, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(61-100) to Accuracy Rating" }, } },
+ ["LocalIncreasedAccuracy4"] = { type = "Suffix", affix = "of Precision", "+(101-130) to Accuracy Rating", statOrder = { 2024 }, level = 26, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(101-130) to Accuracy Rating" }, } },
+ ["LocalIncreasedAccuracy5"] = { type = "Suffix", affix = "of the Sniper", "+(131-165) to Accuracy Rating", statOrder = { 2024 }, level = 33, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(131-165) to Accuracy Rating" }, } },
+ ["LocalIncreasedAccuracy6"] = { type = "Suffix", affix = "of the Marksman", "+(166-200) to Accuracy Rating", statOrder = { 2024 }, level = 41, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(166-200) to Accuracy Rating" }, } },
+ ["LocalIncreasedAccuracy7"] = { type = "Suffix", affix = "of the Deadeye", "+(201-250) to Accuracy Rating", statOrder = { 2024 }, level = 50, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(201-250) to Accuracy Rating" }, } },
+ ["LocalIncreasedAccuracy"] = { type = "Suffix", affix = "of the Ranger", "+(251-320) to Accuracy Rating", statOrder = { 2024 }, level = 63, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(251-320) to Accuracy Rating" }, } },
+ ["LocalIncreasedAccuracy9_"] = { type = "Suffix", affix = "of the Assassin", "+(321-360) to Accuracy Rating", statOrder = { 2024 }, level = 80, group = "LocalAccuracyRating", weightKey = { "bow", "wand", "weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(321-360) to Accuracy Rating" }, } },
+ ["LocalIncreasedAccuracyEssence7"] = { type = "Suffix", affix = "of the Essence", "+(361-380) to Accuracy Rating", statOrder = { 2024 }, level = 82, group = "LocalAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(361-380) to Accuracy Rating" }, } },
+ ["LocalIncreasedAccuracyNew1"] = { type = "Suffix", affix = "of Steadiness", "+(80-130) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(80-130) to Accuracy Rating" }, } },
+ ["LocalIncreasedAccuracyNew2"] = { type = "Suffix", affix = "of Precision", "+(131-215) to Accuracy Rating", statOrder = { 2024 }, level = 20, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(131-215) to Accuracy Rating" }, } },
+ ["LocalIncreasedAccuracyNew3"] = { type = "Suffix", affix = "of the Sniper", "+(216-325) to Accuracy Rating", statOrder = { 2024 }, level = 40, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(216-325) to Accuracy Rating" }, } },
+ ["LocalIncreasedAccuracyNew4"] = { type = "Suffix", affix = "of the Marksman", "+(326-455) to Accuracy Rating", statOrder = { 2024 }, level = 60, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(326-455) to Accuracy Rating" }, } },
+ ["LocalIncreasedAccuracyNew5"] = { type = "Suffix", affix = "of the Ranger", "+(456-624) to Accuracy Rating", statOrder = { 2024 }, level = 75, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(456-624) to Accuracy Rating" }, } },
+ ["LocalIncreasedAccuracyNew6"] = { type = "Suffix", affix = "of Lioneye", "+(625-780) to Accuracy Rating", statOrder = { 2024 }, level = 85, group = "LocalAccuracyRating", weightKey = { "bow", "wand", "weapon", "default", }, weightVal = { 1000, 1000, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(625-780) to Accuracy Rating" }, } },
+ ["CannotBeFrozenWarbands"] = { type = "Prefix", affix = "Mutewind", "Cannot be Frozen", statOrder = { 1838 }, level = 1, group = "CannotBeFrozen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, } },
+ ["AdditionalArrowBow1_"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 70, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } },
+ ["AdditionalArrowBow2_"] = { type = "Suffix", affix = "of Many", "Bow Attacks fire 2 additional Arrows", statOrder = { 1794 }, level = 86, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } },
+ ["AdditionalArrowQuiver1_"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 70, group = "AdditionalArrows", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } },
+ ["MinionRunSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions have (13-15)% increased Movement Speed", statOrder = { 1769 }, level = 10, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (13-15)% increased Movement Speed" }, } },
+ ["MinionRunSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "Minions have (16-18)% increased Movement Speed", statOrder = { 1769 }, level = 26, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (16-18)% increased Movement Speed" }, } },
+ ["MinionRunSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "Minions have (19-21)% increased Movement Speed", statOrder = { 1769 }, level = 42, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (19-21)% increased Movement Speed" }, } },
+ ["MinionRunSpeedEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions have (22-24)% increased Movement Speed", statOrder = { 1769 }, level = 58, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (22-24)% increased Movement Speed" }, } },
+ ["MinionRunSpeedEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions have (25-27)% increased Movement Speed", statOrder = { 1769 }, level = 74, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (25-27)% increased Movement Speed" }, } },
+ ["MinionRunSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions have (28-30)% increased Movement Speed", statOrder = { 1769 }, level = 82, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (28-30)% increased Movement Speed" }, } },
+ ["MinionLifeEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions have (13-15)% increased maximum Life", statOrder = { 1766 }, level = 10, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (13-15)% increased maximum Life" }, } },
+ ["MinionLifeEssence3_"] = { type = "Suffix", affix = "of the Essence", "Minions have (16-18)% increased maximum Life", statOrder = { 1766 }, level = 26, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (16-18)% increased maximum Life" }, } },
+ ["MinionLifeEssence4"] = { type = "Suffix", affix = "of the Essence", "Minions have (19-21)% increased maximum Life", statOrder = { 1766 }, level = 42, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (19-21)% increased maximum Life" }, } },
+ ["MinionLifeEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions have (22-24)% increased maximum Life", statOrder = { 1766 }, level = 58, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (22-24)% increased maximum Life" }, } },
+ ["MinionLifeEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions have (25-27)% increased maximum Life", statOrder = { 1766 }, level = 74, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (25-27)% increased maximum Life" }, } },
+ ["MinionLifeEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions have (28-30)% increased maximum Life", statOrder = { 1766 }, level = 82, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (28-30)% increased maximum Life" }, } },
+ ["MinionDamageEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions deal (7-10)% increased Damage", statOrder = { 1973 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (7-10)% increased Damage" }, } },
+ ["MinionDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "Minions deal (11-14)% increased Damage", statOrder = { 1973 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (11-14)% increased Damage" }, } },
+ ["MinionDamageEssence4_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (15-18)% increased Damage", statOrder = { 1973 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-18)% increased Damage" }, } },
+ ["MinionDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions deal (19-22)% increased Damage", statOrder = { 1973 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (19-22)% increased Damage" }, } },
+ ["MinionDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions deal (23-26)% increased Damage", statOrder = { 1973 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (23-26)% increased Damage" }, } },
+ ["MinionDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions deal (27-30)% increased Damage", statOrder = { 1973 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (27-30)% increased Damage" }, } },
+ ["MinionAccuracyEssence2_"] = { type = "Suffix", affix = "of the Essence", "(13-15)% increased Minion Accuracy Rating", statOrder = { 9265 }, level = 10, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(13-15)% increased Minion Accuracy Rating" }, } },
+ ["MinionAccuracyEssence3_"] = { type = "Suffix", affix = "of the Essence", "(16-18)% increased Minion Accuracy Rating", statOrder = { 9265 }, level = 26, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(16-18)% increased Minion Accuracy Rating" }, } },
+ ["MinionAccuracyEssence4___"] = { type = "Suffix", affix = "of the Essence", "(19-21)% increased Minion Accuracy Rating", statOrder = { 9265 }, level = 42, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(19-21)% increased Minion Accuracy Rating" }, } },
+ ["MinionAccuracyEssence5"] = { type = "Suffix", affix = "of the Essence", "(22-24)% increased Minion Accuracy Rating", statOrder = { 9265 }, level = 58, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(22-24)% increased Minion Accuracy Rating" }, } },
+ ["MinionAccuracyEssence6"] = { type = "Suffix", affix = "of the Essence", "(25-27)% increased Minion Accuracy Rating", statOrder = { 9265 }, level = 74, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(25-27)% increased Minion Accuracy Rating" }, } },
+ ["MinionAccuracyEssence7_"] = { type = "Suffix", affix = "of the Essence", "(28-30)% increased Minion Accuracy Rating", statOrder = { 9265 }, level = 82, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(28-30)% increased Minion Accuracy Rating" }, } },
+ ["MinionDamageGlovesEssence2"] = { type = "Prefix", affix = "Essences", "Minions deal (13-15)% increased Damage", statOrder = { 1973 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (13-15)% increased Damage" }, } },
+ ["MinionDamageGlovesEssence3"] = { type = "Prefix", affix = "Essences", "Minions deal (16-18)% increased Damage", statOrder = { 1973 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (16-18)% increased Damage" }, } },
+ ["MinionDamageGlovesEssence4"] = { type = "Prefix", affix = "Essences", "Minions deal (19-21)% increased Damage", statOrder = { 1973 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (19-21)% increased Damage" }, } },
+ ["MinionDamageGlovesEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (22-24)% increased Damage", statOrder = { 1973 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (22-24)% increased Damage" }, } },
+ ["MinionDamageGlovesEssence6___"] = { type = "Prefix", affix = "Essences", "Minions deal (25-27)% increased Damage", statOrder = { 1973 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (25-27)% increased Damage" }, } },
+ ["MinionDamageGlovesEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (28-30)% increased Damage", statOrder = { 1973 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (28-30)% increased Damage" }, } },
+ ["MinionDamageEssenceTwoHand2"] = { type = "Suffix", affix = "of the Essence", "Minions deal (10-15)% increased Damage", statOrder = { 1973 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (10-15)% increased Damage" }, } },
+ ["MinionDamageEssenceTwoHand3_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (16-21)% increased Damage", statOrder = { 1973 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (16-21)% increased Damage" }, } },
+ ["MinionDamageEssenceTwoHand4"] = { type = "Suffix", affix = "of the Essence", "Minions deal (22-27)% increased Damage", statOrder = { 1973 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (22-27)% increased Damage" }, } },
+ ["MinionDamageEssenceTwoHand5_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (28-33)% increased Damage", statOrder = { 1973 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (28-33)% increased Damage" }, } },
+ ["MinionDamageEssenceTwoHand6"] = { type = "Suffix", affix = "of the Essence", "Minions deal (34-39)% increased Damage", statOrder = { 1973 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (34-39)% increased Damage" }, } },
+ ["MinionDamageEssenceTwoHand7_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (40-45)% increased Damage", statOrder = { 1973 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (40-45)% increased Damage" }, } },
+ ["BeltIncreasedFlaskChargesGained1"] = { type = "Suffix", affix = "of Refilling", "(5-10)% increased Flask Charges gained", statOrder = { 2183 }, level = 2, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(5-10)% increased Flask Charges gained" }, } },
+ ["BeltIncreasedFlaskChargesGained2"] = { type = "Suffix", affix = "of Restocking", "(11-16)% increased Flask Charges gained", statOrder = { 2183 }, level = 16, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(11-16)% increased Flask Charges gained" }, } },
+ ["BeltIncreasedFlaskChargesGained3_____"] = { type = "Suffix", affix = "of Replenishing", "(17-22)% increased Flask Charges gained", statOrder = { 2183 }, level = 32, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(17-22)% increased Flask Charges gained" }, } },
+ ["BeltIncreasedFlaskChargesGained4"] = { type = "Suffix", affix = "of Pouring", "(23-28)% increased Flask Charges gained", statOrder = { 2183 }, level = 48, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(23-28)% increased Flask Charges gained" }, } },
+ ["BeltIncreasedFlaskChargesGained5_"] = { type = "Suffix", affix = "of Brimming", "(29-34)% increased Flask Charges gained", statOrder = { 2183 }, level = 70, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(29-34)% increased Flask Charges gained" }, } },
+ ["BeltIncreasedFlaskChargesGained6"] = { type = "Suffix", affix = "of Overflowing", "(35-40)% increased Flask Charges gained", statOrder = { 2183 }, level = 84, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [1452809865] = { "(35-40)% increased Flask Charges gained" }, } },
+ ["BeltIncreasedFlaskEffect1_"] = { type = "Prefix", affix = "Distilling", "Flasks applied to you have (4-6)% increased Effect", statOrder = { 2742 }, level = 45, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 250, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (4-6)% increased Effect" }, } },
+ ["BeltIncreasedFlaskEffect2"] = { type = "Prefix", affix = "Condensing", "Flasks applied to you have (7-9)% increased Effect", statOrder = { 2742 }, level = 65, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 250, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (7-9)% increased Effect" }, } },
+ ["BeltIncreasedFlaskEffect3"] = { type = "Prefix", affix = "Magnifying", "Flasks applied to you have (10-12)% increased Effect", statOrder = { 2742 }, level = 85, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 250, 0 }, modTags = { "flask" }, tradeHashes = { [114734841] = { "Flasks applied to you have (10-12)% increased Effect" }, } },
+ ["BeltReducedFlaskChargesUsed1"] = { type = "Suffix", affix = "of Sipping", "(10-20)% reduced Flask Charges used", statOrder = { 2184 }, level = 3, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(10-20)% reduced Flask Charges used" }, } },
+ ["BeltIncreasedFlaskDuration1"] = { type = "Suffix", affix = "of Sipping", "(4-9)% increased Flask Effect Duration", statOrder = { 2187 }, level = 8, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(4-9)% increased Flask Effect Duration" }, } },
+ ["BeltIncreasedFlaskDuration2"] = { type = "Suffix", affix = "of Tasting", "(10-15)% increased Flask Effect Duration", statOrder = { 2187 }, level = 34, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(10-15)% increased Flask Effect Duration" }, } },
+ ["BeltIncreasedFlaskDuration3"] = { type = "Suffix", affix = "of Savouring", "(16-21)% increased Flask Effect Duration", statOrder = { 2187 }, level = 50, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(16-21)% increased Flask Effect Duration" }, } },
+ ["BeltIncreasedFlaskDuration4"] = { type = "Suffix", affix = "of Relishing", "(22-27)% increased Flask Effect Duration", statOrder = { 2187 }, level = 66, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(22-27)% increased Flask Effect Duration" }, } },
+ ["BeltIncreasedFlaskDuration5_"] = { type = "Suffix", affix = "of Reveling", "(28-33)% increased Flask Effect Duration", statOrder = { 2187 }, level = 82, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(28-33)% increased Flask Effect Duration" }, } },
+ ["BeltFlaskLifeRecoveryRate1"] = { type = "Prefix", affix = "Restoring", "(5-10)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 5, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(5-10)% increased Flask Life Recovery rate" }, } },
+ ["BeltFlaskLifeRecoveryRate2"] = { type = "Prefix", affix = "Recovering", "(11-16)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 21, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(11-16)% increased Flask Life Recovery rate" }, } },
+ ["BeltFlaskLifeRecoveryRate3_"] = { type = "Prefix", affix = "Renewing", "(17-22)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 35, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(17-22)% increased Flask Life Recovery rate" }, } },
+ ["BeltFlaskLifeRecoveryRate4"] = { type = "Prefix", affix = "Refreshing", "(23-28)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 49, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(23-28)% increased Flask Life Recovery rate" }, } },
+ ["BeltFlaskLifeRecoveryRate5"] = { type = "Prefix", affix = "Rejuvenating", "(29-34)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 63, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(29-34)% increased Flask Life Recovery rate" }, } },
+ ["BeltFlaskLifeRecoveryRate6"] = { type = "Prefix", affix = "Regenerating", "(35-40)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 77, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(35-40)% increased Flask Life Recovery rate" }, } },
+ ["BeltFlaskLifeRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(8-11)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(8-11)% increased Flask Life Recovery rate" }, } },
+ ["BeltFlaskLifeRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(12-15)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 10, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(12-15)% increased Flask Life Recovery rate" }, } },
+ ["BeltFlaskLifeRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(16-19)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 26, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(16-19)% increased Flask Life Recovery rate" }, } },
+ ["BeltFlaskLifeRecoveryRateEssence4"] = { type = "Prefix", affix = "Essences", "(20-23)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 42, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(20-23)% increased Flask Life Recovery rate" }, } },
+ ["BeltFlaskLifeRecoveryRateEssence5"] = { type = "Prefix", affix = "Essences", "(24-27)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 58, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(24-27)% increased Flask Life Recovery rate" }, } },
+ ["BeltFlaskLifeRecoveryRateEssence6"] = { type = "Prefix", affix = "Essences", "(28-31)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 74, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(28-31)% increased Flask Life Recovery rate" }, } },
+ ["BeltFlaskLifeRecoveryRateEssence7"] = { type = "Prefix", affix = "Essences", "(32-35)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 82, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(32-35)% increased Flask Life Recovery rate" }, } },
+ ["BeltFlaskManaRecoveryRate1_"] = { type = "Prefix", affix = "Affecting", "(5-10)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 5, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(5-10)% increased Flask Mana Recovery rate" }, } },
+ ["BeltFlaskManaRecoveryRate2"] = { type = "Prefix", affix = "Stirring", "(11-16)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 21, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(11-16)% increased Flask Mana Recovery rate" }, } },
+ ["BeltFlaskManaRecoveryRate3_"] = { type = "Prefix", affix = "Heartening", "(17-22)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 35, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(17-22)% increased Flask Mana Recovery rate" }, } },
+ ["BeltFlaskManaRecoveryRate4__"] = { type = "Prefix", affix = "Exciting", "(23-28)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 49, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(23-28)% increased Flask Mana Recovery rate" }, } },
+ ["BeltFlaskManaRecoveryRate5"] = { type = "Prefix", affix = "Galvanizing", "(29-34)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 63, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(29-34)% increased Flask Mana Recovery rate" }, } },
+ ["BeltFlaskManaRecoveryRate6"] = { type = "Prefix", affix = "Inspiring", "(35-40)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 77, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(35-40)% increased Flask Mana Recovery rate" }, } },
+ ["BeltFlaskManaRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 58, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(11-15)% increased Flask Mana Recovery rate" }, } },
+ ["BeltFlaskManaRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 74, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(16-20)% increased Flask Mana Recovery rate" }, } },
+ ["BeltFlaskManaRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 82, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(21-25)% increased Flask Mana Recovery rate" }, } },
+ ["ChanceToAvoidShockEssence2_"] = { type = "Suffix", affix = "of the Essence", "(35-38)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 10, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(35-38)% chance to Avoid being Shocked" }, } },
+ ["ChanceToAvoidShockEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 26, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(39-42)% chance to Avoid being Shocked" }, } },
+ ["ChanceToAvoidShockEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 42, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(43-46)% chance to Avoid being Shocked" }, } },
+ ["ChanceToAvoidShockEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 58, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(47-50)% chance to Avoid being Shocked" }, } },
+ ["ChanceToAvoidShockEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 74, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-55)% chance to Avoid being Shocked" }, } },
+ ["ChanceToAvoidShockEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 82, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(56-60)% chance to Avoid being Shocked" }, } },
+ ["AttackerTakesDamage1"] = { type = "Prefix", affix = "Thorny", "Reflects (1-4) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (1-4) Physical Damage to Melee Attackers" }, } },
+ ["AttackerTakesDamage2"] = { type = "Prefix", affix = "Spiny", "Reflects (5-10) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 10, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (5-10) Physical Damage to Melee Attackers" }, } },
+ ["AttackerTakesDamage3"] = { type = "Prefix", affix = "Barbed", "Reflects (11-24) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 20, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (11-24) Physical Damage to Melee Attackers" }, } },
+ ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Jagged", "Reflects (25-50) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 35, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (25-50) Physical Damage to Melee Attackers" }, } },
+ ["AttackerTakesDamageEssence5"] = { type = "Prefix", affix = "Essences", "Reflects (51-100) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (51-100) Physical Damage to Melee Attackers" }, } },
+ ["AttackerTakesDamageEssence6"] = { type = "Prefix", affix = "Essences", "Reflects (101-150) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 74, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (101-150) Physical Damage to Melee Attackers" }, } },
+ ["AttackerTakesDamageEssence7"] = { type = "Prefix", affix = "Essences", "Reflects (151-200) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 82, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [223497523] = { "" }, [3767873853] = { "Reflects (151-200) Physical Damage to Melee Attackers" }, } },
+ ["ChanceToAvoidFreezeEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(39-42)% chance to Avoid being Frozen" }, } },
+ ["ChanceToAvoidFreezeEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(43-46)% chance to Avoid being Frozen" }, } },
+ ["ChanceToAvoidFreezeEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(47-50)% chance to Avoid being Frozen" }, } },
+ ["ChanceToAvoidFreezeEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(51-55)% chance to Avoid being Frozen" }, } },
+ ["ChanceToAvoidFreezeEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(56-60)% chance to Avoid being Frozen" }, } },
+ ["AdditionalBlockChance1"] = { type = "Suffix", affix = "of Intercepting", "+(1-3)% Chance to Block", statOrder = { 2249 }, level = 10, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(1-3)% Chance to Block" }, } },
+ ["AdditionalBlockChance2"] = { type = "Suffix", affix = "of Walling", "+(4-5)% Chance to Block", statOrder = { 2249 }, level = 25, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(4-5)% Chance to Block" }, } },
+ ["AdditionalBlockChance3"] = { type = "Suffix", affix = "of Blocking", "+(6-7)% Chance to Block", statOrder = { 2249 }, level = 40, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(6-7)% Chance to Block" }, } },
+ ["AdditionalBlockChance4_"] = { type = "Suffix", affix = "of the Stalwart", "+(8-9)% Chance to Block", statOrder = { 2249 }, level = 55, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(8-9)% Chance to Block" }, } },
+ ["AdditionalBlockChance5"] = { type = "Suffix", affix = "of the Buttress", "+(10-11)% Chance to Block", statOrder = { 2249 }, level = 66, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(10-11)% Chance to Block" }, } },
+ ["AdditionalBlockChance6"] = { type = "Suffix", affix = "of the Sentinel", "+(12-13)% Chance to Block", statOrder = { 2249 }, level = 77, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(12-13)% Chance to Block" }, } },
+ ["AdditionalBlockChance7"] = { type = "Suffix", affix = "of the Citadel", "+(14-15)% Chance to Block", statOrder = { 2249 }, level = 86, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(14-15)% Chance to Block" }, } },
+ ["AdditionalShieldBlockChance1"] = { type = "Suffix", affix = "of the Essence", "+(1-2)% Chance to Block", statOrder = { 2249 }, level = 42, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(1-2)% Chance to Block" }, } },
+ ["AdditionalShieldBlockChance2"] = { type = "Suffix", affix = "of the Essence", "+(3-4)% Chance to Block", statOrder = { 2249 }, level = 58, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-4)% Chance to Block" }, } },
+ ["AdditionalShieldBlockChance3"] = { type = "Suffix", affix = "of the Essence", "+(5-6)% Chance to Block", statOrder = { 2249 }, level = 74, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(5-6)% Chance to Block" }, } },
+ ["AdditionalShieldBlockChance4"] = { type = "Suffix", affix = "of the Essence", "+(7-8)% Chance to Block", statOrder = { 2249 }, level = 82, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(7-8)% Chance to Block" }, } },
+ ["PhysicalDamageTakenAsFirePercentWarbands"] = { type = "Prefix", affix = "Redblade", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } },
+ ["ChanceToAvoidIgniteEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 42, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(43-46)% chance to Avoid being Ignited" }, } },
+ ["ChanceToAvoidIgniteEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 58, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(47-50)% chance to Avoid being Ignited" }, } },
+ ["ChanceToAvoidIgniteEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 74, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-55)% chance to Avoid being Ignited" }, } },
+ ["ChanceToAvoidIgniteEssence7_"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 82, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(56-60)% chance to Avoid being Ignited" }, } },
+ ["ChanceToBlockProjectileAttacks1_"] = { type = "Suffix", affix = "of Deflection", "+(1-2)% chance to Block Projectile Attack Damage", statOrder = { 2464 }, level = 8, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(1-2)% chance to Block Projectile Attack Damage" }, } },
+ ["ChanceToBlockProjectileAttacks2"] = { type = "Suffix", affix = "of Protection", "+(3-4)% chance to Block Projectile Attack Damage", statOrder = { 2464 }, level = 19, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(3-4)% chance to Block Projectile Attack Damage" }, } },
+ ["ChanceToBlockProjectileAttacks3"] = { type = "Suffix", affix = "of Cover", "+(5-6)% chance to Block Projectile Attack Damage", statOrder = { 2464 }, level = 30, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(5-6)% chance to Block Projectile Attack Damage" }, } },
+ ["ChanceToBlockProjectileAttacks4"] = { type = "Suffix", affix = "of Asylum", "+(7-8)% chance to Block Projectile Attack Damage", statOrder = { 2464 }, level = 55, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(7-8)% chance to Block Projectile Attack Damage" }, } },
+ ["ChanceToBlockProjectileAttacks5_"] = { type = "Suffix", affix = "of Refuge", "+(9-10)% chance to Block Projectile Attack Damage", statOrder = { 2464 }, level = 70, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(9-10)% chance to Block Projectile Attack Damage" }, } },
+ ["ChanceToBlockProjectileAttacks6"] = { type = "Suffix", affix = "of Sanctuary", "+(11-12)% chance to Block Projectile Attack Damage", statOrder = { 2464 }, level = 81, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(11-12)% chance to Block Projectile Attack Damage" }, } },
+ ["AllDamageMasterVendorItem"] = { type = "Prefix", affix = "Leo's", "(5-15)% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(5-15)% increased Damage" }, } },
+ ["ReducedManaReservationCostEssence4"] = { type = "Suffix", affix = "of the Essence", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 42, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "4% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ReducedManaReservationCostEssence5"] = { type = "Suffix", affix = "of the Essence", "6% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 58, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "6% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ReducedManaReservationCostEssence6"] = { type = "Suffix", affix = "of the Essence", "8% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 74, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "8% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ReducedManaReservationCostEssence7"] = { type = "Suffix", affix = "of the Essence", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 82, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "10% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ManaReservationEfficiencyEssence4"] = { type = "Suffix", affix = "of the Essence", "(3-4)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 42, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(3-4)% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ManaReservationEfficiencyEssence5__"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 58, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(5-6)% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ManaReservationEfficiencyEssence6_"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 74, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(7-8)% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ManaReservationEfficiencyEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 82, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(9-10)% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "18% reduced Attribute Requirements", statOrder = { 1075 }, level = 36, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 1000, 850, 650, 750, 450, 550, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "18% reduced Attribute Requirements" }, } },
+ ["ReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "32% reduced Attribute Requirements", statOrder = { 1075 }, level = 60, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 1000, 850, 650, 750, 450, 550, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "32% reduced Attribute Requirements" }, } },
+ ["LightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 1433, 2500 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "ring", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [803737631] = { "+(10-20) to Accuracy Rating" }, } },
+ ["LightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 1433, 2500 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "ring", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [803737631] = { "+(21-40) to Accuracy Rating" }, } },
+ ["LightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "(16-20)% increased Global Accuracy Rating", "15% increased Light Radius", statOrder = { 1434, 2500 }, level = 30, group = "LightRadiusAndAccuracyPercent", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [624954515] = { "(16-20)% increased Global Accuracy Rating" }, } },
+ ["LightRadiusAndAccuracyNew1"] = { type = "Suffix", affix = "of Shining", "(9-11)% increased Global Accuracy Rating", "5% increased Light Radius", statOrder = { 1434, 2500 }, level = 8, group = "LightRadiusAndAccuracyPercent", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [624954515] = { "(9-11)% increased Global Accuracy Rating" }, } },
+ ["LightRadiusAndAccuracyNew2"] = { type = "Suffix", affix = "of Light", "(12-15)% increased Global Accuracy Rating", "10% increased Light Radius", statOrder = { 1434, 2500 }, level = 15, group = "LightRadiusAndAccuracyPercent", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [624954515] = { "(12-15)% increased Global Accuracy Rating" }, } },
+ ["LocalLightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 2024, 2500 }, level = 8, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [691932474] = { "+(10-20) to Accuracy Rating" }, } },
+ ["LocalLightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 2024, 2500 }, level = 15, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [691932474] = { "+(21-40) to Accuracy Rating" }, } },
+ ["LocalLightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "(16-20)% increased Global Accuracy Rating", "15% increased Light Radius", statOrder = { 1434, 2500 }, level = 30, group = "LocalLightRadiusAndAccuracyPercent", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [624954515] = { "(16-20)% increased Global Accuracy Rating" }, } },
+ ["LocalLightRadiusAndAccuracyNew1_"] = { type = "Suffix", affix = "of Shining", "(9-11)% increased Global Accuracy Rating", "5% increased Light Radius", statOrder = { 1434, 2500 }, level = 8, group = "LocalLightRadiusAndAccuracyPercent", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [624954515] = { "(9-11)% increased Global Accuracy Rating" }, } },
+ ["LocalLightRadiusAndAccuracyNew2"] = { type = "Suffix", affix = "of Light", "(12-15)% increased Global Accuracy Rating", "10% increased Light Radius", statOrder = { 1434, 2500 }, level = 15, group = "LocalLightRadiusAndAccuracyPercent", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [624954515] = { "(12-15)% increased Global Accuracy Rating" }, } },
+ ["LocalIncreasedMeleeWeaponRangeEssence5"] = { type = "Suffix", affix = "of the Essence", "+0.1 metres to Weapon Range", statOrder = { 2745 }, level = 58, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.1 metres to Weapon Range" }, } },
+ ["LocalIncreasedMeleeWeaponRangeEssence6"] = { type = "Suffix", affix = "of the Essence", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 74, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } },
+ ["LocalIncreasedMeleeWeaponRangeEssence7"] = { type = "Suffix", affix = "of the Essence", "+0.3 metres to Weapon Range", statOrder = { 2745 }, level = 82, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+0.3 metres to Weapon Range" }, } },
+ ["GainLifeOnBlock1"] = { type = "Suffix", affix = "of Repairing", "(5-15) Life gained when you Block", statOrder = { 1757 }, level = 11, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(5-15) Life gained when you Block" }, } },
+ ["GainLifeOnBlock2_"] = { type = "Suffix", affix = "of Resurgence", "(16-25) Life gained when you Block", statOrder = { 1757 }, level = 22, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(16-25) Life gained when you Block" }, } },
+ ["GainLifeOnBlock3"] = { type = "Suffix", affix = "of Renewal", "(26-40) Life gained when you Block", statOrder = { 1757 }, level = 36, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(26-40) Life gained when you Block" }, } },
+ ["GainLifeOnBlock4"] = { type = "Suffix", affix = "of Revival", "(41-60) Life gained when you Block", statOrder = { 1757 }, level = 48, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(41-60) Life gained when you Block" }, } },
+ ["GainLifeOnBlock5"] = { type = "Suffix", affix = "of Rebounding", "(61-85) Life gained when you Block", statOrder = { 1757 }, level = 60, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(61-85) Life gained when you Block" }, } },
+ ["GainLifeOnBlock6_"] = { type = "Suffix", affix = "of Revitalization", "(86-100) Life gained when you Block", statOrder = { 1757 }, level = 75, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(86-100) Life gained when you Block" }, } },
+ ["GainManaOnBlock1"] = { type = "Suffix", affix = "of Redirection", "(4-12) Mana gained when you Block", statOrder = { 1758 }, level = 15, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(4-12) Mana gained when you Block" }, } },
+ ["GainManaOnBlock2"] = { type = "Suffix", affix = "of Transformation", "(13-21) Mana gained when you Block", statOrder = { 1758 }, level = 32, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(13-21) Mana gained when you Block" }, } },
+ ["GainManaOnBlock3"] = { type = "Suffix", affix = "of Conservation", "(22-30) Mana gained when you Block", statOrder = { 1758 }, level = 58, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(22-30) Mana gained when you Block" }, } },
+ ["GainManaOnBlock4"] = { type = "Suffix", affix = "of Utilisation", "(31-39) Mana gained when you Block", statOrder = { 1758 }, level = 75, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(31-39) Mana gained when you Block" }, } },
+ ["FishingLineStrength"] = { type = "Prefix", affix = "Filigree", "(20-40)% increased Fishing Line Strength", statOrder = { 2844 }, level = 1, group = "FishingLineStrength", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1842038569] = { "(20-40)% increased Fishing Line Strength" }, } },
+ ["FishingPoolConsumption"] = { type = "Prefix", affix = "Calming", "(15-30)% reduced Fishing Pool Consumption", statOrder = { 2845 }, level = 1, group = "FishingPoolConsumption", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1550221644] = { "(15-30)% reduced Fishing Pool Consumption" }, } },
+ ["FishingLureType"] = { type = "Prefix", affix = "Alluring", "Rhoa Feather Lure", statOrder = { 2846 }, level = 1, group = "FishingLureType", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3360430812] = { "Rhoa Feather Lure" }, } },
+ ["FishingHookType"] = { type = "Suffix", affix = "of Snaring", "Karui Stone Hook", statOrder = { 2847 }, level = 1, group = "FishingHookType", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2054162825] = { "Karui Stone Hook" }, } },
+ ["FishingCastDistance"] = { type = "Suffix", affix = "of Flight", "(30-50)% increased Fishing Range", statOrder = { 2848 }, level = 1, group = "FishingCastDistance", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [170497091] = { "(30-50)% increased Fishing Range" }, } },
+ ["FishingQuantity"] = { type = "Suffix", affix = "of Fascination", "(15-20)% increased Quantity of Fish Caught", statOrder = { 2849 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3802667447] = { "(15-20)% increased Quantity of Fish Caught" }, } },
+ ["FishingRarity"] = { type = "Suffix", affix = "of Bounty", "(25-40)% increased Rarity of Fish Caught", statOrder = { 2850 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, tradeHashes = { [3310914132] = { "(25-40)% increased Rarity of Fish Caught" }, } },
+ ["ChanceToDodge1"] = { type = "Suffix", affix = "of Mist", "+3% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 35, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+3% chance to Suppress Spell Damage" }, } },
+ ["ChanceToDodge2"] = { type = "Suffix", affix = "of Haze", "+4% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 62, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+4% chance to Suppress Spell Damage" }, } },
+ ["ChanceToDodge3"] = { type = "Suffix", affix = "of Fog", "+6% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 78, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+6% chance to Suppress Spell Damage" }, } },
+ ["ChanceToDodgeEssence4"] = { type = "Suffix", affix = "of the Essence", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 42, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToDodgeEssence5"] = { type = "Suffix", affix = "of the Essence", "+(7-9)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 58, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(7-9)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToDodgeEssence6"] = { type = "Suffix", affix = "of the Essence", "+(10-12)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 74, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(10-12)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToDodgeEssence7"] = { type = "Suffix", affix = "of the Essence", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 82, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(13-15)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToDodgeSpells1"] = { type = "Suffix", affix = "of Prayers", "+3% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 35, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+3% chance to Suppress Spell Damage" }, } },
+ ["ChanceToDodgeSpells2"] = { type = "Suffix", affix = "of Invocations", "+4% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 62, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+4% chance to Suppress Spell Damage" }, } },
+ ["ChanceToDodgeSpells3"] = { type = "Suffix", affix = "of Incantations", "+6% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 78, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+6% chance to Suppress Spell Damage" }, } },
+ ["ChanceToDodgeSpellsEssence5"] = { type = "Suffix", affix = "of the Essence", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToDodgeSpellsEssence6"] = { type = "Suffix", affix = "of the Essence", "+(7-9)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(7-9)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToDodgeSpellsEssence7"] = { type = "Suffix", affix = "of the Essence", "+(10-12)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(10-12)% chance to Suppress Spell Damage" }, } },
+ ["ChaosResistanceWhileUsingFlaskEssence1"] = { type = "Suffix", affix = "of the Essence", "+50% to Chaos Resistance during any Flask Effect", statOrder = { 3301 }, level = 63, group = "ChaosResistanceWhileUsingFlask", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+50% to Chaos Resistance during any Flask Effect" }, } },
+ ["SpellBlockPercentage1__"] = { type = "Suffix", affix = "of the Barrier", "(4-6)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 30, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(4-6)% Chance to Block Spell Damage" }, } },
+ ["SpellBlockPercentage2"] = { type = "Suffix", affix = "of the Bulwark", "(7-9)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 52, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(7-9)% Chance to Block Spell Damage" }, } },
+ ["SpellBlockPercentage3_"] = { type = "Suffix", affix = "of the Barricade", "(10-12)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 71, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(10-12)% Chance to Block Spell Damage" }, } },
+ ["SpellBlockPercentage4_"] = { type = "Suffix", affix = "of the Bastion", "(13-15)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 84, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(13-15)% Chance to Block Spell Damage" }, } },
+ ["LocalIncreasedBlockPercentage1"] = { type = "Prefix", affix = "Steadfast", "(40-45)% increased Chance to Block", statOrder = { 90 }, level = 2, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(40-45)% increased Chance to Block" }, } },
+ ["LocalIncreasedBlockPercentage2"] = { type = "Prefix", affix = "Unrelenting", "(46-51)% increased Chance to Block", statOrder = { 90 }, level = 15, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(46-51)% increased Chance to Block" }, } },
+ ["LocalIncreasedBlockPercentage3"] = { type = "Prefix", affix = "Adamant", "(52-57)% increased Chance to Block", statOrder = { 90 }, level = 35, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(52-57)% increased Chance to Block" }, } },
+ ["LocalIncreasedBlockPercentage4"] = { type = "Prefix", affix = "Warded", "(58-63)% increased Chance to Block", statOrder = { 90 }, level = 48, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(58-63)% increased Chance to Block" }, } },
+ ["LocalIncreasedBlockPercentage5"] = { type = "Prefix", affix = "Unwavering", "(64-69)% increased Chance to Block", statOrder = { 90 }, level = 61, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(64-69)% increased Chance to Block" }, } },
+ ["LocalIncreasedBlockPercentage6"] = { type = "Prefix", affix = "Enduring", "(70-75)% increased Chance to Block", statOrder = { 90 }, level = 77, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(70-75)% increased Chance to Block" }, } },
+ ["LocalIncreasedBlockPercentage7"] = { type = "Prefix", affix = "Unyielding", "(76-81)% increased Chance to Block", statOrder = { 90 }, level = 86, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(76-81)% increased Chance to Block" }, } },
+ ["ShieldSpellBlockPercentage1"] = { type = "Prefix", affix = "Mystic", "(4-5)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 16, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(4-5)% Chance to Block Spell Damage" }, } },
+ ["ShieldSpellBlockPercentage2"] = { type = "Prefix", affix = "Clairvoyant", "(6-7)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 28, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(6-7)% Chance to Block Spell Damage" }, } },
+ ["ShieldSpellBlockPercentage3"] = { type = "Prefix", affix = "Enigmatic", "(8-9)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 40, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(8-9)% Chance to Block Spell Damage" }, } },
+ ["ShieldSpellBlockPercentage4"] = { type = "Prefix", affix = "Enlightened", "(10-11)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 55, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(10-11)% Chance to Block Spell Damage" }, } },
+ ["ShieldSpellBlockPercentage5"] = { type = "Prefix", affix = "Seer's", "(12-13)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 66, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(12-13)% Chance to Block Spell Damage" }, } },
+ ["ShieldSpellBlockPercentage6"] = { type = "Prefix", affix = "Oracle's", "(14-15)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 77, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(14-15)% Chance to Block Spell Damage" }, } },
+ ["LocalIncreaseSocketedSupportGemLevelIntMasterVendorItem"] = { type = "Prefix", affix = "Catarina's", "+1 to Level of Socketed Support Gems", statOrder = { 189 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [4154259475] = { "+1 to Level of Socketed Support Gems" }, } },
+ ["IncreasedChaosDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Chaos Damage", statOrder = { 1385 }, level = 58, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(23-26)% increased Chaos Damage" }, } },
+ ["IncreasedChaosDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Chaos Damage", statOrder = { 1385 }, level = 74, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-30)% increased Chaos Damage" }, } },
+ ["IncreasedChaosDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Chaos Damage", statOrder = { 1385 }, level = 82, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(31-34)% increased Chaos Damage" }, } },
+ ["IncreasedLifeLeechRateEssence1"] = { type = "Suffix", affix = "of the Essence", "150% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 63, group = "IncreasedLifeLeechRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "150% increased total Recovery per second from Life Leech" }, } },
+ ["ChaosLeechedAsLifeEssence1_"] = { type = "Suffix", affix = "of the Essence", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 63, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.5% of Chaos Damage Leeched as Life" }, } },
+ ["ReduceGlobalFlatManaCostStrIntMasterVendor"] = { type = "Prefix", affix = "Elreon's", "-(8-4) to Total Mana Cost of Skills", statOrder = { 1891 }, level = 1, group = "IncreaseManaCostFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3736589033] = { "-(8-4) to Total Mana Cost of Skills" }, } },
+ ["LifeLeechSpeedDexIntMasterVendorItem"] = { type = "Prefix", affix = "Vorici's", "(20-40)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 1, group = "LifeLeechSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2633745731] = { "(20-40)% increased total Recovery per second from Life Leech" }, } },
+ ["SocketedGemQualityStrMasterVendorItem"] = { type = "Prefix", affix = "Haku's", "+(3-6)% to Quality of Socketed Support Gems", statOrder = { 205 }, level = 1, group = "IncreaseSocketedSupportGemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [1328548975] = { "+(3-6)% to Quality of Socketed Support Gems" }, } },
+ ["BleedOnHitGainedDexMasterVendorItem"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrder = { 2481 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1401349154] = { "25% chance to cause Bleeding on Hit" }, } },
+ ["BleedOnHitGainedDexMasterVendorItemUpdated_"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "CausesBleedingChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } },
+ ["AlwaysHitsStrDexMasterVendorItem"] = { type = "Prefix", affix = "Vagan's", "Hits can't be Evaded", statOrder = { 2043 }, level = 1, group = "AlwaysHits", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Hits can't be Evaded" }, } },
+ ["MapInvasionBossMasterVendorItem"] = { type = "Prefix", affix = "Kirac's", "Area is inhabited by an additional Invasion Boss", statOrder = { 2620 }, level = 1, group = "MapExtraInvasionBosses", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [223497523] = { "" }, [3629113735] = { "" }, [279246355] = { "Area is inhabited by an additional Invasion Boss" }, [2390685262] = { "" }, } },
+ ["LightningPenetrationWarbands"] = { type = "Prefix", affix = "Turncoat's", "Damage Penetrates (6-10)% Lightning Resistance", statOrder = { 2984 }, level = 60, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (6-10)% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2984 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 5% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2984 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationTwoHandEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Lightning Resistance", statOrder = { 2984 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (9-10)% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Lightning Resistance", statOrder = { 2984 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (11-12)% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationTwoHandEssence3_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Lightning Resistance", statOrder = { 2984 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (13-14)% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Lightning Resistance", statOrder = { 2984 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (15-16)% Lightning Resistance" }, } },
+ ["FireResistancePenetrationWarbands"] = { type = "Prefix", affix = "Betrayer's", "Damage Penetrates (6-10)% Fire Resistance", statOrder = { 2981 }, level = 60, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (6-10)% Fire Resistance" }, } },
+ ["FireResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Fire Resistance", statOrder = { 2981 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } },
+ ["FireResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Fire Resistance", statOrder = { 2981 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 5% Fire Resistance" }, } },
+ ["FireResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } },
+ ["FireResistancePenetrationEssence4___"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Fire Resistance", statOrder = { 2981 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } },
+ ["FireResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } },
+ ["FireResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Fire Resistance", statOrder = { 2981 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (7-8)% Fire Resistance" }, } },
+ ["FireResistancePenetrationTwoHandEssence2_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Fire Resistance", statOrder = { 2981 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (9-10)% Fire Resistance" }, } },
+ ["FireResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Fire Resistance", statOrder = { 2981 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (11-12)% Fire Resistance" }, } },
+ ["FireResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Fire Resistance", statOrder = { 2981 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (13-14)% Fire Resistance" }, } },
+ ["FireResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Fire Resistance", statOrder = { 2981 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (15-16)% Fire Resistance" }, } },
+ ["ColdResistancePenetrationWarbands"] = { type = "Prefix", affix = "Deceiver's", "Damage Penetrates (6-10)% Cold Resistance", statOrder = { 2983 }, level = 60, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (6-10)% Cold Resistance" }, } },
+ ["ColdResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 3% Cold Resistance", statOrder = { 2983 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 3% Cold Resistance" }, } },
+ ["ColdResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Cold Resistance", statOrder = { 2983 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, } },
+ ["ColdResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Cold Resistance", statOrder = { 2983 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 5% Cold Resistance" }, } },
+ ["ColdResistancePenetrationEssence4_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } },
+ ["ColdResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Cold Resistance", statOrder = { 2983 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } },
+ ["ColdResistancePenetrationEssence6_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } },
+ ["ColdResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (5-6)% Cold Resistance", statOrder = { 2983 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-6)% Cold Resistance" }, } },
+ ["ColdResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Cold Resistance", statOrder = { 2983 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (7-8)% Cold Resistance" }, } },
+ ["ColdResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Cold Resistance", statOrder = { 2983 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (9-10)% Cold Resistance" }, } },
+ ["ColdResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Cold Resistance", statOrder = { 2983 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (11-12)% Cold Resistance" }, } },
+ ["ColdResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Cold Resistance", statOrder = { 2983 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (13-14)% Cold Resistance" }, } },
+ ["ColdResistancePenetrationTwoHandEssence6__"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Cold Resistance", statOrder = { 2983 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (15-16)% Cold Resistance" }, } },
+ ["ChanceToAvoidElementalStatusAilments1"] = { type = "Suffix", affix = "of Stoicism", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 23, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(16-20)% chance to Avoid Elemental Ailments" }, } },
+ ["ChanceToAvoidElementalStatusAilments2"] = { type = "Suffix", affix = "of Resolve", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 41, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(21-25)% chance to Avoid Elemental Ailments" }, } },
+ ["ChanceToAvoidElementalStatusAilments3__"] = { type = "Suffix", affix = "of Fortitude", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 57, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(26-30)% chance to Avoid Elemental Ailments" }, } },
+ ["ChanceToAvoidElementalStatusAilments4"] = { type = "Suffix", affix = "of Will", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 73, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(31-35)% chance to Avoid Elemental Ailments" }, } },
+ ["ChanceToAvoidElementalStatusAilmentsEssence1"] = { type = "Suffix", affix = "of the Essence", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 42, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(16-20)% chance to Avoid Elemental Ailments" }, } },
+ ["ChanceToAvoidElementalStatusAilmentsEssence2"] = { type = "Suffix", affix = "of the Essence", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 58, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(21-25)% chance to Avoid Elemental Ailments" }, } },
+ ["ChanceToAvoidElementalStatusAilmentsEssence3"] = { type = "Suffix", affix = "of the Essence", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 74, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(26-30)% chance to Avoid Elemental Ailments" }, } },
+ ["ChanceToAvoidElementalStatusAilmentsEssence4"] = { type = "Suffix", affix = "of the Essence", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 82, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(31-35)% chance to Avoid Elemental Ailments" }, } },
+ ["AttackAndCastSpeed1"] = { type = "Suffix", affix = "of Zeal", "(3-4)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 15, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(3-4)% increased Attack and Cast Speed" }, } },
+ ["AttackAndCastSpeed2"] = { type = "Suffix", affix = "of Fervour", "(5-6)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 45, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-6)% increased Attack and Cast Speed" }, } },
+ ["AttackAndCastSpeed3"] = { type = "Suffix", affix = "of Haste", "(7-8)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 70, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(7-8)% increased Attack and Cast Speed" }, } },
+ ["LifeLeechPermyriadLocal1"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 50, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadLocal2"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 60, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadLocal3"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 70, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(1-1.2)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadLocalSuffix1"] = { type = "Suffix", affix = "of the Remora", "(2-2.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 20, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(2-2.4)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadLocalSuffix2"] = { type = "Suffix", affix = "of the Lamprey", "(2.6-3.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 45, group = "LifeLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(2.6-3.2)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadLocalSuffix3"] = { type = "Suffix", affix = "of the Vampire", "(3.5-4.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 70, group = "LifeLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(3.5-4.5)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadLocalEssence1"] = { type = "Prefix", affix = "Essences", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.5-0.7)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadLocalEssence2"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 10, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.6-0.8)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadLocalEssence3"] = { type = "Prefix", affix = "Essences", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 26, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.7-0.9)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadLocalEssence4"] = { type = "Prefix", affix = "Essences", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 42, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.8-1)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadLocalEssence5"] = { type = "Prefix", affix = "Essences", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 58, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(0.9-1.1)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadLocalEssence6"] = { type = "Prefix", affix = "Essences", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 74, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(1-1.2)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadLocalEssence7"] = { type = "Prefix", affix = "Essences", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 82, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(1.1-1.3)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadLocalSuffixEssence1"] = { type = "Suffix", affix = "of the Essence", "(2-2.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(2-2.2)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadLocalSuffixEssence2"] = { type = "Suffix", affix = "of the Essence", "(2.3-2.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 10, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(2.3-2.4)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadLocalSuffixEssence3"] = { type = "Suffix", affix = "of the Essence", "(2.5-2.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 26, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(2.5-2.8)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadLocalSuffixEssence4"] = { type = "Suffix", affix = "of the Essence", "(2.9-3.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 42, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(2.9-3.2)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadLocalSuffixEssence5"] = { type = "Suffix", affix = "of the Essence", "(3.3-3.6)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 58, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(3.3-3.6)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadLocalSuffixEssence6"] = { type = "Suffix", affix = "of the Essence", "(3.7-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 74, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(3.7-4)% of Physical Attack Damage Leeched as Life" }, } },
+ ["LifeLeechPermyriadLocalSuffixEssence7"] = { type = "Suffix", affix = "of the Essence", "(4.1-4.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 82, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "(4.1-4.4)% of Physical Attack Damage Leeched as Life" }, } },
+ ["ManaLeechPermyriadLocal1"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 50, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(0.2-0.4)% of Physical Attack Damage Leeched as Mana" }, } },
+ ["ManaLeechPermyriadLocalSuffix1"] = { type = "Suffix", affix = "of Thirst", "(2.6-3.2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 50, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "(2.6-3.2)% of Physical Attack Damage Leeched as Mana" }, } },
+ ["AttackDamagePercent1"] = { type = "Prefix", affix = "Bully's", "(4-8)% increased Attack Damage", statOrder = { 1198 }, level = 4, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(4-8)% increased Attack Damage" }, } },
+ ["AttackDamagePercent2"] = { type = "Prefix", affix = "Thug's", "(9-16)% increased Attack Damage", statOrder = { 1198 }, level = 15, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(9-16)% increased Attack Damage" }, } },
+ ["AttackDamagePercent3"] = { type = "Prefix", affix = "Brute's", "(17-24)% increased Attack Damage", statOrder = { 1198 }, level = 30, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(17-24)% increased Attack Damage" }, } },
+ ["AttackDamagePercent4"] = { type = "Prefix", affix = "Assailant's", "(25-29)% increased Attack Damage", statOrder = { 1198 }, level = 60, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(25-29)% increased Attack Damage" }, } },
+ ["AttackDamagePercent5"] = { type = "Prefix", affix = "Predator's", "(30-34)% increased Attack Damage", statOrder = { 1198 }, level = 81, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(30-34)% increased Attack Damage" }, } },
+ ["SummonTotemCastSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(21-25)% increased Totem Placement speed", statOrder = { 2578 }, level = 42, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(21-25)% increased Totem Placement speed" }, } },
+ ["SummonTotemCastSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "(26-30)% increased Totem Placement speed", statOrder = { 2578 }, level = 58, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(26-30)% increased Totem Placement speed" }, } },
+ ["SummonTotemCastSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "(31-35)% increased Totem Placement speed", statOrder = { 2578 }, level = 74, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(31-35)% increased Totem Placement speed" }, } },
+ ["SummonTotemCastSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(36-45)% increased Totem Placement speed", statOrder = { 2578 }, level = 82, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(36-45)% increased Totem Placement speed" }, } },
+ ["StunAvoidance1"] = { type = "Suffix", affix = "of Composure", "(11-13)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(11-13)% chance to Avoid being Stunned" }, } },
+ ["StunAvoidance2"] = { type = "Suffix", affix = "of Surefootedness", "(14-16)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(14-16)% chance to Avoid being Stunned" }, } },
+ ["StunAvoidance3"] = { type = "Suffix", affix = "of Persistence", "(17-19)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(17-19)% chance to Avoid being Stunned" }, } },
+ ["StunAvoidance4"] = { type = "Suffix", affix = "of Relentlessness", "(20-22)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(20-22)% chance to Avoid being Stunned" }, } },
+ ["StunAvoidanceEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 58, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(23-26)% chance to Avoid being Stunned" }, } },
+ ["StunAvoidanceEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 74, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(27-30)% chance to Avoid being Stunned" }, } },
+ ["StunAvoidanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-44)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 82, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(31-44)% chance to Avoid being Stunned" }, } },
+ ["IncreasedStunThresholdEssence5"] = { type = "Suffix", affix = "of the Essence", "(31-39)% increased Stun Threshold", statOrder = { 3272 }, level = 58, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(31-39)% increased Stun Threshold" }, } },
+ ["IncreasedStunThresholdEssence6"] = { type = "Suffix", affix = "of the Essence", "(40-45)% increased Stun Threshold", statOrder = { 3272 }, level = 74, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(40-45)% increased Stun Threshold" }, } },
+ ["IncreasedStunThresholdEssence7"] = { type = "Suffix", affix = "of the Essence", "(46-60)% increased Stun Threshold", statOrder = { 3272 }, level = 82, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(46-60)% increased Stun Threshold" }, } },
+ ["SpellAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (1-2) to (3-4) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamage2_"] = { type = "Prefix", affix = "Smouldering", "Adds (6-8) to (12-14) Fire Damage to Spells", statOrder = { 1404 }, level = 11, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (6-8) to (12-14) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (10-12) to (19-23) Fire Damage to Spells", statOrder = { 1404 }, level = 18, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-12) to (19-23) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-18) to (27-31) Fire Damage to Spells", statOrder = { 1404 }, level = 26, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-18) to (27-31) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (19-25) to (37-44) Fire Damage to Spells", statOrder = { 1404 }, level = 33, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-25) to (37-44) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (24-33) to (48-57) Fire Damage to Spells", statOrder = { 1404 }, level = 42, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (24-33) to (48-57) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (31-42) to (64-73) Fire Damage to Spells", statOrder = { 1404 }, level = 51, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (31-42) to (64-73) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (40-52) to (79-91) Fire Damage to Spells", statOrder = { 1404 }, level = 62, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (40-52) to (79-91) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (49-66) to (98-115) Fire Damage to Spells", statOrder = { 1404 }, level = 74, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (49-66) to (98-115) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (45-54) to (80-90) Fire Damage to Spells", statOrder = { 1404 }, level = 82, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (45-54) to (80-90) Fire Damage to Spells" }, } },
+ ["SpellAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds 1 to (2-3) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (5-7) to (10-12) Cold Damage to Spells", statOrder = { 1405 }, level = 11, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (5-7) to (10-12) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (8-10) to (16-18) Cold Damage to Spells", statOrder = { 1405 }, level = 18, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (8-10) to (16-18) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (22-25) Cold Damage to Spells", statOrder = { 1405 }, level = 26, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (11-15) to (22-25) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (16-20) to (30-36) Cold Damage to Spells", statOrder = { 1405 }, level = 33, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (16-20) to (30-36) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamage6_"] = { type = "Prefix", affix = "Frozen", "Adds (20-26) to (40-46) Cold Damage to Spells", statOrder = { 1405 }, level = 42, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (20-26) to (40-46) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (26-35) to (51-60) Cold Damage to Spells", statOrder = { 1405 }, level = 51, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (26-35) to (51-60) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (33-43) to (64-75) Cold Damage to Spells", statOrder = { 1405 }, level = 62, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (33-43) to (64-75) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (41-54) to (81-93) Cold Damage to Spells", statOrder = { 1405 }, level = 74, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (41-54) to (81-93) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (35-45) to (66-74) Cold Damage to Spells", statOrder = { 1405 }, level = 82, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (35-45) to (66-74) Cold Damage to Spells" }, } },
+ ["SpellAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-5) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (4-5) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (21-22) Lightning Damage to Spells", statOrder = { 1406 }, level = 11, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (21-22) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (33-35) Lightning Damage to Spells", statOrder = { 1406 }, level = 18, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (33-35) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (46-48) Lightning Damage to Spells", statOrder = { 1406 }, level = 26, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (46-48) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (2-5) to (64-68) Lightning Damage to Spells", statOrder = { 1406 }, level = 33, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (64-68) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (2-7) to (84-88) Lightning Damage to Spells", statOrder = { 1406 }, level = 42, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-7) to (84-88) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-9) to (109-115) Lightning Damage to Spells", statOrder = { 1406 }, level = 51, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-9) to (109-115) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (4-11) to (136-144) Lightning Damage to Spells", statOrder = { 1406 }, level = 62, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-11) to (136-144) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (4-14) to (170-179) Lightning Damage to Spells", statOrder = { 1406 }, level = 74, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-14) to (170-179) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-11) to (134-144) Lightning Damage to Spells", statOrder = { 1406 }, level = 82, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-11) to (134-144) Lightning Damage to Spells" }, } },
+ ["SpellAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (4-5) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (1-2) to (4-5) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-11) to (17-19) Fire Damage to Spells", statOrder = { 1404 }, level = 11, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (8-11) to (17-19) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (13-17) to (26-29) Fire Damage to Spells", statOrder = { 1404 }, level = 18, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-17) to (26-29) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (18-23) to (36-42) Fire Damage to Spells", statOrder = { 1404 }, level = 26, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (18-23) to (36-42) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (25-33) to (50-59) Fire Damage to Spells", statOrder = { 1404 }, level = 33, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (25-33) to (50-59) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamageTwoHand6_"] = { type = "Prefix", affix = "Scorching", "Adds (32-44) to (65-76) Fire Damage to Spells", statOrder = { 1404 }, level = 42, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (32-44) to (65-76) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (42-56) to (85-99) Fire Damage to Spells", statOrder = { 1404 }, level = 51, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (42-56) to (85-99) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamageTwoHand8"] = { type = "Prefix", affix = "Blasting", "Adds (53-70) to (107-123) Fire Damage to Spells", statOrder = { 1404 }, level = 62, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (53-70) to (107-123) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (66-88) to (132-155) Fire Damage to Spells", statOrder = { 1404 }, level = 74, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (66-88) to (132-155) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamageTwoHandEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (67-81) to (120-135) Fire Damage to Spells", statOrder = { 1404 }, level = 82, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (67-81) to (120-135) Fire Damage to Spells" }, } },
+ ["SpellAddedColdDamageTwoHand1_"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (1-2) to (3-4) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (8-10) to (15-18) Cold Damage to Spells", statOrder = { 1405 }, level = 11, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (8-10) to (15-18) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (12-15) to (23-28) Cold Damage to Spells", statOrder = { 1405 }, level = 18, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (12-15) to (23-28) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-22) to (33-38) Cold Damage to Spells", statOrder = { 1405 }, level = 26, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (16-22) to (33-38) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (24-30) to (45-53) Cold Damage to Spells", statOrder = { 1405 }, level = 33, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (24-30) to (45-53) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (30-40) to (59-69) Cold Damage to Spells", statOrder = { 1405 }, level = 42, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (30-40) to (59-69) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (39-52) to (77-90) Cold Damage to Spells", statOrder = { 1405 }, level = 51, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (39-52) to (77-90) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (49-64) to (96-113) Cold Damage to Spells", statOrder = { 1405 }, level = 62, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (49-64) to (96-113) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (61-81) to (120-140) Cold Damage to Spells", statOrder = { 1405 }, level = 74, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (61-81) to (120-140) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (57-66) to (100-111) Cold Damage to Spells", statOrder = { 1405 }, level = 82, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (57-66) to (100-111) Cold Damage to Spells" }, } },
+ ["SpellAddedLightningDamageTwoHand1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-7) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (6-7) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-3) to (32-34) Lightning Damage to Spells", statOrder = { 1406 }, level = 11, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-3) to (32-34) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-4) to (49-52) Lightning Damage to Spells", statOrder = { 1406 }, level = 18, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (49-52) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (2-5) to (69-73) Lightning Damage to Spells", statOrder = { 1406 }, level = 26, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (69-73) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (2-8) to (97-102) Lightning Damage to Spells", statOrder = { 1406 }, level = 33, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-8) to (97-102) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (3-10) to (126-133) Lightning Damage to Spells", statOrder = { 1406 }, level = 42, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-10) to (126-133) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (5-12) to (164-173) Lightning Damage to Spells", statOrder = { 1406 }, level = 51, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-12) to (164-173) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (5-17) to (204-216) Lightning Damage to Spells", statOrder = { 1406 }, level = 62, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-17) to (204-216) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamageTwoHand9_"] = { type = "Prefix", affix = "Electrocuting", "Adds (7-20) to (255-270) Lightning Damage to Spells", statOrder = { 1406 }, level = 74, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (7-20) to (255-270) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (6-16) to (201-216) Lightning Damage to Spells", statOrder = { 1406 }, level = 82, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (6-16) to (201-216) Lightning Damage to Spells" }, } },
+ ["LocalAddedChaosDamage1"] = { type = "Prefix", affix = "Malicious", "Adds (56-87) to (105-160) Chaos Damage", statOrder = { 1390 }, level = 83, group = "LocalChaosDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 600, 600, 600, 400, 250, 250, 600, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (56-87) to (105-160) Chaos Damage" }, } },
+ ["LocalAddedChaosDamageEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (37-59) to (79-103) Chaos Damage", statOrder = { 1390 }, level = 62, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (37-59) to (79-103) Chaos Damage" }, } },
+ ["LocalAddedChaosDamageEssence2__"] = { type = "Prefix", affix = "Essences", "Adds (43-67) to (89-113) Chaos Damage", statOrder = { 1390 }, level = 74, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (43-67) to (89-113) Chaos Damage" }, } },
+ ["LocalAddedChaosDamageEssence3"] = { type = "Prefix", affix = "Essences", "Adds (53-79) to (101-131) Chaos Damage", statOrder = { 1390 }, level = 82, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (53-79) to (101-131) Chaos Damage" }, } },
+ ["LocalAddedChaosDamageTwoHand1"] = { type = "Prefix", affix = "Malicious", "Adds (98-149) to (183-280) Chaos Damage", statOrder = { 1390 }, level = 83, group = "LocalChaosDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 700, 600, 600, 250, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (98-149) to (183-280) Chaos Damage" }, } },
+ ["LocalAddedChaosDamageTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Adds (61-103) to (149-193) Chaos Damage", statOrder = { 1390 }, level = 62, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (61-103) to (149-193) Chaos Damage" }, } },
+ ["LocalAddedChaosDamageTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Adds (73-113) to (163-205) Chaos Damage", statOrder = { 1390 }, level = 74, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (73-113) to (163-205) Chaos Damage" }, } },
+ ["LocalAddedChaosDamageTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Adds (89-131) to (181-229) Chaos Damage", statOrder = { 1390 }, level = 82, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (89-131) to (181-229) Chaos Damage" }, } },
+ ["RarityDuringFlaskEffectWarbands"] = { type = "Prefix", affix = "Brinerot", "30% increased Rarity of Items found during any Flask Effect", statOrder = { 2756 }, level = 1, group = "RarityDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "drop" }, tradeHashes = { [301625329] = { "30% increased Rarity of Items found during any Flask Effect" }, } },
+ ["DamageDuringFlaskEffectWarbands"] = { type = "Prefix", affix = "Brinerot", "(20-25)% increased Damage during any Flask Effect", statOrder = { 4082 }, level = 1, group = "DamageDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "damage" }, tradeHashes = { [2947215268] = { "(20-25)% increased Damage during any Flask Effect" }, } },
+ ["PierceChanceEssence5"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrder = { 9782 }, level = 1, group = "Quiver1AdditionalPierceOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2125444333] = { "Projectiles Pierce an additional Target" }, } },
+ ["PierceChanceEssence6_"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrder = { 9782 }, level = 1, group = "Quiver1AdditionalPierceOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2125444333] = { "Projectiles Pierce an additional Target" }, } },
+ ["PierceChanceEssence7"] = { type = "Prefix", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 9783 }, level = 1, group = "Quiver2AdditionalPierceOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3640956958] = { "Projectiles Pierce 2 additional Targets" }, } },
+ ["AdditionalPierceEssence5"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } },
+ ["AdditionalPierceEssence6_"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } },
+ ["AdditionalPierceEssence7"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } },
+ ["CannotBePoisonedEssence1"] = { type = "Suffix", affix = "of the Essence", "Cannot be Poisoned", statOrder = { 3369 }, level = 63, group = "CannotBePoisoned", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } },
+ ["ChanceToAvoidFireDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 42, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(6-7)% chance to Avoid Fire Damage from Hits" }, } },
+ ["ChanceToAvoidFireDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 58, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(7-8)% chance to Avoid Fire Damage from Hits" }, } },
+ ["ChanceToAvoidFireDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 74, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(8-9)% chance to Avoid Fire Damage from Hits" }, } },
+ ["ChanceToAvoidFireDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 82, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(9-10)% chance to Avoid Fire Damage from Hits" }, } },
+ ["ChanceToAvoidColdDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "(5-6)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 26, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(5-6)% chance to Avoid Cold Damage from Hits" }, } },
+ ["ChanceToAvoidColdDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 42, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(6-7)% chance to Avoid Cold Damage from Hits" }, } },
+ ["ChanceToAvoidColdDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 58, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(7-8)% chance to Avoid Cold Damage from Hits" }, } },
+ ["ChanceToAvoidColdDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 74, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(8-9)% chance to Avoid Cold Damage from Hits" }, } },
+ ["ChanceToAvoidColdDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(9-10)% chance to Avoid Cold Damage from Hits" }, } },
+ ["ChanceToAvoidLightningDamageEssence2"] = { type = "Suffix", affix = "of the Essence", "(4-5)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 10, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(4-5)% chance to Avoid Lightning Damage from Hits" }, } },
+ ["ChanceToAvoidLightningDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "(5-6)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 26, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(5-6)% chance to Avoid Lightning Damage from Hits" }, } },
+ ["ChanceToAvoidLightningDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 42, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(6-7)% chance to Avoid Lightning Damage from Hits" }, } },
+ ["ChanceToAvoidLightningDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 58, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(7-8)% chance to Avoid Lightning Damage from Hits" }, } },
+ ["ChanceToAvoidLightningDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 74, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(8-9)% chance to Avoid Lightning Damage from Hits" }, } },
+ ["ChanceToAvoidLightningDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 82, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(9-10)% chance to Avoid Lightning Damage from Hits" }, } },
+ ["QuiverAddedChaosEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (11-15) to (27-33) Chaos Damage to Attacks", statOrder = { 1387 }, level = 62, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (11-15) to (27-33) Chaos Damage to Attacks" }, } },
+ ["QuiverAddedChaosEssence2_"] = { type = "Prefix", affix = "Essences", "Adds (17-21) to (37-43) Chaos Damage to Attacks", statOrder = { 1387 }, level = 74, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (17-21) to (37-43) Chaos Damage to Attacks" }, } },
+ ["QuiverAddedChaosEssence3__"] = { type = "Prefix", affix = "Essences", "Adds (23-37) to (49-61) Chaos Damage to Attacks", statOrder = { 1387 }, level = 82, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (23-37) to (49-61) Chaos Damage to Attacks" }, } },
+ ["PoisonDuration1"] = { type = "Suffix", affix = "of Rot", "(8-12)% increased Poison Duration", statOrder = { 3170 }, level = 30, group = "PoisonDuration", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(8-12)% increased Poison Duration" }, } },
+ ["PoisonDuration2"] = { type = "Suffix", affix = "of Putrefaction", "(13-18)% increased Poison Duration", statOrder = { 3170 }, level = 60, group = "PoisonDuration", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(13-18)% increased Poison Duration" }, } },
+ ["PoisonDurationEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrder = { 1385, 3170 }, level = 1, group = "PoisonDurationChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(13-18)% increased Poison Duration" }, [736967255] = { "(26-30)% increased Chaos Damage" }, } },
+ ["SocketedGemsDealAdditionalFireDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 175 to 225 Added Fire Damage", statOrder = { 556 }, level = 63, group = "SocketedGemsDealAdditionalFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "elemental_damage", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1289910726] = { "Socketed Gems deal 175 to 225 Added Fire Damage" }, } },
+ ["SocketedGemsHaveMoreAttackAndCastSpeedEssence1"] = { type = "Suffix", affix = "", "Socketed Gems have 20% more Attack and Cast Speed", statOrder = { 550 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack", "caster", "speed", "gem" }, tradeHashes = { [346351023] = { "Socketed Gems have 20% more Attack and Cast Speed" }, } },
+ ["SocketedGemsHaveMoreAttackAndCastSpeedEssenceNew1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 16% more Attack and Cast Speed", statOrder = { 550 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack", "caster", "speed", "gem" }, tradeHashes = { [346351023] = { "Socketed Gems have 16% more Attack and Cast Speed" }, } },
+ ["SocketedGemsAddPercentageOfPhysicalAsLightningEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems gain 50% of Physical Damage as extra Lightning Damage", statOrder = { 557 }, level = 63, group = "SocketedGemsAddPercentageOfPhysicalAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "gem" }, tradeHashes = { [1859937391] = { "Socketed Gems gain 50% of Physical Damage as extra Lightning Damage" }, } },
+ ["SocketedGemsDealMoreElementalDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Elemental Damage", statOrder = { 553 }, level = 63, group = "SocketedGemsDealMoreElementalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, tradeHashes = { [3835899275] = { "Socketed Gems deal 30% more Elemental Damage" }, } },
+ ["ElementalDamageTakenWhileStationaryEssence1"] = { type = "Suffix", affix = "of the Essence", "5% reduced Elemental Damage Taken while stationary", statOrder = { 4312 }, level = 63, group = "ElementalDamageTakenWhileStationary", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [3859593448] = { "5% reduced Elemental Damage Taken while stationary" }, [2936538132] = { "" }, } },
+ ["BurningGroundWhileMovingEssence1"] = { type = "Suffix", affix = "of the Essence", "Drops Burning Ground while moving, dealing 2500 Fire Damage per second for 4 seconds", statOrder = { 4309 }, level = 63, group = "BurningGroundWhileMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2876075610] = { "" }, [685387835] = { "" }, [223497523] = { "" }, } },
+ ["PhysicalDamageTakenAsColdEssence1"] = { type = "Prefix", affix = "Essences", "15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 63, group = "PhysicalDamageTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "15% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["ReducedDamageFromCriticalStrikesPerEnduranceChargeEssence1"] = { type = "Suffix", affix = "of the Essence", "You take 10% reduced Extra Damage from Critical Strikes per Endurance Charge", statOrder = { 1514 }, level = 63, group = "ReducedDamageFromCriticalStrikesPerEnduranceCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [2380848911] = { "You take 10% reduced Extra Damage from Critical Strikes per Endurance Charge" }, } },
+ ["FireDamageAsPortionOfPhysicalDamageEssence1"] = { type = "Prefix", affix = "Essences", "Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 10% of Physical Damage as Extra Fire Damage" }, } },
+ ["FireDamageAsPortionOfPhysicalDamageEssence2"] = { type = "Prefix", affix = "Essences", "Gain 15% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain 15% of Physical Damage as Extra Fire Damage" }, } },
+ ["ChaosDamageOverTimeTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "25% reduced Chaos Damage taken over time", statOrder = { 1948 }, level = 63, group = "ChaosDamageOverTimeTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [3762784591] = { "25% reduced Chaos Damage taken over time" }, } },
+ ["SocketedSkillsCriticalChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have +3.5% Critical Strike Chance", statOrder = { 541 }, level = 63, group = "SocketedSkillsCriticalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1681904129] = { "Socketed Gems have +3.5% Critical Strike Chance" }, } },
+ ["AttackAndCastSpeedDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "10% increased Attack and Cast Speed during any Flask Effect", statOrder = { 4274 }, level = 63, group = "AttackAndCastSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "caster", "speed" }, tradeHashes = { [614350381] = { "10% increased Attack and Cast Speed during any Flask Effect" }, } },
+ ["MovementVelocityDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Movement Speed during any Flask Effect", statOrder = { 3186 }, level = 63, group = "MovementSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "speed" }, tradeHashes = { [304970526] = { "10% increased Movement Speed during any Flask Effect" }, } },
+ ["AddedColdDamagePerFrenzyChargeEssence1"] = { type = "Prefix", affix = "Essences", "4 to 7 Added Cold Damage per Frenzy Charge", statOrder = { 4273 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "4 to 7 Added Cold Damage per Frenzy Charge" }, } },
+ ["AddedColdDamagePerFrenzyChargeEssenceQuiver1"] = { type = "Prefix", affix = "Essences", "8 to 12 Added Cold Damage per Frenzy Charge", statOrder = { 4273 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "8 to 12 Added Cold Damage per Frenzy Charge" }, } },
+ ["AddedFireDamageIfBlockedRecentlyEssence1"] = { type = "Suffix", affix = "of the Essence", "Adds 60 to 100 Fire Damage if you've Blocked Recently", statOrder = { 4275 }, level = 63, group = "AddedFireDamageIfBlockedRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3623716321] = { "Adds 60 to 100 Fire Damage if you've Blocked Recently" }, } },
+ ["SocketedSkillAlwaysIgniteEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 50% chance to Ignite", statOrder = { 534 }, level = 63, group = "DisplaySupportedSkillsHaveAChanceToIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3984519770] = { "Socketed Gems have 50% chance to Ignite" }, } },
+ ["SocketedSkillDamageOnLowLifeEssence1__"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage while on Low Life", statOrder = { 552 }, level = 63, group = "DisplaySupportedSkillsDealDamageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1235873320] = { "Socketed Gems deal 30% more Damage while on Low Life" }, } },
+ ["ElementalPenetrationDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "Damage Penetrates 5% Elemental Resistances during any Flask Effect", statOrder = { 4267 }, level = 63, group = "ElementalPenetrationDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, tradeHashes = { [3392890360] = { "Damage Penetrates 5% Elemental Resistances during any Flask Effect" }, } },
+ ["AdditionalPhysicalDamageReductionDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "5% additional Physical Damage Reduction during any Flask Effect", statOrder = { 4268 }, level = 63, group = "AdditionalPhysicalDamageReductionDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "physical" }, tradeHashes = { [2693266036] = { "5% additional Physical Damage Reduction during any Flask Effect" }, } },
+ ["ReflectDamageTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "You and your Minions take 40% reduced Reflected Damage", statOrder = { 9882 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3577248251] = { "You and your Minions take 40% reduced Reflected Damage" }, } },
["DamageCannotBeReflectedPercentEssence1"] = { type = "Suffix", affix = "of the Essence", "60% of Hit Damage from you and your Minions cannot be Reflected", statOrder = { 1 }, level = 63, group = "DamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1567747544] = { "60% of Hit Damage from you and your Minions cannot be Reflected" }, } },
- ["PowerChargeOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "25% chance to gain a Power Charge when you Block", statOrder = { 4275 }, level = 63, group = "PowerChargeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "power_charge" }, tradeHashes = { [3945147290] = { "25% chance to gain a Power Charge when you Block" }, } },
- ["NearbyEnemiesChilledOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Chill Nearby Enemies when you Block", statOrder = { 4276 }, level = 63, group = "NearbyEnemiesChilledOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "elemental", "cold", "ailment" }, tradeHashes = { [583277599] = { "Chill Nearby Enemies when you Block" }, } },
- ["PoisonDamageEssence1"] = { type = "Prefix", affix = "Essences", "40% increased Damage with Poison", statOrder = { 3186 }, level = 63, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "40% increased Damage with Poison" }, } },
- ["ChanceToRecoverManaOnSkillUseEssence1"] = { type = "Suffix", affix = "of the Essence", "10% chance to Recover 10% of Mana when you use a Skill", statOrder = { 3480 }, level = 63, group = "ChanceToRecoverManaOnSkillUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [308309328] = { "10% chance to Recover 10% of Mana when you use a Skill" }, } },
- ["FortifyEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "+3 to maximum Fortification", statOrder = { 9121 }, level = 63, group = "FortifyEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335507772] = { "+3 to maximum Fortification" }, } },
- ["CrushOnHitChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "(15-25)% chance to Crush on Hit", statOrder = { 5660 }, level = 63, group = "CrushOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [2228892313] = { "(15-25)% chance to Crush on Hit" }, } },
- ["AlchemistsGeniusOnFlaskEssence1_"] = { type = "Suffix", affix = "of the Essence", "Gain Alchemist's Genius when you use a Flask", statOrder = { 6725 }, level = 63, group = "AlchemistsGeniusOnFlaskUseChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2989883253] = { "Gain Alchemist's Genius when you use a Flask" }, } },
- ["PowerFrenzyOrEnduranceChargeOnKillEssence1"] = { type = "Suffix", affix = "of the Essence", "16% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3617 }, level = 63, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [498214257] = { "16% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } },
- ["SocketedGemsNonCurseAuraEffectEssence1"] = { type = "Suffix", affix = "", "Socketed Non-Curse Aura Gems have 20% increased Aura Effect", statOrder = { 609 }, level = 63, group = "SocketedGemsNonCurseAuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "aura", "gem" }, tradeHashes = { [223595318] = { "Socketed Non-Curse Aura Gems have 20% increased Aura Effect" }, } },
- ["SocketedAuraGemLevelsEssence1"] = { type = "Suffix", affix = "of the Essence", "+2 to Level of Socketed Aura Gems", statOrder = { 186 }, level = 63, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } },
- ["FireBurstOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Cast Level 20 Fire Burst on Hit", statOrder = { 784 }, level = 63, group = "FireBurstOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack" }, tradeHashes = { [1621470436] = { "Cast Level 20 Fire Burst on Hit" }, } },
- ["SpiritMinionEssence1"] = { type = "Suffix", affix = "of the Essence", "Triggers Level 20 Spectral Spirits when Equipped", "+3 to maximum number of Spectral Spirits", statOrder = { 756, 756.1 }, level = 63, group = "GrantsEssenceMinion", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [470688636] = { "Triggers Level 20 Spectral Spirits when Equipped", "+3 to maximum number of Spectral Spirits" }, } },
- ["AreaOfEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Area of Effect", statOrder = { 1885 }, level = 63, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [280731498] = { "25% increased Area of Effect" }, } },
- ["OnslaughtWhenHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Gain Onslaught for 3 seconds when Hit", statOrder = { 6786 }, level = 63, group = "OnslaughtWhenHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3049760680] = { "Gain Onslaught for 3 seconds when Hit" }, } },
- ["OnslaughtWhenHitNewEssence1"] = { type = "Suffix", affix = "of the Essence", "You gain Onslaught for 6 seconds when Hit", statOrder = { 2832 }, level = 63, group = "OnslaughtWhenHitForDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2764164760] = { "You gain Onslaught for 6 seconds when Hit" }, } },
- ["SupportDamageOverTimeEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage over Time", statOrder = { 607 }, level = 63, group = "SupportDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "damage", "gem" }, tradeHashes = { [3846088475] = { "Socketed Gems deal 30% more Damage over Time" }, } },
- ["SpellBlockOnLowLifeEssence1"] = { type = "Suffix", affix = "of the Essence", "+15% Chance to Block Spell Damage while on Low Life", statOrder = { 1150 }, level = 63, group = "SpellBlockPercentageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [2253286128] = { "+15% Chance to Block Spell Damage while on Low Life" }, } },
- ["MaximumDoomEssence1__"] = { type = "Suffix", affix = "of the Essence", "5% increased Effect of your Curses", statOrder = { 2601 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "5% increased Effect of your Curses" }, } },
- ["MaximumDoomAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Effect of your Curses", statOrder = { 2601 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "10% increased Effect of your Curses" }, } },
- ["MarkEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Effect of your Marks", statOrder = { 2603 }, level = 63, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "25% increased Effect of your Marks" }, } },
- ["DecayOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", statOrder = { 6141 }, level = 63, group = "DecayOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3322709337] = { "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds" }, } },
- ["SpellBlockAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "(6-7)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 63, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(6-7)% Chance to Block Spell Damage" }, } },
- ["MovementSpeedOnBurningChilledShockedGroundEssence1"] = { type = "Suffix", affix = "of the Essence", "12% increased Movement speed while on Burning, Chilled or Shocked ground", statOrder = { 9433 }, level = 63, group = "MovementSpeedOnBurningChilledShockedGround", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1521863824] = { "12% increased Movement speed while on Burning, Chilled or Shocked ground" }, } },
- ["ManaRegenerationWhileShockedEssence1"] = { type = "Suffix", affix = "of the Essence", "70% increased Mana Regeneration Rate while Shocked", statOrder = { 2513 }, level = 63, group = "ManaRegenerationWhileShocked", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2076519255] = { "70% increased Mana Regeneration Rate while Shocked" }, } },
- ["ManaGainedOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Recover 5% of your maximum Mana when you Block", statOrder = { 8191 }, level = 63, group = "ManaGainedOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [3041288981] = { "Recover 5% of your maximum Mana when you Block" }, } },
- ["AilmentDoubleDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "1% chance to deal Double Damage against Enemies for each type of Ailment you have inflicted on them", statOrder = { 4624 }, level = 63, group = "AilmentDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1916537902] = { "1% chance to deal Double Damage against Enemies for each type of Ailment you have inflicted on them" }, } },
- ["AilmentDoubleDamageTwoHandEssence1"] = { type = "Suffix", affix = "of the Essence", "2% chance to deal Double Damage against Enemies for each type of Ailment you have inflicted on them", statOrder = { 4624 }, level = 63, group = "AilmentDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1916537902] = { "2% chance to deal Double Damage against Enemies for each type of Ailment you have inflicted on them" }, } },
- ["AttackCastSpeedPerNearbyEnemyEssence1"] = { type = "Suffix", affix = "of the Essence", "5% increased Attack and Cast Speed for each nearby Enemy, up to a maximum of 30%", statOrder = { 4813 }, level = 63, group = "AttackCastSpeedPerNearbyEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1027670161] = { "5% increased Attack and Cast Speed for each nearby Enemy, up to a maximum of 30%" }, } },
- ["MovementSpeedPerNearbyEnemyEssence1"] = { type = "Prefix", affix = "Essences", "5% increased Movement Speed for each nearby Enemy, up to a maximum of 50%", statOrder = { 9410 }, level = 63, group = "MovementSpeedPerNearbyEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1426967889] = { "5% increased Movement Speed for each nearby Enemy, up to a maximum of 50%" }, } },
- ["GlobalDefencesNoOtherDefenceModifiersOnEquipmentEssence1"] = { type = "Prefix", affix = "Essences", "(70-90)% increased Global Defences if there are no Defence Modifiers on other Equipped Items", statOrder = { 6879 }, level = 63, group = "GlobalDefencesNoOtherDefenceModifiersOnEquipment", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, tradeHashes = { [2939710712] = { "(70-90)% increased Global Defences if there are no Defence Modifiers on other Equipped Items" }, } },
- ["LocalGemLevelIfOnlySocketedGemEssence1"] = { type = "Prefix", affix = "Essences", "+6 to Level of Socketed Gems while there is a single Gem Socketed in this Item", statOrder = { 8022 }, level = 63, group = "LocalGemLevelIfOnlySocketedGem", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [3298991976] = { "+6 to Level of Socketed Gems while there is a single Gem Socketed in this Item" }, } },
- ["ProjectilesChainAtCloseRangeEssence1"] = { type = "Suffix", affix = "of the Essence", "Projectiles can Chain from any number of additional targets in Close Range", statOrder = { 9747 }, level = 63, group = "ProjectilesChainAtCloseRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2940232338] = { "Projectiles can Chain from any number of additional targets in Close Range" }, } },
- ["AilmentDurationIfNotAppliedThatAilmentRecentlyEssence1"] = { type = "Suffix", affix = "of the Essence", "(40-60)% increased Duration of Ailments of types you haven't inflicted Recently", statOrder = { 4989 }, level = 63, group = "AilmentDurationIfNotAppliedThatAilmentRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [967840105] = { "(40-60)% increased Duration of Ailments of types you haven't inflicted Recently" }, } },
- ["ShockwaveUnleashCountEssence1"] = { type = "Prefix", affix = "Essences", "Left ring slot: Skills supported by Unleash have +1 to maximum number of Seals", "Right ring slot: Shockwave has +1 to Cooldown Uses", statOrder = { 7987, 8014 }, level = 63, group = "ShockwaveUnleashCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [597522922] = { "Left ring slot: Skills supported by Unleash have +1 to maximum number of Seals" }, [651133374] = { "Right ring slot: Shockwave has +1 to Cooldown Uses" }, } },
- ["MagicFlaskEffectNoAdjacentFlasksEssence1"] = { type = "Prefix", affix = "Essences", "Equipped Magic Flasks have 30% increased effect on you if no Flasks are Adjacent to them", statOrder = { 8153 }, level = 63, group = "MagicFlaskEffectNoAdjacentFlasks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2649904663] = { "Equipped Magic Flasks have 30% increased effect on you if no Flasks are Adjacent to them" }, } },
- ["ArmourAppliesElementalHitsIfBlockedRecentlyEssence1"] = { type = "Prefix", affix = "Essences", "(2-4)% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently", statOrder = { 4754 }, level = 63, group = "ArmourAppliesElementalHitsIfBlockedRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [1239225602] = { "(2-4)% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently" }, } },
- ["BleedDuration1"] = { type = "Suffix", affix = "of Agony", "(8-12)% increased Bleeding Duration", statOrder = { 4999 }, level = 30, group = "BleedDuration", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(8-12)% increased Bleeding Duration" }, } },
- ["BleedDuration2"] = { type = "Suffix", affix = "of Torment", "(13-18)% increased Bleeding Duration", statOrder = { 4999 }, level = 60, group = "BleedDuration", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(13-18)% increased Bleeding Duration" }, } },
- ["ChanceToIgnite1"] = { type = "Suffix", affix = "of Ignition", "(18-24)% chance to Ignite", statOrder = { 2031 }, level = 15, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(18-24)% chance to Ignite" }, } },
- ["ChanceToIgnite2"] = { type = "Suffix", affix = "of Combustion", "(25-30)% chance to Ignite", statOrder = { 2031 }, level = 45, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(25-30)% chance to Ignite" }, } },
- ["ChanceToIgnite3_"] = { type = "Suffix", affix = "of Conflagration", "(31-40)% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(31-40)% chance to Ignite" }, } },
- ["TwoHandChanceToIgnite1"] = { type = "Suffix", affix = "of Ignition", "(25-32)% chance to Ignite", statOrder = { 2031 }, level = 15, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(25-32)% chance to Ignite" }, } },
- ["TwoHandChanceToIgnite2_"] = { type = "Suffix", affix = "of Combustion", "(33-42)% chance to Ignite", statOrder = { 2031 }, level = 45, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(33-42)% chance to Ignite" }, } },
- ["TwoHandChanceToIgnite3"] = { type = "Suffix", affix = "of Conflagration", "(43-55)% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(43-55)% chance to Ignite" }, } },
- ["ChanceToBleed1"] = { type = "Suffix", affix = "of Bleeding", "10% chance to cause Bleeding on Hit", statOrder = { 2488 }, level = 15, group = "LocalChanceToBleed", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "10% chance to cause Bleeding on Hit" }, } },
- ["ChanceToBleed2_"] = { type = "Suffix", affix = "of Flaying", "15% chance to cause Bleeding on Hit", statOrder = { 2488 }, level = 55, group = "LocalChanceToBleed", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "15% chance to cause Bleeding on Hit" }, } },
- ["ChanceToBleed3"] = { type = "Suffix", affix = "of Hemorrhaging", "20% chance to cause Bleeding on Hit", statOrder = { 2488 }, level = 85, group = "LocalChanceToBleed", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "20% chance to cause Bleeding on Hit" }, } },
- ["ChanceToPoison1"] = { type = "Suffix", affix = "of Poisoning", "10% chance to Poison on Hit", statOrder = { 8007 }, level = 15, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "10% chance to Poison on Hit" }, } },
- ["ChanceToPoison2"] = { type = "Suffix", affix = "of Toxins", "20% chance to Poison on Hit", statOrder = { 8007 }, level = 55, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit" }, } },
- ["ChanceToPoison3_"] = { type = "Suffix", affix = "of Death", "30% chance to Poison on Hit", statOrder = { 8007 }, level = 85, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "30% chance to Poison on Hit" }, } },
- ["ChanceToPoisonEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "30% chance to Poison on Hit", statOrder = { 1390, 8007 }, level = 1, group = "LocalChanceToPoisonOnHitChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "30% chance to Poison on Hit" }, [736967255] = { "(26-30)% increased Chaos Damage" }, } },
- ["ChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(18-24)% chance to Freeze", statOrder = { 2034 }, level = 15, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(18-24)% chance to Freeze" }, } },
- ["ChanceToFreeze2"] = { type = "Suffix", affix = "of Bleakness", "(25-30)% chance to Freeze", statOrder = { 2034 }, level = 45, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(25-30)% chance to Freeze" }, } },
- ["ChanceToFreeze3"] = { type = "Suffix", affix = "of the Hyperboreal", "(31-40)% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(31-40)% chance to Freeze" }, } },
- ["TwoHandChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(25-32)% chance to Freeze", statOrder = { 2034 }, level = 15, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(25-32)% chance to Freeze" }, } },
- ["TwoHandChanceToFreeze2"] = { type = "Suffix", affix = "of Bleakness", "(33-42)% chance to Freeze", statOrder = { 2034 }, level = 45, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(33-42)% chance to Freeze" }, } },
- ["TwoHandChanceToFreeze3____"] = { type = "Suffix", affix = "of the Hyperboreal", "(43-55)% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(43-55)% chance to Freeze" }, } },
- ["ChanceToShock1"] = { type = "Suffix", affix = "of Shocking", "(18-24)% chance to Shock", statOrder = { 2038 }, level = 15, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(18-24)% chance to Shock" }, } },
- ["ChanceToShock2__"] = { type = "Suffix", affix = "of Zapping", "(25-30)% chance to Shock", statOrder = { 2038 }, level = 45, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(25-30)% chance to Shock" }, } },
- ["ChanceToShock3"] = { type = "Suffix", affix = "of Electrocution", "(31-40)% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(31-40)% chance to Shock" }, } },
- ["TwoHandChanceToShock1__"] = { type = "Suffix", affix = "of Shocking", "(25-32)% chance to Shock", statOrder = { 2038 }, level = 15, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(25-32)% chance to Shock" }, } },
- ["TwoHandChanceToShock2_"] = { type = "Suffix", affix = "of Zapping", "(33-42)% chance to Shock", statOrder = { 2038 }, level = 45, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(33-42)% chance to Shock" }, } },
- ["TwoHandChanceToShock3"] = { type = "Suffix", affix = "of Electrocution", "(43-55)% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(43-55)% chance to Shock" }, } },
- ["BurnDamage1_"] = { type = "Suffix", affix = "of Burning", "(26-30)% increased Burning Damage", statOrder = { 1882 }, level = 20, group = "BurnDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(26-30)% increased Burning Damage" }, } },
- ["BurnDamage2"] = { type = "Suffix", affix = "of Combusting", "(31-35)% increased Burning Damage", statOrder = { 1882 }, level = 40, group = "BurnDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(31-35)% increased Burning Damage" }, } },
- ["BurnDamage3"] = { type = "Suffix", affix = "of Conflagrating", "(36-40)% increased Burning Damage", statOrder = { 1882 }, level = 60, group = "BurnDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(36-40)% increased Burning Damage" }, } },
- ["TwoHandBurnDamage1"] = { type = "Suffix", affix = "of Burning", "(31-40)% increased Burning Damage", statOrder = { 1882 }, level = 20, group = "BurnDamage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(31-40)% increased Burning Damage" }, } },
- ["TwoHandBurnDamage2"] = { type = "Suffix", affix = "of Combusting", "(41-50)% increased Burning Damage", statOrder = { 1882 }, level = 40, group = "BurnDamage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(41-50)% increased Burning Damage" }, } },
- ["TwoHandBurnDamage3"] = { type = "Suffix", affix = "of Conflagrating", "(51-60)% increased Burning Damage", statOrder = { 1882 }, level = 60, group = "BurnDamage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(51-60)% increased Burning Damage" }, } },
- ["PoisonDamage1"] = { type = "Suffix", affix = "of Poison", "(21-30)% increased Damage with Poison", "20% chance to Poison on Hit", statOrder = { 3186, 8007 }, level = 20, group = "PoisonDamageAndLocalChanceOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit" }, [1290399200] = { "(21-30)% increased Damage with Poison" }, } },
- ["PoisonDamage2"] = { type = "Suffix", affix = "of Venom", "(31-40)% increased Damage with Poison", "25% chance to Poison on Hit", statOrder = { 3186, 8007 }, level = 40, group = "PoisonDamageAndLocalChanceOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "25% chance to Poison on Hit" }, [1290399200] = { "(31-40)% increased Damage with Poison" }, } },
- ["PoisonDamage3"] = { type = "Suffix", affix = "of Virulence", "(41-50)% increased Damage with Poison", "30% chance to Poison on Hit", statOrder = { 3186, 8007 }, level = 60, group = "PoisonDamageAndLocalChanceOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "30% chance to Poison on Hit" }, [1290399200] = { "(41-50)% increased Damage with Poison" }, } },
- ["PoisonDamageEnhancedAttacksMod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(31-35)% increased Damage with Poison", statOrder = { 1395, 3186 }, level = 1, group = "PoisonDamageAddedChaosToAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [2223678961] = { "Adds (23-36) to (49-61) Chaos Damage" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } },
- ["PoisonDamageEnhancedSpellsMod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(31-35)% increased Damage with Poison", statOrder = { 1412, 3186 }, level = 1, group = "PoisonDamageAddedChaosToSpells", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "poison", "damage", "chaos", "caster", "ailment" }, tradeHashes = { [2300399854] = { "Adds (17-24) to (36-40) Chaos Damage to Spells" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } },
- ["BleedDamage1_"] = { type = "Suffix", affix = "of Bloodletting", "Attacks have 20% chance to cause Bleeding", "(21-30)% increased Damage with Bleeding", statOrder = { 2494, 3174 }, level = 20, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 20% chance to cause Bleeding" }, [1294118672] = { "(21-30)% increased Damage with Bleeding" }, } },
- ["BleedDamage2"] = { type = "Suffix", affix = "of Haemophilia", "Attacks have 25% chance to cause Bleeding", "(31-40)% increased Damage with Bleeding", statOrder = { 2494, 3174 }, level = 40, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, [1294118672] = { "(31-40)% increased Damage with Bleeding" }, } },
- ["BleedDamage3"] = { type = "Suffix", affix = "of Exsanguination", "Attacks have 30% chance to cause Bleeding", "(41-50)% increased Damage with Bleeding", statOrder = { 2494, 3174 }, level = 60, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 30% chance to cause Bleeding" }, [1294118672] = { "(41-50)% increased Damage with Bleeding" }, } },
- ["ReducedPhysicalDamageTaken1"] = { type = "Suffix", affix = "of Dampening", "2% additional Physical Damage Reduction", statOrder = { 2278 }, level = 25, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "2% additional Physical Damage Reduction" }, } },
- ["ReducedPhysicalDamageTaken2_"] = { type = "Suffix", affix = "of Numbing", "(3-4)% additional Physical Damage Reduction", statOrder = { 2278 }, level = 85, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-4)% additional Physical Damage Reduction" }, } },
- ["ChanceToDodge1_"] = { type = "Suffix", affix = "of Haze", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 25, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, } },
- ["ChanceToDodge2__"] = { type = "Suffix", affix = "of Fog", "+(7-9)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 85, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(7-9)% chance to Suppress Spell Damage" }, } },
- ["EnergyShieldRegenerationPerMinute1"] = { type = "Suffix", affix = "of Vibrance", "Regenerate 0.6% of Energy Shield per second", statOrder = { 2651 }, level = 25, group = "EnergyShieldRegenerationPerMinute", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 0.6% of Energy Shield per second" }, } },
- ["EnergyShieldRegenerationPerMinute2"] = { type = "Suffix", affix = "of Exuberance", "Regenerate 1% of Energy Shield per second", statOrder = { 2651 }, level = 85, group = "EnergyShieldRegenerationPerMinute", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of Energy Shield per second" }, } },
- ["LifeRegenerationRate1"] = { type = "Suffix", affix = "of Esprit", "(9-11)% increased Life Regeneration rate", statOrder = { 1582 }, level = 46, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(9-11)% increased Life Regeneration rate" }, } },
- ["LifeRegenerationRate2"] = { type = "Suffix", affix = "of Perpetuity", "(12-14)% increased Life Regeneration rate", statOrder = { 1582 }, level = 57, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(12-14)% increased Life Regeneration rate" }, } },
- ["LifeRegenerationRate3"] = { type = "Suffix", affix = "of Vivification", "(15-17)% increased Life Regeneration rate", statOrder = { 1582 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(15-17)% increased Life Regeneration rate" }, } },
- ["LifeRegenerationRate4"] = { type = "Suffix", affix = "of Youth", "(18-19)% increased Life Regeneration rate", statOrder = { 1582 }, level = 76, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(18-19)% increased Life Regeneration rate" }, } },
- ["LifeRegenerationRate5"] = { type = "Suffix", affix = "of Everlasting", "(20-21)% increased Life Regeneration rate", statOrder = { 1582 }, level = 85, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(20-21)% increased Life Regeneration rate" }, } },
- ["AdditionalPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Watchman", "4% additional Physical Damage Reduction", statOrder = { 2278 }, level = 45, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "4% additional Physical Damage Reduction" }, } },
- ["AdditionalPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Sentry", "5% additional Physical Damage Reduction", statOrder = { 2278 }, level = 58, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "5% additional Physical Damage Reduction" }, } },
- ["AdditionalPhysicalDamageReduction3"] = { type = "Suffix", affix = "of the Keeper", "6% additional Physical Damage Reduction", statOrder = { 2278 }, level = 67, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "6% additional Physical Damage Reduction" }, } },
- ["AdditionalPhysicalDamageReduction4"] = { type = "Suffix", affix = "of the Protector", "7% additional Physical Damage Reduction", statOrder = { 2278 }, level = 77, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "7% additional Physical Damage Reduction" }, } },
- ["AdditionalPhysicalDamageReduction5_"] = { type = "Suffix", affix = "of the Conservator", "8% additional Physical Damage Reduction", statOrder = { 2278 }, level = 86, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "8% additional Physical Damage Reduction" }, } },
- ["ChanceToSuppressSpells1_"] = { type = "Suffix", affix = "of Rebuttal", "+(5-6)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 46, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(5-6)% chance to Suppress Spell Damage" }, } },
- ["ChanceToSuppressSpells2"] = { type = "Suffix", affix = "of Snuffing", "+(7-8)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 57, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(7-8)% chance to Suppress Spell Damage" }, } },
- ["ChanceToSuppressSpells3"] = { type = "Suffix", affix = "of Revoking", "+(9-10)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(9-10)% chance to Suppress Spell Damage" }, } },
- ["ChanceToSuppressSpells4"] = { type = "Suffix", affix = "of Abjuration", "+(11-12)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 76, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(11-12)% chance to Suppress Spell Damage" }, } },
- ["ChanceToSuppressSpells5__"] = { type = "Suffix", affix = "of Nullification", "+(13-14)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 85, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(13-14)% chance to Suppress Spell Damage" }, } },
- ["ChanceToSuppressSpellsHigh1__"] = { type = "Suffix", affix = "of Rebuttal", "+(8-10)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(8-10)% chance to Suppress Spell Damage" }, } },
- ["ChanceToSuppressSpellsHigh2__"] = { type = "Suffix", affix = "of Snuffing", "+(11-13)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 58, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(11-13)% chance to Suppress Spell Damage" }, } },
- ["ChanceToSuppressSpellsHigh3"] = { type = "Suffix", affix = "of Revoking", "+(14-16)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 67, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(14-16)% chance to Suppress Spell Damage" }, } },
- ["ChanceToSuppressSpellsHigh4_"] = { type = "Suffix", affix = "of Abjuration", "+(17-19)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 77, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(17-19)% chance to Suppress Spell Damage" }, } },
- ["ChanceToSuppressSpellsHigh5___"] = { type = "Suffix", affix = "of Nullification", "+(20-22)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 86, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(20-22)% chance to Suppress Spell Damage" }, } },
- ["EnergyShieldRechargeRate1"] = { type = "Suffix", affix = "of Allaying", "(24-26)% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 46, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(24-26)% increased Energy Shield Recharge Rate" }, } },
- ["EnergyShieldRechargeRate2"] = { type = "Suffix", affix = "of Diffusion", "(27-29)% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 57, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(27-29)% increased Energy Shield Recharge Rate" }, } },
- ["EnergyShieldRechargeRate3"] = { type = "Suffix", affix = "of Dispersal", "(30-32)% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 68, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(30-32)% increased Energy Shield Recharge Rate" }, } },
- ["EnergyShieldRechargeRate4"] = { type = "Suffix", affix = "of Buffering", "(33-35)% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 76, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(33-35)% increased Energy Shield Recharge Rate" }, } },
- ["EnergyShieldRechargeRate5______"] = { type = "Suffix", affix = "of Ardour", "(36-38)% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 85, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(36-38)% increased Energy Shield Recharge Rate" }, } },
- ["FasterStartEnergyShieldRecharge1"] = { type = "Suffix", affix = "of Enlivening", "(27-34)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 45, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(27-34)% faster start of Energy Shield Recharge" }, } },
- ["FasterStartEnergyShieldRecharge2"] = { type = "Suffix", affix = "of Zest", "(35-42)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 58, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(35-42)% faster start of Energy Shield Recharge" }, } },
- ["FasterStartEnergyShieldRecharge3__"] = { type = "Suffix", affix = "of Galvanising", "(43-50)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 67, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(43-50)% faster start of Energy Shield Recharge" }, } },
- ["FasterStartEnergyShieldRecharge4"] = { type = "Suffix", affix = "of Vigour", "(51-58)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 77, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(51-58)% faster start of Energy Shield Recharge" }, } },
- ["FasterStartEnergyShieldRecharge5_"] = { type = "Suffix", affix = "of Second Wind", "(59-66)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 86, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(59-66)% faster start of Energy Shield Recharge" }, } },
- ["ReducedExtraDamageFromCrits1___"] = { type = "Suffix", affix = "of Dulling", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 33, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (21-30)% reduced Extra Damage from Critical Strikes" }, } },
- ["ReducedExtraDamageFromCrits2__"] = { type = "Suffix", affix = "of Deadening", "You take (31-40)% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (31-40)% reduced Extra Damage from Critical Strikes" }, } },
- ["ReducedExtraDamageFromCrits3"] = { type = "Suffix", affix = "of Interference", "You take (41-50)% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 67, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (41-50)% reduced Extra Damage from Critical Strikes" }, } },
- ["ReducedExtraDamageFromCrits4__"] = { type = "Suffix", affix = "of Obstruction", "You take (51-60)% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 78, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (51-60)% reduced Extra Damage from Critical Strikes" }, } },
- ["DamageTakenGainedAsLife1___"] = { type = "Suffix", affix = "of Bandaging", "(4-6)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 44, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(4-6)% of Damage taken Recouped as Life" }, } },
- ["DamageTakenGainedAsLife2"] = { type = "Suffix", affix = "of Stitching", "(7-9)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 56, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(7-9)% of Damage taken Recouped as Life" }, } },
- ["DamageTakenGainedAsLife3"] = { type = "Suffix", affix = "of Suturing", "(10-12)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-12)% of Damage taken Recouped as Life" }, } },
- ["DamageTakenGainedAsLife4_"] = { type = "Suffix", affix = "of Fleshbinding", "(13-15)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 79, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(13-15)% of Damage taken Recouped as Life" }, } },
- ["GlobalSkillGemLevel1"] = { type = "Prefix", affix = "Exalter's", "+1 to Level of all Skill Gems", statOrder = { 4639 }, level = 75, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 50, 0 }, modTags = { "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skill Gems" }, } },
- ["GlobalFireGemLevel1_"] = { type = "Prefix", affix = "Vulcanist's", "+1 to Level of all Fire Skill Gems", statOrder = { 6591 }, level = 75, group = "GlobalFireGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [599749213] = { "+1 to Level of all Fire Skill Gems" }, } },
- ["GlobalColdGemLevel1__"] = { type = "Prefix", affix = "Rimedweller's", "+1 to Level of all Cold Skill Gems", statOrder = { 5841 }, level = 75, group = "GlobalColdGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1078455967] = { "+1 to Level of all Cold Skill Gems" }, } },
- ["GlobalLightningGemLevel1"] = { type = "Prefix", affix = "Stormbrewer's", "+1 to Level of all Lightning Skill Gems", statOrder = { 7470 }, level = 75, group = "GlobalLightningGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [1147690586] = { "+1 to Level of all Lightning Skill Gems" }, } },
- ["GlobalPhysicalGemLevel1_"] = { type = "Prefix", affix = "Behemoth's", "+1 to Level of all Physical Skill Gems", statOrder = { 9670 }, level = 75, group = "GlobalPhysicalGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "gem" }, tradeHashes = { [619213329] = { "+1 to Level of all Physical Skill Gems" }, } },
- ["GlobalChaosGemLevel1"] = { type = "Prefix", affix = "Provocateur's", "+1 to Level of all Chaos Skill Gems", statOrder = { 5761 }, level = 75, group = "GlobalChaosGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [67169579] = { "+1 to Level of all Chaos Skill Gems" }, } },
- ["MaximumFireResist1"] = { type = "Suffix", affix = "of the Bushfire", "+1% to maximum Fire Resistance", statOrder = { 1628 }, level = 68, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } },
- ["MaximumFireResist2_"] = { type = "Suffix", affix = "of the Molten Core", "+2% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } },
- ["MaximumFireResist3"] = { type = "Suffix", affix = "of the Solar Storm", "+3% to maximum Fire Resistance", statOrder = { 1628 }, level = 81, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } },
- ["MaximumColdResist1"] = { type = "Suffix", affix = "of Furs", "+1% to maximum Cold Resistance", statOrder = { 1634 }, level = 68, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } },
- ["MaximumColdResist2"] = { type = "Suffix", affix = "of the Tundra", "+2% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } },
- ["MaximumColdResist3"] = { type = "Suffix", affix = "of the Mammoth", "+3% to maximum Cold Resistance", statOrder = { 1634 }, level = 81, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } },
- ["MaximumLightningResist1"] = { type = "Suffix", affix = "of Impedance", "+1% to maximum Lightning Resistance", statOrder = { 1639 }, level = 68, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } },
- ["MaximumLightningResist2___"] = { type = "Suffix", affix = "of Shockproofing", "+2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } },
- ["MaximumLightningResist3"] = { type = "Suffix", affix = "of the Lightning Rod", "+3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 81, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } },
- ["MaximumChaosResist1"] = { type = "Suffix", affix = "of Regularity", "+1% to maximum Chaos Resistance", statOrder = { 1645 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to maximum Chaos Resistance" }, } },
- ["MaximumChaosResist2_"] = { type = "Suffix", affix = "of Concord", "+2% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, } },
- ["MaximumChaosResist3"] = { type = "Suffix", affix = "of Harmony", "+3% to maximum Chaos Resistance", statOrder = { 1645 }, level = 81, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } },
- ["MaximumAllResist1_"] = { type = "Suffix", affix = "of the Sempiternal", "+1% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistances", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } },
- ["MaximumAllResist2"] = { type = "Suffix", affix = "of the Deathless", "+2% to all maximum Resistances", statOrder = { 1647 }, level = 81, group = "MaximumResistances", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } },
- ["DamageWithBowSkills1"] = { type = "Prefix", affix = "Acute", "(5-10)% increased Damage with Bow Skills", statOrder = { 6025 }, level = 4, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(5-10)% increased Damage with Bow Skills" }, } },
- ["DamageWithBowSkills2"] = { type = "Prefix", affix = "Trenchant", "(11-20)% increased Damage with Bow Skills", statOrder = { 6025 }, level = 15, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(11-20)% increased Damage with Bow Skills" }, } },
- ["DamageWithBowSkills3"] = { type = "Prefix", affix = "Perforating", "(21-30)% increased Damage with Bow Skills", statOrder = { 6025 }, level = 30, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(21-30)% increased Damage with Bow Skills" }, } },
- ["DamageWithBowSkills4_"] = { type = "Prefix", affix = "Incisive", "(31-36)% increased Damage with Bow Skills", statOrder = { 6025 }, level = 60, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(31-36)% increased Damage with Bow Skills" }, } },
- ["DamageWithBowSkills5"] = { type = "Prefix", affix = "Lacerating", "(37-42)% increased Damage with Bow Skills", statOrder = { 6025 }, level = 81, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(37-42)% increased Damage with Bow Skills" }, } },
- ["DamageWithBowSkills6_"] = { type = "Prefix", affix = "Impaling", "(43-50)% increased Damage with Bow Skills", statOrder = { 6025 }, level = 86, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(43-50)% increased Damage with Bow Skills" }, } },
- ["DamageWithBowSkillsEssence3a"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Damage with Bow Skills", statOrder = { 6025 }, level = 26, group = "DamageWithBowSkills", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(21-25)% increased Damage with Bow Skills" }, } },
- ["DamageWithBowSkillsEssence3b_"] = { type = "Prefix", affix = "Essences", "(26-30)% increased Damage with Bow Skills", statOrder = { 6025 }, level = 42, group = "DamageWithBowSkills", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(26-30)% increased Damage with Bow Skills" }, } },
- ["IncreasedDurationBootsUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 15 More Duration", "(10-15)% increased Skill Effect Duration", statOrder = { 319, 1900 }, level = 68, group = "SkillEffectDurationSupported", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [407317553] = { "Socketed Gems are Supported by Level 15 More Duration" }, [3377888098] = { "(10-15)% increased Skill Effect Duration" }, } },
- ["IncreasedCooldownRecoveryBootsUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 80, group = "GlobalCooldownRecovery", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } },
- ["SupportedByFortifyUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fortify", statOrder = { 501 }, level = 68, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 20 Fortify" }, } },
- ["ImmuneToChilledGroundUber1"] = { type = "Prefix", affix = "The Shaper's", "Unaffected by Chilled Ground", statOrder = { 10460 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3653191834] = { "Unaffected by Chilled Ground" }, } },
- ["ImmuneToBurningGroundUber1"] = { type = "Prefix", affix = "The Shaper's", "Unaffected by Burning Ground", statOrder = { 10455 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "fire" }, tradeHashes = { [1643688236] = { "Unaffected by Burning Ground" }, } },
- ["ImmuneToShockedGroundUber1"] = { type = "Prefix", affix = "The Elder's", "Unaffected by Shocked Ground", statOrder = { 10480 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2234049899] = { "Unaffected by Shocked Ground" }, } },
- ["ImmuneToDesecratedGroundUber1_"] = { type = "Prefix", affix = "The Elder's", "Unaffected by Desecrated Ground", statOrder = { 10466 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "chaos" }, tradeHashes = { [4004298002] = { "Unaffected by Desecrated Ground" }, } },
- ["ChanceToDodgeUber1"] = { type = "Suffix", affix = "of Shaping", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(4-7)% chance to Suppress Spell Damage" }, } },
- ["ChanceToDodgeUber2"] = { type = "Suffix", affix = "of Shaping", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 75, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(9-12)% chance to Suppress Spell Damage" }, } },
- ["ChanceToDodgeUber3"] = { type = "Suffix", affix = "of Shaping", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 84, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(13-15)% chance to Suppress Spell Damage" }, } },
- ["ChanceToDodgeSpellsUber1"] = { type = "Suffix", affix = "of the Elder", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(4-7)% chance to Suppress Spell Damage" }, } },
- ["ChanceToDodgeSpellsUber2"] = { type = "Suffix", affix = "of the Elder", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 75, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(9-12)% chance to Suppress Spell Damage" }, } },
- ["ChanceToDodgeSpellsUber3"] = { type = "Suffix", affix = "of the Elder", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 83, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(13-15)% chance to Suppress Spell Damage" }, } },
- ["ChanceToAvoidStunUber1"] = { type = "Suffix", affix = "of the Elder", "(15-22)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 68, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(15-22)% chance to Avoid being Stunned" }, } },
- ["ChanceToAvoidStunUber2"] = { type = "Suffix", affix = "of the Elder", "(23-30)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(23-30)% chance to Avoid being Stunned" }, } },
- ["ChanceToAvoidStunUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 82, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 1600, 1600, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(31-35)% chance to Avoid being Stunned" }, } },
- ["ChanceToAvoidElementalAilmentsUber1_"] = { type = "Suffix", affix = "of Shaping", "(14-17)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 68, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(14-17)% chance to Avoid Elemental Ailments" }, } },
- ["ChanceToAvoidElementalAilmentsUber2"] = { type = "Suffix", affix = "of Shaping", "(18-21)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(18-21)% chance to Avoid Elemental Ailments" }, } },
- ["ChanceToAvoidElementalAilmentsUber3"] = { type = "Suffix", affix = "of Shaping", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 81, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 1600, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(31-35)% chance to Avoid Elemental Ailments" }, } },
- ["ChanceToAvoidProjectilesUber1"] = { type = "Suffix", affix = "of Shaping", "(6-9)% chance to avoid Projectiles", statOrder = { 4998 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3452269808] = { "(6-9)% chance to avoid Projectiles" }, } },
- ["ChanceToAvoidProjectilesUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% chance to avoid Projectiles", statOrder = { 4998 }, level = 84, group = "ChanceToAvoidProjectiles", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3452269808] = { "(10-12)% chance to avoid Projectiles" }, } },
- ["ChanceToGainEnduranceChargeOnKillUber1"] = { type = "Prefix", affix = "The Elder's", "(4-6)% chance to gain an Endurance Charge on Kill", statOrder = { 2634 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "warstaff_elder", "boots_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1054322244] = { "(4-6)% chance to gain an Endurance Charge on Kill" }, } },
- ["ChanceToGainEnduranceChargeOnKillUber2"] = { type = "Prefix", affix = "The Elder's", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2634 }, level = 83, group = "EnduranceChargeOnKillChance", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "warstaff_elder", "boots_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1054322244] = { "(7-10)% chance to gain an Endurance Charge on Kill" }, } },
- ["TotemDamageSpellUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Totem", "(20-25)% increased Totem Damage", statOrder = { 469, 1198 }, level = 68, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2962840349] = { "Socketed Gems are Supported by Level 18 Spell Totem" }, [3851254963] = { "(20-25)% increased Totem Damage" }, } },
- ["TotemDamageSpellUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Totem", "(26-30)% increased Totem Damage", statOrder = { 469, 1198 }, level = 75, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2962840349] = { "Socketed Gems are Supported by Level 20 Spell Totem" }, [3851254963] = { "(26-30)% increased Totem Damage" }, } },
- ["TotemDamageSpellUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 22 Spell Totem", "(31-35)% increased Totem Damage", statOrder = { 469, 1198 }, level = 80, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2962840349] = { "Socketed Gems are Supported by Level 22 Spell Totem" }, [3851254963] = { "(31-35)% increased Totem Damage" }, } },
- ["TotemSpeedSpellUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Totem", "(8-12)% increased Totem Placement speed", statOrder = { 469, 2583 }, level = 68, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(8-12)% increased Totem Placement speed" }, [2962840349] = { "Socketed Gems are Supported by Level 18 Spell Totem" }, } },
- ["TotemSpeedSpellUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Totem", "(13-16)% increased Totem Placement speed", statOrder = { 469, 2583 }, level = 75, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(13-16)% increased Totem Placement speed" }, [2962840349] = { "Socketed Gems are Supported by Level 20 Spell Totem" }, } },
- ["TotemSpeedSpellUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 22 Spell Totem", "(17-20)% increased Totem Placement speed", statOrder = { 469, 2583 }, level = 80, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(17-20)% increased Totem Placement speed" }, [2962840349] = { "Socketed Gems are Supported by Level 22 Spell Totem" }, } },
- ["TotemDamageAttackUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Ballista Totem", "(20-25)% increased Totem Damage", statOrder = { 367, 1198 }, level = 68, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3030692053] = { "Socketed Gems are Supported by Level 18 Ballista Totem" }, [3851254963] = { "(20-25)% increased Totem Damage" }, } },
- ["TotemDamageAttackUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Ballista Totem", "(26-30)% increased Totem Damage", statOrder = { 367, 1198 }, level = 75, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3030692053] = { "Socketed Gems are Supported by Level 20 Ballista Totem" }, [3851254963] = { "(26-30)% increased Totem Damage" }, } },
- ["TotemDamageAttackUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Ballista Totem", "(31-35)% increased Totem Damage", statOrder = { 367, 1198 }, level = 80, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3030692053] = { "Socketed Gems are Supported by Level 22 Ballista Totem" }, [3851254963] = { "(31-35)% increased Totem Damage" }, } },
- ["TotemSpeedAttackUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Ballista Totem", "(8-12)% increased Totem Placement speed", statOrder = { 367, 2583 }, level = 68, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(8-12)% increased Totem Placement speed" }, [3030692053] = { "Socketed Gems are Supported by Level 18 Ballista Totem" }, } },
- ["TotemSpeedAttackUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Ballista Totem", "(13-16)% increased Totem Placement speed", statOrder = { 367, 2583 }, level = 75, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(13-16)% increased Totem Placement speed" }, [3030692053] = { "Socketed Gems are Supported by Level 20 Ballista Totem" }, } },
- ["TotemSpeedAttackUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Ballista Totem", "(17-20)% increased Totem Placement speed", statOrder = { 367, 2583 }, level = 80, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(17-20)% increased Totem Placement speed" }, [3030692053] = { "Socketed Gems are Supported by Level 22 Ballista Totem" }, } },
- ["SupportedByLifeLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 488 }, level = 68, group = "SupportedByLifeLeech", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [891277550] = { "Socketed Gems are supported by Level 15 Life Leech" }, } },
- ["GrantsDecoyTotemSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 20 Decoy Totem Skill", statOrder = { 705 }, level = 68, group = "DecoyTotemSkill", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [3566242751] = { "Grants Level 20 Decoy Totem Skill" }, } },
- ["GlobalRaiseSpectreGemLevelUber1"] = { type = "Suffix", affix = "of the Elder", "+1 to Level of all Raise Spectre Gems", statOrder = { 1621 }, level = 75, group = "MinionGlobalSkillLevel", weightKey = { "boots_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "minion", "gem" }, tradeHashes = { [2739830820] = { "" }, [2120904498] = { "" }, [3235814433] = { "+1 to Level of all Raise Spectre Gems" }, } },
- ["IncreasedAttackSpeedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Faster Attacks", "(7-9)% increased Attack Speed", statOrder = { 474, 1415 }, level = 68, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [681332047] = { "(7-9)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 16 Faster Attacks" }, } },
- ["IncreasedAttackSpeedUber2_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Faster Attacks", "(10-12)% increased Attack Speed", statOrder = { 474, 1415 }, level = 75, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [681332047] = { "(10-12)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 18 Faster Attacks" }, } },
- ["IncreasedAttackSpeedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Faster Attacks", "(13-14)% increased Attack Speed", statOrder = { 474, 1415 }, level = 82, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [681332047] = { "(13-14)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 20 Faster Attacks" }, } },
- ["IncreasedCastSpeedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Faster Casting", "(7-9)% increased Cast Speed", statOrder = { 505, 1451 }, level = 68, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 16 Faster Casting" }, [2891184298] = { "(7-9)% increased Cast Speed" }, } },
- ["IncreasedCastSpeedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Casting", "(10-12)% increased Cast Speed", statOrder = { 505, 1451 }, level = 75, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 18 Faster Casting" }, [2891184298] = { "(10-12)% increased Cast Speed" }, } },
- ["IncreasedCastSpeedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Casting", "(13-14)% increased Cast Speed", statOrder = { 505, 1451 }, level = 84, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 20 Faster Casting" }, [2891184298] = { "(13-14)% increased Cast Speed" }, } },
- ["IncreasedAttackAndCastSpeedUber1_"] = { type = "Suffix", affix = "of the Elder", "(7-9)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 68, group = "IncreasedAttackAndCastSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(7-9)% increased Attack and Cast Speed" }, } },
- ["IncreasedAttackAndCastSpeedUber2"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 75, group = "IncreasedAttackAndCastSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(10-12)% increased Attack and Cast Speed" }, } },
- ["IncreasedAttackAndCastSpeedUber3_"] = { type = "Suffix", affix = "of the Elder", "(13-14)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 85, group = "IncreasedAttackAndCastSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(13-14)% increased Attack and Cast Speed" }, } },
- ["SupportedByManaLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 15 Mana Leech", statOrder = { 519 }, level = 68, group = "DisplaySupportedByManaLeech", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2608615082] = { "Socketed Gems are Supported by Level 15 Mana Leech" }, } },
- ["ProjectileSpeedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 16 Faster Projectiles", "(15-20)% increased Projectile Speed", statOrder = { 487, 1801 }, level = 68, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 16 Faster Projectiles" }, [3759663284] = { "(15-20)% increased Projectile Speed" }, } },
- ["ProjectileSpeedUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 18 Faster Projectiles", "(21-25)% increased Projectile Speed", statOrder = { 487, 1801 }, level = 75, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 18 Faster Projectiles" }, [3759663284] = { "(21-25)% increased Projectile Speed" }, } },
- ["ProjectileSpeedUber3_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 20 Faster Projectiles", "(26-30)% increased Projectile Speed", statOrder = { 487, 1801 }, level = 82, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 20 Faster Projectiles" }, [3759663284] = { "(26-30)% increased Projectile Speed" }, } },
- ["ProjectileDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Slower Projectiles", "(15-18)% increased Projectile Damage", statOrder = { 382, 2001 }, level = 68, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1390285657] = { "Socketed Gems are Supported by Level 16 Slower Projectiles" }, [1839076647] = { "(15-18)% increased Projectile Damage" }, } },
- ["ProjectileDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Slower Projectiles", "(19-22)% increased Projectile Damage", statOrder = { 382, 2001 }, level = 75, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1390285657] = { "Socketed Gems are Supported by Level 18 Slower Projectiles" }, [1839076647] = { "(19-22)% increased Projectile Damage" }, } },
- ["ProjectileDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Slower Projectiles", "(23-25)% increased Projectile Damage", statOrder = { 382, 2001 }, level = 83, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1390285657] = { "Socketed Gems are Supported by Level 20 Slower Projectiles" }, [1839076647] = { "(23-25)% increased Projectile Damage" }, } },
- ["ChanceToAvoidInterruptionWhileCastingUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1903 }, level = 68, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(15-20)% chance to Ignore Stuns while Casting" }, } },
- ["ChanceToAvoidInterruptionWhileCastingUber2"] = { type = "Suffix", affix = "of Shaping", "(21-25)% chance to Ignore Stuns while Casting", statOrder = { 1903 }, level = 75, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(21-25)% chance to Ignore Stuns while Casting" }, } },
- ["ChanceToAvoidInterruptionWhileCastingUber3"] = { type = "Suffix", affix = "of Shaping", "(26-30)% chance to Ignore Stuns while Casting", statOrder = { 1903 }, level = 80, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(26-30)% chance to Ignore Stuns while Casting" }, } },
- ["IncreasedMeleeWeaponRangeUber1"] = { type = "Suffix", affix = "of the Elder", "+0.2 metres to Melee Strike Range", statOrder = { 2539 }, level = 85, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, } },
- ["IncreasedMeleeWeaponRangeAndMeleeDamageUber1"] = { type = "Suffix", affix = "of the Elder", "(13-16)% increased Melee Damage", "+0.2 metres to Melee Strike Range", statOrder = { 1239, 2539 }, level = 80, group = "MeleeDamageAndMeleeRange", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, [1002362373] = { "(13-16)% increased Melee Damage" }, } },
- ["AdditionalTrapsThrownSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 459, 9527 }, level = 68, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1220800126] = { "Skills which Throw Traps throw up to 1 additional Trap" }, [1122134690] = { "Socketed Gems are Supported by Level 18 Trap" }, } },
- ["AdditionalTrapsThrownSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 459, 9527 }, level = 75, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1220800126] = { "Skills which Throw Traps throw up to 1 additional Trap" }, [1122134690] = { "Socketed Gems are Supported by Level 20 Trap" }, } },
- ["AdditionalTrapsThrownSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 459, 9527 }, level = 84, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1220800126] = { "Skills which Throw Traps throw up to 1 additional Trap" }, [1122134690] = { "Socketed Gems are Supported by Level 22 Trap" }, } },
- ["TrapDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap", "(20-25)% increased Trap Damage", statOrder = { 459, 1199 }, level = 68, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 18 Trap" }, [2941585404] = { "(20-25)% increased Trap Damage" }, } },
- ["TrapDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap", "(26-30)% increased Trap Damage", statOrder = { 459, 1199 }, level = 75, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 20 Trap" }, [2941585404] = { "(26-30)% increased Trap Damage" }, } },
- ["TrapDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Trap", "(31-35)% increased Trap Damage", statOrder = { 459, 1199 }, level = 80, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 22 Trap" }, [2941585404] = { "(31-35)% increased Trap Damage" }, } },
- ["TrapDamageCooldownUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Advanced Traps", "(20-25)% increased Trap Damage", statOrder = { 395, 1199 }, level = 68, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3839163699] = { "Socketed Gems are Supported by Level 16 Advanced Traps" }, [2941585404] = { "(20-25)% increased Trap Damage" }, } },
- ["TrapDamageCooldownUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Advanced Traps", "(26-30)% increased Trap Damage", statOrder = { 395, 1199 }, level = 75, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3839163699] = { "Socketed Gems are Supported by Level 18 Advanced Traps" }, [2941585404] = { "(26-30)% increased Trap Damage" }, } },
- ["TrapDamageCooldownUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Advanced Traps", "(31-35)% increased Trap Damage", statOrder = { 395, 1199 }, level = 80, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3839163699] = { "Socketed Gems are Supported by Level 20 Advanced Traps" }, [2941585404] = { "(31-35)% increased Trap Damage" }, } },
- ["TrapSpeedCooldownUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Advanced Traps", "(8-12)% increased Trap Throwing Speed", statOrder = { 395, 1932 }, level = 68, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [118398748] = { "(8-12)% increased Trap Throwing Speed" }, [3839163699] = { "Socketed Gems are Supported by Level 16 Advanced Traps" }, } },
- ["TrapSpeedCooldownUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Advanced Traps", "(13-16)% increased Trap Throwing Speed", statOrder = { 395, 1932 }, level = 75, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [118398748] = { "(13-16)% increased Trap Throwing Speed" }, [3839163699] = { "Socketed Gems are Supported by Level 18 Advanced Traps" }, } },
- ["TrapSpeedCooldownUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Advanced Traps", "(17-20)% increased Trap Throwing Speed", statOrder = { 395, 1932 }, level = 80, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [118398748] = { "(17-20)% increased Trap Throwing Speed" }, [3839163699] = { "Socketed Gems are Supported by Level 20 Advanced Traps" }, } },
- ["TrapDamageMineUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", "(20-25)% increased Trap Damage", statOrder = { 462, 1199 }, level = 68, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3814066599] = { "Socketed Gems are Supported by Level 16 Trap And Mine Damage" }, [2941585404] = { "(20-25)% increased Trap Damage" }, } },
- ["TrapDamageMineUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap And Mine Damage", "(26-30)% increased Trap Damage", statOrder = { 462, 1199 }, level = 75, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3814066599] = { "Socketed Gems are Supported by Level 18 Trap And Mine Damage" }, [2941585404] = { "(26-30)% increased Trap Damage" }, } },
- ["TrapDamageMineUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", "(31-35)% increased Trap Damage", statOrder = { 462, 1199 }, level = 80, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3814066599] = { "Socketed Gems are Supported by Level 20 Trap And Mine Damage" }, [2941585404] = { "(31-35)% increased Trap Damage" }, } },
- ["PoisonDamageSupportedUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance to Poison", "(20-25)% increased Damage with Poison", statOrder = { 528, 3186 }, level = 68, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 16 Chance to Poison" }, [1290399200] = { "(20-25)% increased Damage with Poison" }, } },
- ["PoisonDamageSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance to Poison", "(26-30)% increased Damage with Poison", statOrder = { 528, 3186 }, level = 75, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 18 Chance to Poison" }, [1290399200] = { "(26-30)% increased Damage with Poison" }, } },
- ["PoisonDamageSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance to Poison", "(31-35)% increased Damage with Poison", statOrder = { 528, 3186 }, level = 80, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 20 Chance to Poison" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } },
- ["PoisonDurationSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance to Poison", "(8-12)% increased Poison Duration", statOrder = { 528, 3175 }, level = 68, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, tradeHashes = { [2011656677] = { "(8-12)% increased Poison Duration" }, [228165595] = { "Socketed Gems are Supported by Level 16 Chance to Poison" }, } },
- ["PoisonDurationSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance to Poison", "(13-16)% increased Poison Duration", statOrder = { 528, 3175 }, level = 75, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, tradeHashes = { [2011656677] = { "(13-16)% increased Poison Duration" }, [228165595] = { "Socketed Gems are Supported by Level 18 Chance to Poison" }, } },
- ["PoisonDurationSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance to Poison", "(17-20)% increased Poison Duration", statOrder = { 528, 3175 }, level = 80, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, tradeHashes = { [2011656677] = { "(17-20)% increased Poison Duration" }, [228165595] = { "Socketed Gems are Supported by Level 20 Chance to Poison" }, } },
- ["BleedingDamageUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance To Bleed", "(20-25)% increased Damage with Bleeding", statOrder = { 249, 3174 }, level = 68, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, tradeHashes = { [4197676934] = { "Socketed Gems are Supported by Level 16 Chance To Bleed" }, [1294118672] = { "(20-25)% increased Damage with Bleeding" }, } },
- ["BleedingDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance To Bleed", "(26-30)% increased Damage with Bleeding", statOrder = { 249, 3174 }, level = 75, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, tradeHashes = { [4197676934] = { "Socketed Gems are Supported by Level 18 Chance To Bleed" }, [1294118672] = { "(26-30)% increased Damage with Bleeding" }, } },
- ["BleedingDamageUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance To Bleed", "(31-35)% increased Damage with Bleeding", statOrder = { 249, 3174 }, level = 80, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, tradeHashes = { [4197676934] = { "Socketed Gems are Supported by Level 20 Chance To Bleed" }, [1294118672] = { "(31-35)% increased Damage with Bleeding" }, } },
- ["ChanceToGainFrenzyChargeOnKillUberElder1"] = { type = "Prefix", affix = "The Elder's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [1826802197] = { "(4-6)% chance to gain a Frenzy Charge on Kill" }, } },
- ["ChanceToGainFrenzyChargeOnKillUberElder2_"] = { type = "Prefix", affix = "The Elder's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 84, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [1826802197] = { "(7-10)% chance to gain a Frenzy Charge on Kill" }, } },
- ["ChanceToGainFrenzyChargeOnKillUberShaper1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "2h_axe_shaper", "2h_sword_shaper", "bow_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [1826802197] = { "(4-6)% chance to gain a Frenzy Charge on Kill" }, } },
- ["ChanceToGainFrenzyChargeOnKillUberShaper2_"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 84, group = "FrenzyChargeOnKillChance", weightKey = { "2h_axe_shaper", "2h_sword_shaper", "bow_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [1826802197] = { "(7-10)% chance to gain a Frenzy Charge on Kill" }, } },
- ["IncreasedAccuracySupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 16 Additional Accuracy", "(6-10)% increased Global Accuracy Rating", statOrder = { 485, 1439 }, level = 68, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, tradeHashes = { [1567462963] = { "Socketed Gems are supported by Level 16 Additional Accuracy" }, [624954515] = { "(6-10)% increased Global Accuracy Rating" }, } },
- ["IncreasedAccuracySupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Additional Accuracy", "(11-15)% increased Global Accuracy Rating", statOrder = { 485, 1439 }, level = 75, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, tradeHashes = { [1567462963] = { "Socketed Gems are supported by Level 18 Additional Accuracy" }, [624954515] = { "(11-15)% increased Global Accuracy Rating" }, } },
- ["IncreasedAccuracySupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Additional Accuracy", "(16-20)% increased Global Accuracy Rating", statOrder = { 485, 1439 }, level = 83, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, tradeHashes = { [1567462963] = { "Socketed Gems are supported by Level 20 Additional Accuracy" }, [624954515] = { "(16-20)% increased Global Accuracy Rating" }, } },
- ["AdditionalBlockChanceUber1"] = { type = "Suffix", affix = "of the Elder", "(2-3)% Chance to Block Attack Damage", statOrder = { 1143 }, level = 68, group = "BlockPercent", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2530372417] = { "(2-3)% Chance to Block Attack Damage" }, } },
- ["AdditionalBlockChanceUber2"] = { type = "Suffix", affix = "of the Elder", "(4-5)% Chance to Block Attack Damage", statOrder = { 1143 }, level = 80, group = "BlockPercent", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2530372417] = { "(4-5)% Chance to Block Attack Damage" }, } },
- ["BlindOnHitSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 16 Blind", "(5-6)% Global chance to Blind Enemies on hit", statOrder = { 475, 2963 }, level = 68, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 16 Blind" }, [2221570601] = { "(5-6)% Global chance to Blind Enemies on hit" }, } },
- ["BlindOnHitSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 18 Blind", "(7-8)% Global chance to Blind Enemies on hit", statOrder = { 475, 2963 }, level = 75, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 18 Blind" }, [2221570601] = { "(7-8)% Global chance to Blind Enemies on hit" }, } },
- ["BlindOnHitSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 20 Blind", "(9-10)% Global chance to Blind Enemies on hit", statOrder = { 475, 2963 }, level = 80, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 20 Blind" }, [2221570601] = { "(9-10)% Global chance to Blind Enemies on hit" }, } },
- ["SocketedSpellCriticalMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +30% to Critical Strike Multiplier", statOrder = { 572 }, level = 68, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, tradeHashes = { [2828710986] = { "Socketed Spells have +30% to Critical Strike Multiplier" }, } },
- ["SocketedSpellCriticalMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +50% to Critical Strike Multiplier", statOrder = { 572 }, level = 75, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, tradeHashes = { [2828710986] = { "Socketed Spells have +50% to Critical Strike Multiplier" }, } },
- ["SocketedSpellCriticalMultiplierUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +70% to Critical Strike Multiplier", statOrder = { 572 }, level = 83, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, tradeHashes = { [2828710986] = { "Socketed Spells have +70% to Critical Strike Multiplier" }, } },
- ["SocketedAttackCriticalMultiplierUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +30% to Critical Strike Multiplier", statOrder = { 553 }, level = 68, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, tradeHashes = { [356456977] = { "Socketed Attacks have +30% to Critical Strike Multiplier" }, } },
- ["SocketedAttackCriticalMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +50% to Critical Strike Multiplier", statOrder = { 553 }, level = 75, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, tradeHashes = { [356456977] = { "Socketed Attacks have +50% to Critical Strike Multiplier" }, } },
- ["SocketedAttackCriticalMultiplierUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +70% to Critical Strike Multiplier", statOrder = { 553 }, level = 84, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, tradeHashes = { [356456977] = { "Socketed Attacks have +70% to Critical Strike Multiplier" }, } },
- ["AreaDamageSupportedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Concentrated Effect", "(15-18)% increased Area Damage", statOrder = { 458, 2040 }, level = 68, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(15-18)% increased Area Damage" }, [2388360415] = { "Socketed Gems are Supported by Level 16 Concentrated Effect" }, } },
- ["AreaDamageSupportedUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Concentrated Effect", "(19-22)% increased Area Damage", statOrder = { 458, 2040 }, level = 75, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(19-22)% increased Area Damage" }, [2388360415] = { "Socketed Gems are Supported by Level 18 Concentrated Effect" }, } },
- ["AreaDamageSupportedUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Concentrated Effect", "(23-25)% increased Area Damage", statOrder = { 458, 2040 }, level = 82, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(23-25)% increased Area Damage" }, [2388360415] = { "Socketed Gems are Supported by Level 20 Concentrated Effect" }, } },
- ["AreaOfEffectSupportedUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Increased Area of Effect", "(7-9)% increased Area of Effect", statOrder = { 229, 1885 }, level = 68, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 16 Increased Area of Effect" }, [280731498] = { "(7-9)% increased Area of Effect" }, } },
- ["AreaOfEffectSupportedUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Increased Area of Effect", "(10-12)% increased Area of Effect", statOrder = { 229, 1885 }, level = 75, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 18 Increased Area of Effect" }, [280731498] = { "(10-12)% increased Area of Effect" }, } },
- ["AreaOfEffectSupportedUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Increased Area of Effect", "(13-15)% increased Area of Effect", statOrder = { 229, 1885 }, level = 83, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 20 Increased Area of Effect" }, [280731498] = { "(13-15)% increased Area of Effect" }, } },
- ["MaximumManaUber1"] = { type = "Prefix", affix = "The Elder's", "(9-11)% increased maximum Mana", statOrder = { 1585 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(9-11)% increased maximum Mana" }, } },
- ["MaximumManaUber2_"] = { type = "Prefix", affix = "The Elder's", "(12-15)% increased maximum Mana", statOrder = { 1585 }, level = 75, group = "MaximumManaIncreasePercent", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(12-15)% increased maximum Mana" }, } },
- ["MinionDamageSupportedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Minion Damage", "Minions deal (15-18)% increased Damage", statOrder = { 511, 1978 }, level = 68, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, tradeHashes = { [808939569] = { "Socketed Gems are Supported by Level 16 Minion Damage" }, [1589917703] = { "Minions deal (15-18)% increased Damage" }, } },
- ["MinionDamageSupportedUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Minion Damage", "Minions deal (19-22)% increased Damage", statOrder = { 511, 1978 }, level = 75, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, tradeHashes = { [808939569] = { "Socketed Gems are Supported by Level 18 Minion Damage" }, [1589917703] = { "Minions deal (19-22)% increased Damage" }, } },
- ["MinionDamageSupportedUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Minion Damage", "Minions deal (23-25)% increased Damage", statOrder = { 511, 1978 }, level = 83, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, tradeHashes = { [808939569] = { "Socketed Gems are Supported by Level 20 Minion Damage" }, [1589917703] = { "Minions deal (23-25)% increased Damage" }, } },
- ["MinionLifeSupportedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Minion Life", "Minions have (15-18)% increased maximum Life", statOrder = { 509, 1771 }, level = 68, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 16 Minion Life" }, [770672621] = { "Minions have (15-18)% increased maximum Life" }, } },
- ["MinionLifeSupportedUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Minion Life", "Minions have (19-22)% increased maximum Life", statOrder = { 509, 1771 }, level = 75, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 18 Minion Life" }, [770672621] = { "Minions have (19-22)% increased maximum Life" }, } },
- ["MinionLifeSupportedUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Minion Life", "Minions have (23-25)% increased maximum Life", statOrder = { 509, 1771 }, level = 80, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 20 Minion Life" }, [770672621] = { "Minions have (23-25)% increased maximum Life" }, } },
- ["AdditionalMinesPlacedSupportedUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Blastchain Mine", "Throw an additional Mine", statOrder = { 502, 3554 }, level = 68, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1710508327] = { "Socketed Gems are Supported by Level 18 Blastchain Mine" }, [2395088636] = { "Throw an additional Mine" }, } },
- ["AdditionalMinesPlacedSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Blastchain Mine", "Throw an additional Mine", statOrder = { 502, 3554 }, level = 75, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1710508327] = { "Socketed Gems are Supported by Level 20 Blastchain Mine" }, [2395088636] = { "Throw an additional Mine" }, } },
- ["AdditionalMinesPlacedSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Blastchain Mine", "Throw an additional Mine", statOrder = { 502, 3554 }, level = 85, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1710508327] = { "Socketed Gems are Supported by Level 22 Blastchain Mine" }, [2395088636] = { "Throw an additional Mine" }, } },
- ["MineDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Blastchain Mine", "(20-25)% increased Mine Damage", statOrder = { 502, 1201 }, level = 68, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(20-25)% increased Mine Damage" }, [1710508327] = { "Socketed Gems are Supported by Level 18 Blastchain Mine" }, } },
- ["MineDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Blastchain Mine", "(26-30)% increased Mine Damage", statOrder = { 502, 1201 }, level = 75, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(26-30)% increased Mine Damage" }, [1710508327] = { "Socketed Gems are Supported by Level 20 Blastchain Mine" }, } },
- ["MineDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Blastchain Mine", "(31-35)% increased Mine Damage", statOrder = { 502, 1201 }, level = 80, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(31-35)% increased Mine Damage" }, [1710508327] = { "Socketed Gems are Supported by Level 22 Blastchain Mine" }, } },
- ["MineDamageTrapUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", "(20-25)% increased Mine Damage", statOrder = { 462, 1201 }, level = 68, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(20-25)% increased Mine Damage" }, [3814066599] = { "Socketed Gems are Supported by Level 16 Trap And Mine Damage" }, } },
- ["MineDamageTrapUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap And Mine Damage", "(26-30)% increased Mine Damage", statOrder = { 462, 1201 }, level = 75, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(26-30)% increased Mine Damage" }, [3814066599] = { "Socketed Gems are Supported by Level 18 Trap And Mine Damage" }, } },
- ["MineDamageTrapUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", "(31-35)% increased Mine Damage", statOrder = { 462, 1201 }, level = 80, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(31-35)% increased Mine Damage" }, [3814066599] = { "Socketed Gems are Supported by Level 20 Trap And Mine Damage" }, } },
- ["IncreasedChillEffectSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Hypothermia", "(8-12)% increased Effect of Cold Ailments", statOrder = { 516, 5803 }, level = 68, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, tradeHashes = { [1793818220] = { "(8-12)% increased Effect of Cold Ailments" }, [13669281] = { "Socketed Gems are Supported by Level 16 Hypothermia" }, } },
- ["IncreasedChillEffectSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Hypothermia", "(13-16)% increased Effect of Cold Ailments", statOrder = { 516, 5803 }, level = 75, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, tradeHashes = { [1793818220] = { "(13-16)% increased Effect of Cold Ailments" }, [13669281] = { "Socketed Gems are Supported by Level 18 Hypothermia" }, } },
- ["IncreasedChillEffectSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Hypothermia", "(17-20)% increased Effect of Cold Ailments", statOrder = { 516, 5803 }, level = 80, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, tradeHashes = { [1793818220] = { "(17-20)% increased Effect of Cold Ailments" }, [13669281] = { "Socketed Gems are Supported by Level 20 Hypothermia" }, } },
- ["IncreasedShockEffectSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Innervate", "(8-12)% increased Effect of Lightning Ailments", statOrder = { 526, 7438 }, level = 68, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, tradeHashes = { [3081816887] = { "(8-12)% increased Effect of Lightning Ailments" }, [1106668565] = { "Socketed Gems are Supported by Level 16 Innervate" }, } },
- ["IncreasedShockEffectSupportedUber2___"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Innervate", "(13-16)% increased Effect of Lightning Ailments", statOrder = { 526, 7438 }, level = 75, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, tradeHashes = { [3081816887] = { "(13-16)% increased Effect of Lightning Ailments" }, [1106668565] = { "Socketed Gems are Supported by Level 18 Innervate" }, } },
- ["IncreasedShockEffectSupportedUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Innervate", "(17-20)% increased Effect of Lightning Ailments", statOrder = { 526, 7438 }, level = 80, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, tradeHashes = { [3081816887] = { "(17-20)% increased Effect of Lightning Ailments" }, [1106668565] = { "Socketed Gems are Supported by Level 20 Innervate" }, } },
- ["IgniteDurationSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Immolate", "(8-12)% increased Ignite Duration on Enemies", statOrder = { 314, 1864 }, level = 68, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, tradeHashes = { [1086147743] = { "(8-12)% increased Ignite Duration on Enemies" }, [2420410470] = { "Socketed Gems are Supported by Level 16 Immolate" }, } },
- ["IgniteDurationSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Immolate", "(13-16)% increased Ignite Duration on Enemies", statOrder = { 314, 1864 }, level = 75, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, tradeHashes = { [1086147743] = { "(13-16)% increased Ignite Duration on Enemies" }, [2420410470] = { "Socketed Gems are Supported by Level 18 Immolate" }, } },
- ["IgniteDurationSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Immolate", "(17-20)% increased Ignite Duration on Enemies", statOrder = { 314, 1864 }, level = 80, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, tradeHashes = { [1086147743] = { "(17-20)% increased Ignite Duration on Enemies" }, [2420410470] = { "Socketed Gems are Supported by Level 20 Immolate" }, } },
- ["IncreasedBurningDamageSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Burning Damage", "(20-25)% increased Burning Damage", statOrder = { 317, 1882 }, level = 68, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1175385867] = { "(20-25)% increased Burning Damage" }, [2680613507] = { "Socketed Gems are Supported by Level 16 Burning Damage" }, } },
- ["IncreasedBurningDamageSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Burning Damage", "(26-30)% increased Burning Damage", statOrder = { 317, 1882 }, level = 75, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1175385867] = { "(26-30)% increased Burning Damage" }, [2680613507] = { "Socketed Gems are Supported by Level 18 Burning Damage" }, } },
- ["IncreasedBurningDamageSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Burning Damage", "(31-35)% increased Burning Damage", statOrder = { 317, 1882 }, level = 82, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1175385867] = { "(31-35)% increased Burning Damage" }, [2680613507] = { "Socketed Gems are Supported by Level 20 Burning Damage" }, } },
- ["ChanceToGainPowerChargeOnKillUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to gain a Power Charge on Kill", statOrder = { 2638 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(4-6)% chance to gain a Power Charge on Kill" }, } },
- ["ChanceToGainPowerChargeOnKillUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to gain a Power Charge on Kill", statOrder = { 2638 }, level = 84, group = "PowerChargeOnKillChance", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(7-10)% chance to gain a Power Charge on Kill" }, } },
- ["SupportedByLessDurationUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Less Duration", statOrder = { 370 }, level = 68, group = "SupportedByLessDuration", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2487643588] = { "Socketed Gems are Supported by Level 20 Less Duration" }, } },
- ["SpellAddedFireDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrder = { 1409 }, level = 68, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (17-22) to (33-39) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (21-28) to (42-49) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrder = { 1409 }, level = 82, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (25-34) to (51-59) Fire Damage to Spells" }, } },
- ["SpellAddedColdDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrder = { 1410 }, level = 68, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (14-18) to (27-32) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (17-23) to (34-40) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrder = { 1410 }, level = 83, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (21-28) to (41-48) Cold Damage to Spells" }, } },
- ["SpellAddedLightningDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrder = { 1411 }, level = 68, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (58-61) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (73-77) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrder = { 1411 }, level = 84, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-7) to (88-93) Lightning Damage to Spells" }, } },
- ["SpellAddedPhysicalDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (17-22) to (33-39) Physical Damage to Spells", statOrder = { 1408 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (17-22) to (33-39) Physical Damage to Spells" }, } },
- ["SpellAddedPhysicalDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (21-28) to (42-49) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (21-28) to (42-49) Physical Damage to Spells" }, } },
- ["SpellAddedPhysicalDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (25-34) to (51-59) Physical Damage to Spells", statOrder = { 1408 }, level = 85, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (25-34) to (51-59) Physical Damage to Spells" }, } },
- ["SpellAddedChaosDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (14-18) to (27-32) Chaos Damage to Spells", statOrder = { 1412 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (14-18) to (27-32) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (17-23) to (34-40) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (17-23) to (34-40) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (21-28) to (41-48) Chaos Damage to Spells", statOrder = { 1412 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (21-28) to (41-48) Chaos Damage to Spells" }, } },
- ["ManaRegenerationUber1"] = { type = "Suffix", affix = "of Shaping", "(41-55)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [789117908] = { "(41-55)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationUber2"] = { type = "Suffix", affix = "of Shaping", "(56-70)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [789117908] = { "(56-70)% increased Mana Regeneration Rate" }, } },
- ["AddedManaRegenerationUber1"] = { type = "Suffix", affix = "of Shaping", "Regenerate (3-5) Mana per second", statOrder = { 1587 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (3-5) Mana per second" }, } },
- ["AddedManaRegenerationUber2"] = { type = "Suffix", affix = "of Shaping", "Regenerate (6-8) Mana per second", statOrder = { 1587 }, level = 80, group = "AddedManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (6-8) Mana per second" }, } },
- ["AdditionalSpellBlockChanceUber1"] = { type = "Suffix", affix = "of the Elder", "(3-4)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 68, group = "SpellBlockPercentage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(3-4)% Chance to Block Spell Damage" }, } },
- ["AdditionalSpellBlockChanceUber2"] = { type = "Suffix", affix = "of the Elder", "(5-6)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 80, group = "SpellBlockPercentage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(5-6)% Chance to Block Spell Damage" }, } },
- ["SocketedSpellCriticalStrikeChanceUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +1% to Critical Strike Chance", statOrder = { 571 }, level = 68, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, tradeHashes = { [135378852] = { "Socketed Spells have +1% to Critical Strike Chance" }, } },
- ["SocketedSpellCriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +2% to Critical Strike Chance", statOrder = { 571 }, level = 75, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, tradeHashes = { [135378852] = { "Socketed Spells have +2% to Critical Strike Chance" }, } },
- ["SocketedSpellCriticalStrikeChanceUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +3% to Critical Strike Chance", statOrder = { 571 }, level = 84, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, tradeHashes = { [135378852] = { "Socketed Spells have +3% to Critical Strike Chance" }, } },
- ["SocketedAttackCriticalStrikeChanceUber1__"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +1% to Critical Strike Chance", statOrder = { 552 }, level = 68, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, tradeHashes = { [2867348718] = { "Socketed Attacks have +1% to Critical Strike Chance" }, } },
- ["SocketedAttackCriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +2% to Critical Strike Chance", statOrder = { 552 }, level = 75, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, tradeHashes = { [2867348718] = { "Socketed Attacks have +2% to Critical Strike Chance" }, } },
- ["SocketedAttackCriticalStrikeChanceUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +3% to Critical Strike Chance", statOrder = { 552 }, level = 83, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, tradeHashes = { [2867348718] = { "Socketed Attacks have +3% to Critical Strike Chance" }, } },
- ["EnemyPhysicalDamageTakenAuraUber1_"] = { type = "Suffix", affix = "of the Elder", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 7923 }, level = 85, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [3853018505] = { "9% increased Physical Damage taken" }, [415837237] = { "Nearby Enemies take 9% increased Physical Damage" }, } },
- ["EnemyElementalDamageTakenAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Nearby Enemies take 6% increased Elemental Damage", statOrder = { 7918 }, level = 85, group = "NearbyEnemyElementalDamageTaken", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [639595152] = { "Nearby Enemies take 6% increased Elemental Damage" }, [2734809852] = { "6% increased Elemental Damage taken" }, } },
- ["LocalIncreaseSocketedActiveGemLevelUber1"] = { type = "Prefix", affix = "The Shaper's", "+1 to Level of Socketed Skill Gems", statOrder = { 195 }, level = 80, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, } },
- ["LocalIncreaseSocketedSupportGemLevelUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to Level of Socketed Support Gems", statOrder = { 194 }, level = 80, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [4154259475] = { "+1 to Level of Socketed Support Gems" }, } },
- ["PhysicalDamageTakenAsFirePercentUber1"] = { type = "Prefix", affix = "The Elder's", "(8-12)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 68, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(8-12)% of Physical Damage from Hits taken as Fire Damage" }, } },
- ["PhysicalDamageTakenAsFirePercentUber2"] = { type = "Prefix", affix = "The Elder's", "(13-15)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 84, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(13-15)% of Physical Damage from Hits taken as Fire Damage" }, } },
- ["PhysicalDamageTakenAsColdPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "(8-12)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 68, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(8-12)% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsColdPercentUber2"] = { type = "Prefix", affix = "The Shaper's", "(13-15)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 83, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(13-15)% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsLightningPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "(8-12)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 68, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(8-12)% of Physical Damage from Hits taken as Lightning Damage" }, } },
- ["PhysicalDamageTakenAsLightningPercentUber2___"] = { type = "Prefix", affix = "The Shaper's", "(13-15)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 82, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(13-15)% of Physical Damage from Hits taken as Lightning Damage" }, } },
- ["ReducedElementalReflectTakenUber1"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 6339 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take 100% reduced Reflected Elemental Damage" }, } },
- ["ReducedElementalReflectTakenUber2"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 6339 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take 100% reduced Reflected Elemental Damage" }, } },
+ ["PowerChargeOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "25% chance to gain a Power Charge when you Block", statOrder = { 4270 }, level = 63, group = "PowerChargeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "power_charge" }, tradeHashes = { [3945147290] = { "25% chance to gain a Power Charge when you Block" }, } },
+ ["NearbyEnemiesChilledOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Chill Nearby Enemies when you Block", statOrder = { 4271 }, level = 63, group = "NearbyEnemiesChilledOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "elemental", "cold", "ailment" }, tradeHashes = { [583277599] = { "Chill Nearby Enemies when you Block" }, } },
+ ["PoisonDamageEssence1"] = { type = "Prefix", affix = "Essences", "40% increased Damage with Poison", statOrder = { 3181 }, level = 63, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "40% increased Damage with Poison" }, } },
+ ["ChanceToRecoverManaOnSkillUseEssence1"] = { type = "Suffix", affix = "of the Essence", "10% chance to Recover 10% of Mana when you use a Skill", statOrder = { 3475 }, level = 63, group = "ChanceToRecoverManaOnSkillUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [308309328] = { "10% chance to Recover 10% of Mana when you use a Skill" }, } },
+ ["FortifyEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "+3 to maximum Fortification", statOrder = { 9117 }, level = 63, group = "FortifyEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335507772] = { "+3 to maximum Fortification" }, } },
+ ["CrushOnHitChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "(15-25)% chance to Crush on Hit", statOrder = { 5655 }, level = 63, group = "CrushOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [2228892313] = { "(15-25)% chance to Crush on Hit" }, } },
+ ["AlchemistsGeniusOnFlaskEssence1_"] = { type = "Suffix", affix = "of the Essence", "Gain Alchemist's Genius when you use a Flask", statOrder = { 6720 }, level = 63, group = "AlchemistsGeniusOnFlaskUseChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2989883253] = { "Gain Alchemist's Genius when you use a Flask" }, } },
+ ["PowerFrenzyOrEnduranceChargeOnKillEssence1"] = { type = "Suffix", affix = "of the Essence", "16% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3612 }, level = 63, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [498214257] = { "16% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } },
+ ["SocketedGemsNonCurseAuraEffectEssence1"] = { type = "Suffix", affix = "", "Socketed Non-Curse Aura Gems have 20% increased Aura Effect", statOrder = { 604 }, level = 63, group = "SocketedGemsNonCurseAuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "aura", "gem" }, tradeHashes = { [223595318] = { "Socketed Non-Curse Aura Gems have 20% increased Aura Effect" }, } },
+ ["SocketedAuraGemLevelsEssence1"] = { type = "Suffix", affix = "of the Essence", "+2 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 63, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } },
+ ["FireBurstOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Cast Level 20 Fire Burst on Hit", statOrder = { 779 }, level = 63, group = "FireBurstOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack" }, tradeHashes = { [1621470436] = { "Cast Level 20 Fire Burst on Hit" }, } },
+ ["SpiritMinionEssence1"] = { type = "Suffix", affix = "of the Essence", "Triggers Level 20 Spectral Spirits when Equipped", "+3 to maximum number of Spectral Spirits", statOrder = { 751, 751.1 }, level = 63, group = "GrantsEssenceMinion", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [470688636] = { "Triggers Level 20 Spectral Spirits when Equipped", "+3 to maximum number of Spectral Spirits" }, } },
+ ["AreaOfEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Area of Effect", statOrder = { 1880 }, level = 63, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [280731498] = { "25% increased Area of Effect" }, } },
+ ["OnslaughtWhenHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Gain Onslaught for 3 seconds when Hit", statOrder = { 6781 }, level = 63, group = "OnslaughtWhenHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3049760680] = { "Gain Onslaught for 3 seconds when Hit" }, } },
+ ["OnslaughtWhenHitNewEssence1"] = { type = "Suffix", affix = "of the Essence", "You gain Onslaught for 6 seconds when Hit", statOrder = { 2827 }, level = 63, group = "OnslaughtWhenHitForDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2764164760] = { "You gain Onslaught for 6 seconds when Hit" }, } },
+ ["SupportDamageOverTimeEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage over Time", statOrder = { 602 }, level = 63, group = "SupportDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "damage", "gem" }, tradeHashes = { [3846088475] = { "Socketed Gems deal 30% more Damage over Time" }, } },
+ ["SpellBlockOnLowLifeEssence1"] = { type = "Suffix", affix = "of the Essence", "+15% Chance to Block Spell Damage while on Low Life", statOrder = { 1145 }, level = 63, group = "SpellBlockPercentageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [2253286128] = { "+15% Chance to Block Spell Damage while on Low Life" }, } },
+ ["MaximumDoomEssence1__"] = { type = "Suffix", affix = "of the Essence", "5% increased Effect of your Curses", statOrder = { 2596 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "5% increased Effect of your Curses" }, } },
+ ["MaximumDoomAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Effect of your Curses", statOrder = { 2596 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "10% increased Effect of your Curses" }, } },
+ ["MarkEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Effect of your Marks", statOrder = { 2598 }, level = 63, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "25% increased Effect of your Marks" }, } },
+ ["DecayOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", statOrder = { 6136 }, level = 63, group = "DecayOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3322709337] = { "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds" }, } },
+ ["SpellBlockAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "(6-7)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 63, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [561307714] = { "(6-7)% Chance to Block Spell Damage" }, } },
+ ["MovementSpeedOnBurningChilledShockedGroundEssence1"] = { type = "Suffix", affix = "of the Essence", "12% increased Movement speed while on Burning, Chilled or Shocked ground", statOrder = { 9434 }, level = 63, group = "MovementSpeedOnBurningChilledShockedGround", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1521863824] = { "12% increased Movement speed while on Burning, Chilled or Shocked ground" }, } },
+ ["ManaRegenerationWhileShockedEssence1"] = { type = "Suffix", affix = "of the Essence", "70% increased Mana Regeneration Rate while Shocked", statOrder = { 2508 }, level = 63, group = "ManaRegenerationWhileShocked", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2076519255] = { "70% increased Mana Regeneration Rate while Shocked" }, } },
+ ["ManaGainedOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Recover 5% of your maximum Mana when you Block", statOrder = { 8186 }, level = 63, group = "ManaGainedOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [3041288981] = { "Recover 5% of your maximum Mana when you Block" }, } },
+ ["AilmentDoubleDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "1% chance to deal Double Damage against Enemies for each type of Ailment you have inflicted on them", statOrder = { 4619 }, level = 63, group = "AilmentDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1916537902] = { "1% chance to deal Double Damage against Enemies for each type of Ailment you have inflicted on them" }, } },
+ ["AilmentDoubleDamageTwoHandEssence1"] = { type = "Suffix", affix = "of the Essence", "2% chance to deal Double Damage against Enemies for each type of Ailment you have inflicted on them", statOrder = { 4619 }, level = 63, group = "AilmentDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1916537902] = { "2% chance to deal Double Damage against Enemies for each type of Ailment you have inflicted on them" }, } },
+ ["AttackCastSpeedPerNearbyEnemyEssence1"] = { type = "Suffix", affix = "of the Essence", "5% increased Attack and Cast Speed for each nearby Enemy, up to a maximum of 30%", statOrder = { 4808 }, level = 63, group = "AttackCastSpeedPerNearbyEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1027670161] = { "5% increased Attack and Cast Speed for each nearby Enemy, up to a maximum of 30%" }, } },
+ ["MovementSpeedPerNearbyEnemyEssence1"] = { type = "Prefix", affix = "Essences", "5% increased Movement Speed for each nearby Enemy, up to a maximum of 50%", statOrder = { 9411 }, level = 63, group = "MovementSpeedPerNearbyEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1426967889] = { "5% increased Movement Speed for each nearby Enemy, up to a maximum of 50%" }, } },
+ ["GlobalDefencesNoOtherDefenceModifiersOnEquipmentEssence1"] = { type = "Prefix", affix = "Essences", "(70-90)% increased Global Defences if there are no Defence Modifiers on other Equipped Items", statOrder = { 6874 }, level = 63, group = "GlobalDefencesNoOtherDefenceModifiersOnEquipment", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, tradeHashes = { [2939710712] = { "(70-90)% increased Global Defences if there are no Defence Modifiers on other Equipped Items" }, } },
+ ["LocalGemLevelIfOnlySocketedGemEssence1"] = { type = "Prefix", affix = "Essences", "+6 to Level of Socketed Gems while there is a single Gem Socketed in this Item", statOrder = { 8017 }, level = 63, group = "LocalGemLevelIfOnlySocketedGem", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [3298991976] = { "+6 to Level of Socketed Gems while there is a single Gem Socketed in this Item" }, } },
+ ["ProjectilesChainAtCloseRangeEssence1"] = { type = "Suffix", affix = "of the Essence", "Projectiles can Chain from any number of additional targets in Close Range", statOrder = { 9748 }, level = 63, group = "ProjectilesChainAtCloseRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2940232338] = { "Projectiles can Chain from any number of additional targets in Close Range" }, } },
+ ["AilmentDurationIfNotAppliedThatAilmentRecentlyEssence1"] = { type = "Suffix", affix = "of the Essence", "(40-60)% increased Duration of Ailments of types you haven't inflicted Recently", statOrder = { 4984 }, level = 63, group = "AilmentDurationIfNotAppliedThatAilmentRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [967840105] = { "(40-60)% increased Duration of Ailments of types you haven't inflicted Recently" }, } },
+ ["ShockwaveUnleashCountEssence1"] = { type = "Prefix", affix = "Essences", "Left ring slot: Skills supported by Unleash have +1 to maximum number of Seals", "Right ring slot: Shockwave has +1 to Cooldown Uses", statOrder = { 7982, 8009 }, level = 63, group = "ShockwaveUnleashCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [597522922] = { "Left ring slot: Skills supported by Unleash have +1 to maximum number of Seals" }, [651133374] = { "Right ring slot: Shockwave has +1 to Cooldown Uses" }, } },
+ ["MagicFlaskEffectNoAdjacentFlasksEssence1"] = { type = "Prefix", affix = "Essences", "Equipped Magic Flasks have 30% increased effect on you if no Flasks are Adjacent to them", statOrder = { 8148 }, level = 63, group = "MagicFlaskEffectNoAdjacentFlasks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2649904663] = { "Equipped Magic Flasks have 30% increased effect on you if no Flasks are Adjacent to them" }, } },
+ ["ArmourAppliesElementalHitsIfBlockedRecentlyEssence1"] = { type = "Prefix", affix = "Essences", "(2-4)% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently", statOrder = { 4749 }, level = 63, group = "ArmourAppliesElementalHitsIfBlockedRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [1239225602] = { "(2-4)% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently" }, } },
+ ["BleedDuration1"] = { type = "Suffix", affix = "of Agony", "(8-12)% increased Bleeding Duration", statOrder = { 4994 }, level = 30, group = "BleedDuration", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(8-12)% increased Bleeding Duration" }, } },
+ ["BleedDuration2"] = { type = "Suffix", affix = "of Torment", "(13-18)% increased Bleeding Duration", statOrder = { 4994 }, level = 60, group = "BleedDuration", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(13-18)% increased Bleeding Duration" }, } },
+ ["ChanceToIgnite1"] = { type = "Suffix", affix = "of Ignition", "(18-24)% chance to Ignite", statOrder = { 2026 }, level = 15, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(18-24)% chance to Ignite" }, } },
+ ["ChanceToIgnite2"] = { type = "Suffix", affix = "of Combustion", "(25-30)% chance to Ignite", statOrder = { 2026 }, level = 45, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(25-30)% chance to Ignite" }, } },
+ ["ChanceToIgnite3_"] = { type = "Suffix", affix = "of Conflagration", "(31-40)% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(31-40)% chance to Ignite" }, } },
+ ["TwoHandChanceToIgnite1"] = { type = "Suffix", affix = "of Ignition", "(25-32)% chance to Ignite", statOrder = { 2026 }, level = 15, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(25-32)% chance to Ignite" }, } },
+ ["TwoHandChanceToIgnite2_"] = { type = "Suffix", affix = "of Combustion", "(33-42)% chance to Ignite", statOrder = { 2026 }, level = 45, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(33-42)% chance to Ignite" }, } },
+ ["TwoHandChanceToIgnite3"] = { type = "Suffix", affix = "of Conflagration", "(43-55)% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(43-55)% chance to Ignite" }, } },
+ ["ChanceToBleed1"] = { type = "Suffix", affix = "of Bleeding", "10% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 15, group = "LocalChanceToBleed", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "10% chance to cause Bleeding on Hit" }, } },
+ ["ChanceToBleed2_"] = { type = "Suffix", affix = "of Flaying", "15% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 55, group = "LocalChanceToBleed", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "15% chance to cause Bleeding on Hit" }, } },
+ ["ChanceToBleed3"] = { type = "Suffix", affix = "of Hemorrhaging", "20% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 85, group = "LocalChanceToBleed", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "20% chance to cause Bleeding on Hit" }, } },
+ ["ChanceToPoison1"] = { type = "Suffix", affix = "of Poisoning", "10% chance to Poison on Hit", statOrder = { 8002 }, level = 15, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "10% chance to Poison on Hit" }, } },
+ ["ChanceToPoison2"] = { type = "Suffix", affix = "of Toxins", "20% chance to Poison on Hit", statOrder = { 8002 }, level = 55, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit" }, } },
+ ["ChanceToPoison3_"] = { type = "Suffix", affix = "of Death", "30% chance to Poison on Hit", statOrder = { 8002 }, level = 85, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "30% chance to Poison on Hit" }, } },
+ ["ChanceToPoisonEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "30% chance to Poison on Hit", statOrder = { 1385, 8002 }, level = 1, group = "LocalChanceToPoisonOnHitChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "30% chance to Poison on Hit" }, [736967255] = { "(26-30)% increased Chaos Damage" }, } },
+ ["ChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(18-24)% chance to Freeze", statOrder = { 2029 }, level = 15, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(18-24)% chance to Freeze" }, } },
+ ["ChanceToFreeze2"] = { type = "Suffix", affix = "of Bleakness", "(25-30)% chance to Freeze", statOrder = { 2029 }, level = 45, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(25-30)% chance to Freeze" }, } },
+ ["ChanceToFreeze3"] = { type = "Suffix", affix = "of the Hyperboreal", "(31-40)% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(31-40)% chance to Freeze" }, } },
+ ["TwoHandChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(25-32)% chance to Freeze", statOrder = { 2029 }, level = 15, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(25-32)% chance to Freeze" }, } },
+ ["TwoHandChanceToFreeze2"] = { type = "Suffix", affix = "of Bleakness", "(33-42)% chance to Freeze", statOrder = { 2029 }, level = 45, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(33-42)% chance to Freeze" }, } },
+ ["TwoHandChanceToFreeze3____"] = { type = "Suffix", affix = "of the Hyperboreal", "(43-55)% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(43-55)% chance to Freeze" }, } },
+ ["ChanceToShock1"] = { type = "Suffix", affix = "of Shocking", "(18-24)% chance to Shock", statOrder = { 2033 }, level = 15, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(18-24)% chance to Shock" }, } },
+ ["ChanceToShock2__"] = { type = "Suffix", affix = "of Zapping", "(25-30)% chance to Shock", statOrder = { 2033 }, level = 45, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(25-30)% chance to Shock" }, } },
+ ["ChanceToShock3"] = { type = "Suffix", affix = "of Electrocution", "(31-40)% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(31-40)% chance to Shock" }, } },
+ ["TwoHandChanceToShock1__"] = { type = "Suffix", affix = "of Shocking", "(25-32)% chance to Shock", statOrder = { 2033 }, level = 15, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(25-32)% chance to Shock" }, } },
+ ["TwoHandChanceToShock2_"] = { type = "Suffix", affix = "of Zapping", "(33-42)% chance to Shock", statOrder = { 2033 }, level = 45, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(33-42)% chance to Shock" }, } },
+ ["TwoHandChanceToShock3"] = { type = "Suffix", affix = "of Electrocution", "(43-55)% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(43-55)% chance to Shock" }, } },
+ ["BurnDamage1_"] = { type = "Suffix", affix = "of Burning", "(26-30)% increased Burning Damage", statOrder = { 1877 }, level = 20, group = "BurnDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(26-30)% increased Burning Damage" }, } },
+ ["BurnDamage2"] = { type = "Suffix", affix = "of Combusting", "(31-35)% increased Burning Damage", statOrder = { 1877 }, level = 40, group = "BurnDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(31-35)% increased Burning Damage" }, } },
+ ["BurnDamage3"] = { type = "Suffix", affix = "of Conflagrating", "(36-40)% increased Burning Damage", statOrder = { 1877 }, level = 60, group = "BurnDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(36-40)% increased Burning Damage" }, } },
+ ["TwoHandBurnDamage1"] = { type = "Suffix", affix = "of Burning", "(31-40)% increased Burning Damage", statOrder = { 1877 }, level = 20, group = "BurnDamage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(31-40)% increased Burning Damage" }, } },
+ ["TwoHandBurnDamage2"] = { type = "Suffix", affix = "of Combusting", "(41-50)% increased Burning Damage", statOrder = { 1877 }, level = 40, group = "BurnDamage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(41-50)% increased Burning Damage" }, } },
+ ["TwoHandBurnDamage3"] = { type = "Suffix", affix = "of Conflagrating", "(51-60)% increased Burning Damage", statOrder = { 1877 }, level = 60, group = "BurnDamage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1175385867] = { "(51-60)% increased Burning Damage" }, } },
+ ["PoisonDamage1"] = { type = "Suffix", affix = "of Poison", "(21-30)% increased Damage with Poison", "20% chance to Poison on Hit", statOrder = { 3181, 8002 }, level = 20, group = "PoisonDamageAndLocalChanceOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit" }, [1290399200] = { "(21-30)% increased Damage with Poison" }, } },
+ ["PoisonDamage2"] = { type = "Suffix", affix = "of Venom", "(31-40)% increased Damage with Poison", "25% chance to Poison on Hit", statOrder = { 3181, 8002 }, level = 40, group = "PoisonDamageAndLocalChanceOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "25% chance to Poison on Hit" }, [1290399200] = { "(31-40)% increased Damage with Poison" }, } },
+ ["PoisonDamage3"] = { type = "Suffix", affix = "of Virulence", "(41-50)% increased Damage with Poison", "30% chance to Poison on Hit", statOrder = { 3181, 8002 }, level = 60, group = "PoisonDamageAndLocalChanceOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "30% chance to Poison on Hit" }, [1290399200] = { "(41-50)% increased Damage with Poison" }, } },
+ ["PoisonDamageEnhancedAttacksMod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(31-35)% increased Damage with Poison", statOrder = { 1390, 3181 }, level = 1, group = "PoisonDamageAddedChaosToAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [2223678961] = { "Adds (23-36) to (49-61) Chaos Damage" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } },
+ ["PoisonDamageEnhancedSpellsMod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(31-35)% increased Damage with Poison", statOrder = { 1407, 3181 }, level = 1, group = "PoisonDamageAddedChaosToSpells", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "poison", "damage", "chaos", "caster", "ailment" }, tradeHashes = { [2300399854] = { "Adds (17-24) to (36-40) Chaos Damage to Spells" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } },
+ ["BleedDamage1_"] = { type = "Suffix", affix = "of Bloodletting", "Attacks have 20% chance to cause Bleeding", "(21-30)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 20, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 20% chance to cause Bleeding" }, [1294118672] = { "(21-30)% increased Damage with Bleeding" }, } },
+ ["BleedDamage2"] = { type = "Suffix", affix = "of Haemophilia", "Attacks have 25% chance to cause Bleeding", "(31-40)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 40, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, [1294118672] = { "(31-40)% increased Damage with Bleeding" }, } },
+ ["BleedDamage3"] = { type = "Suffix", affix = "of Exsanguination", "Attacks have 30% chance to cause Bleeding", "(41-50)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 60, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 30% chance to cause Bleeding" }, [1294118672] = { "(41-50)% increased Damage with Bleeding" }, } },
+ ["ReducedPhysicalDamageTaken1"] = { type = "Suffix", affix = "of Dampening", "2% additional Physical Damage Reduction", statOrder = { 2273 }, level = 25, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "2% additional Physical Damage Reduction" }, } },
+ ["ReducedPhysicalDamageTaken2_"] = { type = "Suffix", affix = "of Numbing", "(3-4)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 85, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-4)% additional Physical Damage Reduction" }, } },
+ ["ChanceToDodge1_"] = { type = "Suffix", affix = "of Haze", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 25, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(4-6)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToDodge2__"] = { type = "Suffix", affix = "of Fog", "+(7-9)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 85, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [492027537] = { "+(7-9)% chance to Suppress Spell Damage" }, } },
+ ["EnergyShieldRegenerationPerMinute1"] = { type = "Suffix", affix = "of Vibrance", "Regenerate 0.6% of Energy Shield per second", statOrder = { 2646 }, level = 25, group = "EnergyShieldRegenerationPerMinute", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 0.6% of Energy Shield per second" }, } },
+ ["EnergyShieldRegenerationPerMinute2"] = { type = "Suffix", affix = "of Exuberance", "Regenerate 1% of Energy Shield per second", statOrder = { 2646 }, level = 85, group = "EnergyShieldRegenerationPerMinute", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 1% of Energy Shield per second" }, } },
+ ["LifeRegenerationRate1"] = { type = "Suffix", affix = "of Esprit", "(9-11)% increased Life Regeneration rate", statOrder = { 1577 }, level = 46, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(9-11)% increased Life Regeneration rate" }, } },
+ ["LifeRegenerationRate2"] = { type = "Suffix", affix = "of Perpetuity", "(12-14)% increased Life Regeneration rate", statOrder = { 1577 }, level = 57, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(12-14)% increased Life Regeneration rate" }, } },
+ ["LifeRegenerationRate3"] = { type = "Suffix", affix = "of Vivification", "(15-17)% increased Life Regeneration rate", statOrder = { 1577 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(15-17)% increased Life Regeneration rate" }, } },
+ ["LifeRegenerationRate4"] = { type = "Suffix", affix = "of Youth", "(18-19)% increased Life Regeneration rate", statOrder = { 1577 }, level = 76, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(18-19)% increased Life Regeneration rate" }, } },
+ ["LifeRegenerationRate5"] = { type = "Suffix", affix = "of Everlasting", "(20-21)% increased Life Regeneration rate", statOrder = { 1577 }, level = 85, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(20-21)% increased Life Regeneration rate" }, } },
+ ["AdditionalPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Watchman", "4% additional Physical Damage Reduction", statOrder = { 2273 }, level = 45, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "4% additional Physical Damage Reduction" }, } },
+ ["AdditionalPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Sentry", "5% additional Physical Damage Reduction", statOrder = { 2273 }, level = 58, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "5% additional Physical Damage Reduction" }, } },
+ ["AdditionalPhysicalDamageReduction3"] = { type = "Suffix", affix = "of the Keeper", "6% additional Physical Damage Reduction", statOrder = { 2273 }, level = 67, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "6% additional Physical Damage Reduction" }, } },
+ ["AdditionalPhysicalDamageReduction4"] = { type = "Suffix", affix = "of the Protector", "7% additional Physical Damage Reduction", statOrder = { 2273 }, level = 77, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "7% additional Physical Damage Reduction" }, } },
+ ["AdditionalPhysicalDamageReduction5_"] = { type = "Suffix", affix = "of the Conservator", "8% additional Physical Damage Reduction", statOrder = { 2273 }, level = 86, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "8% additional Physical Damage Reduction" }, } },
+ ["ChanceToSuppressSpells1_"] = { type = "Suffix", affix = "of Rebuttal", "+(5-6)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 46, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(5-6)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToSuppressSpells2"] = { type = "Suffix", affix = "of Snuffing", "+(7-8)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 57, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(7-8)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToSuppressSpells3"] = { type = "Suffix", affix = "of Revoking", "+(9-10)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(9-10)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToSuppressSpells4"] = { type = "Suffix", affix = "of Abjuration", "+(11-12)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 76, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(11-12)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToSuppressSpells5__"] = { type = "Suffix", affix = "of Nullification", "+(13-14)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 85, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(13-14)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToSuppressSpellsHigh1__"] = { type = "Suffix", affix = "of Rebuttal", "+(8-10)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(8-10)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToSuppressSpellsHigh2__"] = { type = "Suffix", affix = "of Snuffing", "+(11-13)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 58, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(11-13)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToSuppressSpellsHigh3"] = { type = "Suffix", affix = "of Revoking", "+(14-16)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 67, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(14-16)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToSuppressSpellsHigh4_"] = { type = "Suffix", affix = "of Abjuration", "+(17-19)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 77, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(17-19)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToSuppressSpellsHigh5___"] = { type = "Suffix", affix = "of Nullification", "+(20-22)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 86, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, tradeHashes = { [3680664274] = { "+(20-22)% chance to Suppress Spell Damage" }, } },
+ ["EnergyShieldRechargeRate1"] = { type = "Suffix", affix = "of Allaying", "(24-26)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 46, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(24-26)% increased Energy Shield Recharge Rate" }, } },
+ ["EnergyShieldRechargeRate2"] = { type = "Suffix", affix = "of Diffusion", "(27-29)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 57, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(27-29)% increased Energy Shield Recharge Rate" }, } },
+ ["EnergyShieldRechargeRate3"] = { type = "Suffix", affix = "of Dispersal", "(30-32)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 68, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(30-32)% increased Energy Shield Recharge Rate" }, } },
+ ["EnergyShieldRechargeRate4"] = { type = "Suffix", affix = "of Buffering", "(33-35)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 76, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(33-35)% increased Energy Shield Recharge Rate" }, } },
+ ["EnergyShieldRechargeRate5______"] = { type = "Suffix", affix = "of Ardour", "(36-38)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 85, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(36-38)% increased Energy Shield Recharge Rate" }, } },
+ ["FasterStartEnergyShieldRecharge1"] = { type = "Suffix", affix = "of Enlivening", "(27-34)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 45, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(27-34)% faster start of Energy Shield Recharge" }, } },
+ ["FasterStartEnergyShieldRecharge2"] = { type = "Suffix", affix = "of Zest", "(35-42)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 58, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(35-42)% faster start of Energy Shield Recharge" }, } },
+ ["FasterStartEnergyShieldRecharge3__"] = { type = "Suffix", affix = "of Galvanising", "(43-50)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 67, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(43-50)% faster start of Energy Shield Recharge" }, } },
+ ["FasterStartEnergyShieldRecharge4"] = { type = "Suffix", affix = "of Vigour", "(51-58)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 77, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(51-58)% faster start of Energy Shield Recharge" }, } },
+ ["FasterStartEnergyShieldRecharge5_"] = { type = "Suffix", affix = "of Second Wind", "(59-66)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 86, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(59-66)% faster start of Energy Shield Recharge" }, } },
+ ["ReducedExtraDamageFromCrits1___"] = { type = "Suffix", affix = "of Dulling", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 33, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (21-30)% reduced Extra Damage from Critical Strikes" }, } },
+ ["ReducedExtraDamageFromCrits2__"] = { type = "Suffix", affix = "of Deadening", "You take (31-40)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (31-40)% reduced Extra Damage from Critical Strikes" }, } },
+ ["ReducedExtraDamageFromCrits3"] = { type = "Suffix", affix = "of Interference", "You take (41-50)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 67, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (41-50)% reduced Extra Damage from Critical Strikes" }, } },
+ ["ReducedExtraDamageFromCrits4__"] = { type = "Suffix", affix = "of Obstruction", "You take (51-60)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 78, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (51-60)% reduced Extra Damage from Critical Strikes" }, } },
+ ["DamageTakenGainedAsLife1___"] = { type = "Suffix", affix = "of Bandaging", "(4-6)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 44, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(4-6)% of Damage taken Recouped as Life" }, } },
+ ["DamageTakenGainedAsLife2"] = { type = "Suffix", affix = "of Stitching", "(7-9)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 56, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(7-9)% of Damage taken Recouped as Life" }, } },
+ ["DamageTakenGainedAsLife3"] = { type = "Suffix", affix = "of Suturing", "(10-12)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-12)% of Damage taken Recouped as Life" }, } },
+ ["DamageTakenGainedAsLife4_"] = { type = "Suffix", affix = "of Fleshbinding", "(13-15)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 79, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(13-15)% of Damage taken Recouped as Life" }, } },
+ ["GlobalSkillGemLevel1"] = { type = "Prefix", affix = "Exalter's", "+1 to Level of all Skill Gems", statOrder = { 4634 }, level = 75, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 50, 0 }, modTags = { "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skill Gems" }, } },
+ ["GlobalFireGemLevel1_"] = { type = "Prefix", affix = "Vulcanist's", "+1 to Level of all Fire Skill Gems", statOrder = { 6586 }, level = 75, group = "GlobalFireGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire", "gem" }, tradeHashes = { [599749213] = { "+1 to Level of all Fire Skill Gems" }, } },
+ ["GlobalColdGemLevel1__"] = { type = "Prefix", affix = "Rimedweller's", "+1 to Level of all Cold Skill Gems", statOrder = { 5836 }, level = 75, group = "GlobalColdGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1078455967] = { "+1 to Level of all Cold Skill Gems" }, } },
+ ["GlobalLightningGemLevel1"] = { type = "Prefix", affix = "Stormbrewer's", "+1 to Level of all Lightning Skill Gems", statOrder = { 7465 }, level = 75, group = "GlobalLightningGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning", "gem" }, tradeHashes = { [1147690586] = { "+1 to Level of all Lightning Skill Gems" }, } },
+ ["GlobalPhysicalGemLevel1_"] = { type = "Prefix", affix = "Behemoth's", "+1 to Level of all Physical Skill Gems", statOrder = { 9671 }, level = 75, group = "GlobalPhysicalGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "gem" }, tradeHashes = { [619213329] = { "+1 to Level of all Physical Skill Gems" }, } },
+ ["GlobalChaosGemLevel1"] = { type = "Prefix", affix = "Provocateur's", "+1 to Level of all Chaos Skill Gems", statOrder = { 5756 }, level = 75, group = "GlobalChaosGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [67169579] = { "+1 to Level of all Chaos Skill Gems" }, } },
+ ["MaximumFireResist1"] = { type = "Suffix", affix = "of the Bushfire", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 68, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } },
+ ["MaximumFireResist2_"] = { type = "Suffix", affix = "of the Molten Core", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } },
+ ["MaximumFireResist3"] = { type = "Suffix", affix = "of the Solar Storm", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 81, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } },
+ ["MaximumColdResist1"] = { type = "Suffix", affix = "of Furs", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 68, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } },
+ ["MaximumColdResist2"] = { type = "Suffix", affix = "of the Tundra", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } },
+ ["MaximumColdResist3"] = { type = "Suffix", affix = "of the Mammoth", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 81, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } },
+ ["MaximumLightningResist1"] = { type = "Suffix", affix = "of Impedance", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 68, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } },
+ ["MaximumLightningResist2___"] = { type = "Suffix", affix = "of Shockproofing", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } },
+ ["MaximumLightningResist3"] = { type = "Suffix", affix = "of the Lightning Rod", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 81, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } },
+ ["MaximumChaosResist1"] = { type = "Suffix", affix = "of Regularity", "+1% to maximum Chaos Resistance", statOrder = { 1640 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to maximum Chaos Resistance" }, } },
+ ["MaximumChaosResist2_"] = { type = "Suffix", affix = "of Concord", "+2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, } },
+ ["MaximumChaosResist3"] = { type = "Suffix", affix = "of Harmony", "+3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 81, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } },
+ ["MaximumAllResist1_"] = { type = "Suffix", affix = "of the Sempiternal", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } },
+ ["MaximumAllResist2"] = { type = "Suffix", affix = "of the Deathless", "+2% to all maximum Resistances", statOrder = { 1642 }, level = 81, group = "MaximumResistances", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } },
+ ["DamageWithBowSkills1"] = { type = "Prefix", affix = "Acute", "(5-10)% increased Damage with Bow Skills", statOrder = { 6020 }, level = 4, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(5-10)% increased Damage with Bow Skills" }, } },
+ ["DamageWithBowSkills2"] = { type = "Prefix", affix = "Trenchant", "(11-20)% increased Damage with Bow Skills", statOrder = { 6020 }, level = 15, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(11-20)% increased Damage with Bow Skills" }, } },
+ ["DamageWithBowSkills3"] = { type = "Prefix", affix = "Perforating", "(21-30)% increased Damage with Bow Skills", statOrder = { 6020 }, level = 30, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(21-30)% increased Damage with Bow Skills" }, } },
+ ["DamageWithBowSkills4_"] = { type = "Prefix", affix = "Incisive", "(31-36)% increased Damage with Bow Skills", statOrder = { 6020 }, level = 60, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(31-36)% increased Damage with Bow Skills" }, } },
+ ["DamageWithBowSkills5"] = { type = "Prefix", affix = "Lacerating", "(37-42)% increased Damage with Bow Skills", statOrder = { 6020 }, level = 81, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(37-42)% increased Damage with Bow Skills" }, } },
+ ["DamageWithBowSkills6_"] = { type = "Prefix", affix = "Impaling", "(43-50)% increased Damage with Bow Skills", statOrder = { 6020 }, level = 86, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(43-50)% increased Damage with Bow Skills" }, } },
+ ["DamageWithBowSkillsEssence3a"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Damage with Bow Skills", statOrder = { 6020 }, level = 26, group = "DamageWithBowSkills", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(21-25)% increased Damage with Bow Skills" }, } },
+ ["DamageWithBowSkillsEssence3b_"] = { type = "Prefix", affix = "Essences", "(26-30)% increased Damage with Bow Skills", statOrder = { 6020 }, level = 42, group = "DamageWithBowSkills", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(26-30)% increased Damage with Bow Skills" }, } },
+ ["IncreasedDurationBootsUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 15 More Duration", "(10-15)% increased Skill Effect Duration", statOrder = { 314, 1895 }, level = 68, group = "SkillEffectDurationSupported", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [407317553] = { "Socketed Gems are Supported by Level 15 More Duration" }, [3377888098] = { "(10-15)% increased Skill Effect Duration" }, } },
+ ["IncreasedCooldownRecoveryBootsUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 80, group = "GlobalCooldownRecovery", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } },
+ ["SupportedByFortifyUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fortify", statOrder = { 496 }, level = 68, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 20 Fortify" }, } },
+ ["ImmuneToChilledGroundUber1"] = { type = "Prefix", affix = "The Shaper's", "Unaffected by Chilled Ground", statOrder = { 10461 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3653191834] = { "Unaffected by Chilled Ground" }, } },
+ ["ImmuneToBurningGroundUber1"] = { type = "Prefix", affix = "The Shaper's", "Unaffected by Burning Ground", statOrder = { 10456 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "fire" }, tradeHashes = { [1643688236] = { "Unaffected by Burning Ground" }, } },
+ ["ImmuneToShockedGroundUber1"] = { type = "Prefix", affix = "The Elder's", "Unaffected by Shocked Ground", statOrder = { 10481 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2234049899] = { "Unaffected by Shocked Ground" }, } },
+ ["ImmuneToDesecratedGroundUber1_"] = { type = "Prefix", affix = "The Elder's", "Unaffected by Desecrated Ground", statOrder = { 10467 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "chaos" }, tradeHashes = { [4004298002] = { "Unaffected by Desecrated Ground" }, } },
+ ["ChanceToDodgeUber1"] = { type = "Suffix", affix = "of Shaping", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(4-7)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToDodgeUber2"] = { type = "Suffix", affix = "of Shaping", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 75, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(9-12)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToDodgeUber3"] = { type = "Suffix", affix = "of Shaping", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 84, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(13-15)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToDodgeSpellsUber1"] = { type = "Suffix", affix = "of the Elder", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(4-7)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToDodgeSpellsUber2"] = { type = "Suffix", affix = "of the Elder", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 75, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(9-12)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToDodgeSpellsUber3"] = { type = "Suffix", affix = "of the Elder", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 83, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(13-15)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToAvoidStunUber1"] = { type = "Suffix", affix = "of the Elder", "(15-22)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 68, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(15-22)% chance to Avoid being Stunned" }, } },
+ ["ChanceToAvoidStunUber2"] = { type = "Suffix", affix = "of the Elder", "(23-30)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(23-30)% chance to Avoid being Stunned" }, } },
+ ["ChanceToAvoidStunUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 82, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 1600, 1600, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(31-35)% chance to Avoid being Stunned" }, } },
+ ["ChanceToAvoidElementalAilmentsUber1_"] = { type = "Suffix", affix = "of Shaping", "(14-17)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 68, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(14-17)% chance to Avoid Elemental Ailments" }, } },
+ ["ChanceToAvoidElementalAilmentsUber2"] = { type = "Suffix", affix = "of Shaping", "(18-21)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(18-21)% chance to Avoid Elemental Ailments" }, } },
+ ["ChanceToAvoidElementalAilmentsUber3"] = { type = "Suffix", affix = "of Shaping", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 81, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 1600, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(31-35)% chance to Avoid Elemental Ailments" }, } },
+ ["ChanceToAvoidProjectilesUber1"] = { type = "Suffix", affix = "of Shaping", "(6-9)% chance to avoid Projectiles", statOrder = { 4993 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3452269808] = { "(6-9)% chance to avoid Projectiles" }, } },
+ ["ChanceToAvoidProjectilesUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% chance to avoid Projectiles", statOrder = { 4993 }, level = 84, group = "ChanceToAvoidProjectiles", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3452269808] = { "(10-12)% chance to avoid Projectiles" }, } },
+ ["ChanceToGainEnduranceChargeOnKillUber1"] = { type = "Prefix", affix = "The Elder's", "(4-6)% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "warstaff_elder", "boots_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1054322244] = { "(4-6)% chance to gain an Endurance Charge on Kill" }, } },
+ ["ChanceToGainEnduranceChargeOnKillUber2"] = { type = "Prefix", affix = "The Elder's", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 83, group = "EnduranceChargeOnKillChance", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "warstaff_elder", "boots_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1054322244] = { "(7-10)% chance to gain an Endurance Charge on Kill" }, } },
+ ["TotemDamageSpellUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Totem", "(20-25)% increased Totem Damage", statOrder = { 464, 1193 }, level = 68, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2962840349] = { "Socketed Gems are Supported by Level 18 Spell Totem" }, [3851254963] = { "(20-25)% increased Totem Damage" }, } },
+ ["TotemDamageSpellUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Totem", "(26-30)% increased Totem Damage", statOrder = { 464, 1193 }, level = 75, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2962840349] = { "Socketed Gems are Supported by Level 20 Spell Totem" }, [3851254963] = { "(26-30)% increased Totem Damage" }, } },
+ ["TotemDamageSpellUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 22 Spell Totem", "(31-35)% increased Totem Damage", statOrder = { 464, 1193 }, level = 80, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2962840349] = { "Socketed Gems are Supported by Level 22 Spell Totem" }, [3851254963] = { "(31-35)% increased Totem Damage" }, } },
+ ["TotemSpeedSpellUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Totem", "(8-12)% increased Totem Placement speed", statOrder = { 464, 2578 }, level = 68, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(8-12)% increased Totem Placement speed" }, [2962840349] = { "Socketed Gems are Supported by Level 18 Spell Totem" }, } },
+ ["TotemSpeedSpellUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Totem", "(13-16)% increased Totem Placement speed", statOrder = { 464, 2578 }, level = 75, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(13-16)% increased Totem Placement speed" }, [2962840349] = { "Socketed Gems are Supported by Level 20 Spell Totem" }, } },
+ ["TotemSpeedSpellUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 22 Spell Totem", "(17-20)% increased Totem Placement speed", statOrder = { 464, 2578 }, level = 80, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(17-20)% increased Totem Placement speed" }, [2962840349] = { "Socketed Gems are Supported by Level 22 Spell Totem" }, } },
+ ["TotemDamageAttackUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Ballista Totem", "(20-25)% increased Totem Damage", statOrder = { 362, 1193 }, level = 68, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3030692053] = { "Socketed Gems are Supported by Level 18 Ballista Totem" }, [3851254963] = { "(20-25)% increased Totem Damage" }, } },
+ ["TotemDamageAttackUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Ballista Totem", "(26-30)% increased Totem Damage", statOrder = { 362, 1193 }, level = 75, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3030692053] = { "Socketed Gems are Supported by Level 20 Ballista Totem" }, [3851254963] = { "(26-30)% increased Totem Damage" }, } },
+ ["TotemDamageAttackUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Ballista Totem", "(31-35)% increased Totem Damage", statOrder = { 362, 1193 }, level = 80, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3030692053] = { "Socketed Gems are Supported by Level 22 Ballista Totem" }, [3851254963] = { "(31-35)% increased Totem Damage" }, } },
+ ["TotemSpeedAttackUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Ballista Totem", "(8-12)% increased Totem Placement speed", statOrder = { 362, 2578 }, level = 68, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(8-12)% increased Totem Placement speed" }, [3030692053] = { "Socketed Gems are Supported by Level 18 Ballista Totem" }, } },
+ ["TotemSpeedAttackUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Ballista Totem", "(13-16)% increased Totem Placement speed", statOrder = { 362, 2578 }, level = 75, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(13-16)% increased Totem Placement speed" }, [3030692053] = { "Socketed Gems are Supported by Level 20 Ballista Totem" }, } },
+ ["TotemSpeedAttackUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Ballista Totem", "(17-20)% increased Totem Placement speed", statOrder = { 362, 2578 }, level = 80, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(17-20)% increased Totem Placement speed" }, [3030692053] = { "Socketed Gems are Supported by Level 22 Ballista Totem" }, } },
+ ["SupportedByLifeLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 483 }, level = 68, group = "SupportedByLifeLeech", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [891277550] = { "Socketed Gems are supported by Level 15 Life Leech" }, } },
+ ["GrantsDecoyTotemSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 20 Decoy Totem Skill", statOrder = { 700 }, level = 68, group = "DecoyTotemSkill", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [3566242751] = { "Grants Level 20 Decoy Totem Skill" }, } },
+ ["GlobalRaiseSpectreGemLevelUber1"] = { type = "Suffix", affix = "of the Elder", "+1 to Level of all Raise Spectre Gems", statOrder = { 1616 }, level = 75, group = "MinionGlobalSkillLevel", weightKey = { "boots_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "minion", "gem" }, tradeHashes = { [2739830820] = { "" }, [2120904498] = { "" }, [3235814433] = { "+1 to Level of all Raise Spectre Gems" }, } },
+ ["IncreasedAttackSpeedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Faster Attacks", "(7-9)% increased Attack Speed", statOrder = { 469, 1410 }, level = 68, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [681332047] = { "(7-9)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 16 Faster Attacks" }, } },
+ ["IncreasedAttackSpeedUber2_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Faster Attacks", "(10-12)% increased Attack Speed", statOrder = { 469, 1410 }, level = 75, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [681332047] = { "(10-12)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 18 Faster Attacks" }, } },
+ ["IncreasedAttackSpeedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Faster Attacks", "(13-14)% increased Attack Speed", statOrder = { 469, 1410 }, level = 82, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [681332047] = { "(13-14)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 20 Faster Attacks" }, } },
+ ["IncreasedCastSpeedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Faster Casting", "(7-9)% increased Cast Speed", statOrder = { 500, 1446 }, level = 68, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 16 Faster Casting" }, [2891184298] = { "(7-9)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Casting", "(10-12)% increased Cast Speed", statOrder = { 500, 1446 }, level = 75, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 18 Faster Casting" }, [2891184298] = { "(10-12)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Casting", "(13-14)% increased Cast Speed", statOrder = { 500, 1446 }, level = 84, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 20 Faster Casting" }, [2891184298] = { "(13-14)% increased Cast Speed" }, } },
+ ["IncreasedAttackAndCastSpeedUber1_"] = { type = "Suffix", affix = "of the Elder", "(7-9)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 68, group = "IncreasedAttackAndCastSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(7-9)% increased Attack and Cast Speed" }, } },
+ ["IncreasedAttackAndCastSpeedUber2"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 75, group = "IncreasedAttackAndCastSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(10-12)% increased Attack and Cast Speed" }, } },
+ ["IncreasedAttackAndCastSpeedUber3_"] = { type = "Suffix", affix = "of the Elder", "(13-14)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 85, group = "IncreasedAttackAndCastSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(13-14)% increased Attack and Cast Speed" }, } },
+ ["SupportedByManaLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 15 Mana Leech", statOrder = { 514 }, level = 68, group = "DisplaySupportedByManaLeech", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2608615082] = { "Socketed Gems are Supported by Level 15 Mana Leech" }, } },
+ ["ProjectileSpeedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 16 Faster Projectiles", "(15-20)% increased Projectile Speed", statOrder = { 482, 1796 }, level = 68, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 16 Faster Projectiles" }, [3759663284] = { "(15-20)% increased Projectile Speed" }, } },
+ ["ProjectileSpeedUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 18 Faster Projectiles", "(21-25)% increased Projectile Speed", statOrder = { 482, 1796 }, level = 75, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 18 Faster Projectiles" }, [3759663284] = { "(21-25)% increased Projectile Speed" }, } },
+ ["ProjectileSpeedUber3_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 20 Faster Projectiles", "(26-30)% increased Projectile Speed", statOrder = { 482, 1796 }, level = 82, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 20 Faster Projectiles" }, [3759663284] = { "(26-30)% increased Projectile Speed" }, } },
+ ["ProjectileDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Slower Projectiles", "(15-18)% increased Projectile Damage", statOrder = { 377, 1996 }, level = 68, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1390285657] = { "Socketed Gems are Supported by Level 16 Slower Projectiles" }, [1839076647] = { "(15-18)% increased Projectile Damage" }, } },
+ ["ProjectileDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Slower Projectiles", "(19-22)% increased Projectile Damage", statOrder = { 377, 1996 }, level = 75, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1390285657] = { "Socketed Gems are Supported by Level 18 Slower Projectiles" }, [1839076647] = { "(19-22)% increased Projectile Damage" }, } },
+ ["ProjectileDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Slower Projectiles", "(23-25)% increased Projectile Damage", statOrder = { 377, 1996 }, level = 83, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1390285657] = { "Socketed Gems are Supported by Level 20 Slower Projectiles" }, [1839076647] = { "(23-25)% increased Projectile Damage" }, } },
+ ["ChanceToAvoidInterruptionWhileCastingUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 68, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(15-20)% chance to Ignore Stuns while Casting" }, } },
+ ["ChanceToAvoidInterruptionWhileCastingUber2"] = { type = "Suffix", affix = "of Shaping", "(21-25)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 75, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(21-25)% chance to Ignore Stuns while Casting" }, } },
+ ["ChanceToAvoidInterruptionWhileCastingUber3"] = { type = "Suffix", affix = "of Shaping", "(26-30)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 80, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(26-30)% chance to Ignore Stuns while Casting" }, } },
+ ["IncreasedMeleeWeaponRangeUber1"] = { type = "Suffix", affix = "of the Elder", "+0.2 metres to Melee Strike Range", statOrder = { 2534 }, level = 85, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, } },
+ ["IncreasedMeleeWeaponRangeAndMeleeDamageUber1"] = { type = "Suffix", affix = "of the Elder", "(13-16)% increased Melee Damage", "+0.2 metres to Melee Strike Range", statOrder = { 1234, 2534 }, level = 80, group = "MeleeDamageAndMeleeRange", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, [1002362373] = { "(13-16)% increased Melee Damage" }, } },
+ ["AdditionalTrapsThrownSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 454, 9528 }, level = 68, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1220800126] = { "Skills which Throw Traps throw up to 1 additional Trap" }, [1122134690] = { "Socketed Gems are Supported by Level 18 Trap" }, } },
+ ["AdditionalTrapsThrownSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 454, 9528 }, level = 75, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1220800126] = { "Skills which Throw Traps throw up to 1 additional Trap" }, [1122134690] = { "Socketed Gems are Supported by Level 20 Trap" }, } },
+ ["AdditionalTrapsThrownSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 454, 9528 }, level = 84, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1220800126] = { "Skills which Throw Traps throw up to 1 additional Trap" }, [1122134690] = { "Socketed Gems are Supported by Level 22 Trap" }, } },
+ ["TrapDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap", "(20-25)% increased Trap Damage", statOrder = { 454, 1194 }, level = 68, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 18 Trap" }, [2941585404] = { "(20-25)% increased Trap Damage" }, } },
+ ["TrapDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap", "(26-30)% increased Trap Damage", statOrder = { 454, 1194 }, level = 75, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 20 Trap" }, [2941585404] = { "(26-30)% increased Trap Damage" }, } },
+ ["TrapDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Trap", "(31-35)% increased Trap Damage", statOrder = { 454, 1194 }, level = 80, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 22 Trap" }, [2941585404] = { "(31-35)% increased Trap Damage" }, } },
+ ["TrapDamageCooldownUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Advanced Traps", "(20-25)% increased Trap Damage", statOrder = { 390, 1194 }, level = 68, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3839163699] = { "Socketed Gems are Supported by Level 16 Advanced Traps" }, [2941585404] = { "(20-25)% increased Trap Damage" }, } },
+ ["TrapDamageCooldownUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Advanced Traps", "(26-30)% increased Trap Damage", statOrder = { 390, 1194 }, level = 75, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3839163699] = { "Socketed Gems are Supported by Level 18 Advanced Traps" }, [2941585404] = { "(26-30)% increased Trap Damage" }, } },
+ ["TrapDamageCooldownUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Advanced Traps", "(31-35)% increased Trap Damage", statOrder = { 390, 1194 }, level = 80, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3839163699] = { "Socketed Gems are Supported by Level 20 Advanced Traps" }, [2941585404] = { "(31-35)% increased Trap Damage" }, } },
+ ["TrapSpeedCooldownUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Advanced Traps", "(8-12)% increased Trap Throwing Speed", statOrder = { 390, 1927 }, level = 68, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [118398748] = { "(8-12)% increased Trap Throwing Speed" }, [3839163699] = { "Socketed Gems are Supported by Level 16 Advanced Traps" }, } },
+ ["TrapSpeedCooldownUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Advanced Traps", "(13-16)% increased Trap Throwing Speed", statOrder = { 390, 1927 }, level = 75, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [118398748] = { "(13-16)% increased Trap Throwing Speed" }, [3839163699] = { "Socketed Gems are Supported by Level 18 Advanced Traps" }, } },
+ ["TrapSpeedCooldownUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Advanced Traps", "(17-20)% increased Trap Throwing Speed", statOrder = { 390, 1927 }, level = 80, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [118398748] = { "(17-20)% increased Trap Throwing Speed" }, [3839163699] = { "Socketed Gems are Supported by Level 20 Advanced Traps" }, } },
+ ["TrapDamageMineUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", "(20-25)% increased Trap Damage", statOrder = { 457, 1194 }, level = 68, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3814066599] = { "Socketed Gems are Supported by Level 16 Trap And Mine Damage" }, [2941585404] = { "(20-25)% increased Trap Damage" }, } },
+ ["TrapDamageMineUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap And Mine Damage", "(26-30)% increased Trap Damage", statOrder = { 457, 1194 }, level = 75, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3814066599] = { "Socketed Gems are Supported by Level 18 Trap And Mine Damage" }, [2941585404] = { "(26-30)% increased Trap Damage" }, } },
+ ["TrapDamageMineUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", "(31-35)% increased Trap Damage", statOrder = { 457, 1194 }, level = 80, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3814066599] = { "Socketed Gems are Supported by Level 20 Trap And Mine Damage" }, [2941585404] = { "(31-35)% increased Trap Damage" }, } },
+ ["PoisonDamageSupportedUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance to Poison", "(20-25)% increased Damage with Poison", statOrder = { 523, 3181 }, level = 68, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 16 Chance to Poison" }, [1290399200] = { "(20-25)% increased Damage with Poison" }, } },
+ ["PoisonDamageSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance to Poison", "(26-30)% increased Damage with Poison", statOrder = { 523, 3181 }, level = 75, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 18 Chance to Poison" }, [1290399200] = { "(26-30)% increased Damage with Poison" }, } },
+ ["PoisonDamageSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance to Poison", "(31-35)% increased Damage with Poison", statOrder = { 523, 3181 }, level = 80, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 20 Chance to Poison" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } },
+ ["PoisonDurationSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance to Poison", "(8-12)% increased Poison Duration", statOrder = { 523, 3170 }, level = 68, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, tradeHashes = { [2011656677] = { "(8-12)% increased Poison Duration" }, [228165595] = { "Socketed Gems are Supported by Level 16 Chance to Poison" }, } },
+ ["PoisonDurationSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance to Poison", "(13-16)% increased Poison Duration", statOrder = { 523, 3170 }, level = 75, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, tradeHashes = { [2011656677] = { "(13-16)% increased Poison Duration" }, [228165595] = { "Socketed Gems are Supported by Level 18 Chance to Poison" }, } },
+ ["PoisonDurationSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance to Poison", "(17-20)% increased Poison Duration", statOrder = { 523, 3170 }, level = 80, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, tradeHashes = { [2011656677] = { "(17-20)% increased Poison Duration" }, [228165595] = { "Socketed Gems are Supported by Level 20 Chance to Poison" }, } },
+ ["BleedingDamageUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance To Bleed", "(20-25)% increased Damage with Bleeding", statOrder = { 244, 3169 }, level = 68, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, tradeHashes = { [4197676934] = { "Socketed Gems are Supported by Level 16 Chance To Bleed" }, [1294118672] = { "(20-25)% increased Damage with Bleeding" }, } },
+ ["BleedingDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance To Bleed", "(26-30)% increased Damage with Bleeding", statOrder = { 244, 3169 }, level = 75, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, tradeHashes = { [4197676934] = { "Socketed Gems are Supported by Level 18 Chance To Bleed" }, [1294118672] = { "(26-30)% increased Damage with Bleeding" }, } },
+ ["BleedingDamageUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance To Bleed", "(31-35)% increased Damage with Bleeding", statOrder = { 244, 3169 }, level = 80, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, tradeHashes = { [4197676934] = { "Socketed Gems are Supported by Level 20 Chance To Bleed" }, [1294118672] = { "(31-35)% increased Damage with Bleeding" }, } },
+ ["ChanceToGainFrenzyChargeOnKillUberElder1"] = { type = "Prefix", affix = "The Elder's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [1826802197] = { "(4-6)% chance to gain a Frenzy Charge on Kill" }, } },
+ ["ChanceToGainFrenzyChargeOnKillUberElder2_"] = { type = "Prefix", affix = "The Elder's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 84, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [1826802197] = { "(7-10)% chance to gain a Frenzy Charge on Kill" }, } },
+ ["ChanceToGainFrenzyChargeOnKillUberShaper1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "2h_axe_shaper", "2h_sword_shaper", "bow_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [1826802197] = { "(4-6)% chance to gain a Frenzy Charge on Kill" }, } },
+ ["ChanceToGainFrenzyChargeOnKillUberShaper2_"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 84, group = "FrenzyChargeOnKillChance", weightKey = { "2h_axe_shaper", "2h_sword_shaper", "bow_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [1826802197] = { "(7-10)% chance to gain a Frenzy Charge on Kill" }, } },
+ ["IncreasedAccuracySupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 16 Additional Accuracy", "(6-10)% increased Global Accuracy Rating", statOrder = { 480, 1434 }, level = 68, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, tradeHashes = { [1567462963] = { "Socketed Gems are supported by Level 16 Additional Accuracy" }, [624954515] = { "(6-10)% increased Global Accuracy Rating" }, } },
+ ["IncreasedAccuracySupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Additional Accuracy", "(11-15)% increased Global Accuracy Rating", statOrder = { 480, 1434 }, level = 75, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, tradeHashes = { [1567462963] = { "Socketed Gems are supported by Level 18 Additional Accuracy" }, [624954515] = { "(11-15)% increased Global Accuracy Rating" }, } },
+ ["IncreasedAccuracySupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Additional Accuracy", "(16-20)% increased Global Accuracy Rating", statOrder = { 480, 1434 }, level = 83, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, tradeHashes = { [1567462963] = { "Socketed Gems are supported by Level 20 Additional Accuracy" }, [624954515] = { "(16-20)% increased Global Accuracy Rating" }, } },
+ ["AdditionalBlockChanceUber1"] = { type = "Suffix", affix = "of the Elder", "(2-3)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 68, group = "BlockPercent", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2530372417] = { "(2-3)% Chance to Block Attack Damage" }, } },
+ ["AdditionalBlockChanceUber2"] = { type = "Suffix", affix = "of the Elder", "(4-5)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 80, group = "BlockPercent", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2530372417] = { "(4-5)% Chance to Block Attack Damage" }, } },
+ ["BlindOnHitSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 16 Blind", "(5-6)% Global chance to Blind Enemies on hit", statOrder = { 470, 2958 }, level = 68, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 16 Blind" }, [2221570601] = { "(5-6)% Global chance to Blind Enemies on hit" }, } },
+ ["BlindOnHitSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 18 Blind", "(7-8)% Global chance to Blind Enemies on hit", statOrder = { 470, 2958 }, level = 75, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 18 Blind" }, [2221570601] = { "(7-8)% Global chance to Blind Enemies on hit" }, } },
+ ["BlindOnHitSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 20 Blind", "(9-10)% Global chance to Blind Enemies on hit", statOrder = { 470, 2958 }, level = 80, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 20 Blind" }, [2221570601] = { "(9-10)% Global chance to Blind Enemies on hit" }, } },
+ ["SocketedSpellCriticalMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +30% to Critical Strike Multiplier", statOrder = { 567 }, level = 68, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, tradeHashes = { [2828710986] = { "Socketed Spells have +30% to Critical Strike Multiplier" }, } },
+ ["SocketedSpellCriticalMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +50% to Critical Strike Multiplier", statOrder = { 567 }, level = 75, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, tradeHashes = { [2828710986] = { "Socketed Spells have +50% to Critical Strike Multiplier" }, } },
+ ["SocketedSpellCriticalMultiplierUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +70% to Critical Strike Multiplier", statOrder = { 567 }, level = 83, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, tradeHashes = { [2828710986] = { "Socketed Spells have +70% to Critical Strike Multiplier" }, } },
+ ["SocketedAttackCriticalMultiplierUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +30% to Critical Strike Multiplier", statOrder = { 548 }, level = 68, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, tradeHashes = { [356456977] = { "Socketed Attacks have +30% to Critical Strike Multiplier" }, } },
+ ["SocketedAttackCriticalMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +50% to Critical Strike Multiplier", statOrder = { 548 }, level = 75, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, tradeHashes = { [356456977] = { "Socketed Attacks have +50% to Critical Strike Multiplier" }, } },
+ ["SocketedAttackCriticalMultiplierUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +70% to Critical Strike Multiplier", statOrder = { 548 }, level = 84, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, tradeHashes = { [356456977] = { "Socketed Attacks have +70% to Critical Strike Multiplier" }, } },
+ ["AreaDamageSupportedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Concentrated Effect", "(15-18)% increased Area Damage", statOrder = { 453, 2035 }, level = 68, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(15-18)% increased Area Damage" }, [2388360415] = { "Socketed Gems are Supported by Level 16 Concentrated Effect" }, } },
+ ["AreaDamageSupportedUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Concentrated Effect", "(19-22)% increased Area Damage", statOrder = { 453, 2035 }, level = 75, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(19-22)% increased Area Damage" }, [2388360415] = { "Socketed Gems are Supported by Level 18 Concentrated Effect" }, } },
+ ["AreaDamageSupportedUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Concentrated Effect", "(23-25)% increased Area Damage", statOrder = { 453, 2035 }, level = 82, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(23-25)% increased Area Damage" }, [2388360415] = { "Socketed Gems are Supported by Level 20 Concentrated Effect" }, } },
+ ["AreaOfEffectSupportedUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Increased Area of Effect", "(7-9)% increased Area of Effect", statOrder = { 224, 1880 }, level = 68, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 16 Increased Area of Effect" }, [280731498] = { "(7-9)% increased Area of Effect" }, } },
+ ["AreaOfEffectSupportedUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Increased Area of Effect", "(10-12)% increased Area of Effect", statOrder = { 224, 1880 }, level = 75, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 18 Increased Area of Effect" }, [280731498] = { "(10-12)% increased Area of Effect" }, } },
+ ["AreaOfEffectSupportedUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Increased Area of Effect", "(13-15)% increased Area of Effect", statOrder = { 224, 1880 }, level = 83, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 20 Increased Area of Effect" }, [280731498] = { "(13-15)% increased Area of Effect" }, } },
+ ["MaximumManaUber1"] = { type = "Prefix", affix = "The Elder's", "(9-11)% increased maximum Mana", statOrder = { 1580 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(9-11)% increased maximum Mana" }, } },
+ ["MaximumManaUber2_"] = { type = "Prefix", affix = "The Elder's", "(12-15)% increased maximum Mana", statOrder = { 1580 }, level = 75, group = "MaximumManaIncreasePercent", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(12-15)% increased maximum Mana" }, } },
+ ["MinionDamageSupportedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Minion Damage", "Minions deal (15-18)% increased Damage", statOrder = { 506, 1973 }, level = 68, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, tradeHashes = { [808939569] = { "Socketed Gems are Supported by Level 16 Minion Damage" }, [1589917703] = { "Minions deal (15-18)% increased Damage" }, } },
+ ["MinionDamageSupportedUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Minion Damage", "Minions deal (19-22)% increased Damage", statOrder = { 506, 1973 }, level = 75, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, tradeHashes = { [808939569] = { "Socketed Gems are Supported by Level 18 Minion Damage" }, [1589917703] = { "Minions deal (19-22)% increased Damage" }, } },
+ ["MinionDamageSupportedUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Minion Damage", "Minions deal (23-25)% increased Damage", statOrder = { 506, 1973 }, level = 83, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, tradeHashes = { [808939569] = { "Socketed Gems are Supported by Level 20 Minion Damage" }, [1589917703] = { "Minions deal (23-25)% increased Damage" }, } },
+ ["MinionLifeSupportedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Minion Life", "Minions have (15-18)% increased maximum Life", statOrder = { 504, 1766 }, level = 68, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 16 Minion Life" }, [770672621] = { "Minions have (15-18)% increased maximum Life" }, } },
+ ["MinionLifeSupportedUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Minion Life", "Minions have (19-22)% increased maximum Life", statOrder = { 504, 1766 }, level = 75, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 18 Minion Life" }, [770672621] = { "Minions have (19-22)% increased maximum Life" }, } },
+ ["MinionLifeSupportedUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Minion Life", "Minions have (23-25)% increased maximum Life", statOrder = { 504, 1766 }, level = 80, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 20 Minion Life" }, [770672621] = { "Minions have (23-25)% increased maximum Life" }, } },
+ ["AdditionalMinesPlacedSupportedUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Blastchain Mine", "Throw an additional Mine", statOrder = { 497, 3549 }, level = 68, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1710508327] = { "Socketed Gems are Supported by Level 18 Blastchain Mine" }, [2395088636] = { "Throw an additional Mine" }, } },
+ ["AdditionalMinesPlacedSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Blastchain Mine", "Throw an additional Mine", statOrder = { 497, 3549 }, level = 75, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1710508327] = { "Socketed Gems are Supported by Level 20 Blastchain Mine" }, [2395088636] = { "Throw an additional Mine" }, } },
+ ["AdditionalMinesPlacedSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Blastchain Mine", "Throw an additional Mine", statOrder = { 497, 3549 }, level = 85, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1710508327] = { "Socketed Gems are Supported by Level 22 Blastchain Mine" }, [2395088636] = { "Throw an additional Mine" }, } },
+ ["MineDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Blastchain Mine", "(20-25)% increased Mine Damage", statOrder = { 497, 1196 }, level = 68, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(20-25)% increased Mine Damage" }, [1710508327] = { "Socketed Gems are Supported by Level 18 Blastchain Mine" }, } },
+ ["MineDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Blastchain Mine", "(26-30)% increased Mine Damage", statOrder = { 497, 1196 }, level = 75, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(26-30)% increased Mine Damage" }, [1710508327] = { "Socketed Gems are Supported by Level 20 Blastchain Mine" }, } },
+ ["MineDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Blastchain Mine", "(31-35)% increased Mine Damage", statOrder = { 497, 1196 }, level = 80, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(31-35)% increased Mine Damage" }, [1710508327] = { "Socketed Gems are Supported by Level 22 Blastchain Mine" }, } },
+ ["MineDamageTrapUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", "(20-25)% increased Mine Damage", statOrder = { 457, 1196 }, level = 68, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(20-25)% increased Mine Damage" }, [3814066599] = { "Socketed Gems are Supported by Level 16 Trap And Mine Damage" }, } },
+ ["MineDamageTrapUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap And Mine Damage", "(26-30)% increased Mine Damage", statOrder = { 457, 1196 }, level = 75, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(26-30)% increased Mine Damage" }, [3814066599] = { "Socketed Gems are Supported by Level 18 Trap And Mine Damage" }, } },
+ ["MineDamageTrapUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", "(31-35)% increased Mine Damage", statOrder = { 457, 1196 }, level = 80, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(31-35)% increased Mine Damage" }, [3814066599] = { "Socketed Gems are Supported by Level 20 Trap And Mine Damage" }, } },
+ ["IncreasedChillEffectSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Hypothermia", "(8-12)% increased Effect of Cold Ailments", statOrder = { 511, 5798 }, level = 68, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, tradeHashes = { [1793818220] = { "(8-12)% increased Effect of Cold Ailments" }, [13669281] = { "Socketed Gems are Supported by Level 16 Hypothermia" }, } },
+ ["IncreasedChillEffectSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Hypothermia", "(13-16)% increased Effect of Cold Ailments", statOrder = { 511, 5798 }, level = 75, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, tradeHashes = { [1793818220] = { "(13-16)% increased Effect of Cold Ailments" }, [13669281] = { "Socketed Gems are Supported by Level 18 Hypothermia" }, } },
+ ["IncreasedChillEffectSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Hypothermia", "(17-20)% increased Effect of Cold Ailments", statOrder = { 511, 5798 }, level = 80, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, tradeHashes = { [1793818220] = { "(17-20)% increased Effect of Cold Ailments" }, [13669281] = { "Socketed Gems are Supported by Level 20 Hypothermia" }, } },
+ ["IncreasedShockEffectSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Innervate", "(8-12)% increased Effect of Lightning Ailments", statOrder = { 521, 7433 }, level = 68, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, tradeHashes = { [3081816887] = { "(8-12)% increased Effect of Lightning Ailments" }, [1106668565] = { "Socketed Gems are Supported by Level 16 Innervate" }, } },
+ ["IncreasedShockEffectSupportedUber2___"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Innervate", "(13-16)% increased Effect of Lightning Ailments", statOrder = { 521, 7433 }, level = 75, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, tradeHashes = { [3081816887] = { "(13-16)% increased Effect of Lightning Ailments" }, [1106668565] = { "Socketed Gems are Supported by Level 18 Innervate" }, } },
+ ["IncreasedShockEffectSupportedUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Innervate", "(17-20)% increased Effect of Lightning Ailments", statOrder = { 521, 7433 }, level = 80, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, tradeHashes = { [3081816887] = { "(17-20)% increased Effect of Lightning Ailments" }, [1106668565] = { "Socketed Gems are Supported by Level 20 Innervate" }, } },
+ ["IgniteDurationSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Immolate", "(8-12)% increased Ignite Duration on Enemies", statOrder = { 309, 1859 }, level = 68, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, tradeHashes = { [1086147743] = { "(8-12)% increased Ignite Duration on Enemies" }, [2420410470] = { "Socketed Gems are Supported by Level 16 Immolate" }, } },
+ ["IgniteDurationSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Immolate", "(13-16)% increased Ignite Duration on Enemies", statOrder = { 309, 1859 }, level = 75, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, tradeHashes = { [1086147743] = { "(13-16)% increased Ignite Duration on Enemies" }, [2420410470] = { "Socketed Gems are Supported by Level 18 Immolate" }, } },
+ ["IgniteDurationSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Immolate", "(17-20)% increased Ignite Duration on Enemies", statOrder = { 309, 1859 }, level = 80, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, tradeHashes = { [1086147743] = { "(17-20)% increased Ignite Duration on Enemies" }, [2420410470] = { "Socketed Gems are Supported by Level 20 Immolate" }, } },
+ ["IncreasedBurningDamageSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Burning Damage", "(20-25)% increased Burning Damage", statOrder = { 312, 1877 }, level = 68, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1175385867] = { "(20-25)% increased Burning Damage" }, [2680613507] = { "Socketed Gems are Supported by Level 16 Burning Damage" }, } },
+ ["IncreasedBurningDamageSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Burning Damage", "(26-30)% increased Burning Damage", statOrder = { 312, 1877 }, level = 75, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1175385867] = { "(26-30)% increased Burning Damage" }, [2680613507] = { "Socketed Gems are Supported by Level 18 Burning Damage" }, } },
+ ["IncreasedBurningDamageSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Burning Damage", "(31-35)% increased Burning Damage", statOrder = { 312, 1877 }, level = 82, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1175385867] = { "(31-35)% increased Burning Damage" }, [2680613507] = { "Socketed Gems are Supported by Level 20 Burning Damage" }, } },
+ ["ChanceToGainPowerChargeOnKillUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(4-6)% chance to gain a Power Charge on Kill" }, } },
+ ["ChanceToGainPowerChargeOnKillUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 84, group = "PowerChargeOnKillChance", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(7-10)% chance to gain a Power Charge on Kill" }, } },
+ ["SupportedByLessDurationUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Less Duration", statOrder = { 365 }, level = 68, group = "SupportedByLessDuration", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2487643588] = { "Socketed Gems are Supported by Level 20 Less Duration" }, } },
+ ["SpellAddedFireDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrder = { 1404 }, level = 68, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (17-22) to (33-39) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (21-28) to (42-49) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrder = { 1404 }, level = 82, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (25-34) to (51-59) Fire Damage to Spells" }, } },
+ ["SpellAddedColdDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrder = { 1405 }, level = 68, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (14-18) to (27-32) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (17-23) to (34-40) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrder = { 1405 }, level = 83, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (21-28) to (41-48) Cold Damage to Spells" }, } },
+ ["SpellAddedLightningDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrder = { 1406 }, level = 68, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (58-61) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (73-77) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrder = { 1406 }, level = 84, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-7) to (88-93) Lightning Damage to Spells" }, } },
+ ["SpellAddedPhysicalDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (17-22) to (33-39) Physical Damage to Spells", statOrder = { 1403 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (17-22) to (33-39) Physical Damage to Spells" }, } },
+ ["SpellAddedPhysicalDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (21-28) to (42-49) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (21-28) to (42-49) Physical Damage to Spells" }, } },
+ ["SpellAddedPhysicalDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (25-34) to (51-59) Physical Damage to Spells", statOrder = { 1403 }, level = 85, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (25-34) to (51-59) Physical Damage to Spells" }, } },
+ ["SpellAddedChaosDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (14-18) to (27-32) Chaos Damage to Spells", statOrder = { 1407 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (14-18) to (27-32) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (17-23) to (34-40) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (17-23) to (34-40) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (21-28) to (41-48) Chaos Damage to Spells", statOrder = { 1407 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (21-28) to (41-48) Chaos Damage to Spells" }, } },
+ ["ManaRegenerationUber1"] = { type = "Suffix", affix = "of Shaping", "(41-55)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [789117908] = { "(41-55)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationUber2"] = { type = "Suffix", affix = "of Shaping", "(56-70)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [789117908] = { "(56-70)% increased Mana Regeneration Rate" }, } },
+ ["AddedManaRegenerationUber1"] = { type = "Suffix", affix = "of Shaping", "Regenerate (3-5) Mana per second", statOrder = { 1582 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (3-5) Mana per second" }, } },
+ ["AddedManaRegenerationUber2"] = { type = "Suffix", affix = "of Shaping", "Regenerate (6-8) Mana per second", statOrder = { 1582 }, level = 80, group = "AddedManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (6-8) Mana per second" }, } },
+ ["AdditionalSpellBlockChanceUber1"] = { type = "Suffix", affix = "of the Elder", "(3-4)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 68, group = "SpellBlockPercentage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(3-4)% Chance to Block Spell Damage" }, } },
+ ["AdditionalSpellBlockChanceUber2"] = { type = "Suffix", affix = "of the Elder", "(5-6)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 80, group = "SpellBlockPercentage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(5-6)% Chance to Block Spell Damage" }, } },
+ ["SocketedSpellCriticalStrikeChanceUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +1% to Critical Strike Chance", statOrder = { 566 }, level = 68, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, tradeHashes = { [135378852] = { "Socketed Spells have +1% to Critical Strike Chance" }, } },
+ ["SocketedSpellCriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +2% to Critical Strike Chance", statOrder = { 566 }, level = 75, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, tradeHashes = { [135378852] = { "Socketed Spells have +2% to Critical Strike Chance" }, } },
+ ["SocketedSpellCriticalStrikeChanceUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +3% to Critical Strike Chance", statOrder = { 566 }, level = 84, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, tradeHashes = { [135378852] = { "Socketed Spells have +3% to Critical Strike Chance" }, } },
+ ["SocketedAttackCriticalStrikeChanceUber1__"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +1% to Critical Strike Chance", statOrder = { 547 }, level = 68, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, tradeHashes = { [2867348718] = { "Socketed Attacks have +1% to Critical Strike Chance" }, } },
+ ["SocketedAttackCriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +2% to Critical Strike Chance", statOrder = { 547 }, level = 75, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, tradeHashes = { [2867348718] = { "Socketed Attacks have +2% to Critical Strike Chance" }, } },
+ ["SocketedAttackCriticalStrikeChanceUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +3% to Critical Strike Chance", statOrder = { 547 }, level = 83, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, tradeHashes = { [2867348718] = { "Socketed Attacks have +3% to Critical Strike Chance" }, } },
+ ["EnemyPhysicalDamageTakenAuraUber1_"] = { type = "Suffix", affix = "of the Elder", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 7918 }, level = 85, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [3853018505] = { "9% increased Physical Damage taken" }, [415837237] = { "Nearby Enemies take 9% increased Physical Damage" }, } },
+ ["EnemyElementalDamageTakenAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Nearby Enemies take 6% increased Elemental Damage", statOrder = { 7913 }, level = 85, group = "NearbyEnemyElementalDamageTaken", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [639595152] = { "Nearby Enemies take 6% increased Elemental Damage" }, [2734809852] = { "6% increased Elemental Damage taken" }, } },
+ ["LocalIncreaseSocketedActiveGemLevelUber1"] = { type = "Prefix", affix = "The Shaper's", "+1 to Level of Socketed Skill Gems", statOrder = { 190 }, level = 80, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, } },
+ ["LocalIncreaseSocketedSupportGemLevelUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to Level of Socketed Support Gems", statOrder = { 189 }, level = 80, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [4154259475] = { "+1 to Level of Socketed Support Gems" }, } },
+ ["PhysicalDamageTakenAsFirePercentUber1"] = { type = "Prefix", affix = "The Elder's", "(8-12)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 68, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(8-12)% of Physical Damage from Hits taken as Fire Damage" }, } },
+ ["PhysicalDamageTakenAsFirePercentUber2"] = { type = "Prefix", affix = "The Elder's", "(13-15)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 84, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(13-15)% of Physical Damage from Hits taken as Fire Damage" }, } },
+ ["PhysicalDamageTakenAsColdPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "(8-12)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 68, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(8-12)% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsColdPercentUber2"] = { type = "Prefix", affix = "The Shaper's", "(13-15)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 83, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(13-15)% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsLightningPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "(8-12)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 68, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(8-12)% of Physical Damage from Hits taken as Lightning Damage" }, } },
+ ["PhysicalDamageTakenAsLightningPercentUber2___"] = { type = "Prefix", affix = "The Shaper's", "(13-15)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 82, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(13-15)% of Physical Damage from Hits taken as Lightning Damage" }, } },
+ ["ReducedElementalReflectTakenUber1"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 6334 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take 100% reduced Reflected Elemental Damage" }, } },
+ ["ReducedElementalReflectTakenUber2"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 6334 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take 100% reduced Reflected Elemental Damage" }, } },
["ElementalDamageCannotBeReflectedPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "100% of Elemental Hit Damage from you and your Minions cannot be Reflected", statOrder = { 2 }, level = 68, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3408683611] = { "100% of Elemental Hit Damage from you and your Minions cannot be Reflected" }, } },
- ["ReducedPhysicalReflectTakenUber1"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 9669 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [129035625] = { "You and your Minions take 100% reduced Reflected Physical Damage" }, } },
- ["ReducedPhysicalReflectTakenUber2"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 9669 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [129035625] = { "You and your Minions take 100% reduced Reflected Physical Damage" }, } },
+ ["ReducedPhysicalReflectTakenUber1"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 9670 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [129035625] = { "You and your Minions take 100% reduced Reflected Physical Damage" }, } },
+ ["ReducedPhysicalReflectTakenUber2"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 9670 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [129035625] = { "You and your Minions take 100% reduced Reflected Physical Damage" }, } },
["PhysicalDamageCannotBeReflectedPercentUber1"] = { type = "Prefix", affix = "The Elder's", "100% of Physical Hit Damage from you and your Minions cannot be Reflected", statOrder = { 3 }, level = 68, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1818622832] = { "100% of Physical Hit Damage from you and your Minions cannot be Reflected" }, } },
- ["MaximumLifeUber1"] = { type = "Prefix", affix = "The Elder's", "(5-8)% increased maximum Life", statOrder = { 1576 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(5-8)% increased maximum Life" }, } },
- ["MaximumLifeUber2"] = { type = "Prefix", affix = "The Elder's", "(9-12)% increased maximum Life", statOrder = { 1576 }, level = 85, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(9-12)% increased maximum Life" }, } },
- ["MaximumManaBodyUber1"] = { type = "Prefix", affix = "The Shaper's", "(9-11)% increased maximum Mana", statOrder = { 1585 }, level = 68, group = "MaximumManaIncreaseShaper", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(9-11)% increased maximum Mana" }, } },
- ["MaximumManaBodyUber2"] = { type = "Prefix", affix = "The Shaper's", "(12-15)% increased maximum Mana", statOrder = { 1585 }, level = 75, group = "MaximumManaIncreaseShaper", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(12-15)% increased maximum Mana" }, } },
- ["DamageTakenFromManaBeforeLifeUber1_"] = { type = "Prefix", affix = "The Shaper's", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 80, group = "DamageRemovedFromManaBeforeLife", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(5-10)% of Damage is taken from Mana before Life" }, } },
- ["MaximumLifeOnKillPercentUber1"] = { type = "Suffix", affix = "of the Elder", "Recover (3-4)% of Life on Kill", statOrder = { 1754 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2023107756] = { "Recover (3-4)% of Life on Kill" }, } },
- ["MaximumLifeOnKillPercentUber2__"] = { type = "Suffix", affix = "of the Elder", "Recover (5-6)% of Life on Kill", statOrder = { 1754 }, level = 75, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2023107756] = { "Recover (5-6)% of Life on Kill" }, } },
- ["MaximumManaOnKillPercentUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-4)% of Mana on Kill", statOrder = { 1756 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1030153674] = { "Recover (3-4)% of Mana on Kill" }, } },
- ["MaximumManaOnKillPercentUber2"] = { type = "Suffix", affix = "of Shaping", "Recover (5-6)% of Mana on Kill", statOrder = { 1756 }, level = 75, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1030153674] = { "Recover (5-6)% of Mana on Kill" }, } },
- ["MaximumEnergyShieldOnKillPercentUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-4)% of Energy Shield on Kill", statOrder = { 1755 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (3-4)% of Energy Shield on Kill" }, } },
- ["MaximumEnergyShieldOnKillPercentUber2"] = { type = "Suffix", affix = "of Shaping", "Recover (5-6)% of Energy Shield on Kill", statOrder = { 1755 }, level = 75, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (5-6)% of Energy Shield on Kill" }, } },
- ["PercentageStrengthUber1_"] = { type = "Suffix", affix = "of the Elder", "(5-8)% increased Strength", statOrder = { 1189 }, level = 68, group = "PercentageStrength", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [734614379] = { "(5-8)% increased Strength" }, } },
- ["PercentageStrengthUber2__"] = { type = "Suffix", affix = "of the Elder", "(9-12)% increased Strength", statOrder = { 1189 }, level = 83, group = "PercentageStrength", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [734614379] = { "(9-12)% increased Strength" }, } },
- ["PercentageDexterityUber1"] = { type = "Suffix", affix = "of the Elder", "(5-8)% increased Dexterity", statOrder = { 1190 }, level = 68, group = "PercentageDexterity", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [4139681126] = { "(5-8)% increased Dexterity" }, } },
- ["PercentageDexterityUber2"] = { type = "Suffix", affix = "of the Elder", "(9-12)% increased Dexterity", statOrder = { 1190 }, level = 83, group = "PercentageDexterity", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [4139681126] = { "(9-12)% increased Dexterity" }, } },
- ["PercentageIntelligenceUber1"] = { type = "Suffix", affix = "of Shaping", "(5-8)% increased Intelligence", statOrder = { 1191 }, level = 68, group = "PercentageIntelligence", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [656461285] = { "(5-8)% increased Intelligence" }, } },
- ["PercentageIntelligenceUber2"] = { type = "Suffix", affix = "of Shaping", "(9-12)% increased Intelligence", statOrder = { 1191 }, level = 83, group = "PercentageIntelligence", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [656461285] = { "(9-12)% increased Intelligence" }, } },
- ["LifeRegenerationRatePercentUber1"] = { type = "Suffix", affix = "of the Elder", "Regenerate (1-1.5)% of Life per second", statOrder = { 1949 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-1.5)% of Life per second" }, } },
- ["LifeRegenerationRatePercentUber2"] = { type = "Suffix", affix = "of the Elder", "Regenerate (1.6-2)% of Life per second", statOrder = { 1949 }, level = 75, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.6-2)% of Life per second" }, } },
- ["SupportedByItemRarityUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 10 Item Rarity", "(8-12)% increased Rarity of Items found from Slain Unique Enemies", statOrder = { 326, 10503 }, level = 68, group = "SupportedByItemRarityUnique", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem", "drop" }, tradeHashes = { [121185030] = { "(8-12)% increased Rarity of Items found from Slain Unique Enemies" }, [3587013273] = { "Socketed Gems are Supported by Level 10 Item Rarity" }, } },
- ["SupportedByItemRarityUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 15 Item Rarity", "(13-18)% increased Rarity of Items found from Slain Unique Enemies", statOrder = { 326, 10503 }, level = 85, group = "SupportedByItemRarityUnique", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem", "drop" }, tradeHashes = { [121185030] = { "(13-18)% increased Rarity of Items found from Slain Unique Enemies" }, [3587013273] = { "Socketed Gems are Supported by Level 15 Item Rarity" }, } },
- ["AdditionalCriticalStrikeChanceWithAttacksUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have +(0.5-1)% to Critical Strike Chance", statOrder = { 4797 }, level = 68, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(0.5-1)% to Critical Strike Chance" }, } },
- ["AdditionalCriticalStrikeChanceWithAttacksUber2"] = { type = "Suffix", affix = "of the Elder", "Attacks have +(1.1-1.5)% to Critical Strike Chance", statOrder = { 4797 }, level = 84, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(1.1-1.5)% to Critical Strike Chance" }, } },
- ["AdditionalCriticalStrikeChanceWithSpellsUber1_"] = { type = "Suffix", affix = "of Shaping", "+(0.5-1)% to Spell Critical Strike Chance", statOrder = { 10124 }, level = 68, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "caster", "critical" }, tradeHashes = { [791835907] = { "+(0.5-1)% to Spell Critical Strike Chance" }, } },
- ["AdditionalCriticalStrikeChanceWithSpellsUber2_"] = { type = "Suffix", affix = "of Shaping", "+(1.1-1.5)% to Spell Critical Strike Chance", statOrder = { 10124 }, level = 84, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "caster", "critical" }, tradeHashes = { [791835907] = { "+(1.1-1.5)% to Spell Critical Strike Chance" }, } },
- ["GrantsWrathAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Wrath Skill", statOrder = { 653 }, level = 68, group = "WrathSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [2265307453] = { "Grants Level 22 Wrath Skill" }, } },
- ["GrantsAngerAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Anger Skill", statOrder = { 655 }, level = 68, group = "AngerSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [484879947] = { "Grants Level 22 Anger Skill" }, } },
- ["GrantsHatredAuraUber1__"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Hatred Skill", statOrder = { 654 }, level = 68, group = "HatredSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [2429546158] = { "Grants Level 22 Hatred Skill" }, } },
- ["GrantsEnvyAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 15 Envy Skill", statOrder = { 660 }, level = 85, group = "GrantsEnvy", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [52953650] = { "Grants Level 15 Envy Skill" }, } },
- ["GrantsDeterminationAuraUber1_"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Determination Skill", statOrder = { 656 }, level = 68, group = "DeterminationSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [4265392510] = { "Grants Level 22 Determination Skill" }, } },
- ["GrantsGraceAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Grace Skill", statOrder = { 657 }, level = 68, group = "GraceSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [2867050084] = { "Grants Level 22 Grace Skill" }, } },
- ["GrantsDisciplineAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Discipline Skill", statOrder = { 659 }, level = 68, group = "DisciplineSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [2341269061] = { "Grants Level 22 Discipline Skill" }, } },
- ["GrantsHasteAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Haste Skill", statOrder = { 644 }, level = 68, group = "HasteSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [1188846263] = { "Grants Level 22 Haste Skill" }, } },
- ["GrantsVitalityAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Vitality Skill", statOrder = { 648 }, level = 68, group = "VitalitySkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [2410613176] = { "Grants Level 22 Vitality Skill" }, } },
- ["GrantsClarityAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Clarity Skill", statOrder = { 646 }, level = 68, group = "ClaritySkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [3511815065] = { "Grants Level 22 Clarity Skill" }, } },
- ["ReducedAttributeRequirementsUber1"] = { type = "Suffix", affix = "of Shaping", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrder = { 2557 }, level = 68, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [752930724] = { "Items and Gems have (5-10)% reduced Attribute Requirements" }, } },
- ["ReducedAttributeRequirementsUber2"] = { type = "Suffix", affix = "of Shaping", "Items and Gems have (11-15)% reduced Attribute Requirements", statOrder = { 2557 }, level = 75, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [752930724] = { "Items and Gems have (11-15)% reduced Attribute Requirements" }, } },
- ["FireDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Elder's", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(0.3-0.5)% of Fire Damage Leeched as Life" }, } },
- ["ColdDamageLifeLeechUber1_"] = { type = "Prefix", affix = "The Shaper's", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1680 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "(0.3-0.5)% of Cold Damage Leeched as Life" }, } },
- ["LightningDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1684 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "(0.3-0.5)% of Lightning Damage Leeched as Life" }, } },
- ["PhysicalDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Elder's", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1671 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "physical" }, tradeHashes = { [3764265320] = { "(0.3-0.5)% of Physical Damage Leeched as Life" }, } },
- ["FireDamageLifeLeechSuffixUber1"] = { type = "Suffix", affix = "of the Elder", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(0.3-0.5)% of Fire Damage Leeched as Life" }, } },
- ["ColdDamageLifeLeechSuffixUber1_"] = { type = "Suffix", affix = "of Shaping", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1680 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "(0.3-0.5)% of Cold Damage Leeched as Life" }, } },
- ["LightningDamageLifeLeechSuffixUber1"] = { type = "Suffix", affix = "of Shaping", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1684 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "(0.3-0.5)% of Lightning Damage Leeched as Life" }, } },
- ["PhysicalDamageLifeLeechSuffixUber1"] = { type = "Suffix", affix = "of the Elder", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1671 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "physical" }, tradeHashes = { [3764265320] = { "(0.3-0.5)% of Physical Damage Leeched as Life" }, } },
- ["MovementVelocityAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% increased Movement Speed", statOrder = { 1803 }, level = 68, group = "MovementVelocity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(4-6)% increased Movement Speed" }, } },
- ["MovementVelocityAmuletUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-8)% increased Movement Speed", statOrder = { 1803 }, level = 84, group = "MovementVelocity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(7-8)% increased Movement Speed" }, } },
- ["BlockAppliesToSpellsUber1"] = { type = "Suffix", affix = "of Shaping", "(7-10)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 68, group = "BlockingBlocksSpells", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2881111359] = { "(7-10)% Chance to Block Spell Damage" }, } },
- ["BlockAppliesToSpellsUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "BlockingBlocksSpells", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2881111359] = { "(10-12)% Chance to Block Spell Damage" }, } },
- ["SpellBlockAmuletUber1_"] = { type = "Suffix", affix = "of Shaping", "(4-5)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 68, group = "SpellBlockPercentage", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(4-5)% Chance to Block Spell Damage" }, } },
- ["SpellBlockAmuletUber2_"] = { type = "Suffix", affix = "of Shaping", "(6-7)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentage", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(6-7)% Chance to Block Spell Damage" }, } },
- ["PercentageAllAttributesUberElder1"] = { type = "Suffix", affix = "of the Elder", "(6-9)% increased Attributes", statOrder = { 1188 }, level = 68, group = "PercentageAllAttributes", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [3143208761] = { "(6-9)% increased Attributes" }, } },
- ["PercentageAllAttributesUberElder2"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Attributes", statOrder = { 1188 }, level = 75, group = "PercentageAllAttributes", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [3143208761] = { "(10-12)% increased Attributes" }, } },
- ["PercentageAllAttributesUberShaper1"] = { type = "Suffix", affix = "of Shaping", "(6-9)% increased Attributes", statOrder = { 1188 }, level = 68, group = "PercentageAllAttributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [3143208761] = { "(6-9)% increased Attributes" }, } },
- ["PercentageAllAttributesUberShaper2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Attributes", statOrder = { 1188 }, level = 75, group = "PercentageAllAttributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [3143208761] = { "(10-12)% increased Attributes" }, } },
- ["ReducedManaReservedUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 82, group = "ReducedReservation", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1269219558] = { "(6-10)% increased Mana Reservation Efficiency of Skills" }, } },
- ["ManaReservationEfficiencyUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 82, group = "ManaReservationEfficiency", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4237190083] = { "(6-10)% increased Mana Reservation Efficiency of Skills" }, } },
- ["AreaOfEffectUber1_"] = { type = "Prefix", affix = "The Elder's", "(7-9)% increased Area of Effect", statOrder = { 1885 }, level = 68, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 800, 800, 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(7-9)% increased Area of Effect" }, } },
- ["AreaOfEffectUber2"] = { type = "Prefix", affix = "The Elder's", "(10-12)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 600, 600, 600, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(10-12)% increased Area of Effect" }, } },
- ["AreaOfEffectUber3_"] = { type = "Prefix", affix = "The Elder's", "(13-15)% increased Area of Effect", statOrder = { 1885 }, level = 82, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(13-15)% increased Area of Effect" }, } },
- ["AdditionalPierceUber1"] = { type = "Prefix", affix = "The Elder's", "Projectiles Pierce an additional Target", statOrder = { 1795 }, level = 68, group = "AdditionalPierce", weightKey = { "amulet_elder", "quiver_elder", "default", }, weightVal = { 800, 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } },
- ["ReducedPhysicalDamageTakenUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% additional Physical Damage Reduction", statOrder = { 2278 }, level = 83, group = "ReducedPhysicalDamageTaken", weightKey = { "amulet_elder", "shield_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } },
- ["ItemFoundQuantityIncreaseUber1"] = { type = "Suffix", affix = "of Shaping", "(4-7)% increased Quantity of Items found", statOrder = { 1597 }, level = 75, group = "ItemFoundQuantityIncrease", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "drop" }, tradeHashes = { [884586851] = { "(4-7)% increased Quantity of Items found" }, } },
- ["ItemFoundQuantityIncreaseUber2"] = { type = "Suffix", affix = "of Shaping", "(8-10)% increased Quantity of Items found", statOrder = { 1597 }, level = 85, group = "ItemFoundQuantityIncrease", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "drop" }, tradeHashes = { [884586851] = { "(8-10)% increased Quantity of Items found" }, } },
- ["PhysicalAddedAsFireAmuletUber1"] = { type = "Prefix", affix = "The Elder's", "Gain (8-11)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (8-11)% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsFireAmuletUber2"] = { type = "Prefix", affix = "The Elder's", "Gain (12-15)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (12-15)% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsColdAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-11)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (8-11)% of Physical Damage as Extra Cold Damage" }, } },
- ["PhysicalAddedAsColdAmuletUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (12-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (12-15)% of Physical Damage as Extra Cold Damage" }, } },
- ["PhysicalAddedAsLightningAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-11)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (8-11)% of Physical Damage as Extra Lightning Damage" }, } },
- ["PhysicalAddedAsLightningAmuletUber2_"] = { type = "Prefix", affix = "The Shaper's", "Gain (12-15)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (12-15)% of Physical Damage as Extra Lightning Damage" }, } },
- ["IncreasedAttackSpeedAmuletUber1"] = { type = "Suffix", affix = "of the Elder", "(7-13)% increased Attack Speed", statOrder = { 1415 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [681332047] = { "(7-13)% increased Attack Speed" }, } },
- ["NonChaosAddedAsChaosUber1"] = { type = "Prefix", affix = "The Elder's", "Gain (3-5)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 9487 }, level = 81, group = "NonChaosAddedAsChaos", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "influence_mod", "damage", "chaos" }, tradeHashes = { [2063695047] = { "Gain (3-5)% of Non-Chaos Damage as extra Chaos Damage" }, } },
- ["PowerFrenzyOrEnduranceChargeOnKillUber1_"] = { type = "Suffix", affix = "of Shaping", "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3617 }, level = 68, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, tradeHashes = { [498214257] = { "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } },
- ["PowerFrenzyOrEnduranceChargeOnKillUber2"] = { type = "Suffix", affix = "of Shaping", "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3617 }, level = 75, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, tradeHashes = { [498214257] = { "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } },
- ["MaximumZombiesUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to maximum number of Raised Zombies", statOrder = { 2165 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "" }, [125218179] = { "" }, } },
- ["MaximumSkeletonsUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to maximum number of Skeletons", statOrder = { 2167 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } },
- ["MaximumBlockChanceUber1"] = { type = "Suffix", affix = "of Shaping", "+2% to maximum Chance to Block Attack Damage", statOrder = { 1993 }, level = 68, group = "MaximumBlockChance", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [4124805414] = { "+2% to maximum Chance to Block Attack Damage" }, } },
- ["MaximumLifeLeechRateUber1"] = { type = "Prefix", affix = "The Elder's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1737 }, level = 68, group = "MaximumLifeLeechRateOldFix", weightKey = { "amulet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2916634441] = { "(15-25)% increased Maximum total Life Recovery per second from Leech" }, } },
- ["MaximumLifeLeechRateUpdatedUber1"] = { type = "Prefix", affix = "The Elder's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1736 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [4118987751] = { "(15-25)% increased Maximum total Life Recovery per second from Leech" }, } },
- ["MaximumLifeLeechRateUpdatedSuffixUber1"] = { type = "Suffix", affix = "of the Elder", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1736 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [4118987751] = { "(15-25)% increased Maximum total Life Recovery per second from Leech" }, } },
- ["ElementalPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (4-7)% Elemental Resistances", statOrder = { 2985 }, level = 68, group = "ElementalPenetration", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (4-7)% Elemental Resistances" }, } },
- ["ElementalPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (8-10)% Elemental Resistances", statOrder = { 2985 }, level = 82, group = "ElementalPenetration", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (8-10)% Elemental Resistances" }, } },
- ["DamagePer15StrengthUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Damage per 15 Strength", statOrder = { 6063 }, level = 80, group = "DamagePer15Strength", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3948776386] = { "1% increased Damage per 15 Strength" }, } },
- ["DamagePer15DexterityUber1"] = { type = "Prefix", affix = "The Shaper's", "1% increased Damage per 15 Dexterity", statOrder = { 6061 }, level = 80, group = "DamagePer15Dexterity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2062174346] = { "1% increased Damage per 15 Dexterity" }, } },
- ["DamagePer15IntelligenceUber1"] = { type = "Prefix", affix = "The Shaper's", "1% increased Damage per 15 Intelligence", statOrder = { 6062 }, level = 80, group = "DamagePer15Intelligence", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3801128794] = { "1% increased Damage per 15 Intelligence" }, } },
- ["ReducedCurseEffectUber1_"] = { type = "Suffix", affix = "of Shaping", "(25-29)% reduced Effect of Curses on you", statOrder = { 2175 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3407849389] = { "(25-29)% reduced Effect of Curses on you" }, } },
- ["ReducedCurseEffectUber2"] = { type = "Suffix", affix = "of Shaping", "(35-40)% reduced Effect of Curses on you", statOrder = { 2175 }, level = 75, group = "ReducedCurseEffect", weightKey = { "ring_shaper", "default", }, weightVal = { 1600, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3407849389] = { "(35-40)% reduced Effect of Curses on you" }, } },
- ["MeleeDamageRingUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Melee Damage", statOrder = { 1239 }, level = 68, group = "MeleeDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(20-25)% increased Melee Damage" }, } },
- ["MeleeDamageRingUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Melee Damage", statOrder = { 1239 }, level = 75, group = "MeleeDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(26-30)% increased Melee Damage" }, } },
- ["MeleeDamageRingUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Melee Damage", statOrder = { 1239 }, level = 83, group = "MeleeDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(31-35)% increased Melee Damage" }, } },
- ["ProjectileAttackDamageRingUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Projectile Attack Damage", statOrder = { 2002 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(20-25)% increased Projectile Attack Damage" }, } },
- ["ProjectileAttackDamageRingUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Projectile Attack Damage", statOrder = { 2002 }, level = 75, group = "ProjectileAttackDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(26-30)% increased Projectile Attack Damage" }, } },
- ["ProjectileAttackDamageRingUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Projectile Attack Damage", statOrder = { 2002 }, level = 84, group = "ProjectileAttackDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(31-35)% increased Projectile Attack Damage" }, } },
- ["SpellDamageRingUber1"] = { type = "Suffix", affix = "of Shaping", "(20-25)% increased Spell Damage", statOrder = { 1228 }, level = 68, group = "SpellDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-25)% increased Spell Damage" }, } },
- ["SpellDamageRingUber2"] = { type = "Suffix", affix = "of Shaping", "(26-30)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(26-30)% increased Spell Damage" }, } },
- ["SpellDamageRingUber3__"] = { type = "Suffix", affix = "of Shaping", "(31-35)% increased Spell Damage", statOrder = { 1228 }, level = 82, group = "SpellDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(31-35)% increased Spell Damage" }, } },
- ["ReducedElementalReflectTakenRingUber1"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take (31-45)% reduced Reflected Elemental Damage", statOrder = { 6339 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take (31-45)% reduced Reflected Elemental Damage" }, } },
- ["ReducedElementalReflectTakenRingUber2"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take (46-55)% reduced Reflected Elemental Damage", statOrder = { 6339 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take (46-55)% reduced Reflected Elemental Damage" }, } },
+ ["MaximumLifeUber1"] = { type = "Prefix", affix = "The Elder's", "(5-8)% increased maximum Life", statOrder = { 1571 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(5-8)% increased maximum Life" }, } },
+ ["MaximumLifeUber2"] = { type = "Prefix", affix = "The Elder's", "(9-12)% increased maximum Life", statOrder = { 1571 }, level = 85, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(9-12)% increased maximum Life" }, } },
+ ["MaximumManaBodyUber1"] = { type = "Prefix", affix = "The Shaper's", "(9-11)% increased maximum Mana", statOrder = { 1580 }, level = 68, group = "MaximumManaIncreaseShaper", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(9-11)% increased maximum Mana" }, } },
+ ["MaximumManaBodyUber2"] = { type = "Prefix", affix = "The Shaper's", "(12-15)% increased maximum Mana", statOrder = { 1580 }, level = 75, group = "MaximumManaIncreaseShaper", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(12-15)% increased maximum Mana" }, } },
+ ["DamageTakenFromManaBeforeLifeUber1_"] = { type = "Prefix", affix = "The Shaper's", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 80, group = "DamageRemovedFromManaBeforeLife", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(5-10)% of Damage is taken from Mana before Life" }, } },
+ ["MaximumLifeOnKillPercentUber1"] = { type = "Suffix", affix = "of the Elder", "Recover (3-4)% of Life on Kill", statOrder = { 1749 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2023107756] = { "Recover (3-4)% of Life on Kill" }, } },
+ ["MaximumLifeOnKillPercentUber2__"] = { type = "Suffix", affix = "of the Elder", "Recover (5-6)% of Life on Kill", statOrder = { 1749 }, level = 75, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2023107756] = { "Recover (5-6)% of Life on Kill" }, } },
+ ["MaximumManaOnKillPercentUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-4)% of Mana on Kill", statOrder = { 1751 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1030153674] = { "Recover (3-4)% of Mana on Kill" }, } },
+ ["MaximumManaOnKillPercentUber2"] = { type = "Suffix", affix = "of Shaping", "Recover (5-6)% of Mana on Kill", statOrder = { 1751 }, level = 75, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1030153674] = { "Recover (5-6)% of Mana on Kill" }, } },
+ ["MaximumEnergyShieldOnKillPercentUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-4)% of Energy Shield on Kill", statOrder = { 1750 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (3-4)% of Energy Shield on Kill" }, } },
+ ["MaximumEnergyShieldOnKillPercentUber2"] = { type = "Suffix", affix = "of Shaping", "Recover (5-6)% of Energy Shield on Kill", statOrder = { 1750 }, level = 75, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (5-6)% of Energy Shield on Kill" }, } },
+ ["PercentageStrengthUber1_"] = { type = "Suffix", affix = "of the Elder", "(5-8)% increased Strength", statOrder = { 1184 }, level = 68, group = "PercentageStrength", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [734614379] = { "(5-8)% increased Strength" }, } },
+ ["PercentageStrengthUber2__"] = { type = "Suffix", affix = "of the Elder", "(9-12)% increased Strength", statOrder = { 1184 }, level = 83, group = "PercentageStrength", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [734614379] = { "(9-12)% increased Strength" }, } },
+ ["PercentageDexterityUber1"] = { type = "Suffix", affix = "of the Elder", "(5-8)% increased Dexterity", statOrder = { 1185 }, level = 68, group = "PercentageDexterity", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [4139681126] = { "(5-8)% increased Dexterity" }, } },
+ ["PercentageDexterityUber2"] = { type = "Suffix", affix = "of the Elder", "(9-12)% increased Dexterity", statOrder = { 1185 }, level = 83, group = "PercentageDexterity", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [4139681126] = { "(9-12)% increased Dexterity" }, } },
+ ["PercentageIntelligenceUber1"] = { type = "Suffix", affix = "of Shaping", "(5-8)% increased Intelligence", statOrder = { 1186 }, level = 68, group = "PercentageIntelligence", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [656461285] = { "(5-8)% increased Intelligence" }, } },
+ ["PercentageIntelligenceUber2"] = { type = "Suffix", affix = "of Shaping", "(9-12)% increased Intelligence", statOrder = { 1186 }, level = 83, group = "PercentageIntelligence", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [656461285] = { "(9-12)% increased Intelligence" }, } },
+ ["LifeRegenerationRatePercentUber1"] = { type = "Suffix", affix = "of the Elder", "Regenerate (1-1.5)% of Life per second", statOrder = { 1944 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-1.5)% of Life per second" }, } },
+ ["LifeRegenerationRatePercentUber2"] = { type = "Suffix", affix = "of the Elder", "Regenerate (1.6-2)% of Life per second", statOrder = { 1944 }, level = 75, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.6-2)% of Life per second" }, } },
+ ["SupportedByItemRarityUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 10 Item Rarity", "(8-12)% increased Rarity of Items found from Slain Unique Enemies", statOrder = { 321, 10504 }, level = 68, group = "SupportedByItemRarityUnique", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem", "drop" }, tradeHashes = { [121185030] = { "(8-12)% increased Rarity of Items found from Slain Unique Enemies" }, [3587013273] = { "Socketed Gems are Supported by Level 10 Item Rarity" }, } },
+ ["SupportedByItemRarityUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 15 Item Rarity", "(13-18)% increased Rarity of Items found from Slain Unique Enemies", statOrder = { 321, 10504 }, level = 85, group = "SupportedByItemRarityUnique", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem", "drop" }, tradeHashes = { [121185030] = { "(13-18)% increased Rarity of Items found from Slain Unique Enemies" }, [3587013273] = { "Socketed Gems are Supported by Level 15 Item Rarity" }, } },
+ ["AdditionalCriticalStrikeChanceWithAttacksUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have +(0.5-1)% to Critical Strike Chance", statOrder = { 4792 }, level = 68, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(0.5-1)% to Critical Strike Chance" }, } },
+ ["AdditionalCriticalStrikeChanceWithAttacksUber2"] = { type = "Suffix", affix = "of the Elder", "Attacks have +(1.1-1.5)% to Critical Strike Chance", statOrder = { 4792 }, level = 84, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(1.1-1.5)% to Critical Strike Chance" }, } },
+ ["AdditionalCriticalStrikeChanceWithSpellsUber1_"] = { type = "Suffix", affix = "of Shaping", "+(0.5-1)% to Spell Critical Strike Chance", statOrder = { 10125 }, level = 68, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "caster", "critical" }, tradeHashes = { [791835907] = { "+(0.5-1)% to Spell Critical Strike Chance" }, } },
+ ["AdditionalCriticalStrikeChanceWithSpellsUber2_"] = { type = "Suffix", affix = "of Shaping", "+(1.1-1.5)% to Spell Critical Strike Chance", statOrder = { 10125 }, level = 84, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "caster", "critical" }, tradeHashes = { [791835907] = { "+(1.1-1.5)% to Spell Critical Strike Chance" }, } },
+ ["GrantsWrathAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Wrath Skill", statOrder = { 648 }, level = 68, group = "WrathSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [2265307453] = { "Grants Level 22 Wrath Skill" }, } },
+ ["GrantsAngerAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Anger Skill", statOrder = { 650 }, level = 68, group = "AngerSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [484879947] = { "Grants Level 22 Anger Skill" }, } },
+ ["GrantsHatredAuraUber1__"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Hatred Skill", statOrder = { 649 }, level = 68, group = "HatredSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [2429546158] = { "Grants Level 22 Hatred Skill" }, } },
+ ["GrantsEnvyAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 15 Envy Skill", statOrder = { 655 }, level = 85, group = "GrantsEnvy", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [52953650] = { "Grants Level 15 Envy Skill" }, } },
+ ["GrantsDeterminationAuraUber1_"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Determination Skill", statOrder = { 651 }, level = 68, group = "DeterminationSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [4265392510] = { "Grants Level 22 Determination Skill" }, } },
+ ["GrantsGraceAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Grace Skill", statOrder = { 652 }, level = 68, group = "GraceSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [2867050084] = { "Grants Level 22 Grace Skill" }, } },
+ ["GrantsDisciplineAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Discipline Skill", statOrder = { 654 }, level = 68, group = "DisciplineSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [2341269061] = { "Grants Level 22 Discipline Skill" }, } },
+ ["GrantsHasteAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Haste Skill", statOrder = { 639 }, level = 68, group = "HasteSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [1188846263] = { "Grants Level 22 Haste Skill" }, } },
+ ["GrantsVitalityAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Vitality Skill", statOrder = { 643 }, level = 68, group = "VitalitySkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [2410613176] = { "Grants Level 22 Vitality Skill" }, } },
+ ["GrantsClarityAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Clarity Skill", statOrder = { 641 }, level = 68, group = "ClaritySkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [3511815065] = { "Grants Level 22 Clarity Skill" }, } },
+ ["ReducedAttributeRequirementsUber1"] = { type = "Suffix", affix = "of Shaping", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrder = { 2552 }, level = 68, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [752930724] = { "Items and Gems have (5-10)% reduced Attribute Requirements" }, } },
+ ["ReducedAttributeRequirementsUber2"] = { type = "Suffix", affix = "of Shaping", "Items and Gems have (11-15)% reduced Attribute Requirements", statOrder = { 2552 }, level = 75, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [752930724] = { "Items and Gems have (11-15)% reduced Attribute Requirements" }, } },
+ ["FireDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Elder's", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(0.3-0.5)% of Fire Damage Leeched as Life" }, } },
+ ["ColdDamageLifeLeechUber1_"] = { type = "Prefix", affix = "The Shaper's", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "(0.3-0.5)% of Cold Damage Leeched as Life" }, } },
+ ["LightningDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "(0.3-0.5)% of Lightning Damage Leeched as Life" }, } },
+ ["PhysicalDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Elder's", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "physical" }, tradeHashes = { [3764265320] = { "(0.3-0.5)% of Physical Damage Leeched as Life" }, } },
+ ["FireDamageLifeLeechSuffixUber1"] = { type = "Suffix", affix = "of the Elder", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(0.3-0.5)% of Fire Damage Leeched as Life" }, } },
+ ["ColdDamageLifeLeechSuffixUber1_"] = { type = "Suffix", affix = "of Shaping", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "(0.3-0.5)% of Cold Damage Leeched as Life" }, } },
+ ["LightningDamageLifeLeechSuffixUber1"] = { type = "Suffix", affix = "of Shaping", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "(0.3-0.5)% of Lightning Damage Leeched as Life" }, } },
+ ["PhysicalDamageLifeLeechSuffixUber1"] = { type = "Suffix", affix = "of the Elder", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "physical" }, tradeHashes = { [3764265320] = { "(0.3-0.5)% of Physical Damage Leeched as Life" }, } },
+ ["MovementVelocityAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% increased Movement Speed", statOrder = { 1798 }, level = 68, group = "MovementVelocity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(4-6)% increased Movement Speed" }, } },
+ ["MovementVelocityAmuletUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-8)% increased Movement Speed", statOrder = { 1798 }, level = 84, group = "MovementVelocity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(7-8)% increased Movement Speed" }, } },
+ ["BlockAppliesToSpellsUber1"] = { type = "Suffix", affix = "of Shaping", "(7-10)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 68, group = "BlockingBlocksSpells", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2881111359] = { "(7-10)% Chance to Block Spell Damage" }, } },
+ ["BlockAppliesToSpellsUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 75, group = "BlockingBlocksSpells", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2881111359] = { "(10-12)% Chance to Block Spell Damage" }, } },
+ ["SpellBlockAmuletUber1_"] = { type = "Suffix", affix = "of Shaping", "(4-5)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 68, group = "SpellBlockPercentage", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(4-5)% Chance to Block Spell Damage" }, } },
+ ["SpellBlockAmuletUber2_"] = { type = "Suffix", affix = "of Shaping", "(6-7)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(6-7)% Chance to Block Spell Damage" }, } },
+ ["PercentageAllAttributesUberElder1"] = { type = "Suffix", affix = "of the Elder", "(6-9)% increased Attributes", statOrder = { 1183 }, level = 68, group = "PercentageAllAttributes", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [3143208761] = { "(6-9)% increased Attributes" }, } },
+ ["PercentageAllAttributesUberElder2"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Attributes", statOrder = { 1183 }, level = 75, group = "PercentageAllAttributes", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [3143208761] = { "(10-12)% increased Attributes" }, } },
+ ["PercentageAllAttributesUberShaper1"] = { type = "Suffix", affix = "of Shaping", "(6-9)% increased Attributes", statOrder = { 1183 }, level = 68, group = "PercentageAllAttributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [3143208761] = { "(6-9)% increased Attributes" }, } },
+ ["PercentageAllAttributesUberShaper2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Attributes", statOrder = { 1183 }, level = 75, group = "PercentageAllAttributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [3143208761] = { "(10-12)% increased Attributes" }, } },
+ ["ReducedManaReservedUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 82, group = "ReducedReservation", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1269219558] = { "(6-10)% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ManaReservationEfficiencyUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 82, group = "ManaReservationEfficiency", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4237190083] = { "(6-10)% increased Mana Reservation Efficiency of Skills" }, } },
+ ["AreaOfEffectUber1_"] = { type = "Prefix", affix = "The Elder's", "(7-9)% increased Area of Effect", statOrder = { 1880 }, level = 68, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 800, 800, 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(7-9)% increased Area of Effect" }, } },
+ ["AreaOfEffectUber2"] = { type = "Prefix", affix = "The Elder's", "(10-12)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 600, 600, 600, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(10-12)% increased Area of Effect" }, } },
+ ["AreaOfEffectUber3_"] = { type = "Prefix", affix = "The Elder's", "(13-15)% increased Area of Effect", statOrder = { 1880 }, level = 82, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(13-15)% increased Area of Effect" }, } },
+ ["AdditionalPierceUber1"] = { type = "Prefix", affix = "The Elder's", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 68, group = "AdditionalPierce", weightKey = { "amulet_elder", "quiver_elder", "default", }, weightVal = { 800, 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } },
+ ["ReducedPhysicalDamageTakenUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 83, group = "ReducedPhysicalDamageTaken", weightKey = { "amulet_elder", "shield_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } },
+ ["ItemFoundQuantityIncreaseUber1"] = { type = "Suffix", affix = "of Shaping", "(4-7)% increased Quantity of Items found", statOrder = { 1592 }, level = 75, group = "ItemFoundQuantityIncrease", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "drop" }, tradeHashes = { [884586851] = { "(4-7)% increased Quantity of Items found" }, } },
+ ["ItemFoundQuantityIncreaseUber2"] = { type = "Suffix", affix = "of Shaping", "(8-10)% increased Quantity of Items found", statOrder = { 1592 }, level = 85, group = "ItemFoundQuantityIncrease", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "drop" }, tradeHashes = { [884586851] = { "(8-10)% increased Quantity of Items found" }, } },
+ ["PhysicalAddedAsFireAmuletUber1"] = { type = "Prefix", affix = "The Elder's", "Gain (8-11)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (8-11)% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsFireAmuletUber2"] = { type = "Prefix", affix = "The Elder's", "Gain (12-15)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (12-15)% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsColdAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-11)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (8-11)% of Physical Damage as Extra Cold Damage" }, } },
+ ["PhysicalAddedAsColdAmuletUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (12-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (12-15)% of Physical Damage as Extra Cold Damage" }, } },
+ ["PhysicalAddedAsLightningAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-11)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (8-11)% of Physical Damage as Extra Lightning Damage" }, } },
+ ["PhysicalAddedAsLightningAmuletUber2_"] = { type = "Prefix", affix = "The Shaper's", "Gain (12-15)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (12-15)% of Physical Damage as Extra Lightning Damage" }, } },
+ ["IncreasedAttackSpeedAmuletUber1"] = { type = "Suffix", affix = "of the Elder", "(7-13)% increased Attack Speed", statOrder = { 1410 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [681332047] = { "(7-13)% increased Attack Speed" }, } },
+ ["NonChaosAddedAsChaosUber1"] = { type = "Prefix", affix = "The Elder's", "Gain (3-5)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 9488 }, level = 81, group = "NonChaosAddedAsChaos", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "influence_mod", "damage", "chaos" }, tradeHashes = { [2063695047] = { "Gain (3-5)% of Non-Chaos Damage as extra Chaos Damage" }, } },
+ ["PowerFrenzyOrEnduranceChargeOnKillUber1_"] = { type = "Suffix", affix = "of Shaping", "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3612 }, level = 68, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, tradeHashes = { [498214257] = { "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } },
+ ["PowerFrenzyOrEnduranceChargeOnKillUber2"] = { type = "Suffix", affix = "of Shaping", "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3612 }, level = 75, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, tradeHashes = { [498214257] = { "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } },
+ ["MaximumZombiesUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "" }, [125218179] = { "" }, } },
+ ["MaximumSkeletonsUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to maximum number of Skeletons", statOrder = { 2162 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } },
+ ["MaximumBlockChanceUber1"] = { type = "Suffix", affix = "of Shaping", "+2% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 68, group = "MaximumBlockChance", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [4124805414] = { "+2% to maximum Chance to Block Attack Damage" }, } },
+ ["MaximumLifeLeechRateUber1"] = { type = "Prefix", affix = "The Elder's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1732 }, level = 68, group = "MaximumLifeLeechRateOldFix", weightKey = { "amulet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2916634441] = { "(15-25)% increased Maximum total Life Recovery per second from Leech" }, } },
+ ["MaximumLifeLeechRateUpdatedUber1"] = { type = "Prefix", affix = "The Elder's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [4118987751] = { "(15-25)% increased Maximum total Life Recovery per second from Leech" }, } },
+ ["MaximumLifeLeechRateUpdatedSuffixUber1"] = { type = "Suffix", affix = "of the Elder", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [4118987751] = { "(15-25)% increased Maximum total Life Recovery per second from Leech" }, } },
+ ["ElementalPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (4-7)% Elemental Resistances", statOrder = { 2980 }, level = 68, group = "ElementalPenetration", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (4-7)% Elemental Resistances" }, } },
+ ["ElementalPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (8-10)% Elemental Resistances", statOrder = { 2980 }, level = 82, group = "ElementalPenetration", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (8-10)% Elemental Resistances" }, } },
+ ["DamagePer15StrengthUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Damage per 15 Strength", statOrder = { 6058 }, level = 80, group = "DamagePer15Strength", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3948776386] = { "1% increased Damage per 15 Strength" }, } },
+ ["DamagePer15DexterityUber1"] = { type = "Prefix", affix = "The Shaper's", "1% increased Damage per 15 Dexterity", statOrder = { 6056 }, level = 80, group = "DamagePer15Dexterity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2062174346] = { "1% increased Damage per 15 Dexterity" }, } },
+ ["DamagePer15IntelligenceUber1"] = { type = "Prefix", affix = "The Shaper's", "1% increased Damage per 15 Intelligence", statOrder = { 6057 }, level = 80, group = "DamagePer15Intelligence", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3801128794] = { "1% increased Damage per 15 Intelligence" }, } },
+ ["ReducedCurseEffectUber1_"] = { type = "Suffix", affix = "of Shaping", "(25-29)% reduced Effect of Curses on you", statOrder = { 2170 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3407849389] = { "(25-29)% reduced Effect of Curses on you" }, } },
+ ["ReducedCurseEffectUber2"] = { type = "Suffix", affix = "of Shaping", "(35-40)% reduced Effect of Curses on you", statOrder = { 2170 }, level = 75, group = "ReducedCurseEffect", weightKey = { "ring_shaper", "default", }, weightVal = { 1600, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3407849389] = { "(35-40)% reduced Effect of Curses on you" }, } },
+ ["MeleeDamageRingUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Melee Damage", statOrder = { 1234 }, level = 68, group = "MeleeDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(20-25)% increased Melee Damage" }, } },
+ ["MeleeDamageRingUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Melee Damage", statOrder = { 1234 }, level = 75, group = "MeleeDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(26-30)% increased Melee Damage" }, } },
+ ["MeleeDamageRingUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Melee Damage", statOrder = { 1234 }, level = 83, group = "MeleeDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(31-35)% increased Melee Damage" }, } },
+ ["ProjectileAttackDamageRingUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(20-25)% increased Projectile Attack Damage" }, } },
+ ["ProjectileAttackDamageRingUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 75, group = "ProjectileAttackDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(26-30)% increased Projectile Attack Damage" }, } },
+ ["ProjectileAttackDamageRingUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 84, group = "ProjectileAttackDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(31-35)% increased Projectile Attack Damage" }, } },
+ ["SpellDamageRingUber1"] = { type = "Suffix", affix = "of Shaping", "(20-25)% increased Spell Damage", statOrder = { 1223 }, level = 68, group = "SpellDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-25)% increased Spell Damage" }, } },
+ ["SpellDamageRingUber2"] = { type = "Suffix", affix = "of Shaping", "(26-30)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(26-30)% increased Spell Damage" }, } },
+ ["SpellDamageRingUber3__"] = { type = "Suffix", affix = "of Shaping", "(31-35)% increased Spell Damage", statOrder = { 1223 }, level = 82, group = "SpellDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(31-35)% increased Spell Damage" }, } },
+ ["ReducedElementalReflectTakenRingUber1"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take (31-45)% reduced Reflected Elemental Damage", statOrder = { 6334 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take (31-45)% reduced Reflected Elemental Damage" }, } },
+ ["ReducedElementalReflectTakenRingUber2"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take (46-55)% reduced Reflected Elemental Damage", statOrder = { 6334 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take (46-55)% reduced Reflected Elemental Damage" }, } },
["ElementalDamageCannotBeReflectedPercentRingUber1"] = { type = "Prefix", affix = "The Shaper's", "(40-55)% of Elemental Hit Damage from you and your Minions cannot be Reflected", statOrder = { 2 }, level = 68, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3408683611] = { "(40-55)% of Elemental Hit Damage from you and your Minions cannot be Reflected" }, } },
["ElementalDamageCannotBeReflectedPercentRingUber2"] = { type = "Prefix", affix = "The Shaper's", "(56-75)% of Elemental Hit Damage from you and your Minions cannot be Reflected", statOrder = { 2 }, level = 75, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3408683611] = { "(56-75)% of Elemental Hit Damage from you and your Minions cannot be Reflected" }, } },
- ["ReducedPhysicalReflectTakenRingUber1"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take (31-45)% reduced Reflected Physical Damage", statOrder = { 9669 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [129035625] = { "You and your Minions take (31-45)% reduced Reflected Physical Damage" }, } },
- ["ReducedPhysicalReflectTakenRingUber2"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take (46-55)% reduced Reflected Physical Damage", statOrder = { 9669 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [129035625] = { "You and your Minions take (46-55)% reduced Reflected Physical Damage" }, } },
+ ["ReducedPhysicalReflectTakenRingUber1"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take (31-45)% reduced Reflected Physical Damage", statOrder = { 9670 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [129035625] = { "You and your Minions take (31-45)% reduced Reflected Physical Damage" }, } },
+ ["ReducedPhysicalReflectTakenRingUber2"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take (46-55)% reduced Reflected Physical Damage", statOrder = { 9670 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [129035625] = { "You and your Minions take (46-55)% reduced Reflected Physical Damage" }, } },
["PhysicalDamageCannotBeReflectedPercentRingUber1"] = { type = "Prefix", affix = "The Elder's", "(40-55)% of Physical Hit Damage from you and your Minions cannot be Reflected", statOrder = { 3 }, level = 68, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1818622832] = { "(40-55)% of Physical Hit Damage from you and your Minions cannot be Reflected" }, } },
["PhysicalDamageCannotBeReflectedPercentRingUber2"] = { type = "Prefix", affix = "The Elder's", "(56-75)% of Physical Hit Damage from you and your Minions cannot be Reflected", statOrder = { 3 }, level = 75, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1818622832] = { "(56-75)% of Physical Hit Damage from you and your Minions cannot be Reflected" }, } },
- ["CriticalStrikeChanceUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 68, group = "CriticalStrikeChance", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(10-15)% increased Global Critical Strike Chance" }, } },
- ["CriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 75, group = "CriticalStrikeChance", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(16-20)% increased Global Critical Strike Chance" }, } },
- ["CriticalStrikeChanceUber3_"] = { type = "Suffix", affix = "of Shaping", "(21-25)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 80, group = "CriticalStrikeChance", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(21-25)% increased Global Critical Strike Chance" }, } },
- ["CriticalStrikeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(8-12)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(8-12)% to Global Critical Strike Multiplier" }, } },
- ["CriticalStrikeMultiplierUber2_"] = { type = "Suffix", affix = "of the Elder", "+(13-16)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(13-16)% to Global Critical Strike Multiplier" }, } },
- ["CriticalStrikeMultiplierUber3"] = { type = "Suffix", affix = "of the Elder", "+(17-20)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 80, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(17-20)% to Global Critical Strike Multiplier" }, } },
- ["AddedFireDamageToSpellsAndAttacksUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (17-20) to (38-42) Fire Damage to Spells and Attacks", statOrder = { 1378 }, level = 68, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (17-20) to (38-42) Fire Damage to Spells and Attacks" }, } },
- ["AddedFireDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (21-24) to (43-48) Fire Damage to Spells and Attacks", statOrder = { 1378 }, level = 75, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (21-24) to (43-48) Fire Damage to Spells and Attacks" }, } },
- ["AddedColdDamageToSpellsAndAttacksUber1__"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-20) to (38-42) Cold Damage to Spells and Attacks", statOrder = { 1379 }, level = 68, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (17-20) to (38-42) Cold Damage to Spells and Attacks" }, } },
- ["AddedColdDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (21-24) to (43-48) Cold Damage to Spells and Attacks", statOrder = { 1379 }, level = 75, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (21-24) to (43-48) Cold Damage to Spells and Attacks" }, } },
- ["AddedLightningDamageToSpellsAndAttacksUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (9-12) to (48-52) Lightning Damage to Spells and Attacks", statOrder = { 1414 }, level = 68, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (9-12) to (48-52) Lightning Damage to Spells and Attacks" }, } },
- ["AddedLightningDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (13-16) to (56-60) Lightning Damage to Spells and Attacks", statOrder = { 1414 }, level = 75, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (13-16) to (56-60) Lightning Damage to Spells and Attacks" }, } },
- ["IncreasedExperienceGainUber1"] = { type = "Prefix", affix = "The Shaper's", "(2-3)% increased Experience gain", statOrder = { 1608 }, level = 85, group = "ExperienceIncrease", weightKey = { "ring_shaper", "default", }, weightVal = { 50, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3666934677] = { "(2-3)% increased Experience gain" }, } },
- ["LifeGainPerTargetUber1"] = { type = "Prefix", affix = "The Elder's", "Gain (10-15) Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 68, group = "LifeGainPerTarget", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (10-15) Life per Enemy Hit with Attacks" }, } },
- ["LifeGainPerTargetUber2"] = { type = "Prefix", affix = "The Elder's", "Gain (16-20) Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 75, group = "LifeGainPerTarget", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (16-20) Life per Enemy Hit with Attacks" }, } },
- ["ManaGainPerTargetUberShaper1"] = { type = "Prefix", affix = "The Shaper's", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1749 }, level = 68, group = "ManaGainPerTarget", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (2-3) Mana per Enemy Hit with Attacks" }, } },
- ["ManaGainPerTargetUberElder1"] = { type = "Prefix", affix = "The Elder's", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1749 }, level = 68, group = "ManaGainPerTarget", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (2-3) Mana per Enemy Hit with Attacks" }, } },
- ["LifeGainedOnSpellHitUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-12) Life per Enemy Hit with Spells", statOrder = { 1744 }, level = 68, group = "LifeGainedOnSpellHit", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain (8-12) Life per Enemy Hit with Spells" }, } },
- ["LifeGainedOnSpellHitUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-15) Life per Enemy Hit with Spells", statOrder = { 1744 }, level = 75, group = "LifeGainedOnSpellHit", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain (13-15) Life per Enemy Hit with Spells" }, } },
- ["ManaGainedOnSpellHitUber1_"] = { type = "Prefix", affix = "The Shaper's", "Gain (2-3) Mana per Enemy Hit with Spells", statOrder = { 8184 }, level = 68, group = "ManaGainedOnSpellHit", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana", "caster" }, tradeHashes = { [2474196346] = { "Gain (2-3) Mana per Enemy Hit with Spells" }, } },
- ["IncreasedAccuracyPercentUber1_"] = { type = "Suffix", affix = "of the Elder", "(6-10)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [624954515] = { "(6-10)% increased Global Accuracy Rating" }, } },
- ["IncreasedAccuracyPercentUber2"] = { type = "Suffix", affix = "of the Elder", "(11-15)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [624954515] = { "(11-15)% increased Global Accuracy Rating" }, } },
- ["IncreasedAccuracyPercentUber3"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 82, group = "IncreasedAccuracyPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [624954515] = { "(16-20)% increased Global Accuracy Rating" }, } },
- ["CurseOnHitAssassinsMarkUber1"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 8 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 763 }, level = 75, group = "CurseOnHitCriticalWeakness", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3382957283] = { "Trigger Level 8 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } },
- ["CurseOnHitAssassinsMarkUber2"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 12 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 763 }, level = 80, group = "CurseOnHitCriticalWeakness", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3382957283] = { "Trigger Level 12 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } },
- ["CurseOnHitPoachersMarkUber1"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 764 }, level = 75, group = "CurseOnHitPoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2659463225] = { "Trigger Level 8 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } },
- ["CurseOnHitPoachersMarkUber2"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 764 }, level = 80, group = "CurseOnHitPoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2659463225] = { "Trigger Level 12 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } },
- ["CurseOnHitWarlordsMarkUber1_"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 766 }, level = 75, group = "CurseOnHitWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2021420128] = { "Trigger Level 8 Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } },
- ["CurseOnHitWarlordsMarkUber2"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 766 }, level = 80, group = "CurseOnHitWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2021420128] = { "Trigger Level 12 Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } },
- ["CurseOnHitAssassinsMarkNewUber1"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 8 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 803 }, level = 75, group = "TriggerOnRareAssassinsMark", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3924520095] = { "Trigger Level 8 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } },
- ["CurseOnHitAssassinsMarkNewUber2"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 12 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 803 }, level = 80, group = "TriggerOnRareAssassinsMark", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3924520095] = { "Trigger Level 12 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } },
- ["CurseOnHitPoachersMarkNewUber1__"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 808 }, level = 75, group = "TriggerOnRarePoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3904501306] = { "Trigger Level 8 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } },
- ["CurseOnHitPoachersMarkNewUber2__"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 808 }, level = 80, group = "TriggerOnRarePoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3904501306] = { "Trigger Level 12 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } },
- ["CurseOnHitWarlordsMarkNewUber1"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 811 }, level = 75, group = "TriggerOnRareWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2049471530] = { "Trigger Level 8 Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } },
- ["CurseOnHitWarlordsMarkNewUber2"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 811 }, level = 80, group = "TriggerOnRareWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2049471530] = { "Trigger Level 12 Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } },
- ["GrantsHeraldOfAshSkillUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Herald of Ash Skill", statOrder = { 710 }, level = 68, group = "HeraldOfAshSkill", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [3880462354] = { "Grants Level 22 Herald of Ash Skill" }, } },
- ["GrantsHeraldOfIceSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Herald of Ice Skill", statOrder = { 711 }, level = 68, group = "HeraldOfIceSkill", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [3846248551] = { "Grants Level 22 Herald of Ice Skill" }, } },
- ["GrantsHeraldOfThunderSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Herald of Thunder Skill", statOrder = { 714 }, level = 68, group = "HeraldOfThunderSkill", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [1665492921] = { "Grants Level 22 Herald of Thunder Skill" }, } },
- ["AdditionalChanceToEvadeUber1__"] = { type = "Suffix", affix = "of the Elder", "+(2-3)% chance to Evade Attack Hits", statOrder = { 5678 }, level = 68, group = "AdditionalChanceToEvade", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2021058489] = { "+(2-3)% chance to Evade Attack Hits" }, } },
- ["AdditionalChanceToEvadeUber2"] = { type = "Suffix", affix = "of the Elder", "+(4-5)% chance to Evade Attack Hits", statOrder = { 5678 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2021058489] = { "+(4-5)% chance to Evade Attack Hits" }, } },
- ["ChanceToIgniteAddedDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies", statOrder = { 6889 }, level = 68, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "" }, [794830148] = { "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies" }, } },
- ["ChanceToIgniteAddedDamageUber2__"] = { type = "Prefix", affix = "The Elder's", "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies", statOrder = { 6889 }, level = 75, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "" }, [794830148] = { "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies" }, } },
- ["ChanceToFreezeAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6888 }, level = 68, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [2233361223] = { "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies" }, [44571480] = { "" }, } },
- ["ChanceToFreezeAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6888 }, level = 75, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [2233361223] = { "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies" }, [44571480] = { "" }, } },
- ["ChanceToShockAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies", statOrder = { 6891 }, level = 68, group = "ChanceToShockAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, tradeHashes = { [90012347] = { "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies" }, [1538773178] = { "" }, } },
- ["ChanceToShockAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies", statOrder = { 6891 }, level = 75, group = "ChanceToShockAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, tradeHashes = { [90012347] = { "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies" }, [1538773178] = { "" }, } },
- ["PhysicalAttackDamageTakenUber1_"] = { type = "Suffix", affix = "of Shaping", "-(35-25) Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 68, group = "PhysicalAttackDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "physical", "attack" }, tradeHashes = { [3441651621] = { "-(35-25) Physical Damage taken from Attack Hits" }, } },
- ["PhysicalAttackDamageTakenUber2"] = { type = "Suffix", affix = "of Shaping", "-(45-36) Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 75, group = "PhysicalAttackDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "physical", "attack" }, tradeHashes = { [3441651621] = { "-(45-36) Physical Damage taken from Attack Hits" }, } },
- ["IncreasedCooldownRecoveryUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } },
- ["IncreasedCooldownRecoveryUber2_"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 84, group = "GlobalCooldownRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(16-20)% increased Cooldown Recovery Rate" }, } },
- ["MaximumLifeIncreasePercentBeltUber1"] = { type = "Prefix", affix = "The Elder's", "(4-7)% increased maximum Life", statOrder = { 1576 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(4-7)% increased maximum Life" }, } },
- ["MaximumLifeIncreasePercentBeltUber2"] = { type = "Prefix", affix = "The Elder's", "(8-10)% increased maximum Life", statOrder = { 1576 }, level = 75, group = "MaximumLifeIncreasePercent", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, } },
- ["GlobalEnergyShieldPercentBeltUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-7)% increased maximum Energy Shield", statOrder = { 1566 }, level = 68, group = "GlobalEnergyShieldPercent", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(4-7)% increased maximum Energy Shield" }, } },
- ["GlobalEnergyShieldPercentBeltUber2"] = { type = "Prefix", affix = "The Shaper's", "(8-10)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(8-10)% increased maximum Energy Shield" }, } },
- ["FlaskEffectUber1"] = { type = "Prefix", affix = "The Elder's", "Flasks applied to you have (4-7)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, tradeHashes = { [114734841] = { "Flasks applied to you have (4-7)% increased Effect" }, } },
- ["FlaskEffectUber2"] = { type = "Prefix", affix = "The Elder's", "Flasks applied to you have (8-10)% increased Effect", statOrder = { 2747 }, level = 81, group = "FlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, tradeHashes = { [114734841] = { "Flasks applied to you have (8-10)% increased Effect" }, } },
- ["AllResistancesBeltUber1"] = { type = "Suffix", affix = "of the Elder", "+(13-15)% to all Elemental Resistances", statOrder = { 1624 }, level = 68, group = "AllResistances", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(13-15)% to all Elemental Resistances" }, } },
- ["AllResistancesBeltUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-18)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistances", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(16-18)% to all Elemental Resistances" }, } },
- ["ReducedCriticalStrikeDamageTakenUber1"] = { type = "Prefix", affix = "The Shaper's", "You take (15-20)% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 68, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (15-20)% reduced Extra Damage from Critical Strikes" }, } },
- ["ReducedCriticalStrikeDamageTakenUber2"] = { type = "Prefix", affix = "The Shaper's", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 75, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (21-30)% reduced Extra Damage from Critical Strikes" }, } },
- ["LifeRecoveryRateUber1"] = { type = "Suffix", affix = "of the Elder", "(7-9)% increased Life Recovery rate", statOrder = { 1583 }, level = 68, group = "LifeRecoveryRate", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(7-9)% increased Life Recovery rate" }, } },
- ["LifeRecoveryRateUber2_"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRate", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(10-12)% increased Life Recovery rate" }, } },
- ["EnergyShieldRecoveryRateUber1"] = { type = "Suffix", affix = "of Shaping", "(7-9)% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(7-9)% increased Energy Shield Recovery rate" }, } },
- ["EnergyShieldRecoveryRateUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(10-12)% increased Energy Shield Recovery rate" }, } },
- ["ManaRecoveryRateUber1_"] = { type = "Suffix", affix = "of Shaping", "(7-9)% increased Mana Recovery rate", statOrder = { 1591 }, level = 68, group = "ManaRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3513180117] = { "(7-9)% increased Mana Recovery rate" }, } },
- ["ManaRecoveryRateUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3513180117] = { "(10-12)% increased Mana Recovery rate" }, } },
- ["FlaskChanceToNotConsumeChargesUber1_"] = { type = "Prefix", affix = "The Elder's", "(6-10)% chance for Flasks you use to not consume Charges", statOrder = { 4235 }, level = 82, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt_elder", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, tradeHashes = { [311641062] = { "(6-10)% chance for Flasks you use to not consume Charges" }, } },
- ["ChaosResistanceWhileUsingFlaskUber1"] = { type = "Suffix", affix = "of the Elder", "+(20-25)% to Chaos Resistance during any Flask Effect", statOrder = { 3306 }, level = 68, group = "ChaosResistanceWhileUsingFlask", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+(20-25)% to Chaos Resistance during any Flask Effect" }, } },
- ["ChaosResistanceWhileUsingFlaskUber2_"] = { type = "Suffix", affix = "of the Elder", "+(26-30)% to Chaos Resistance during any Flask Effect", statOrder = { 3306 }, level = 75, group = "ChaosResistanceWhileUsingFlask", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+(26-30)% to Chaos Resistance during any Flask Effect" }, } },
- ["MovementSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Movement Speed during any Flask Effect", statOrder = { 3191 }, level = 81, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "speed" }, tradeHashes = { [304970526] = { "(6-10)% increased Movement Speed during any Flask Effect" }, } },
- ["FortifyOnMeleeStunUber1"] = { type = "Prefix", affix = "The Elder's", "Melee Hits which Stun have (8-12)% chance to Fortify", statOrder = { 5683 }, level = 68, group = "FortifyOnMeleeStun", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3206381437] = { "Melee Hits which Stun have (8-12)% chance to Fortify" }, } },
- ["GrantsEnduringCrySkillUber1"] = { type = "Prefix", affix = "The Elder's", "Grants Level 22 Enduring Cry Skill", statOrder = { 707 }, level = 68, group = "EnduringCrySkill", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [1031644844] = { "Grants Level 22 Enduring Cry Skill" }, } },
- ["GrantsRallyingCrySkillUber1"] = { type = "Prefix", affix = "The Elder's", "Grants Level 22 Rallying Cry Skill", statOrder = { 723 }, level = 68, group = "RallyingCrySkill", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [2007746338] = { "Grants Level 22 Rallying Cry Skill" }, } },
- ["GrantsAbyssalCrySkillUber1"] = { type = "Prefix", affix = "The Shaper's", "Grants Level 22 Intimidating Cry Skill", statOrder = { 690 }, level = 68, group = "AbyssalCrySkill", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [1271338211] = { "Grants Level 22 Intimidating Cry Skill" }, } },
- ["RemoveIgniteOnFlaskUseUber1"] = { type = "Suffix", affix = "of the Elder", "Remove Ignite and Burning when you use a Flask", statOrder = { 9906 }, level = 75, group = "RemoveIgniteOnFlaskUse", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "flask", "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1162425204] = { "Remove Ignite and Burning when you use a Flask" }, } },
- ["RemoveFreezeOnFlaskUseUber1_"] = { type = "Suffix", affix = "of Shaping", "Remove Chill and Freeze when you use a Flask", statOrder = { 9902 }, level = 75, group = "RemoveFreezeOnFlaskUse", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "flask", "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3296873305] = { "Remove Chill and Freeze when you use a Flask" }, } },
- ["RemoveShockOnFlaskUseUber1_"] = { type = "Suffix", affix = "of Shaping", "Remove Shock when you use a Flask", statOrder = { 9916 }, level = 75, group = "RemoveShockOnFlaskUse", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "flask", "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [561861132] = { "Remove Shock when you use a Flask" }, } },
- ["AttackSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of the Elder", "(8-14)% increased Attack Speed during any Flask Effect", statOrder = { 3305 }, level = 68, group = "AttackSpeedDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "attack", "speed" }, tradeHashes = { [1365052901] = { "(8-14)% increased Attack Speed during any Flask Effect" }, } },
- ["CastSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(8-14)% increased Cast Speed during any Flask Effect", statOrder = { 5471 }, level = 68, group = "CastSpeedDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "caster", "speed" }, tradeHashes = { [252194507] = { "(8-14)% increased Cast Speed during any Flask Effect" }, } },
- ["MeleeDamageDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Melee Damage during any Flask Effect", statOrder = { 9194 }, level = 68, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [4091369450] = { "(20-25)% increased Melee Damage during any Flask Effect" }, } },
- ["MeleeDamageDuringFlaskEffectUber2_"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Melee Damage during any Flask Effect", statOrder = { 9194 }, level = 75, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [4091369450] = { "(26-30)% increased Melee Damage during any Flask Effect" }, } },
- ["MeleeDamageDuringFlaskEffectUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Melee Damage during any Flask Effect", statOrder = { 9194 }, level = 80, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [4091369450] = { "(31-35)% increased Melee Damage during any Flask Effect" }, } },
- ["ProjectileAttackDamageDuringFlaskEffectUber1_"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9727 }, level = 68, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [2771016039] = { "(20-25)% increased Projectile Attack Damage during any Flask Effect" }, } },
- ["ProjectileAttackDamageDuringFlaskEffectUber2_"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9727 }, level = 75, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [2771016039] = { "(26-30)% increased Projectile Attack Damage during any Flask Effect" }, } },
- ["ProjectileAttackDamageDuringFlaskEffectUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9727 }, level = 80, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [2771016039] = { "(31-35)% increased Projectile Attack Damage during any Flask Effect" }, } },
- ["SpellDamageDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(20-25)% increased Spell Damage during any Flask Effect", statOrder = { 10147 }, level = 68, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2080171093] = { "(20-25)% increased Spell Damage during any Flask Effect" }, } },
- ["SpellDamageDuringFlaskEffectUber2"] = { type = "Suffix", affix = "of Shaping", "(26-30)% increased Spell Damage during any Flask Effect", statOrder = { 10147 }, level = 75, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2080171093] = { "(26-30)% increased Spell Damage during any Flask Effect" }, } },
- ["SpellDamageDuringFlaskEffectUber3_"] = { type = "Suffix", affix = "of Shaping", "(31-35)% increased Spell Damage during any Flask Effect", statOrder = { 10147 }, level = 80, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2080171093] = { "(31-35)% increased Spell Damage during any Flask Effect" }, } },
- ["PhysicalDamageBeltUber1"] = { type = "Prefix", affix = "The Elder's", "(16-20)% increased Global Physical Damage", statOrder = { 1236 }, level = 68, group = "PhysicalDamagePercentPrefix", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1310194496] = { "(16-20)% increased Global Physical Damage" }, } },
- ["PhysicalDamageBeltUber2"] = { type = "Prefix", affix = "The Elder's", "(21-25)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentPrefix", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1310194496] = { "(21-25)% increased Global Physical Damage" }, } },
- ["PhysicalDamageBeltUber3___"] = { type = "Prefix", affix = "The Elder's", "(26-30)% increased Global Physical Damage", statOrder = { 1236 }, level = 80, group = "PhysicalDamagePercentPrefix", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1310194496] = { "(26-30)% increased Global Physical Damage" }, } },
- ["ElementalDamageBeltUber1"] = { type = "Prefix", affix = "The Shaper's", "(11-15)% increased Elemental Damage", statOrder = { 1985 }, level = 68, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(11-15)% increased Elemental Damage" }, } },
- ["ElementalDamageBeltUber2"] = { type = "Prefix", affix = "The Shaper's", "(16-20)% increased Elemental Damage", statOrder = { 1985 }, level = 75, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(16-20)% increased Elemental Damage" }, } },
- ["ElementalDamageBeltUber3"] = { type = "Prefix", affix = "The Shaper's", "(21-25)% increased Elemental Damage", statOrder = { 1985 }, level = 80, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(21-25)% increased Elemental Damage" }, } },
- ["ArmourDoubleArmourEffectUber1"] = { type = "Prefix", affix = "The Elder's", "(11-20)% chance to Defend with 200% of Armour", statOrder = { 5676 }, level = 75, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [327253797] = { "(11-20)% chance to Defend with 200% of Armour" }, } },
- ["ArmourDoubleArmourEffectUber2"] = { type = "Prefix", affix = "The Elder's", "(21-30)% chance to Defend with 200% of Armour", statOrder = { 5676 }, level = 80, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [327253797] = { "(21-30)% chance to Defend with 200% of Armour" }, } },
- ["IncreasedEnergyShieldFromBodyArmourUber1_"] = { type = "Prefix", affix = "The Shaper's", "(21-25)% increased Energy Shield from Equipped Body Armour", statOrder = { 9137 }, level = 75, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1195319608] = { "(21-25)% increased Energy Shield from Equipped Body Armour" }, } },
- ["IncreasedEnergyShieldFromBodyArmourUber2"] = { type = "Prefix", affix = "The Shaper's", "(26-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 9137 }, level = 80, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1195319608] = { "(26-30)% increased Energy Shield from Equipped Body Armour" }, } },
- ["AdditionalArrowUber1__"] = { type = "Prefix", affix = "The Shaper's", "Bow Attacks fire an additional Arrow", statOrder = { 1799 }, level = 80, group = "AdditionalArrows", weightKey = { "quiver_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } },
- ["PoisonOnHitQuiverUber1_"] = { type = "Suffix", affix = "of the Elder", "15% chance to Poison on Hit", "(15-25)% increased Damage with Poison", statOrder = { 3178, 3186 }, level = 68, group = "PoisonOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(15-25)% increased Damage with Poison" }, [795138349] = { "15% chance to Poison on Hit" }, } },
- ["PoisonOnHitQuiverUber2"] = { type = "Suffix", affix = "of the Elder", "20% chance to Poison on Hit", "(26-30)% increased Damage with Poison", statOrder = { 3178, 3186 }, level = 75, group = "PoisonOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(26-30)% increased Damage with Poison" }, [795138349] = { "20% chance to Poison on Hit" }, } },
- ["BleedOnHitQuiverUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrder = { 2494, 3174 }, level = 68, group = "BleedOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(15-25)% increased Damage with Bleeding" }, [3204820200] = { "Attacks have 10% chance to cause Bleeding" }, } },
- ["BleedOnHitQuiverUber2_"] = { type = "Suffix", affix = "of the Elder", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrder = { 2494, 3174 }, level = 75, group = "BleedOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(26-30)% increased Damage with Bleeding" }, [3204820200] = { "Attacks have 15% chance to cause Bleeding" }, } },
- ["MaimOnHitQuiverUber1"] = { type = "Suffix", affix = "of Shaping", "Attacks have 15% chance to Maim on Hit", statOrder = { 8159 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have 15% chance to Maim on Hit" }, } },
- ["MaimOnHitQuiverUber2"] = { type = "Suffix", affix = "of Shaping", "Attacks have 20% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have 20% chance to Maim on Hit" }, } },
- ["ChancetoGainPhasingOnKillUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(5-6)% chance to gain Phasing for 4 seconds on Kill" }, } },
- ["ChancetoGainPhasingOnKillUber2_"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 75, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(7-8)% chance to gain Phasing for 4 seconds on Kill" }, } },
- ["ChancetoGainPhasingOnKillUber3_"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 80, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(9-10)% chance to gain Phasing for 4 seconds on Kill" }, } },
- ["AddedColdDamagePerFrenzyChargeUber1"] = { type = "Prefix", affix = "The Elder's", "8 to 12 Added Cold Damage per Frenzy Charge", statOrder = { 4278 }, level = 80, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "quiver_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "8 to 12 Added Cold Damage per Frenzy Charge" }, } },
- ["PhysicalAddedAsColdQuiverUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (5-10)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (5-10)% of Physical Damage as Extra Cold Damage" }, } },
- ["PhysicalAddedAsColdQuiverUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (11-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (11-15)% of Physical Damage as Extra Cold Damage" }, } },
- ["MovementVelocityQuiverUber1"] = { type = "Prefix", affix = "The Shaper's", "(3-6)% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocity", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(3-6)% increased Movement Speed" }, } },
- ["MovementVelocityQuiverUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% increased Movement Speed", statOrder = { 1803 }, level = 80, group = "MovementVelocity", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(7-10)% increased Movement Speed" }, } },
- ["FrenzyChargeOnHittingRareOrUniqueUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6765 }, level = 75, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "quiver_elder", "default", }, weightVal = { 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [4179663748] = { "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy" }, } },
- ["MaximumFireResistanceUber1"] = { type = "Prefix", affix = "The Elder's", "+1% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } },
- ["MaximumFireResistanceUber2"] = { type = "Prefix", affix = "The Elder's", "+2% to maximum Fire Resistance", statOrder = { 1628 }, level = 80, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } },
- ["MaximumFireResistanceUber3_"] = { type = "Prefix", affix = "The Elder's", "+3% to maximum Fire Resistance", statOrder = { 1628 }, level = 86, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } },
- ["MaximumColdResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } },
- ["MaximumColdResistanceUber2"] = { type = "Prefix", affix = "The Shaper's", "+2% to maximum Cold Resistance", statOrder = { 1634 }, level = 80, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } },
- ["MaximumColdResistanceUber3"] = { type = "Prefix", affix = "The Shaper's", "+3% to maximum Cold Resistance", statOrder = { 1634 }, level = 86, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } },
- ["MaximumLightningResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } },
- ["MaximumLightningResistanceUber2"] = { type = "Prefix", affix = "The Shaper's", "+2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 80, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } },
- ["MaximumLightningResistanceUber3"] = { type = "Prefix", affix = "The Shaper's", "+3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 86, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } },
- ["MaximumAllResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to all maximum Resistances", statOrder = { 1647 }, level = 80, group = "MaximumResistances", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } },
- ["MaximumAllResistanceUber2__"] = { type = "Prefix", affix = "The Shaper's", "+2% to all maximum Resistances", statOrder = { 1647 }, level = 85, group = "MaximumResistances", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } },
- ["SupportedByCastOnDamageTakenUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 5 Cast when Damage Taken", statOrder = { 244 }, level = 68, group = "SupportedByCastOnDamageTaken", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3036440332] = { "Socketed Gems are Supported by Level 5 Cast when Damage Taken" }, } },
- ["MaximumLifeIncreasePercentShieldUber1"] = { type = "Prefix", affix = "The Elder's", "(3-6)% increased maximum Life", statOrder = { 1576 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(3-6)% increased maximum Life" }, } },
- ["MaximumLifeIncreasePercentShieldUber2"] = { type = "Prefix", affix = "The Elder's", "(7-10)% increased maximum Life", statOrder = { 1576 }, level = 84, group = "MaximumLifeIncreasePercent", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(7-10)% increased maximum Life" }, } },
- ["DisplaySocketedGemsGetReducedReservationUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems have 20% increased Reservation Efficiency", statOrder = { 533 }, level = 68, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 20% increased Reservation Efficiency" }, } },
- ["DisplaySocketedGemsGetReducedReservationUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 533 }, level = 80, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 30% increased Reservation Efficiency" }, } },
- ["BlockAppliesToSpellsShieldUber1_"] = { type = "Suffix", affix = "of Shaping", "(9-12)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 68, group = "BlockingBlocksSpells", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2881111359] = { "(9-12)% Chance to Block Spell Damage" }, } },
- ["BlockAppliesToSpellsShieldUber2_"] = { type = "Suffix", affix = "of Shaping", "(12-15)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "BlockingBlocksSpells", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2881111359] = { "(12-15)% Chance to Block Spell Damage" }, } },
- ["SpellBlockOnShieldUber1"] = { type = "Suffix", affix = "of Shaping", "(7-9)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 68, group = "SpellBlockPercentage", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(7-9)% Chance to Block Spell Damage" }, } },
- ["SpellBlockOnShieldUber2_"] = { type = "Suffix", affix = "of Shaping", "(10-12)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentage", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(10-12)% Chance to Block Spell Damage" }, } },
- ["GainArmourIfBlockedRecentlyUber1"] = { type = "Prefix", affix = "The Elder's", "+(500-650) Armour if you've Blocked Recently", statOrder = { 4504 }, level = 68, group = "GainArmourIfBlockedRecently", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [4091848539] = { "+(500-650) Armour if you've Blocked Recently" }, } },
- ["GainArmourIfBlockedRecentlyUber2"] = { type = "Prefix", affix = "The Elder's", "+(651-800) Armour if you've Blocked Recently", statOrder = { 4504 }, level = 75, group = "GainArmourIfBlockedRecently", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [4091848539] = { "+(651-800) Armour if you've Blocked Recently" }, } },
- ["AdditionalBlockWith5NearbyEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "+(2-3)% Chance to Block Attack Damage if there are at least 5 nearby Enemies", statOrder = { 4551 }, level = 68, group = "AdditionalBlockWith5NearbyEnemies", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [1214532298] = { "+(2-3)% Chance to Block Attack Damage if there are at least 5 nearby Enemies" }, } },
- ["AdditionalBlockWith5NearbyEnemiesUber2"] = { type = "Suffix", affix = "of the Elder", "+(4-5)% Chance to Block Attack Damage if there are at least 5 nearby Enemies", statOrder = { 4551 }, level = 75, group = "AdditionalBlockWith5NearbyEnemies", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [1214532298] = { "+(4-5)% Chance to Block Attack Damage if there are at least 5 nearby Enemies" }, } },
- ["GainRandomChargeOnBlockUber1__"] = { type = "Suffix", affix = "of Shaping", "Gain an Endurance, Frenzy or Power charge when you Block", statOrder = { 6817 }, level = 68, group = "GainRandomChargeOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, tradeHashes = { [2199099676] = { "Gain an Endurance, Frenzy or Power charge when you Block" }, } },
- ["ChanceToDodgeIfBlockedRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(4-7)% chance to Suppress Spell Damage" }, } },
- ["DamagePerBlockChanceUber1_"] = { type = "Prefix", affix = "The Elder's", "1% increased Damage per 1% Chance to Block Attack Damage", statOrder = { 6064 }, level = 68, group = "DamagePerBlockChance", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3400437584] = { "1% increased Damage per 1% Chance to Block Attack Damage" }, } },
- ["ChanceToChillAttackersOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "(25-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5771 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(25-40)% chance to Chill Attackers for 4 seconds on Block" }, } },
- ["ChanceToChillAttackersOnBlockUber2"] = { type = "Suffix", affix = "of Shaping", "(41-50)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5771 }, level = 75, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(41-50)% chance to Chill Attackers for 4 seconds on Block" }, } },
- ["ChanceToShockAttackersOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "(25-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10004 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(25-40)% chance to Shock Attackers for 4 seconds on Block" }, } },
- ["ChanceToShockAttackersOnBlockUber2"] = { type = "Suffix", affix = "of Shaping", "(41-50)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10004 }, level = 75, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(41-50)% chance to Shock Attackers for 4 seconds on Block" }, } },
- ["RecoverLifePercentOnBlockUber1_"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of Life when you Block", statOrder = { 3065 }, level = 68, group = "RecoverLifePercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "resource", "influence_mod", "life" }, tradeHashes = { [2442647190] = { "Recover (3-5)% of Life when you Block" }, } },
- ["RecoverManaPercentOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of your maximum Mana when you Block", statOrder = { 8191 }, level = 68, group = "RecoverManaPercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "resource", "influence_mod", "mana" }, tradeHashes = { [3041288981] = { "Recover (3-5)% of your maximum Mana when you Block" }, } },
- ["RecoverEnergyShieldPercentOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of Energy Shield when you Block", statOrder = { 2472 }, level = 68, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1606263610] = { "Recover (3-5)% of Energy Shield when you Block" }, } },
- ["MaximumTotemUber1"] = { type = "Prefix", affix = "The Shaper's", "+1 to maximum number of Summoned Totems", statOrder = { 2259 }, level = 70, group = "AdditionalTotems", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [429867172] = { "+1 to maximum number of Summoned Totems" }, } },
- ["SupportedByEnduranceChargeOnStunWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 10 Endurance Charge on Melee Stun", statOrder = { 531 }, level = 68, group = "SupportedByEnduranceChargeOnStunWeapon", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3375208082] = { "Socketed Gems are Supported by Level 10 Endurance Charge on Melee Stun" }, } },
- ["SupportedByOnslaughtWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 349 }, level = 68, group = "SupportedByOnslaughtWeapon", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "bow_elder", "default", }, weightVal = { 0, 400, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3237923082] = { "Socketed Gems are Supported by Level 10 Momentum" }, } },
- ["SupportedByPowerChargeOnCritWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 10 Power Charge On Critical Strike", statOrder = { 361 }, level = 68, group = "SupportedByPowerChargeOnCritWeapon", weightKey = { "grants_2h_support", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [4015918489] = { "Socketed Gems are Supported by Level 10 Power Charge On Critical Strike" }, } },
- ["SupportedByFortifyWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 1 Fortify", statOrder = { 501 }, level = 68, group = "SupportedByFortifyWeapon", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 1 Fortify" }, } },
- ["SupportedByArcaneSurgeWeaponUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 231 }, level = 68, group = "SupportedByArcaneSurgeWeapon", weightKey = { "grants_2h_support", "staff_shaper", "default", }, weightVal = { 0, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2287264161] = { "Socketed Gems are Supported by Level 1 Arcane Surge" }, } },
- ["SupportedByInspirationWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 1 Inspiration", statOrder = { 499 }, level = 68, group = "SupportedByInspirationWeapon", weightKey = { "grants_2h_support", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1866911844] = { "Socketed Gems are Supported by Level 1 Inspiration" }, } },
- ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Melee Physical Damage", "(101-115)% increased Physical Damage", statOrder = { 473, 1237 }, level = 68, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [2985291457] = { "Socketed Gems are Supported by Level 16 Melee Physical Damage" }, } },
- ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Melee Physical Damage", "(116-126)% increased Physical Damage", statOrder = { 473, 1237 }, level = 75, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [2985291457] = { "Socketed Gems are Supported by Level 18 Melee Physical Damage" }, } },
- ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Melee Physical Damage", "(127-134)% increased Physical Damage", statOrder = { 473, 1237 }, level = 80, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [2985291457] = { "Socketed Gems are Supported by Level 20 Melee Physical Damage" }, } },
- ["LocalIncreasedPhysicalDamagePercentBrutalityUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Brutality", "(101-115)% increased Physical Damage", statOrder = { 242, 1237 }, level = 68, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [715256302] = { "Socketed Gems are Supported by Level 16 Brutality" }, } },
- ["LocalIncreasedPhysicalDamagePercentBrutalityUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Brutality", "(116-126)% increased Physical Damage", statOrder = { 242, 1237 }, level = 75, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [715256302] = { "Socketed Gems are Supported by Level 18 Brutality" }, } },
- ["LocalIncreasedPhysicalDamagePercentBrutalityUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Brutality", "(127-134)% increased Physical Damage", statOrder = { 242, 1237 }, level = 80, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [715256302] = { "Socketed Gems are Supported by Level 20 Brutality" }, } },
- ["LocalIncreasedPhysicalDamagePercentAddedFireUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Added Fire Damage", "(101-115)% increased Physical Damage", statOrder = { 467, 1237 }, level = 68, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [2572192375] = { "Socketed Gems are Supported by Level 16 Added Fire Damage" }, } },
- ["LocalIncreasedPhysicalDamagePercentAddedFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Added Fire Damage", "(116-126)% increased Physical Damage", statOrder = { 467, 1237 }, level = 75, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [2572192375] = { "Socketed Gems are Supported by Level 18 Added Fire Damage" }, } },
- ["LocalIncreasedPhysicalDamagePercentAddedFireUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Added Fire Damage", "(127-134)% increased Physical Damage", statOrder = { 467, 1237 }, level = 80, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [2572192375] = { "Socketed Gems are Supported by Level 20 Added Fire Damage" }, } },
- ["LocalIncreasedPhysicalDamagePercentRuthlessUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Ruthless", "(101-115)% increased Physical Damage", statOrder = { 375, 1237 }, level = 68, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [3796013729] = { "Socketed Gems are Supported by Level 16 Ruthless" }, } },
- ["LocalIncreasedPhysicalDamagePercentRuthlessUber2__"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Ruthless", "(116-126)% increased Physical Damage", statOrder = { 375, 1237 }, level = 75, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [3796013729] = { "Socketed Gems are Supported by Level 18 Ruthless" }, } },
- ["LocalIncreasedPhysicalDamagePercentRuthlessUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Ruthless", "(127-134)% increased Physical Damage", statOrder = { 375, 1237 }, level = 80, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [3796013729] = { "Socketed Gems are Supported by Level 20 Ruthless" }, } },
- ["LocalIncreasedPhysicalDamagePercentOnslaughtUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Momentum", "(101-115)% increased Physical Damage", statOrder = { 349, 1237 }, level = 68, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [3237923082] = { "Socketed Gems are Supported by Level 16 Momentum" }, } },
- ["LocalIncreasedPhysicalDamagePercentOnslaughtUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Momentum", "(116-126)% increased Physical Damage", statOrder = { 349, 1237 }, level = 75, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [3237923082] = { "Socketed Gems are Supported by Level 18 Momentum" }, } },
- ["LocalIncreasedPhysicalDamagePercentOnslaughtUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Momentum", "(127-134)% increased Physical Damage", statOrder = { 349, 1237 }, level = 80, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [3237923082] = { "Socketed Gems are Supported by Level 20 Momentum" }, } },
- ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Endurance Charge on Melee Stun", "(101-115)% increased Physical Damage", statOrder = { 531, 1237 }, level = 68, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [3375208082] = { "Socketed Gems are Supported by Level 16 Endurance Charge on Melee Stun" }, } },
- ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Endurance Charge on Melee Stun", "(116-126)% increased Physical Damage", statOrder = { 531, 1237 }, level = 75, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [3375208082] = { "Socketed Gems are Supported by Level 18 Endurance Charge on Melee Stun" }, } },
- ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", "(127-134)% increased Physical Damage", statOrder = { 531, 1237 }, level = 80, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [3375208082] = { "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun" }, } },
- ["LocalIncreasedPhysicalDamagePercentFortifyUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Fortify", "(101-115)% increased Physical Damage", statOrder = { 501, 1237 }, level = 68, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [107118693] = { "Socketed Gems are Supported by Level 16 Fortify" }, } },
- ["LocalIncreasedPhysicalDamagePercentFortifyUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Fortify", "(116-126)% increased Physical Damage", statOrder = { 501, 1237 }, level = 75, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [107118693] = { "Socketed Gems are Supported by Level 18 Fortify" }, } },
- ["LocalIncreasedPhysicalDamagePercentFortifyUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fortify", "(127-134)% increased Physical Damage", statOrder = { 501, 1237 }, level = 80, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [107118693] = { "Socketed Gems are Supported by Level 20 Fortify" }, } },
- ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(101-115)% increased Physical Damage", statOrder = { 361, 1237 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike" }, } },
- ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(116-126)% increased Physical Damage", statOrder = { 361, 1237 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike" }, } },
- ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(127-134)% increased Physical Damage", statOrder = { 361, 1237 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike" }, } },
- ["LocalIncreasedPhysicalDamagePercentIronGripUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Iron Grip", "(101-115)% increased Physical Damage", statOrder = { 324, 1237 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [251446805] = { "Socketed Gems are Supported by Level 16 Iron Grip" }, } },
- ["LocalIncreasedPhysicalDamagePercentIronGripUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Iron Grip", "(116-126)% increased Physical Damage", statOrder = { 324, 1237 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [251446805] = { "Socketed Gems are Supported by Level 18 Iron Grip" }, } },
- ["LocalIncreasedPhysicalDamagePercentIronGripUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Iron Grip", "(127-134)% increased Physical Damage", statOrder = { 324, 1237 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [251446805] = { "Socketed Gems are Supported by Level 20 Iron Grip" }, } },
- ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 16 Faster Projectiles", "(101-115)% increased Physical Damage", statOrder = { 487, 1237 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [99089516] = { "Socketed Gems are supported by Level 16 Faster Projectiles" }, } },
- ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 18 Faster Projectiles", "(116-126)% increased Physical Damage", statOrder = { 487, 1237 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [99089516] = { "Socketed Gems are supported by Level 18 Faster Projectiles" }, } },
- ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 20 Faster Projectiles", "(127-134)% increased Physical Damage", statOrder = { 487, 1237 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [99089516] = { "Socketed Gems are supported by Level 20 Faster Projectiles" }, } },
- ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Vicious Projectiles", "(101-115)% increased Physical Damage", statOrder = { 356, 1237 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [2513293614] = { "Socketed Gems are Supported by Level 16 Vicious Projectiles" }, } },
- ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Vicious Projectiles", "(116-126)% increased Physical Damage", statOrder = { 356, 1237 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [2513293614] = { "Socketed Gems are Supported by Level 18 Vicious Projectiles" }, } },
- ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Vicious Projectiles", "(127-134)% increased Physical Damage", statOrder = { 356, 1237 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [2513293614] = { "Socketed Gems are Supported by Level 20 Vicious Projectiles" }, } },
- ["SupportedByMeleeSplashDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 16 Melee Splash", "(23-27)% increased Area Damage", statOrder = { 476, 2040 }, level = 68, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 16 Melee Splash" }, [4251717817] = { "(23-27)% increased Area Damage" }, } },
- ["SupportedByMeleeSplashDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 18 Melee Splash", "(28-32)% increased Area Damage", statOrder = { 476, 2040 }, level = 75, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 18 Melee Splash" }, [4251717817] = { "(28-32)% increased Area Damage" }, } },
- ["SupportedByMeleeSplashDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 20 Melee Splash", "(33-37)% increased Area Damage", statOrder = { 476, 2040 }, level = 80, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 20 Melee Splash" }, [4251717817] = { "(33-37)% increased Area Damage" }, } },
- ["SupportedBySpiritStrikeAreaUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Ancestral Call", "(5-8)% increased Area of Effect", statOrder = { 387, 1885 }, level = 68, group = "SupportedBySpiritStrikeArea", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [280731498] = { "(5-8)% increased Area of Effect" }, [696805682] = { "Socketed Gems are Supported by Level 16 Ancestral Call" }, } },
- ["SupportedBySpiritStrikeAreaUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Ancestral Call", "(9-12)% increased Area of Effect", statOrder = { 387, 1885 }, level = 75, group = "SupportedBySpiritStrikeArea", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [280731498] = { "(9-12)% increased Area of Effect" }, [696805682] = { "Socketed Gems are Supported by Level 18 Ancestral Call" }, } },
- ["SupportedBySpiritStrikeAreaUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Ancestral Call", "(13-15)% increased Area of Effect", statOrder = { 387, 1885 }, level = 80, group = "SupportedBySpiritStrikeArea", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [280731498] = { "(13-15)% increased Area of Effect" }, [696805682] = { "Socketed Gems are Supported by Level 20 Ancestral Call" }, } },
- ["LocalIncreasedAttackSpeedMultistrikeUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Multistrike", "(17-19)% increased Attack Speed", statOrder = { 486, 1418 }, level = 68, group = "LocalIncreasedAttackSpeedMultistrike", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, [2501237765] = { "Socketed Gems are supported by Level 18 Multistrike" }, } },
- ["LocalIncreasedAttackSpeedMultistrikeUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Multistrike", "(20-21)% increased Attack Speed", statOrder = { 486, 1418 }, level = 75, group = "LocalIncreasedAttackSpeedMultistrike", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(20-21)% increased Attack Speed" }, [2501237765] = { "Socketed Gems are supported by Level 20 Multistrike" }, } },
- ["LocalIncreasedAttackSpeedFasterAttacksUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Attacks", "(17-19)% increased Attack Speed", statOrder = { 474, 1418 }, level = 68, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 18 Faster Attacks" }, } },
- ["LocalIncreasedAttackSpeedFasterAttacksUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Attacks", "(20-21)% increased Attack Speed", statOrder = { 474, 1418 }, level = 75, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(20-21)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 20 Faster Attacks" }, } },
- ["LocalIncreasedAttackSpeedRangedOnslaughtUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Momentum", "(8-10)% increased Attack Speed", statOrder = { 349, 1418 }, level = 68, group = "LocalIncreasedAttackSpeedOnslaught", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, [3237923082] = { "Socketed Gems are Supported by Level 18 Momentum" }, } },
- ["LocalIncreasedAttackSpeedRangedOnslaughtUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Momentum", "(11-12)% increased Attack Speed", statOrder = { 349, 1418 }, level = 75, group = "LocalIncreasedAttackSpeedOnslaught", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(11-12)% increased Attack Speed" }, [3237923082] = { "Socketed Gems are Supported by Level 20 Momentum" }, } },
- ["LocalIncreasedAttackSpeedRangedFasterAttacksUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Attacks", "(8-10)% increased Attack Speed", statOrder = { 474, 1418 }, level = 68, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 18 Faster Attacks" }, } },
- ["LocalIncreasedAttackSpeedRangedFasterAttacksUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Attacks", "(11-12)% increased Attack Speed", statOrder = { 474, 1418 }, level = 75, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(11-12)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 20 Faster Attacks" }, } },
- ["LocalIncreasedAttackSpeedTwoHandedDoubleDamageUber1"] = { type = "Suffix", affix = "of Shaping", "(17-19)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1418, 5664 }, level = 68, group = "AttackSpeedDoubleDamage", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, [1172810729] = { "(4-6)% chance to deal Double Damage" }, } },
- ["LocalIncreasedAttackSpeedTwoHandedDoubleDamageUber2"] = { type = "Suffix", affix = "of Shaping", "(20-21)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1418, 5664 }, level = 75, group = "AttackSpeedDoubleDamage", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, tradeHashes = { [210067635] = { "(20-21)% increased Attack Speed" }, [1172810729] = { "(4-6)% chance to deal Double Damage" }, } },
- ["LocalIncreasedAttackSpeedTwoHandedKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "(17-19)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1418, 4899 }, level = 68, group = "AttackSpeedKilledRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, [1507059769] = { "20% increased Attack Speed if you've Killed Recently" }, } },
- ["LocalIncreasedAttackSpeedTwoHandedKilledRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(20-21)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1418, 4899 }, level = 75, group = "AttackSpeedKilledRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(20-21)% increased Attack Speed" }, [1507059769] = { "20% increased Attack Speed if you've Killed Recently" }, } },
- ["LocalIncreasedAttackSpeedRangedDoubleDamageUber1"] = { type = "Suffix", affix = "of Shaping", "(8-10)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1418, 5664 }, level = 68, group = "AttackSpeedDoubleDamage", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, [1172810729] = { "(4-6)% chance to deal Double Damage" }, } },
- ["LocalIncreasedAttackSpeedRangedDoubleDamageUber2"] = { type = "Suffix", affix = "of Shaping", "(11-12)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1418, 5664 }, level = 75, group = "AttackSpeedDoubleDamage", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, tradeHashes = { [210067635] = { "(11-12)% increased Attack Speed" }, [1172810729] = { "(4-6)% chance to deal Double Damage" }, } },
- ["LocalIncreasedAttackSpeedRangedKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "(8-10)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1418, 4899 }, level = 68, group = "AttackSpeedKilledRecently", weightKey = { "bow_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, [1507059769] = { "20% increased Attack Speed if you've Killed Recently" }, } },
- ["LocalIncreasedAttackSpeedRangedKilledRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(11-12)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1418, 4899 }, level = 75, group = "AttackSpeedKilledRecently", weightKey = { "bow_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(11-12)% increased Attack Speed" }, [1507059769] = { "20% increased Attack Speed if you've Killed Recently" }, } },
- ["CriticalStrikeChanceSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Increased Critical Strikes", "(22-25)% increased Critical Strike Chance", statOrder = { 318, 1469 }, level = 68, group = "CriticalStrikeChanceSupported", weightKey = { "grants_crit_chance_support", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "attack", "critical", "gem" }, tradeHashes = { [2375316951] = { "(22-25)% increased Critical Strike Chance" }, [2259700079] = { "Socketed Gems are Supported by Level 18 Increased Critical Strikes" }, } },
- ["CriticalStrikeChanceSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", "(26-29)% increased Critical Strike Chance", statOrder = { 318, 1469 }, level = 75, group = "CriticalStrikeChanceSupported", weightKey = { "grants_crit_chance_support", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "attack", "critical", "gem" }, tradeHashes = { [2375316951] = { "(26-29)% increased Critical Strike Chance" }, [2259700079] = { "Socketed Gems are Supported by Level 20 Increased Critical Strikes" }, } },
- ["CriticalStrikeChanceTwoHandedCritChanceRecentlyUber1_"] = { type = "Suffix", affix = "of Shaping", "(22-25)% increased Critical Strike Chance", "50% increased Critical Strike Chance if you have Killed Recently", statOrder = { 1469, 5930 }, level = 68, group = "CriticalStrikeChanceTwoHandedCritChanceRecently", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [2375316951] = { "(22-25)% increased Critical Strike Chance" }, [3914638685] = { "50% increased Critical Strike Chance if you have Killed Recently" }, } },
- ["CriticalStrikeChanceTwoHandedCritChanceRecentlyUber2"] = { type = "Suffix", affix = "of Shaping", "(26-29)% increased Critical Strike Chance", "50% increased Critical Strike Chance if you have Killed Recently", statOrder = { 1469, 5930 }, level = 75, group = "CriticalStrikeChanceTwoHandedCritChanceRecently", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [2375316951] = { "(26-29)% increased Critical Strike Chance" }, [3914638685] = { "50% increased Critical Strike Chance if you have Killed Recently" }, } },
- ["CriticalStrikeChanceTwoHandedCritMultiRecentlyUber1_"] = { type = "Suffix", affix = "of the Elder", "(22-25)% increased Critical Strike Chance", "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", statOrder = { 1469, 5965 }, level = 68, group = "CriticalStrikeChanceTwoHandedCritMultiRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "critical" }, tradeHashes = { [2375316951] = { "(22-25)% increased Critical Strike Chance" }, [1478247313] = { "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently" }, } },
- ["CriticalStrikeChanceTwoHandedCritMultiRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(26-29)% increased Critical Strike Chance", "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", statOrder = { 1469, 5965 }, level = 75, group = "CriticalStrikeChanceTwoHandedCritMultiRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "critical" }, tradeHashes = { [2375316951] = { "(26-29)% increased Critical Strike Chance" }, [1478247313] = { "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently" }, } },
- ["CriticalMultiplierSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Increased Critical Damage", "+(22-25)% to Global Critical Strike Multiplier", statOrder = { 490, 1493 }, level = 68, group = "CriticalStrikeMultiplierSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "attack", "critical", "gem" }, tradeHashes = { [1108755349] = { "Socketed Gems are supported by Level 18 Increased Critical Damage" }, [3556824919] = { "+(22-25)% to Global Critical Strike Multiplier" }, } },
- ["CriticalMultiplierSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Increased Critical Damage", "+(26-29)% to Global Critical Strike Multiplier", statOrder = { 490, 1493 }, level = 75, group = "CriticalStrikeMultiplierSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "attack", "critical", "gem" }, tradeHashes = { [1108755349] = { "Socketed Gems are supported by Level 20 Increased Critical Damage" }, [3556824919] = { "+(26-29)% to Global Critical Strike Multiplier" }, } },
- ["CriticalMultiplierSupportedTwoHandedUber1"] = { type = "Suffix", affix = "of Shaping", "+(22-25)% to Global Critical Strike Multiplier", "(5-8)% chance to gain a Power Charge on Critical Strike", statOrder = { 1493, 1835 }, level = 68, group = "CriticalMultiplierSupportedTwoHanded", weightKey = { "bow_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod", "damage", "attack", "critical" }, tradeHashes = { [3814876985] = { "(5-8)% chance to gain a Power Charge on Critical Strike" }, [3556824919] = { "+(22-25)% to Global Critical Strike Multiplier" }, } },
- ["CriticalMultiplierSupportedTwoHandedUber2"] = { type = "Suffix", affix = "of Shaping", "+(26-29)% to Global Critical Strike Multiplier", "(9-10)% chance to gain a Power Charge on Critical Strike", statOrder = { 1493, 1835 }, level = 75, group = "CriticalMultiplierSupportedTwoHanded", weightKey = { "bow_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod", "damage", "attack", "critical" }, tradeHashes = { [3814876985] = { "(9-10)% chance to gain a Power Charge on Critical Strike" }, [3556824919] = { "+(26-29)% to Global Critical Strike Multiplier" }, } },
- ["WeaponElementalDamageSupportedUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 18 Elemental Damage with Attacks", "(28-32)% increased Elemental Damage with Attack Skills", statOrder = { 492, 6326 }, level = 68, group = "IncreasedWeaponElementalDamagePercentSupported", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "attack", "gem" }, tradeHashes = { [387439868] = { "(28-32)% increased Elemental Damage with Attack Skills" }, [2532625478] = { "Socketed Gems are supported by Level 18 Elemental Damage with Attacks" }, } },
- ["WeaponElementalDamageSupportedUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 20 Elemental Damage with Attacks", "(33-37)% increased Elemental Damage with Attack Skills", statOrder = { 492, 6326 }, level = 75, group = "IncreasedWeaponElementalDamagePercentSupported", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "attack", "gem" }, tradeHashes = { [387439868] = { "(33-37)% increased Elemental Damage with Attack Skills" }, [2532625478] = { "Socketed Gems are supported by Level 20 Elemental Damage with Attacks" }, } },
- ["ChanceToMaimUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Maim", "15% chance to Maim on Hit", statOrder = { 336, 7993 }, level = 68, group = "ChanceToMaimSupported", weightKey = { "grants_2h_support", "2h_mace_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "influence_mod", "attack", "gem" }, tradeHashes = { [3826977109] = { "Socketed Gems are Supported by Level 18 Maim" }, [2763429652] = { "15% chance to Maim on Hit" }, } },
- ["ChanceToMaimUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Maim", "20% chance to Maim on Hit", statOrder = { 336, 7993 }, level = 75, group = "ChanceToMaimSupported", weightKey = { "grants_2h_support", "2h_mace_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "influence_mod", "attack", "gem" }, tradeHashes = { [3826977109] = { "Socketed Gems are Supported by Level 20 Maim" }, [2763429652] = { "20% chance to Maim on Hit" }, } },
- ["ChanceToPoisonUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance to Poison", "15% chance to Poison on Hit", statOrder = { 528, 8007 }, level = 68, group = "ChanceToPoisonSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "poison", "influence_mod", "chaos", "attack", "ailment", "gem" }, tradeHashes = { [3885634897] = { "15% chance to Poison on Hit" }, [228165595] = { "Socketed Gems are Supported by Level 18 Chance to Poison" }, } },
- ["ChanceToPoisonUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance to Poison", "20% chance to Poison on Hit", statOrder = { 528, 8007 }, level = 75, group = "ChanceToPoisonSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "poison", "influence_mod", "chaos", "attack", "ailment", "gem" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit" }, [228165595] = { "Socketed Gems are Supported by Level 20 Chance to Poison" }, } },
- ["ChanceToBleedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance To Bleed", "10% chance to cause Bleeding on Hit", statOrder = { 249, 2488 }, level = 68, group = "ChanceToBleedSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "bleed", "influence_mod", "physical", "attack", "ailment", "gem" }, tradeHashes = { [1519615863] = { "10% chance to cause Bleeding on Hit" }, [4197676934] = { "Socketed Gems are Supported by Level 18 Chance To Bleed" }, } },
- ["ChanceToBleedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance To Bleed", "15% chance to cause Bleeding on Hit", statOrder = { 249, 2488 }, level = 75, group = "ChanceToBleedSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "bleed", "influence_mod", "physical", "attack", "ailment", "gem" }, tradeHashes = { [1519615863] = { "15% chance to cause Bleeding on Hit" }, [4197676934] = { "Socketed Gems are Supported by Level 20 Chance To Bleed" }, } },
- ["PhysicalAddedAsFireUber1_"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (7-12)% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (13-17)% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsFireUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 80, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (18-20)% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsColdUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (7-12)% of Physical Damage as Extra Cold Damage" }, } },
- ["PhysicalAddedAsColdUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (13-17)% of Physical Damage as Extra Cold Damage" }, } },
- ["PhysicalAddedAsColdUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 80, group = "PhysicalAddedAsCold", weightKey = { "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (18-20)% of Physical Damage as Extra Cold Damage" }, } },
- ["PhysicalAddedAsLightningUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (7-12)% of Physical Damage as Extra Lightning Damage" }, } },
- ["PhysicalAddedAsLightningUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (13-17)% of Physical Damage as Extra Lightning Damage" }, } },
- ["PhysicalAddedAsLightningUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 80, group = "PhysicalAddedAsLightning", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (18-20)% of Physical Damage as Extra Lightning Damage" }, } },
- ["OnslaugtOnKillUber1"] = { type = "Suffix", affix = "of Shaping", "(5-6)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3385 }, level = 68, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [665823128] = { "(5-6)% chance to gain Onslaught for 4 seconds on Kill" }, } },
- ["OnslaugtOnKillUber2"] = { type = "Suffix", affix = "of Shaping", "(7-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3385 }, level = 75, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [665823128] = { "(7-8)% chance to gain Onslaught for 4 seconds on Kill" }, } },
- ["OnslaugtOnKillUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3385 }, level = 83, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [665823128] = { "(9-10)% chance to gain Onslaught for 4 seconds on Kill" }, } },
- ["UnholyMightOnKillUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3382 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3562211447] = { "(5-6)% chance to gain Unholy Might for 3 seconds on Kill" }, } },
- ["UnholyMightOnKillUber2_"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3382 }, level = 75, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3562211447] = { "(7-8)% chance to gain Unholy Might for 3 seconds on Kill" }, } },
- ["UnholyMightOnKillUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3382 }, level = 84, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3562211447] = { "(9-10)% chance to gain Unholy Might for 3 seconds on Kill" }, } },
- ["BlindOnHitUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4920 }, level = 68, group = "AttacksBlindOnHitChance", weightKey = { "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "axe_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(5-6)% chance to Blind Enemies on Hit with Attacks" }, } },
- ["BlindOnHitUber2"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4920 }, level = 75, group = "AttacksBlindOnHitChance", weightKey = { "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "axe_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(7-8)% chance to Blind Enemies on Hit with Attacks" }, } },
- ["BlindOnHitUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4920 }, level = 81, group = "AttacksBlindOnHitChance", weightKey = { "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "axe_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(9-10)% chance to Blind Enemies on Hit with Attacks" }, } },
- ["BlindOnHitShaperUber1"] = { type = "Suffix", affix = "of Shaping", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4920 }, level = 68, group = "AttacksBlindOnHitChance", weightKey = { "quiver_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(5-6)% chance to Blind Enemies on Hit with Attacks" }, } },
- ["BlindOnHitShaperUber2"] = { type = "Suffix", affix = "of Shaping", "(7-8)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4920 }, level = 75, group = "AttacksBlindOnHitChance", weightKey = { "quiver_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(7-8)% chance to Blind Enemies on Hit with Attacks" }, } },
- ["BlindOnHitShaperUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4920 }, level = 81, group = "AttacksBlindOnHitChance", weightKey = { "quiver_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(9-10)% chance to Blind Enemies on Hit with Attacks" }, } },
- ["BlockWhileDualWieldingUber1"] = { type = "Suffix", affix = "of Shaping", "+(2-4)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1167 }, level = 68, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2166444903] = { "+(2-4)% Chance to Block Attack Damage while Dual Wielding" }, } },
- ["BlockWhileDualWieldingUber2"] = { type = "Suffix", affix = "of Shaping", "+(5-7)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1167 }, level = 75, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2166444903] = { "+(5-7)% Chance to Block Attack Damage while Dual Wielding" }, } },
- ["BlockWhileDualWieldingUber3_"] = { type = "Suffix", affix = "of Shaping", "+(8-9)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1167 }, level = 80, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2166444903] = { "+(8-9)% Chance to Block Attack Damage while Dual Wielding" }, } },
- ["PhysicalDamageWhileDualWieldingUber1"] = { type = "Suffix", affix = "of the Elder", "(23-27)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1284 }, level = 68, group = "DualWieldingPhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "(23-27)% increased Physical Attack Damage while Dual Wielding" }, } },
- ["PhysicalDamageWhileDualWieldingUber2"] = { type = "Suffix", affix = "of the Elder", "(28-32)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1284 }, level = 75, group = "DualWieldingPhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "(28-32)% increased Physical Attack Damage while Dual Wielding" }, } },
- ["PhysicalDamageWhileDualWieldingUber3"] = { type = "Suffix", affix = "of the Elder", "(33-37)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1284 }, level = 80, group = "DualWieldingPhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "(33-37)% increased Physical Attack Damage while Dual Wielding" }, } },
- ["ElementalPenetrationWeaponUber1"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (5-6)% Elemental Resistances", statOrder = { 2985 }, level = 68, group = "ElementalPenetration", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (5-6)% Elemental Resistances" }, } },
- ["ElementalPenetrationWeaponUber2"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (7-8)% Elemental Resistances", statOrder = { 2985 }, level = 75, group = "ElementalPenetration", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (7-8)% Elemental Resistances" }, } },
- ["ElementalPenetrationWeaponUber3"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (9-10)% Elemental Resistances", statOrder = { 2985 }, level = 83, group = "ElementalPenetration", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (9-10)% Elemental Resistances" }, } },
- ["ElementalPenetrationWeaponNewUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2985 }, level = 68, group = "ElementalPenetration", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 4% Elemental Resistances" }, } },
- ["ElementalPenetrationWeaponNewUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 5% Elemental Resistances", statOrder = { 2985 }, level = 75, group = "ElementalPenetration", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 5% Elemental Resistances" }, } },
- ["ElementalPenetrationWeaponNewUber3"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 6% Elemental Resistances", statOrder = { 2985 }, level = 83, group = "ElementalPenetration", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 6% Elemental Resistances" }, } },
- ["ElementalPenetrationTwoWeaponNewUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (7-8)% Elemental Resistances", statOrder = { 2985 }, level = 68, group = "ElementalPenetration", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (7-8)% Elemental Resistances" }, } },
- ["ElementalPenetrationTwoWeaponNewUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (9-10)% Elemental Resistances", statOrder = { 2985 }, level = 75, group = "ElementalPenetration", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (9-10)% Elemental Resistances" }, } },
- ["ElementalPenetrationTwoWeaponNewUber3"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (11-12)% Elemental Resistances", statOrder = { 2985 }, level = 83, group = "ElementalPenetration", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (11-12)% Elemental Resistances" }, } },
- ["WeaponSocketedAttacksDamageFinalUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 40% more Attack Damage", statOrder = { 551 }, level = 83, group = "SocketedAttacksDamageFinal", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "influence_mod", "damage", "attack", "gem" }, tradeHashes = { [1970781345] = { "Socketed Skills deal 40% more Attack Damage" }, } },
- ["WeaponSocketedAttacksDamageFinalTwoHandUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 20% more Attack Damage", statOrder = { 551 }, level = 83, group = "SocketedAttacksDamageFinal", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "influence_mod", "damage", "attack", "gem" }, tradeHashes = { [1970781345] = { "Socketed Skills deal 20% more Attack Damage" }, } },
- ["WeaponSocketedSpellsDamageFinalUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 40% more Spell Damage", statOrder = { 570 }, level = 83, group = "SocketedSpellsDamageFinal", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2964800094] = { "Socketed Skills deal 40% more Spell Damage" }, } },
- ["WeaponSocketedSpellsDamageFinalTwoHandUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 20% more Spell Damage", statOrder = { 570 }, level = 83, group = "SocketedSpellsDamageFinal", weightKey = { "staff_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2964800094] = { "Socketed Skills deal 20% more Spell Damage" }, } },
- ["ChanceForPoisonDamageFinalInflictedWithThisWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7876 }, level = 83, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [2523146878] = { "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage" }, } },
- ["ChanceForBleedDamageFinalInflictedWithThisWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7875 }, level = 83, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1560880986] = { "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage" }, } },
- ["LocalBleedDamageOverTimeMultiplierUber1___"] = { type = "Prefix", affix = "The Elder's", "+(37-42)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7869 }, level = 68, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, tradeHashes = { [951608773] = { "+(37-42)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon" }, } },
- ["LocalBleedDamageOverTimeMultiplierUber2"] = { type = "Prefix", affix = "The Elder's", "+(43-50)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7869 }, level = 75, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, tradeHashes = { [951608773] = { "+(43-50)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon" }, } },
- ["LocalBleedDamageOverTimeMultiplierUber3"] = { type = "Prefix", affix = "The Elder's", "+(51-59)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7869 }, level = 83, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, tradeHashes = { [951608773] = { "+(51-59)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon" }, } },
- ["LocalPoisonDamageOverTimeMultiplierUber1__"] = { type = "Prefix", affix = "The Elder's", "+(37-42)% to Damage over Time Multiplier for Poison inflicted with this Weapon", statOrder = { 1269 }, level = 68, group = "LocalPoisonDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "poison", "influence_mod", "chaos", "attack", "ailment" }, tradeHashes = { [4096656097] = { "+(37-42)% to Damage over Time Multiplier for Poison inflicted with this Weapon" }, } },
- ["LocalPoisonDamageOverTimeMultiplierUber2__"] = { type = "Prefix", affix = "The Elder's", "+(43-50)% to Damage over Time Multiplier for Poison inflicted with this Weapon", statOrder = { 1269 }, level = 75, group = "LocalPoisonDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "poison", "influence_mod", "chaos", "attack", "ailment" }, tradeHashes = { [4096656097] = { "+(43-50)% to Damage over Time Multiplier for Poison inflicted with this Weapon" }, } },
- ["LocalPoisonDamageOverTimeMultiplierUber3"] = { type = "Prefix", affix = "The Elder's", "+(51-59)% to Damage over Time Multiplier for Poison inflicted with this Weapon", statOrder = { 1269 }, level = 83, group = "LocalPoisonDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "poison", "influence_mod", "chaos", "attack", "ailment" }, tradeHashes = { [4096656097] = { "+(51-59)% to Damage over Time Multiplier for Poison inflicted with this Weapon" }, } },
- ["PhysicalDamageConvertedToChaosUber1"] = { type = "Suffix", affix = "of the Elder", "(10-15)% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 68, group = "PhysicalDamageConvertedToChaos", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "influence_mod", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(10-15)% of Physical Damage Converted to Chaos Damage" }, } },
- ["PhysicalDamageConvertedToChaosUber2"] = { type = "Suffix", affix = "of the Elder", "(16-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "PhysicalDamageConvertedToChaos", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "influence_mod", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(16-20)% of Physical Damage Converted to Chaos Damage" }, } },
- ["PhysicalDamageConvertedToChaosUber3"] = { type = "Suffix", affix = "of the Elder", "(21-25)% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 85, group = "PhysicalDamageConvertedToChaos", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "influence_mod", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(21-25)% of Physical Damage Converted to Chaos Damage" }, } },
- ["AddedFireDamagePerStrengthUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4874 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "default", }, weightVal = { 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1060540099] = { "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength" }, } },
- ["AddedFireDamagePerStrengthTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4874 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1060540099] = { "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength" }, } },
- ["AddedColdDamagePerDexterityUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4929 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "bow_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [149574107] = { "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity" }, } },
- ["AddedColdDamagePerDexterityTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4929 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [149574107] = { "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity" }, } },
- ["AddedLightningDamagePerIntelligenceUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4877 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } },
- ["AddedLightningDamagePerIntelligenceTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4877 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } },
- ["SupportedByCastOnCritUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 18 Cast On Critical Strike", statOrder = { 477 }, level = 68, group = "SupportedByCastOnCritWeapon", weightKey = { "grants_2h_support", "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "default", }, weightVal = { 0, 350, 350, 350, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2325632050] = { "Socketed Gems are supported by Level 18 Cast On Critical Strike" }, } },
- ["SupportedByCastOnCritUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 20 Cast On Critical Strike", statOrder = { 477 }, level = 75, group = "SupportedByCastOnCritWeapon", weightKey = { "grants_2h_support", "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "default", }, weightVal = { 0, 350, 350, 350, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2325632050] = { "Socketed Gems are supported by Level 20 Cast On Critical Strike" }, } },
- ["SupportedByCastOnMeleeKillUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cast On Melee Kill", statOrder = { 245 }, level = 68, group = "SupportedByCastOnMeleeKillWeapon", weightKey = { "grants_2h_support", "2h_mace_shaper", "2h_axe_shaper", "2h_sword_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3312593243] = { "Socketed Gems are Supported by Level 18 Cast On Melee Kill" }, } },
- ["SupportedByCastOnMeleeKillUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cast On Melee Kill", statOrder = { 245 }, level = 75, group = "SupportedByCastOnMeleeKillWeapon", weightKey = { "grants_2h_support", "2h_mace_shaper", "2h_axe_shaper", "2h_sword_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3312593243] = { "Socketed Gems are Supported by Level 20 Cast On Melee Kill" }, } },
- ["SupportedByCastWhileChannellingUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cast While Channelling", statOrder = { 247 }, level = 68, group = "SupportedByCastWhileChannellingWeapon", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1316646496] = { "Socketed Gems are Supported by Level 18 Cast While Channelling" }, } },
- ["SupportedByCastWhileChannellingUber2_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cast While Channelling", statOrder = { 247 }, level = 75, group = "SupportedByCastWhileChannellingWeapon", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1316646496] = { "Socketed Gems are Supported by Level 20 Cast While Channelling" }, } },
- ["CullingStrikeUber1"] = { type = "Suffix", affix = "of the Elder", "Culling Strike", statOrder = { 2044 }, level = 68, group = "CullingStrike", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2524254339] = { "Culling Strike" }, } },
- ["MeleeWeaponRangeUber1"] = { type = "Suffix", affix = "of the Elder", "+0.1 metres to Weapon Range", statOrder = { 2750 }, level = 75, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [350598685] = { "+0.1 metres to Weapon Range" }, } },
- ["MeleeWeaponRangeUber2"] = { type = "Suffix", affix = "of the Elder", "+0.2 metres to Weapon Range", statOrder = { 2750 }, level = 85, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } },
- ["AreaOfEffectTwoHandedWeaponUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% increased Area of Effect", statOrder = { 1885 }, level = 68, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(5-10)% increased Area of Effect" }, } },
- ["AreaOfEffectTwoHandedWeaponUber2"] = { type = "Suffix", affix = "of the Elder", "(11-15)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(11-15)% increased Area of Effect" }, } },
- ["AreaOfEffectTwoHandedWeaponUber3"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Area of Effect", statOrder = { 1885 }, level = 82, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(16-20)% increased Area of Effect" }, } },
- ["MovementVelocityTwoHandedWeaponUber1"] = { type = "Suffix", affix = "of Shaping", "(3-6)% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(3-6)% increased Movement Speed" }, } },
- ["MovementVelocityTwoHandedWeaponUber2"] = { type = "Suffix", affix = "of Shaping", "(7-10)% increased Movement Speed", statOrder = { 1803 }, level = 84, group = "MovementVelocity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(7-10)% increased Movement Speed" }, } },
- ["AdditionalArrowsUber1"] = { type = "Suffix", affix = "of the Elder", "Skills fire an additional Projectile", statOrder = { 1797 }, level = 82, group = "AdditionalProjectiles", weightKey = { "2h_sword_elder", "2h_axe_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [74338099] = { "Skills fire an additional Projectile" }, } },
- ["AdditionalPierceRangedUber1"] = { type = "Suffix", affix = "of Shaping", "Projectiles Pierce an additional Target", statOrder = { 1795 }, level = 68, group = "AdditionalPierce", weightKey = { "bow_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } },
- ["AdditionalPierceRangedUber2"] = { type = "Suffix", affix = "of Shaping", "Projectiles Pierce 2 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPierce", weightKey = { "bow_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } },
- ["SpellDamageOnWeaponControlledDestructionUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Controlled Destruction", "(45-52)% increased Spell Damage", statOrder = { 530, 1228 }, level = 68, group = "WeaponSpellDamageControlledDestruction", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(45-52)% increased Spell Damage" }, [3718597497] = { "Socketed Gems are Supported by Level 16 Controlled Destruction" }, } },
- ["SpellDamageOnWeaponControlledDestructionUber2_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Controlled Destruction", "(53-56)% increased Spell Damage", statOrder = { 530, 1228 }, level = 75, group = "WeaponSpellDamageControlledDestruction", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(53-56)% increased Spell Damage" }, [3718597497] = { "Socketed Gems are Supported by Level 18 Controlled Destruction" }, } },
- ["SpellDamageOnWeaponControlledDestructionUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Controlled Destruction", "(57-60)% increased Spell Damage", statOrder = { 530, 1228 }, level = 80, group = "WeaponSpellDamageControlledDestruction", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(57-60)% increased Spell Damage" }, [3718597497] = { "Socketed Gems are Supported by Level 20 Controlled Destruction" }, } },
- ["SpellDamageOnWeaponEfficacyUber1_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Efficacy", "(45-52)% increased Spell Damage", statOrder = { 270, 1228 }, level = 68, group = "WeaponSpellDamageEfficacy", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(45-52)% increased Spell Damage" }, [3924539382] = { "Socketed Gems are Supported by Level 16 Efficacy" }, } },
- ["SpellDamageOnWeaponEfficacyUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Efficacy", "(53-56)% increased Spell Damage", statOrder = { 270, 1228 }, level = 75, group = "WeaponSpellDamageEfficacy", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(53-56)% increased Spell Damage" }, [3924539382] = { "Socketed Gems are Supported by Level 18 Efficacy" }, } },
- ["SpellDamageOnWeaponEfficacyUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Efficacy", "(57-60)% increased Spell Damage", statOrder = { 270, 1228 }, level = 80, group = "WeaponSpellDamageEfficacy", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(57-60)% increased Spell Damage" }, [3924539382] = { "Socketed Gems are Supported by Level 20 Efficacy" }, } },
- ["SpellDamageOnWeaponArcaneSurgeUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Arcane Surge", "(67-78)% increased Spell Damage", statOrder = { 231, 1228 }, level = 68, group = "WeaponSpellDamageArcaneSurge", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(67-78)% increased Spell Damage" }, [2287264161] = { "Socketed Gems are Supported by Level 16 Arcane Surge" }, } },
- ["SpellDamageOnWeaponArcaneSurgeUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Arcane Surge", "(79-83)% increased Spell Damage", statOrder = { 231, 1228 }, level = 75, group = "WeaponSpellDamageArcaneSurge", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(79-83)% increased Spell Damage" }, [2287264161] = { "Socketed Gems are Supported by Level 18 Arcane Surge" }, } },
- ["SpellDamageOnWeaponArcaneSurgeUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Arcane Surge", "(84-87)% increased Spell Damage", statOrder = { 231, 1228 }, level = 80, group = "WeaponSpellDamageArcaneSurge", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(84-87)% increased Spell Damage" }, [2287264161] = { "Socketed Gems are Supported by Level 20 Arcane Surge" }, } },
- ["SpellDamageOnWeaponReducedManaUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Inspiration", "(67-78)% increased Spell Damage", statOrder = { 499, 1228 }, level = 68, group = "WeaponSpellDamageReducedMana", weightKey = { "grants_2h_support", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(67-78)% increased Spell Damage" }, [1866911844] = { "Socketed Gems are Supported by Level 16 Inspiration" }, } },
- ["SpellDamageOnWeaponReducedManaUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Inspiration", "(79-83)% increased Spell Damage", statOrder = { 499, 1228 }, level = 75, group = "WeaponSpellDamageReducedMana", weightKey = { "grants_2h_support", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(79-83)% increased Spell Damage" }, [1866911844] = { "Socketed Gems are Supported by Level 18 Inspiration" }, } },
- ["SpellDamageOnWeaponReducedManaUber3__"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Inspiration", "(84-87)% increased Spell Damage", statOrder = { 499, 1228 }, level = 80, group = "WeaponSpellDamageReducedMana", weightKey = { "grants_2h_support", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(84-87)% increased Spell Damage" }, [1866911844] = { "Socketed Gems are Supported by Level 20 Inspiration" }, } },
- ["SpellDamageOnWeaponPowerChargeOnCritUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(67-78)% increased Spell Damage", statOrder = { 361, 1228 }, level = 68, group = "WeaponSpellDamagePowerChargeOnCrit", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(67-78)% increased Spell Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike" }, } },
- ["SpellDamageOnWeaponPowerChargeOnCritUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(79-83)% increased Spell Damage", statOrder = { 361, 1228 }, level = 75, group = "WeaponSpellDamagePowerChargeOnCrit", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(79-83)% increased Spell Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike" }, } },
- ["SpellDamageOnWeaponPowerChargeOnCritUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(84-87)% increased Spell Damage", statOrder = { 361, 1228 }, level = 80, group = "WeaponSpellDamagePowerChargeOnCrit", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(84-87)% increased Spell Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike" }, } },
- ["ElementalDamagePrefixOnWeaponElementalFocusUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Elemental Focus", "(45-52)% increased Elemental Damage", statOrder = { 272, 1985 }, level = 68, group = "ElementalDamagePrefixElementalFocus", weightKey = { "sceptre_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "gem" }, tradeHashes = { [1169422227] = { "Socketed Gems are Supported by Level 16 Elemental Focus" }, [3141070085] = { "(45-52)% increased Elemental Damage" }, } },
- ["ElementalDamagePrefixOnWeaponElementalFocusUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Elemental Focus", "(53-56)% increased Elemental Damage", statOrder = { 272, 1985 }, level = 75, group = "ElementalDamagePrefixElementalFocus", weightKey = { "sceptre_shaper", "default", }, weightVal = { 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "gem" }, tradeHashes = { [1169422227] = { "Socketed Gems are Supported by Level 18 Elemental Focus" }, [3141070085] = { "(53-56)% increased Elemental Damage" }, } },
- ["ElementalDamagePrefixOnWeaponElementalFocusUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Elemental Focus", "(57-60)% increased Elemental Damage", statOrder = { 272, 1985 }, level = 80, group = "ElementalDamagePrefixElementalFocus", weightKey = { "sceptre_shaper", "default", }, weightVal = { 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "gem" }, tradeHashes = { [1169422227] = { "Socketed Gems are Supported by Level 20 Elemental Focus" }, [3141070085] = { "(57-60)% increased Elemental Damage" }, } },
- ["FireDamagePrefixOnWeaponFirePenetrationUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Fire Penetration", "(45-52)% increased Fire Damage", statOrder = { 282, 1362 }, level = 68, group = "FireDamagePrefixFirePenetration", weightKey = { "sceptre_elder", "wand_elder", "default", }, weightVal = { 400, 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [3962278098] = { "(45-52)% increased Fire Damage" }, [1979658770] = { "Socketed Gems are Supported by Level 16 Fire Penetration" }, } },
- ["FireDamagePrefixOnWeaponFirePenetrationUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Fire Penetration", "(53-56)% increased Fire Damage", statOrder = { 282, 1362 }, level = 75, group = "FireDamagePrefixFirePenetration", weightKey = { "sceptre_elder", "wand_elder", "default", }, weightVal = { 200, 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [3962278098] = { "(53-56)% increased Fire Damage" }, [1979658770] = { "Socketed Gems are Supported by Level 18 Fire Penetration" }, } },
- ["FireDamagePrefixOnWeaponFirePenetrationUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fire Penetration", "(57-60)% increased Fire Damage", statOrder = { 282, 1362 }, level = 80, group = "FireDamagePrefixFirePenetration", weightKey = { "sceptre_elder", "wand_elder", "default", }, weightVal = { 100, 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [3962278098] = { "(57-60)% increased Fire Damage" }, [1979658770] = { "Socketed Gems are Supported by Level 20 Fire Penetration" }, } },
- ["ColdDamagePrefixOnWeaponColdPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Cold Penetration", "(45-52)% increased Cold Damage", statOrder = { 518, 1371 }, level = 68, group = "ColdDamagePrefixColdPenetration", weightKey = { "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "cold", "gem" }, tradeHashes = { [3291658075] = { "(45-52)% increased Cold Damage" }, [1991958615] = { "Socketed Gems are Supported by Level 16 Cold Penetration" }, } },
- ["ColdDamagePrefixOnWeaponColdPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cold Penetration", "(53-56)% increased Cold Damage", statOrder = { 518, 1371 }, level = 75, group = "ColdDamagePrefixColdPenetration", weightKey = { "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "cold", "gem" }, tradeHashes = { [3291658075] = { "(53-56)% increased Cold Damage" }, [1991958615] = { "Socketed Gems are Supported by Level 18 Cold Penetration" }, } },
- ["ColdDamagePrefixOnWeaponColdPenetrationUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cold Penetration", "(57-60)% increased Cold Damage", statOrder = { 518, 1371 }, level = 80, group = "ColdDamagePrefixColdPenetration", weightKey = { "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "cold", "gem" }, tradeHashes = { [3291658075] = { "(57-60)% increased Cold Damage" }, [1991958615] = { "Socketed Gems are Supported by Level 20 Cold Penetration" }, } },
- ["LightningDamagePrefixOnWeaponLightningPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Lightning Penetration", "(45-52)% increased Lightning Damage", statOrder = { 331, 1382 }, level = 68, group = "LightningDamagePrefixLightningPenetration", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "gem" }, tradeHashes = { [3354027870] = { "Socketed Gems are Supported by Level 16 Lightning Penetration" }, [2231156303] = { "(45-52)% increased Lightning Damage" }, } },
- ["LightningDamagePrefixOnWeaponLightningPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Lightning Penetration", "(53-56)% increased Lightning Damage", statOrder = { 331, 1382 }, level = 75, group = "LightningDamagePrefixLightningPenetration", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "gem" }, tradeHashes = { [3354027870] = { "Socketed Gems are Supported by Level 18 Lightning Penetration" }, [2231156303] = { "(53-56)% increased Lightning Damage" }, } },
- ["LightningDamagePrefixOnWeaponLightningPenetrationUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Lightning Penetration", "(57-60)% increased Lightning Damage", statOrder = { 331, 1382 }, level = 80, group = "LightningDamagePrefixLightningPenetration", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "gem" }, tradeHashes = { [3354027870] = { "Socketed Gems are Supported by Level 20 Lightning Penetration" }, [2231156303] = { "(57-60)% increased Lightning Damage" }, } },
- ["IncreasedCastSpeedSpellEchoUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Echo", "(15-17)% increased Cast Speed", statOrder = { 346, 1451 }, level = 68, group = "IncreasedCastSpeedSpellEcho", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [913919528] = { "Socketed Gems are Supported by Level 18 Spell Echo" }, [2891184298] = { "(15-17)% increased Cast Speed" }, } },
- ["IncreasedCastSpeedSpellEchoUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Echo", "(18-20)% increased Cast Speed", statOrder = { 346, 1451 }, level = 75, group = "IncreasedCastSpeedSpellEcho", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [913919528] = { "Socketed Gems are Supported by Level 20 Spell Echo" }, [2891184298] = { "(18-20)% increased Cast Speed" }, } },
- ["IncreasedCastSpeedFasterCastingUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Casting", "(15-17)% increased Cast Speed", statOrder = { 505, 1451 }, level = 68, group = "IncreasedCastSpeedFasterCasting", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 18 Faster Casting" }, [2891184298] = { "(15-17)% increased Cast Speed" }, } },
- ["IncreasedCastSpeedFasterCastingUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Casting", "(18-20)% increased Cast Speed", statOrder = { 505, 1451 }, level = 75, group = "IncreasedCastSpeedFasterCasting", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 20 Faster Casting" }, [2891184298] = { "(18-20)% increased Cast Speed" }, } },
- ["IncreasedCastSpeedTwoHandedAvoidInterruptionUber1"] = { type = "Suffix", affix = "of the Elder", "(15-17)% increased Cast Speed", "(15-25)% chance to Ignore Stuns while Casting", statOrder = { 1451, 1903 }, level = 68, group = "IncreasedCastSpeedTwoHandedAvoidInterruption", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [1916706958] = { "(15-25)% chance to Ignore Stuns while Casting" }, [2891184298] = { "(15-17)% increased Cast Speed" }, } },
- ["IncreasedCastSpeedTwoHandedAvoidInterruptionUber2"] = { type = "Suffix", affix = "of the Elder", "(18-20)% increased Cast Speed", "(26-35)% chance to Ignore Stuns while Casting", statOrder = { 1451, 1903 }, level = 75, group = "IncreasedCastSpeedTwoHandedAvoidInterruption", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [1916706958] = { "(26-35)% chance to Ignore Stuns while Casting" }, [2891184298] = { "(18-20)% increased Cast Speed" }, } },
- ["IncreasedCastSpeedTwoHandedKilledRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(15-17)% increased Cast Speed", "20% increased Cast Speed if you've Killed Recently", statOrder = { 1451, 5472 }, level = 68, group = "IncreasedCastSpeedTwoHandedKilledRecently", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [2072625596] = { "20% increased Cast Speed if you've Killed Recently" }, [2891184298] = { "(15-17)% increased Cast Speed" }, } },
- ["IncreasedCastSpeedTwoHandedKilledRecentlyUber2"] = { type = "Suffix", affix = "of Shaping", "(18-20)% increased Cast Speed", "20% increased Cast Speed if you've Killed Recently", statOrder = { 1451, 5472 }, level = 75, group = "IncreasedCastSpeedTwoHandedKilledRecently", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [2072625596] = { "20% increased Cast Speed if you've Killed Recently" }, [2891184298] = { "(18-20)% increased Cast Speed" }, } },
- ["CriticalStrikeChanceSpellsSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Increased Critical Strikes", "(60-74)% increased Spell Critical Strike Chance", statOrder = { 318, 1463 }, level = 68, group = "CriticalStrikeChanceSpellsSupported", weightKey = { "grants_crit_chance_support", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "critical", "gem" }, tradeHashes = { [2259700079] = { "Socketed Gems are Supported by Level 18 Increased Critical Strikes" }, [737908626] = { "(60-74)% increased Spell Critical Strike Chance" }, } },
- ["CriticalStrikeChanceSpellsSupportedUber2__"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", "(75-82)% increased Spell Critical Strike Chance", statOrder = { 318, 1463 }, level = 75, group = "CriticalStrikeChanceSpellsSupported", weightKey = { "grants_crit_chance_support", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "critical", "gem" }, tradeHashes = { [2259700079] = { "Socketed Gems are Supported by Level 20 Increased Critical Strikes" }, [737908626] = { "(75-82)% increased Spell Critical Strike Chance" }, } },
- ["CriticalStrikeChanceSpellsTwoHandedPowerChargeUber1"] = { type = "Suffix", affix = "of Shaping", "(60-74)% increased Spell Critical Strike Chance", "10% chance to gain a Power Charge on Critical Strike", statOrder = { 1463, 1835 }, level = 68, group = "CriticalStrikeChanceSpellsTwoHandedPowerCharge", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "power_charge", "influence_mod", "caster", "critical" }, tradeHashes = { [3814876985] = { "10% chance to gain a Power Charge on Critical Strike" }, [737908626] = { "(60-74)% increased Spell Critical Strike Chance" }, } },
- ["CriticalStrikeChanceSpellsTwoHandedPowerChargeUber2"] = { type = "Suffix", affix = "of Shaping", "(75-82)% increased Spell Critical Strike Chance", "10% chance to gain a Power Charge on Critical Strike", statOrder = { 1463, 1835 }, level = 75, group = "CriticalStrikeChanceSpellsTwoHandedPowerCharge", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "power_charge", "influence_mod", "caster", "critical" }, tradeHashes = { [3814876985] = { "10% chance to gain a Power Charge on Critical Strike" }, [737908626] = { "(75-82)% increased Spell Critical Strike Chance" }, } },
- ["ChanceToFreezeShockIgniteProliferationUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Elemental Proliferation", "(5-7)% chance to Freeze, Shock and Ignite", statOrder = { 471, 2806 }, level = 68, group = "ChanceToFreezeShockIgniteProliferation", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, tradeHashes = { [800141891] = { "(5-7)% chance to Freeze, Shock and Ignite" }, [2929101122] = { "Socketed Gems are Supported by Level 18 Elemental Proliferation" }, } },
- ["ChanceToFreezeShockIgniteProliferationUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Elemental Proliferation", "(8-10)% chance to Freeze, Shock and Ignite", statOrder = { 471, 2806 }, level = 75, group = "ChanceToFreezeShockIgniteProliferation", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, tradeHashes = { [800141891] = { "(8-10)% chance to Freeze, Shock and Ignite" }, [2929101122] = { "Socketed Gems are Supported by Level 20 Elemental Proliferation" }, } },
- ["ChanceToFreezeShockIgniteUnboundAilmentsUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Unbound Ailments", "(5-7)% chance to Freeze, Shock and Ignite", statOrder = { 398, 2806 }, level = 68, group = "ChanceToFreezeShockIgniteUnboundAilments", weightKey = { "sceptre_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, tradeHashes = { [800141891] = { "(5-7)% chance to Freeze, Shock and Ignite" }, [3699494172] = { "Socketed Gems are Supported by Level 18 Unbound Ailments" }, } },
- ["ChanceToFreezeShockIgniteUnboundAilmentsUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Unbound Ailments", "(8-10)% chance to Freeze, Shock and Ignite", statOrder = { 398, 2806 }, level = 75, group = "ChanceToFreezeShockIgniteUnboundAilments", weightKey = { "sceptre_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, tradeHashes = { [800141891] = { "(8-10)% chance to Freeze, Shock and Ignite" }, [3699494172] = { "Socketed Gems are Supported by Level 20 Unbound Ailments" }, } },
- ["PoisonDamageWeaponSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Chance to Poison", "(19-23)% increased Damage with Poison", statOrder = { 528, 3186 }, level = 68, group = "PoisonDamageWeaponSupported", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 18 Chance to Poison" }, [1290399200] = { "(19-23)% increased Damage with Poison" }, } },
- ["PoisonDamageWeaponSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Chance to Poison", "(24-26)% increased Damage with Poison", statOrder = { 528, 3186 }, level = 75, group = "PoisonDamageWeaponSupported", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 20 Chance to Poison" }, [1290399200] = { "(24-26)% increased Damage with Poison" }, } },
- ["PoisonDurationWeaponSupportedUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Critical Strike Affliction", "(6-9)% increased Poison Duration", statOrder = { 360, 3175 }, level = 68, group = "PoisonDurationWeaponSupported", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, tradeHashes = { [2011656677] = { "(6-9)% increased Poison Duration" }, [2228279620] = { "Socketed Gems are Supported by Level 18 Critical Strike Affliction" }, } },
- ["PoisonDurationWeaponSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Critical Strike Affliction", "(10-14)% increased Poison Duration", statOrder = { 360, 3175 }, level = 75, group = "PoisonDurationWeaponSupported", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, tradeHashes = { [2011656677] = { "(10-14)% increased Poison Duration" }, [2228279620] = { "Socketed Gems are Supported by Level 20 Critical Strike Affliction" }, } },
- ["SupportedByIncreasedAreaOfEffectDamageUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Increased Area of Effect", "(23-27)% increased Area Damage", statOrder = { 229, 2040 }, level = 68, group = "SupportedByIncreasedAreaOfEffectDamage", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(23-27)% increased Area Damage" }, [3720936304] = { "Socketed Gems are Supported by Level 16 Increased Area of Effect" }, } },
- ["SupportedByIncreasedAreaOfEffectDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Increased Area of Effect", "(28-32)% increased Area Damage", statOrder = { 229, 2040 }, level = 75, group = "SupportedByIncreasedAreaOfEffectDamage", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(28-32)% increased Area Damage" }, [3720936304] = { "Socketed Gems are Supported by Level 18 Increased Area of Effect" }, } },
- ["SupportedByIncreasedAreaOfEffectDamageUber3_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Increased Area of Effect", "(33-37)% increased Area Damage", statOrder = { 229, 2040 }, level = 80, group = "SupportedByIncreasedAreaOfEffectDamage", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(33-37)% increased Area Damage" }, [3720936304] = { "Socketed Gems are Supported by Level 20 Increased Area of Effect" }, } },
- ["SupportedBySpellCascadeAreaUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Spell Cascade", "(5-8)% increased Area of Effect", statOrder = { 384, 1885 }, level = 68, group = "SupportedBySpellCascadeArea", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [503990161] = { "Socketed Gems are Supported by Level 16 Spell Cascade" }, [280731498] = { "(5-8)% increased Area of Effect" }, } },
- ["SupportedBySpellCascadeAreaUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Spell Cascade", "(9-12)% increased Area of Effect", statOrder = { 384, 1885 }, level = 75, group = "SupportedBySpellCascadeArea", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [503990161] = { "Socketed Gems are Supported by Level 18 Spell Cascade" }, [280731498] = { "(9-12)% increased Area of Effect" }, } },
- ["SupportedBySpellCascadeAreaUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Spell Cascade", "(13-15)% increased Area of Effect", statOrder = { 384, 1885 }, level = 80, group = "SupportedBySpellCascadeArea", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [503990161] = { "Socketed Gems are Supported by Level 20 Spell Cascade" }, [280731498] = { "(13-15)% increased Area of Effect" }, } },
- ["SupportedByLesserMultipleProjectilesDamageUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Multiple Projectiles", "(15-20)% increased Projectile Damage", statOrder = { 510, 2001 }, level = 68, group = "SupportedByLesserMultipleProjectilesDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [584144941] = { "Socketed Gems are Supported by Level 16 Multiple Projectiles" }, [1839076647] = { "(15-20)% increased Projectile Damage" }, } },
- ["SupportedByLesserMultipleProjectilesDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Multiple Projectiles", "(21-25)% increased Projectile Damage", statOrder = { 510, 2001 }, level = 75, group = "SupportedByLesserMultipleProjectilesDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [584144941] = { "Socketed Gems are Supported by Level 18 Multiple Projectiles" }, [1839076647] = { "(21-25)% increased Projectile Damage" }, } },
- ["SupportedByLesserMultipleProjectilesDamageUber3_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Multiple Projectiles", "(26-30)% increased Projectile Damage", statOrder = { 510, 2001 }, level = 80, group = "SupportedByLesserMultipleProjectilesDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [584144941] = { "Socketed Gems are Supported by Level 20 Multiple Projectiles" }, [1839076647] = { "(26-30)% increased Projectile Damage" }, } },
- ["SupportedByVolleySpeedUber1__"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Volley", "(15-18)% increased Projectile Speed", statOrder = { 355, 1801 }, level = 68, group = "SupportedByVolleySpeed", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [2696557965] = { "Socketed Gems are Supported by Level 16 Volley" }, [3759663284] = { "(15-18)% increased Projectile Speed" }, } },
- ["SupportedByVolleySpeedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Volley", "(19-22)% increased Projectile Speed", statOrder = { 355, 1801 }, level = 75, group = "SupportedByVolleySpeed", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [2696557965] = { "Socketed Gems are Supported by Level 18 Volley" }, [3759663284] = { "(19-22)% increased Projectile Speed" }, } },
- ["SupportedByVolleySpeedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Volley", "(23-25)% increased Projectile Speed", statOrder = { 355, 1801 }, level = 80, group = "SupportedByVolleySpeed", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [2696557965] = { "Socketed Gems are Supported by Level 20 Volley" }, [3759663284] = { "(23-25)% increased Projectile Speed" }, } },
- ["ElementalDamagePercentAddedAsChaosUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (5-6)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1947 }, level = 75, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (5-6)% of Elemental Damage as Extra Chaos Damage" }, } },
- ["ElementalDamagePercentAddedAsChaosUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-8)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1947 }, level = 85, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (7-8)% of Elemental Damage as Extra Chaos Damage" }, } },
- ["ElementalDamagePercentAddedAsChaosStaffUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (10-12)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1947 }, level = 75, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (10-12)% of Elemental Damage as Extra Chaos Damage" }, } },
- ["ElementalDamagePercentAddedAsChaosStaffUber2__"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-15)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1947 }, level = 85, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (13-15)% of Elemental Damage as Extra Chaos Damage" }, } },
- ["DisplaySocketedSkillsChainUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems Chain 1 additional times", statOrder = { 545 }, level = 85, group = "DisplaySocketedSkillsChain", weightKey = { "bow_shaper", "default", }, weightVal = { 200, 0 }, modTags = { "skill", "influence_mod", "gem" }, tradeHashes = { [2788729902] = { "Socketed Gems Chain 1 additional times" }, } },
- ["SpellAddedPhysicalDamageWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (22-31) to (46-53) Physical Damage to Spells", statOrder = { 1408 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (22-31) to (46-53) Physical Damage to Spells" }, } },
- ["SpellAddedPhysicalDamageWeaponUber2_"] = { type = "Prefix", affix = "The Elder's", "Adds (28-37) to (55-64) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (28-37) to (55-64) Physical Damage to Spells" }, } },
- ["SpellAddedPhysicalDamageWeaponUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (32-44) to (66-76) Physical Damage to Spells", statOrder = { 1408 }, level = 84, group = "SpellAddedPhysicalDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (32-44) to (66-76) Physical Damage to Spells" }, } },
- ["SpellAddedPhysicalDamageTwoHandWeaponUber1_"] = { type = "Prefix", affix = "The Elder's", "Adds (37-49) to (75-86) Physical Damage to Spells", statOrder = { 1408 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (37-49) to (75-86) Physical Damage to Spells" }, } },
- ["SpellAddedPhysicalDamageTwoHandWeaponUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (44-58) to (88-103) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (44-58) to (88-103) Physical Damage to Spells" }, } },
- ["SpellAddedPhysicalDamageTwoHandWeaponUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (60-73) to (108-122) Physical Damage to Spells", statOrder = { 1408 }, level = 84, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (60-73) to (108-122) Physical Damage to Spells" }, } },
- ["SpellAddedChaosDamageWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (22-31) to (46-53) Chaos Damage to Spells", statOrder = { 1412 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (22-31) to (46-53) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageWeaponUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (28-37) to (55-64) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (28-37) to (55-64) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageWeaponUber3_"] = { type = "Prefix", affix = "The Elder's", "Adds (32-44) to (66-76) Chaos Damage to Spells", statOrder = { 1412 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (32-44) to (66-76) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageTwoHandWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (37-49) to (75-86) Chaos Damage to Spells", statOrder = { 1412 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (37-49) to (75-86) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageTwoHandWeaponUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (44-58) to (88-103) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (44-58) to (88-103) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageTwoHandWeaponUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (60-73) to (108-122) Chaos Damage to Spells", statOrder = { 1412 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (60-73) to (108-122) Chaos Damage to Spells" }, } },
- ["SpellDamagePer16StrengthUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 16 Strength", statOrder = { 10155 }, level = 68, group = "SpellDamagePer16Strength", weightKey = { "sceptre_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [4249521944] = { "1% increased Spell Damage per 16 Strength" }, } },
- ["SpellDamagePer16DexterityUber1__"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 16 Dexterity", statOrder = { 10153 }, level = 68, group = "SpellDamagePer16Dexterity", weightKey = { "rune_dagger_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2612056840] = { "1% increased Spell Damage per 16 Dexterity" }, } },
- ["SpellDamagePer16IntelligenceUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 16 Intelligence", statOrder = { 10154 }, level = 68, group = "SpellDamagePer16Intelligence", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [3961014595] = { "1% increased Spell Damage per 16 Intelligence" }, } },
- ["SpellDamagePer10StrengthUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 10 Strength", statOrder = { 10152 }, level = 68, group = "SpellDamagePer10Strength", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [1073314277] = { "1% increased Spell Damage per 10 Strength" }, } },
- ["SpellDamagePer10IntelligenceUber1_"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2743 }, level = 68, group = "SpellDamagePer10Intelligence", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2818518881] = { "1% increased Spell Damage per 10 Intelligence" }, } },
- ["MaximumEnduranceChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 84, group = "MaximumEnduranceCharges", weightKey = { "2h_mace_shaper", "2h_sword_shaper", "2h_axe_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } },
- ["MaximumFrenzyChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Frenzy Charges", statOrder = { 1814 }, level = 84, group = "MaximumFrenzyCharges", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } },
- ["MaximumPowerChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Power Charges", statOrder = { 1819 }, level = 84, group = "IncreasedMaximumPowerCharges", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } },
- ["PowerChargeOnBlockUber1"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "25% chance to gain a Power Charge when you Block", statOrder = { 1156, 4275 }, level = 68, group = "PowerChargeOnBlockUber", weightKey = { "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block", "power_charge", "influence_mod" }, tradeHashes = { [1001829678] = { "+5% Chance to Block Attack Damage while wielding a Staff" }, [3945147290] = { "25% chance to gain a Power Charge when you Block" }, } },
- ["CriticalStrikeMultiplierIfBlockedRecentlyUber1_"] = { type = "Suffix", affix = "of Shaping", "+5% Chance to Block Attack Damage while wielding a Staff", "+(35-45)% to Critical Strike Multiplier if you have Blocked Recently", statOrder = { 1156, 5968 }, level = 68, group = "CriticalStrikeMultiplierIfBlockedRecentlyUber", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block", "influence_mod", "damage", "critical" }, tradeHashes = { [3527458221] = { "+(35-45)% to Critical Strike Multiplier if you have Blocked Recently" }, [1001829678] = { "+5% Chance to Block Attack Damage while wielding a Staff" }, } },
- ["BlockingBlocksSpellsUber1"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "(12-18)% Chance to Block Spell Damage", statOrder = { 1156, 1160 }, level = 68, group = "BlockingBlocksSpellsUber", weightKey = { "staff_elder", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [1001829678] = { "+5% Chance to Block Attack Damage while wielding a Staff" }, [2881111359] = { "(12-18)% Chance to Block Spell Damage" }, } },
- ["SpellBlockStaffUber1_"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "(8-12)% Chance to Block Spell Damage", statOrder = { 1156, 1165 }, level = 68, group = "SpellBlockAndBlockUber", weightKey = { "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(8-12)% Chance to Block Spell Damage" }, [1001829678] = { "+5% Chance to Block Attack Damage while wielding a Staff" }, } },
- ["CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "+(15-25)% to Global Critical Strike Multiplier", "(80-100)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 1493, 5932 }, level = 68, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-25)% to Global Critical Strike Multiplier" }, [2856328513] = { "(80-100)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently" }, } },
- ["PowerChargeOnManaSpentUber1"] = { type = "Suffix", affix = "of Shaping", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7897 }, level = 68, group = "PowerChargeOnManaSpent", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [3269060224] = { "Gain a Power Charge after Spending a total of 200 Mana" }, } },
- ["IncreasedDamagePerPowerChargeUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% increased Damage per Power Charge", statOrder = { 6071 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(5-10)% increased Damage per Power Charge" }, } },
- ["ProjectileDamagePerEnemyPiercedUber1_"] = { type = "Suffix", affix = "of Shaping", "Projectiles deal (20-30)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9733 }, level = 68, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (20-30)% increased Damage with Hits and Ailments for each Enemy Pierced" }, } },
- ["IncreaseProjectileAttackDamagePerAccuracyUber1"] = { type = "Suffix", affix = "of the Elder", "1% increased Projectile Attack Damage per 200 Accuracy Rating", statOrder = { 4313 }, level = 68, group = "IncreaseProjectileAttackDamagePerAccuracy", weightKey = { "bow_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [4157767905] = { "1% increased Projectile Attack Damage per 200 Accuracy Rating" }, } },
- ["CriticalStrikeChanceAgainstPoisonedEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(80-100)% increased Critical Strike Chance against Poisoned Enemies", statOrder = { 3297 }, level = 68, group = "CriticalStrikeChanceAgainstPoisonedEnemies", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [1345659139] = { "(80-100)% increased Critical Strike Chance against Poisoned Enemies" }, } },
- ["CriticalStrikeMultiplierAgainstEnemiesOnFullLifeUber1"] = { type = "Suffix", affix = "of Shaping", "+(50-60)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrder = { 3438 }, level = 68, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [2355615476] = { "+(50-60)% to Critical Strike Multiplier against Enemies that are on Full Life" }, } },
- ["GainRareMonsterModsOnKillChanceUber1"] = { type = "Suffix", affix = "of the Elder", "When you Kill a Rare Monster, (15-20)% chance to gain one of its Modifiers for 10 seconds", statOrder = { 6701 }, level = 68, group = "GainRareMonsterModsOnKillChance", weightKey = { "claw_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2736829661] = { "When you Kill a Rare Monster, (15-20)% chance to gain one of its Modifiers for 10 seconds" }, } },
- ["EnemiesHaveReducedEvasionIfHitRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "Enemies have 20% reduced Evasion if you have Hit them Recently", statOrder = { 6422 }, level = 68, group = "EnemiesHaveReducedEvasionIfHitRecently", weightKey = { "claw_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [1773891268] = { "Enemies have 20% reduced Evasion if you have Hit them Recently" }, } },
- ["LifeGainPerBlindedEnemyHitUber1"] = { type = "Suffix", affix = "of the Elder", "Gain (35-50) Life per Blinded Enemy Hit with this Weapon", statOrder = { 7989 }, level = 68, group = "LifeGainPerBlindedEnemyHit", weightKey = { "claw_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, tradeHashes = { [1649099067] = { "Gain (35-50) Life per Blinded Enemy Hit with this Weapon" }, } },
- ["CriticalChanceAgainstBlindedEnemiesUber1_"] = { type = "Suffix", affix = "of Shaping", "(80-100)% increased Critical Strike Chance against Blinded Enemies", statOrder = { 3411 }, level = 68, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { "claw_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [1939202111] = { "(80-100)% increased Critical Strike Chance against Blinded Enemies" }, } },
- ["AdditionalBlockChancePerEnduranceChargeUber1_"] = { type = "Suffix", affix = "of the Elder", "(20-25)% chance to gain an Endurance Charge when you Block", "+1% Chance to Block Attack Damage per Endurance Charge", statOrder = { 2129, 4547 }, level = 68, group = "AdditionalBlockChancePerEnduranceChargeUber", weightKey = { "sword_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "block", "endurance_charge", "influence_mod" }, tradeHashes = { [417188801] = { "(20-25)% chance to gain an Endurance Charge when you Block" }, [3039589351] = { "+1% Chance to Block Attack Damage per Endurance Charge" }, } },
- ["AccuracyRatingPerFrenzyChargeUber1"] = { type = "Suffix", affix = "of Shaping", "5% increased Accuracy Rating per Frenzy Charge", "(20-25)% chance to gain a Frenzy Charge when you Block", statOrder = { 2055, 5695 }, level = 68, group = "AccuracyRatingPerFrenzyChargeUber", weightKey = { "sword_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "block", "frenzy_charge", "influence_mod", "attack" }, tradeHashes = { [3700381193] = { "5% increased Accuracy Rating per Frenzy Charge" }, [3769211656] = { "(20-25)% chance to gain a Frenzy Charge when you Block" }, } },
- ["MovementSkillsCostNoManaUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Movement Skills Cost no Mana", statOrder = { 565 }, level = 68, group = "DisplayMovementSkillsCostNoMana", weightKey = { "2h_sword_shaper", "sword_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "skill", "resource", "influence_mod", "mana", "gem" }, tradeHashes = { [3263216405] = { "Socketed Movement Skills Cost no Mana" }, } },
- ["GainEnduranceChargeWhileStationaryUber1"] = { type = "Suffix", affix = "of the Elder", "Gain an Endurance Charge every 4 seconds while Stationary", statOrder = { 9531 }, level = 68, group = "GainEnduranceChargeWhileStationary", weightKey = { "2h_sword_elder", "sword_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [2156210979] = { "Gain an Endurance Charge every 4 seconds while Stationary" }, } },
- ["CullingStrikeOnBleedingEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(30-49)% increased Physical Damage", "Hits with this Weapon have Culling Strike against Bleeding Enemies", statOrder = { 1237, 7889 }, level = 68, group = "CullingStrikeOnBleedingEnemiesUber", weightKey = { "2h_axe_elder", "axe_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [2558253923] = { "Hits with this Weapon have Culling Strike against Bleeding Enemies" }, [1805374733] = { "(30-49)% increased Physical Damage" }, } },
- ["GainEnduranceChargeOnHittingBleedingEnemyUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% chance to gain an Endurance Charge when you Hit a Bleeding Enemy", statOrder = { 5691 }, level = 68, group = "GainEnduranceChargeOnHittingBleedingEnemy", weightKey = { "axe_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1536266147] = { "(5-10)% chance to gain an Endurance Charge when you Hit a Bleeding Enemy" }, } },
- ["GainEnduranceChargeOnCritUber1"] = { type = "Suffix", affix = "of Shaping", "(15-20)% increased Critical Strike Chance", "(5-10)% chance to gain an Endurance Charge on Critical Strike", statOrder = { 1469, 1824 }, level = 68, group = "GainEnduranceChargeOnCritUber", weightKey = { "2h_axe_shaper", "axe_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod", "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-20)% increased Critical Strike Chance" }, [2542650946] = { "(5-10)% chance to gain an Endurance Charge on Critical Strike" }, } },
- ["CriticalStrikeChanceIfKilledRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(80-100)% increased Critical Strike Chance if you have Killed Recently", statOrder = { 5930 }, level = 68, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "axe_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [3914638685] = { "(80-100)% increased Critical Strike Chance if you have Killed Recently" }, } },
- ["EnemiesExplodeOnDeathDealingFireUber1"] = { type = "Suffix", affix = "of Shaping", "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage", statOrder = { 2711 }, level = 68, group = "EnemiesExplodeOnDeath", weightKey = { "2h_mace_shaper", "mace_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3457687358] = { "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage" }, } },
- ["GainFortifyOnStunChanceUber1"] = { type = "Suffix", affix = "of Shaping", "Melee Hits which Stun have (10-20)% chance to Fortify", statOrder = { 5683 }, level = 68, group = "GainFortifyOnStunChance", weightKey = { "mace_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3206381437] = { "Melee Hits which Stun have (10-20)% chance to Fortify" }, } },
- ["AreaOfEffectPer50StrengthUber1"] = { type = "Suffix", affix = "of the Elder", "3% increased Area of Effect per 50 Strength", statOrder = { 4736 }, level = 68, group = "AreaOfEffectPer50Strength", weightKey = { "mace_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2611023406] = { "3% increased Area of Effect per 50 Strength" }, } },
- ["AreaOfEffectIfStunnedEnemyRecentlyUber1___"] = { type = "Suffix", affix = "of the Elder", "(25-35)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4733 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_elder", "mace_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [430248187] = { "(25-35)% increased Area of Effect if you have Stunned an Enemy Recently" }, } },
- ["MeleeWeaponRangeIfKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "+(0.1-0.2) metres to Melee Strike Range if you have Killed Recently", statOrder = { 9216 }, level = 68, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "2h_sword_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3255961830] = { "+(0.1-0.2) metres to Melee Strike Range if you have Killed Recently" }, } },
- ["MovementSkillsFortifyOnHitChanceUber1"] = { type = "Suffix", affix = "of Shaping", "Hits with Melee Movement Skills have (30-50)% chance to Fortify", statOrder = { 9198 }, level = 68, group = "MovementSkillsFortifyOnHitChance", weightKey = { "2h_sword_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [59547568] = { "Hits with Melee Movement Skills have (30-50)% chance to Fortify" }, } },
- ["GainEnduranceChargeOnTauntingEnemiesUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-30)% chance to gain an Endurance Charge when you Taunt an Enemy", statOrder = { 5693 }, level = 68, group = "GainEnduranceChargeOnTauntingEnemies", weightKey = { "2h_axe_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1657549833] = { "(15-30)% chance to gain an Endurance Charge when you Taunt an Enemy" }, } },
- ["RemoveBleedingOnWarcryUber1"] = { type = "Suffix", affix = "of the Elder", "Removes Bleeding when you use a Warcry", statOrder = { 9901 }, level = 68, group = "RemoveBleedingOnWarcry", weightKey = { "2h_axe_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, tradeHashes = { [3936926420] = { "Removes Bleeding when you use a Warcry" }, } },
- ["AreaOfEffectPerEnduranceChargeUber1"] = { type = "Suffix", affix = "of the Elder", "5% increased Area of Effect per Endurance Charge", statOrder = { 4738 }, level = 68, group = "AreaOfEffectPerEnduranceCharge", weightKey = { "2h_mace_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2448279015] = { "5% increased Area of Effect per Endurance Charge" }, } },
- ["StunDurationAndThresholdUber1"] = { type = "Suffix", affix = "of Shaping", "(20-30)% reduced Enemy Stun Threshold", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1522, 1868 }, level = 68, group = "StunDurationAndThresholdUber", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2517001139] = { "(20-30)% increased Stun Duration on Enemies" }, [1443060084] = { "(20-30)% reduced Enemy Stun Threshold" }, } },
- ["PhysicalDamageAddedAsRandomElementUber1"] = { type = "Suffix", affix = "of Shaping", "Gain (7-9)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2941 }, level = 68, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (7-9)% of Physical Damage as Extra Damage of a random Element" }, } },
- ["PhysicalDamageAddedAsRandomElementUber2"] = { type = "Suffix", affix = "of Shaping", "Gain (10-12)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2941 }, level = 75, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (10-12)% of Physical Damage as Extra Damage of a random Element" }, } },
- ["PhysicalDamageAddedAsRandomElementUber3"] = { type = "Suffix", affix = "of Shaping", "Gain (13-15)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2941 }, level = 80, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (13-15)% of Physical Damage as Extra Damage of a random Element" }, } },
- ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 700 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [1265282021] = { "Grants Level 20 Aspect of the Cat Skill" }, } },
- ["GrantsBirdAspectCrafted"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 695 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [3914740665] = { "Grants Level 20 Aspect of the Avian Skill" }, } },
- ["GrantsSpiderAspectCrafted"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 725 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 20 Aspect of the Spider Skill" }, } },
- ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 702 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 20 Aspect of the Crab Skill" }, } },
- ["GrantsCatAspectCrafted30"] = { type = "Suffix", affix = "of Farrul", "Grants Level 30 Aspect of the Cat Skill", statOrder = { 700 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [1265282021] = { "Grants Level 30 Aspect of the Cat Skill" }, } },
- ["GrantsBirdAspectCrafted30"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 30 Aspect of the Avian Skill", statOrder = { 695 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [3914740665] = { "Grants Level 30 Aspect of the Avian Skill" }, } },
- ["GrantsSpiderAspectCrafted30"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 30 Aspect of the Spider Skill", statOrder = { 725 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 30 Aspect of the Spider Skill" }, } },
- ["GrantsCrabAspectCrafted30"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 30 Aspect of the Crab Skill", statOrder = { 702 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 30 Aspect of the Crab Skill" }, } },
- ["LocalIncreaseSocketedMinionGemLevelDelve"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 60, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } },
- ["MaximumMinionCountZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Raised Zombies", statOrder = { 2165 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "" }, [125218179] = { "" }, } },
- ["MaximumMinionCountSkeletonDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrder = { 2167 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } },
- ["MaximumMinionCountSpectreDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Spectres", statOrder = { 2166 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } },
- ["MinionDamageDelve"] = { type = "Suffix", affix = "of the Underground", "Minions deal (25-35)% increased Damage", statOrder = { 1978 }, level = 60, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (25-35)% increased Damage" }, } },
- ["MaximumMinionCountAmuletZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Raised Zombies", statOrder = { 2165 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "" }, [125218179] = { "" }, } },
- ["MaximumMinionCountAmuletSkeletonDelve__"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrder = { 2167 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } },
- ["ReducedManaReservationsCostDelve_"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 60, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "10% increased Mana Reservation Efficiency of Skills" }, } },
- ["LocalIncreaseSocketedAuraLevelDelve"] = { type = "Suffix", affix = "of the Underground", "+2 to Level of Socketed Aura Gems", statOrder = { 186 }, level = 60, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } },
- ["ReducedPhysicalDamageTakenDelve"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction", statOrder = { 2278 }, level = 60, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } },
- ["BleedingDamageChanceDelve__"] = { type = "Suffix", affix = "of the Underground", "Attacks have 25% chance to cause Bleeding", "(30-50)% increased Damage with Bleeding", statOrder = { 2494, 3174 }, level = 60, group = "BleedingDamageChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(30-50)% increased Damage with Bleeding" }, [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } },
- ["CorruptedBloodImmunityDelve"] = { type = "Suffix", affix = "of the Underground", "Corrupted Blood cannot be inflicted on you", statOrder = { 5413 }, level = 60, group = "CorruptedBloodImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } },
- ["DoubleDamageChanceDelve"] = { type = "Suffix", affix = "of the Underground", "10% chance to deal Double Damage", statOrder = { 5664 }, level = 60, group = "DoubleDamageChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1172810729] = { "10% chance to deal Double Damage" }, } },
- ["SpellAddedPhysicalDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Global Physical Damage", "Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1236, 1408 }, level = 60, group = "SpellAddedPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (11-15) to (23-26) Physical Damage to Spells" }, [1310194496] = { "(20-40)% increased Global Physical Damage" }, } },
- ["SpellAddedPhysicalDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Global Physical Damage", "Adds (15-20) to (30-35) Physical Damage to Spells", statOrder = { 1236, 1408 }, level = 60, group = "SpellAddedPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (15-20) to (30-35) Physical Damage to Spells" }, [1310194496] = { "(20-40)% increased Global Physical Damage" }, } },
- ["CurseOnHitLevelVulnerabilityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Vulnerability on Hit", statOrder = { 2528 }, level = 60, group = "CurseOnHitLevelVulnerabilityMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3967845372] = { "Curse Enemies with Vulnerability on Hit" }, } },
- ["PhysicalDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Physical Damage Leeched as Life", statOrder = { 1671 }, level = 60, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "0.4% of Physical Damage Leeched as Life" }, } },
- ["PhysicalDamageTakenAsFireDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 60, group = "PhysicalDamageTakenAsFireUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } },
- ["MaximumFireResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Fire Resistance", statOrder = { 1628 }, level = 60, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } },
- ["FireDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Fire Damage taken", statOrder = { 2247 }, level = 60, group = "FireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3743301799] = { "(4-6)% reduced Fire Damage taken" }, } },
- ["LocalFireDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (18-24) to (36-42) Fire Damage", statOrder = { 1362, 1367 }, level = 60, group = "LocalFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3962278098] = { "(20-40)% increased Fire Damage" }, [709508406] = { "Adds (18-24) to (36-42) Fire Damage" }, } },
- ["LocalFireDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (31-42) to (64-74) Fire Damage", statOrder = { 1362, 1367 }, level = 60, group = "LocalFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3962278098] = { "(20-40)% increased Fire Damage" }, [709508406] = { "Adds (31-42) to (64-74) Fire Damage" }, } },
- ["SpellAddedFireDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (14-20) to (29-34) Fire Damage to Spells", statOrder = { 1362, 1409 }, level = 60, group = "SpellAddedFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-20) to (29-34) Fire Damage to Spells" }, [3962278098] = { "(20-40)% increased Fire Damage" }, } },
- ["SpellAddedFireDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (20-26) to (39-46) Fire Damage to Spells", statOrder = { 1362, 1409 }, level = 60, group = "SpellAddedFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-26) to (39-46) Fire Damage to Spells" }, [3962278098] = { "(20-40)% increased Fire Damage" }, } },
- ["CurseOnHitLevelFlammabilityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Flammability on Hit", statOrder = { 2535 }, level = 60, group = "FlammabilityOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [338121249] = { "Curse Enemies with Flammability on Hit" }, } },
- ["FireDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 60, group = "FireDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.4% of Fire Damage Leeched as Life" }, } },
- ["PhysicalDamageTakenAsColdDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 60, group = "PhysicalDamageTakenAsColdUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["MaximumColdResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Cold Resistance", statOrder = { 1634 }, level = 60, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } },
- ["ColdDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Cold Damage taken", statOrder = { 3394 }, level = 60, group = "ColdDamageTakenPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3303114033] = { "(4-6)% reduced Cold Damage taken" }, } },
- ["LocalColdDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (15-20) to (30-35) Cold Damage", statOrder = { 1371, 1376 }, level = 60, group = "LocalColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (15-20) to (30-35) Cold Damage" }, [3291658075] = { "(20-40)% increased Cold Damage" }, } },
- ["LocalColdDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (26-35) to (52-60) Cold Damage", statOrder = { 1371, 1376 }, level = 60, group = "LocalColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (26-35) to (52-60) Cold Damage" }, [3291658075] = { "(20-40)% increased Cold Damage" }, } },
- ["SpellAddedColdDamageHybridDelve_"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (12-16) to (24-28) Cold Damage to Spells", statOrder = { 1371, 1410 }, level = 60, group = "SpellAddedColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3291658075] = { "(20-40)% increased Cold Damage" }, [2469416729] = { "Adds (12-16) to (24-28) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (18-24) to (36-42) Cold Damage to Spells", statOrder = { 1371, 1410 }, level = 60, group = "SpellAddedColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3291658075] = { "(20-40)% increased Cold Damage" }, [2469416729] = { "Adds (18-24) to (36-42) Cold Damage to Spells" }, } },
- ["CurseOnHitLevelFrostbiteDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Frostbite on Hit", statOrder = { 2536 }, level = 60, group = "FrostbiteOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [426847518] = { "Curse Enemies with Frostbite on Hit" }, } },
- ["ColdDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Cold Damage Leeched as Life", statOrder = { 1680 }, level = 60, group = "ColdDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.4% of Cold Damage Leeched as Life" }, } },
- ["PhysicalDamageTakenAsLightningDelve_"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 60, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, } },
- ["MaximumLightningResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 60, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } },
- ["LightningDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Lightning Damage taken", statOrder = { 3393 }, level = 60, group = "LightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [1276918229] = { "(4-6)% reduced Lightning Damage taken" }, } },
- ["LocalLightningDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-5) to (63-66) Lightning Damage", statOrder = { 1382, 1387 }, level = 60, group = "LocalLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2231156303] = { "(20-40)% increased Lightning Damage" }, [3336890334] = { "Adds (2-5) to (63-66) Lightning Damage" }, } },
- ["LocalLightningDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-9) to (110-116) Lightning Damage", statOrder = { 1382, 1387 }, level = 60, group = "LocalLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2231156303] = { "(20-40)% increased Lightning Damage" }, [3336890334] = { "Adds (2-9) to (110-116) Lightning Damage" }, } },
- ["SpellAddedLightningDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (1-4) to (50-53) Lightning Damage to Spells", statOrder = { 1382, 1411 }, level = 60, group = "SpellAddedLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (50-53) Lightning Damage to Spells" }, [2231156303] = { "(20-40)% increased Lightning Damage" }, } },
- ["SpellAddedLightningDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-6) to (76-80) Lightning Damage to Spells", statOrder = { 1382, 1411 }, level = 60, group = "SpellAddedLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (76-80) Lightning Damage to Spells" }, [2231156303] = { "(20-40)% increased Lightning Damage" }, } },
- ["CurseOnHitLevelConductivityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Conductivity on Hit", statOrder = { 2532 }, level = 60, group = "ConductivityOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [710372469] = { "Curse Enemies with Conductivity on Hit" }, } },
- ["LightningDamageLifeLeechDelve__"] = { type = "Prefix", affix = "Subterranean", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1684 }, level = 60, group = "LightningDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.4% of Lightning Damage Leeched as Life" }, } },
- ["PhysicalDamageTakenAsChaosDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 60, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, } },
- ["MaximumChaosResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Chaos Resistance", statOrder = { 1645 }, level = 60, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } },
- ["ChaosDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Chaos Damage taken", statOrder = { 2248 }, level = 60, group = "ChaosDamageTakenPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [2960683632] = { "(4-6)% reduced Chaos Damage taken" }, } },
- ["LocalChaosDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (18-28) to (39-49) Chaos Damage", statOrder = { 1390, 1395 }, level = 60, group = "LocalChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [736967255] = { "(15-30)% increased Chaos Damage" }, [2223678961] = { "Adds (18-28) to (39-49) Chaos Damage" }, } },
- ["LocalChaosDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (32-50) to (68-86) Chaos Damage", statOrder = { 1390, 1395 }, level = 60, group = "LocalChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [736967255] = { "(15-30)% increased Chaos Damage" }, [2223678961] = { "Adds (32-50) to (68-86) Chaos Damage" }, } },
- ["SpellAddedChaosDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (11-15) to (23-26) Chaos Damage to Spells", statOrder = { 1390, 1412 }, level = 60, group = "SpellAddedChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [736967255] = { "(15-30)% increased Chaos Damage" }, [2300399854] = { "Adds (11-15) to (23-26) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (15-20) to (30-35) Chaos Damage to Spells", statOrder = { 1390, 1412 }, level = 60, group = "SpellAddedChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [736967255] = { "(15-30)% increased Chaos Damage" }, [2300399854] = { "Adds (15-20) to (30-35) Chaos Damage to Spells" }, } },
- ["CurseOnHitLevelDespairDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2533 }, level = 60, group = "CurseOnHitDespairMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } },
- ["ChaosDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Chaos Damage Leeched as Life", statOrder = { 1687 }, level = 60, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.4% of Chaos Damage Leeched as Life" }, } },
- ["CurseEffectivenessDelve"] = { type = "Suffix", affix = "of the Underground", "(10-15)% increased Effect of your Curses", statOrder = { 2601 }, level = 60, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(10-15)% increased Effect of your Curses" }, } },
- ["AdditionalCurseOnEnemiesDelve"] = { type = "Prefix", affix = "Subterranean", "You can apply an additional Curse", statOrder = { 2173 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } },
- ["IncreaseSocketedCurseGemLevelDelve_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Curse Gems", statOrder = { 189 }, level = 60, group = "IncreaseSocketedCurseGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+2 to Level of Socketed Curse Gems" }, } },
- ["CurseAreaOfEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(25-40)% increased Area of Effect of Hex Skills", statOrder = { 2230 }, level = 60, group = "CurseAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(25-40)% increased Area of Effect of Hex Skills" }, } },
- ["CurseDurationDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Skills have (25-40)% increased Skill Effect Duration", statOrder = { 6005 }, level = 60, group = "CurseDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have (25-40)% increased Skill Effect Duration" }, } },
- ["IncreasedDamagePerCurseDelve"] = { type = "Prefix", affix = "Subterranean", "(8-10)% increased Damage with Hits and Ailments per Curse on Enemy", statOrder = { 3020 }, level = 60, group = "IncreasedDamagePerCurse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1818773442] = { "(8-10)% increased Damage with Hits and Ailments per Curse on Enemy" }, } },
- ["ManaRegenerationDelve"] = { type = "Suffix", affix = "of the Underground", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 60, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } },
- ["PercentDamageGoesToManaDelve"] = { type = "Suffix", affix = "of the Underground", "(5-8)% of Damage taken Recouped as Mana", statOrder = { 2460 }, level = 60, group = "PercentDamageGoesToMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(5-8)% of Damage taken Recouped as Mana" }, } },
- ["AddedManaRegenerationDelve"] = { type = "Suffix", affix = "of the Underground", "Regenerate (3-5) Mana per second", statOrder = { 1587 }, level = 60, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (3-5) Mana per second" }, } },
- ["MaximumManaIncreasePercentDelve_"] = { type = "Prefix", affix = "Subterranean", "(10-15)% increased maximum Mana", statOrder = { 1585 }, level = 60, group = "MaximumManaIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(10-15)% increased maximum Mana" }, } },
- ["ImpaleChanceDelve__"] = { type = "Prefix", affix = "Subterranean", "(5-10)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 60, group = "AttackImpaleChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(5-10)% chance to Impale Enemies on Hit with Attacks" }, } },
- ["FasterBleedDelve"] = { type = "Suffix", affix = "of the Underground", "Bleeding you inflict deals Damage (5-10)% faster", statOrder = { 6549 }, level = 60, group = "FasterBleedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (5-10)% faster" }, } },
- ["AddedPhysicalSpellDamageDelve___"] = { type = "Prefix", affix = "Subterranean", "Adds (11-22) to (34-46) Physical Damage to Spells", statOrder = { 1408 }, level = 60, group = "SpellAddedPhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (11-22) to (34-46) Physical Damage to Spells" }, } },
- ["LightningAilmentEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Effect of Lightning Ailments", statOrder = { 7438 }, level = 60, group = "LightningAilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "(15-25)% increased Effect of Lightning Ailments" }, } },
- ["PhysicalDamageConvertedToLightningDelve"] = { type = "Prefix", affix = "Subterranean", "10% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 60, group = "ConvertPhysicalToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "10% of Physical Damage Converted to Lightning Damage" }, } },
- ["ColdAilmentDurationDelve"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Duration of Cold Ailments", statOrder = { 5801 }, level = 60, group = "ColdAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3571964448] = { "(15-25)% increased Duration of Cold Ailments" }, } },
- ["PhysicalDamageConvertedToColdDelve"] = { type = "Prefix", affix = "Subterranean", "10% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 60, group = "ConvertPhysicalToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "10% of Physical Damage Converted to Cold Damage" }, } },
- ["FasterIgniteDelve_"] = { type = "Suffix", affix = "of the Underground", "Ignites you inflict deal Damage (5-10)% faster", statOrder = { 2569 }, level = 60, group = "FasterIgniteDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (5-10)% faster" }, } },
- ["PhysicalDamageConvertedToFireDelve"] = { type = "Prefix", affix = "Subterranean", "10% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 60, group = "ConvertPhysicalToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "10% of Physical Damage Converted to Fire Damage" }, } },
- ["FasterPoisonDelve_"] = { type = "Suffix", affix = "of the Underground", "Poisons you inflict deal Damage (5-10)% faster", statOrder = { 6550 }, level = 60, group = "FasterPoisonDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (5-10)% faster" }, } },
- ["ZeroChaosResistanceDelve"] = { type = "Suffix", affix = "of the Underground", "Chaos Resistance is Zero", statOrder = { 10725 }, level = 60, group = "ZeroChaosResistanceDelve", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is Zero" }, } },
- ["MinionCriticalStrikeMultiplierDelve"] = { type = "Suffix", affix = "of the Underground", "Minions have +(30-38)% to Critical Strike Multiplier", statOrder = { 9294 }, level = 60, group = "MinionCriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(30-38)% to Critical Strike Multiplier" }, } },
- ["MinionLargerAggroRadiusDelve"] = { type = "Suffix", affix = "of the Underground", "Minions are Aggressive", statOrder = { 10759 }, level = 60, group = "MinionLargerAggroRadius", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [128585622] = { "Minions are Aggressive" }, } },
- ["MinionAreaOfEffectDelve"] = { type = "Prefix", affix = "Subterranean", "Minions have (20-30)% increased Area of Effect", statOrder = { 3029 }, level = 60, group = "MinionAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (20-30)% increased Area of Effect" }, } },
- ["MinionLeechDelve___"] = { type = "Prefix", affix = "Subterranean", "Minions Leech 1% of Damage as Life", statOrder = { 2915 }, level = 60, group = "MinionLifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2770782267] = { "Minions Leech 1% of Damage as Life" }, } },
- ["SpiritAndPhantasmRefreshOnUniqueDelve"] = { type = "Prefix", affix = "Subterranean", "Summoned Phantasms have 5% chance to refresh their Duration when they Hit a Rare or Unique Enemy", "Summoned Raging Spirits have 5% chance to refresh their Duration when they Hit a Rare or Unique Enemy", statOrder = { 9613, 9801 }, level = 60, group = "SpiritAndPhantasmRefreshOnUnique", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [4070754804] = { "Summoned Raging Spirits have 5% chance to refresh their Duration when they Hit a Rare or Unique Enemy" }, [7847395] = { "Summoned Phantasms have 5% chance to refresh their Duration when they Hit a Rare or Unique Enemy" }, } },
- ["AuraEffectOnEnemiesDelve_____"] = { type = "Suffix", affix = "of the Underground", "(12-18)% increased Effect of Non-Curse Auras from your Skills on Enemies", statOrder = { 3572 }, level = 60, group = "AuraEffectOnEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, tradeHashes = { [1636209393] = { "(12-18)% increased Effect of Non-Curse Auras from your Skills on Enemies" }, } },
- ["LifeReservationEfficiencyDelve"] = { type = "Prefix", affix = "Subterranean", "10% increased Life Reservation Efficiency of Skills", statOrder = { 2231 }, level = 60, group = "LifeReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [635485889] = { "10% increased Life Reservation Efficiency of Skills" }, } },
- ["DoomGainRateDelve"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Damage with Hits and Ailments against Cursed Enemies", statOrder = { 7156 }, level = 60, group = "HitAndAilmentDamageCursedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "curse" }, tradeHashes = { [539970476] = { "(40-60)% increased Damage with Hits and Ailments against Cursed Enemies" }, } },
- ["MarkEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Effect of your Marks", statOrder = { 2603 }, level = 60, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(15-25)% increased Effect of your Marks" }, } },
- ["ChaosNonAilmentDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Waning", "+(26-35)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(26-35)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosNonAilmentDamageOverTimeMultiplier2h2"] = { type = "Prefix", affix = "Wasting", "+(36-45)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(36-45)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosNonAilmentDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Deteriorating", "+(46-55)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(46-55)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosNonAilmentDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Atrophying", "+(56-65)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(56-65)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosNonAilmentDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Disintegrating", "+(66-75)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(66-75)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosNonAilmentDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Waning", "+(14-18)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(14-18)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosNonAilmentDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Wasting", "+(19-23)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(19-23)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosNonAilmentDamageOverTimeMultiplier1h3___"] = { type = "Prefix", affix = "Deteriorating", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(24-28)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosNonAilmentDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Atrophying", "+(29-33)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(29-33)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosNonAilmentDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Disintegrating", "+(34-38)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(34-38)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosNonAilmentDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "chaos_damage", "influence_mod", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(11-15)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosNonAilmentDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 80, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "chaos_damage", "influence_mod", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(16-20)% to Chaos Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplier2h1_"] = { type = "Prefix", affix = "Inclement", "+(26-35)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(26-35)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplier2h2_"] = { type = "Prefix", affix = "Bleak", "+(36-45)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(36-45)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Boreal", "+(46-55)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(46-55)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Gelid", "+(56-65)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(56-65)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Heartstopping", "+(66-75)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(66-75)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Inclement", "+(14-18)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(14-18)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Bleak", "+(19-23)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(19-23)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Boreal", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(24-28)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Gelid", "+(29-33)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(29-33)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Heartstopping", "+(34-38)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(34-38)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(11-15)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplierUber2_"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 80, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(16-20)% to Cold Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Earnest", "+(26-35)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(26-35)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplier2h2"] = { type = "Prefix", affix = "Fervid", "+(36-45)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(36-45)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Ardent", "+(46-55)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(46-55)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Zealous", "+(56-65)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(56-65)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplier2h5__"] = { type = "Prefix", affix = "Fanatical", "+(66-75)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(66-75)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Earnest", "+(14-18)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(14-18)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Fervid", "+(19-23)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(19-23)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Ardent", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(24-28)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Zealous", "+(29-33)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(29-33)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Fanatical", "+(34-38)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(34-38)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplierUber1___"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(11-15)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 80, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(16-20)% to Fire Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Seeping", "+(26-35)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(26-35)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplier2h2_"] = { type = "Prefix", affix = "Spilling", "+(36-45)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(36-45)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Phlebotomising", "+(46-55)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(46-55)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Hemorrhaging", "+(56-65)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(56-65)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Exsanguinating", "+(66-75)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(66-75)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Seeping", "+(14-18)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(14-18)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplier1h2_"] = { type = "Prefix", affix = "Spilling", "+(19-23)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(19-23)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Phlebotomising", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(24-28)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplier1h4_"] = { type = "Prefix", affix = "Hemorrhaging", "+(29-33)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(29-33)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Exsanguinating", "+(34-38)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(34-38)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(11-15)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierUber2__"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 80, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(16-20)% to Physical Damage over Time Multiplier" }, } },
- ["GlobalDamageOverTimeMultiplier1h1"] = { type = "Suffix", affix = "of Acrimony", "+(7-11)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 44, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(7-11)% to Damage over Time Multiplier" }, } },
- ["GlobalDamageOverTimeMultiplier1h2_"] = { type = "Suffix", affix = "of Dispersion", "+(12-15)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 55, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(12-15)% to Damage over Time Multiplier" }, } },
- ["GlobalDamageOverTimeMultiplier1h3"] = { type = "Suffix", affix = "of Liquefaction", "+(16-19)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(16-19)% to Damage over Time Multiplier" }, } },
- ["GlobalDamageOverTimeMultiplier1h4"] = { type = "Suffix", affix = "of Melting", "+(20-23)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 76, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(20-23)% to Damage over Time Multiplier" }, } },
- ["GlobalDamageOverTimeMultiplier1h5"] = { type = "Suffix", affix = "of Dissolution", "+(24-26)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 82, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(24-26)% to Damage over Time Multiplier" }, } },
- ["GlobalDamageOverTimeMultiplier2h1__"] = { type = "Suffix", affix = "of Acrimony", "+(16-21)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 44, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(16-21)% to Damage over Time Multiplier" }, } },
- ["GlobalDamageOverTimeMultiplier2h2"] = { type = "Suffix", affix = "of Dispersion", "+(24-29)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 55, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(24-29)% to Damage over Time Multiplier" }, } },
- ["GlobalDamageOverTimeMultiplier2h3___"] = { type = "Suffix", affix = "of Liquefaction", "+(31-35)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(31-35)% to Damage over Time Multiplier" }, } },
- ["GlobalDamageOverTimeMultiplier2h4_"] = { type = "Suffix", affix = "of Melting", "+(36-40)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 76, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(36-40)% to Damage over Time Multiplier" }, } },
- ["GlobalDamageOverTimeMultiplier2h5____"] = { type = "Suffix", affix = "of Dissolution", "+(41-45)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 82, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(41-45)% to Damage over Time Multiplier" }, } },
- ["GlobalDamageOverTimeMultiplierEssence1_"] = { type = "Suffix", affix = "of the Essence", "+10% to Damage over Time Multiplier", statOrder = { 1247 }, level = 63, group = "GlobalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+10% to Damage over Time Multiplier" }, } },
- ["GlobalDamageOverTimeMultiplierRingEssence1"] = { type = "Suffix", affix = "of the Essence", "+(12-15)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 63, group = "GlobalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(12-15)% to Damage over Time Multiplier" }, } },
- ["GlobalDamageOverTimeMultiplierWithAttacks1h1"] = { type = "Suffix", affix = "of Acrimony", "+(7-11)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1251 }, level = 44, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, tradeHashes = { [693959086] = { "+(7-11)% to Damage over Time Multiplier with Attack Skills" }, } },
- ["GlobalDamageOverTimeMultiplierWithAttacks1h2___"] = { type = "Suffix", affix = "of Dispersion", "+(12-15)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1251 }, level = 55, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, tradeHashes = { [693959086] = { "+(12-15)% to Damage over Time Multiplier with Attack Skills" }, } },
- ["GlobalDamageOverTimeMultiplierWithAttacks1h3"] = { type = "Suffix", affix = "of Liquefaction", "+(16-19)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1251 }, level = 68, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, tradeHashes = { [693959086] = { "+(16-19)% to Damage over Time Multiplier with Attack Skills" }, } },
- ["GlobalDamageOverTimeMultiplierWithAttacks1h4_"] = { type = "Suffix", affix = "of Melting", "+(20-23)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1251 }, level = 76, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, tradeHashes = { [693959086] = { "+(20-23)% to Damage over Time Multiplier with Attack Skills" }, } },
- ["GlobalDamageOverTimeMultiplierWithAttacks1h5"] = { type = "Suffix", affix = "of Dissolution", "+(24-26)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1251 }, level = 82, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, tradeHashes = { [693959086] = { "+(24-26)% to Damage over Time Multiplier with Attack Skills" }, } },
- ["ChaosDamageOverTimeMultiplierTwoHand1_"] = { type = "Suffix", affix = "of Waning", "+(26-35)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(26-35)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplierTwoHand2__"] = { type = "Suffix", affix = "of Wasting", "+(36-45)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(36-45)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplierTwoHand3_"] = { type = "Suffix", affix = "of Deteriorating", "+(46-55)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(46-55)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplierTwoHand4__"] = { type = "Suffix", affix = "of Atrophying", "+(56-65)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(56-65)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplierTwoHand5___"] = { type = "Suffix", affix = "of Disintegrating", "+(66-75)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(66-75)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplier1_"] = { type = "Suffix", affix = "of Waning", "+(14-18)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 400, 400, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(14-18)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Wasting", "+(19-23)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(19-23)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of Deteriorating", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 200, 200, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(24-28)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of Atrophying", "+(29-33)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 100, 100, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(29-33)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Disintegrating", "+(34-38)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 50, 50, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(34-38)% to Chaos Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplierTwoHand1_"] = { type = "Suffix", affix = "of the Inclement", "+(26-35)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(26-35)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplierTwoHand2"] = { type = "Suffix", affix = "of the Bleak", "+(36-45)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(36-45)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplierTwoHand3"] = { type = "Suffix", affix = "of the Boreal", "+(46-55)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(46-55)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplierTwoHand4"] = { type = "Suffix", affix = "of the Gelid", "+(56-65)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(56-65)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplierTwoHand5"] = { type = "Suffix", affix = "of Heartstopping", "+(66-75)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(66-75)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of the Inclement", "+(14-18)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(14-18)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of the Bleak", "+(19-23)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 220, 220, 220, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(19-23)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of the Boreal", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 140, 140, 140, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(24-28)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of the Gelid", "+(29-33)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 70, 70, 70, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(29-33)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Heartstopping", "+(34-38)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 35, 35, 35, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(34-38)% to Cold Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplierTwoHand1_"] = { type = "Suffix", affix = "of the Earnest", "+(26-35)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(26-35)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplierTwoHand2_"] = { type = "Suffix", affix = "of the Fervid", "+(36-45)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(36-45)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplierTwoHand3"] = { type = "Suffix", affix = "of the Ardent", "+(46-55)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(46-55)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplierTwoHand4"] = { type = "Suffix", affix = "of the Zealous", "+(56-65)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(56-65)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplierTwoHand5_"] = { type = "Suffix", affix = "of the Fanatical", "+(66-75)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(66-75)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of the Earnest", "+(14-18)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(14-18)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of the Fervid", "+(19-23)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 220, 220, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(19-23)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of the Ardent", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 140, 140, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(24-28)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplier4__"] = { type = "Suffix", affix = "of the Zealous", "+(29-33)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 70, 70, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(29-33)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of the Fanatical", "+(34-38)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 35, 35, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(34-38)% to Fire Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierTwoHand1"] = { type = "Suffix", affix = "of Seeping", "+(26-35)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(26-35)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierTwoHand2"] = { type = "Suffix", affix = "of Spilling", "+(36-45)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(36-45)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierTwoHand3"] = { type = "Suffix", affix = "of Phlebotomising", "+(46-55)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(46-55)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierTwoHand4"] = { type = "Suffix", affix = "of Hemorrhaging", "+(56-65)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(56-65)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierTwoHand5"] = { type = "Suffix", affix = "of Exsanguinating", "+(66-75)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(66-75)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplier1__"] = { type = "Suffix", affix = "of Seeping", "+(14-18)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(14-18)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Spilling", "+(19-23)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 220, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(19-23)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplier3__"] = { type = "Suffix", affix = "of Phlebotomising", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 140, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(24-28)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of Hemorrhaging", "+(29-33)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 70, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(29-33)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Exsanguinating", "+(34-38)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 35, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(34-38)% to Physical Damage over Time Multiplier" }, } },
- ["IncreasedLifeEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Guatelitzi's", "+(70-79) to maximum Life", "2% increased maximum Life", statOrder = { 1574, 1576 }, level = 50, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "2% increased maximum Life" }, [3299347043] = { "+(70-79) to maximum Life" }, } },
- ["IncreasedLifeEnhancedLevel50BodyMod"] = { type = "Prefix", affix = "Guatelitzi's", "+(110-119) to maximum Life", "(8-10)% increased maximum Life", statOrder = { 1574, 1576 }, level = 50, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, [3299347043] = { "+(110-119) to maximum Life" }, } },
- ["IncreasedManaEnhancedLevel50ModPercent"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(7-10)% increased maximum Mana", statOrder = { 1584, 1585 }, level = 50, group = "IncreasedManaAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-73) to maximum Mana" }, [2748665614] = { "(7-10)% increased maximum Mana" }, } },
- ["IncreasedManaEnhancedLevel50ModOnHit"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1584, 1749 }, level = 50, group = "IncreasedManaAndOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [820939409] = { "Gain (2-3) Mana per Enemy Hit with Attacks" }, } },
- ["IncreasedManaEnhancedLevel50ModRegen"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Regenerate (5-7) Mana per second", statOrder = { 1584, 1587 }, level = 50, group = "IncreasedManaAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [4291461939] = { "Regenerate (5-7) Mana per second" }, } },
- ["IncreasedManaEnhancedLevel50ModReservation_"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 1584, 2237 }, level = 50, group = "IncreasedManaAndReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-73) to maximum Mana" }, [1269219558] = { "(6-10)% increased Mana Reservation Efficiency of Skills" }, } },
- ["IncreasedManaEnhancedLevel50ModCost"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "-(8-6) to Total Mana Cost of Skills", statOrder = { 1584, 1896 }, level = 50, group = "IncreasedManaAndCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [3736589033] = { "-(8-6) to Total Mana Cost of Skills" }, } },
- ["IncreasedManaEnhancedLevel50ModCostNew"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Non-Channelling Skills have -(8-6) to Total Mana Cost", statOrder = { 1584, 10061 }, level = 50, group = "IncreasedManaAndCostNew", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [677564538] = { "Non-Channelling Skills have -(8-6) to Total Mana Cost" }, } },
- ["IncreasedEnergyShieldEnhancedLevel50ModES_"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "3% increased maximum Energy Shield", statOrder = { 1563, 1566 }, level = 50, group = "EnergyShieldAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "3% increased maximum Energy Shield" }, [3489782002] = { "+(44-47) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldEnhancedLevel50ModRegen"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Regenerate 0.4% of Energy Shield per second", statOrder = { 1563, 2651 }, level = 50, group = "EnergyShieldAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 0.4% of Energy Shield per second" }, [3489782002] = { "+(44-47) to maximum Energy Shield" }, } },
- ["AddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (11-13) Fire Damage to Attacks", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1365, 1960 }, level = 50, group = "FireDamagePhysConvertedToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, [1573130764] = { "Adds (5-7) to (11-13) Fire Damage to Attacks" }, } },
- ["AddedColdDamageEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (10-12) Cold Damage to Attacks", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1374, 1962 }, level = 50, group = "ColdDamagePhysConvertedToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, [4067062424] = { "Adds (5-7) to (10-12) Cold Damage to Attacks" }, } },
- ["AddedLightningDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (1-2) to (22-23) Lightning Damage to Attacks", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1385, 1964 }, level = 50, group = "LightningDamagePhysConvertedToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (22-23) Lightning Damage to Attacks" }, [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } },
- ["LocalIncreasedPhysicalDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (3-5)% of Physical Damage as Extra Chaos Damage", statOrder = { 1237, 1940 }, level = 50, group = "LocalPhysicalDamagePercentAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, tradeHashes = { [1805374733] = { "(155-169)% increased Physical Damage" }, [3319896421] = { "Gain (3-5)% of Physical Damage as Extra Chaos Damage" }, } },
- ["LocalAddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (45-61) to (91-106) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1367, 3767 }, level = 50, group = "LocalFireDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (45-61) to (91-106) Fire Damage" }, } },
- ["LocalAddedFireDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (79-106) to (159-186) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1367, 3767 }, level = 50, group = "LocalFireDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (79-106) to (159-186) Fire Damage" }, } },
- ["LocalAddedColdDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (37-50) to (74-87) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1376, 3768 }, level = 50, group = "LocalColdDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (37-50) to (74-87) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } },
- ["LocalAddedColdDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (65-87) to (130-152) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1376, 3768 }, level = 50, group = "LocalColdDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (65-87) to (130-152) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } },
- ["LocalAddedLightningDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (4-13) to (158-166) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 50, group = "LocalLightningDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (4-13) to (158-166) Lightning Damage" }, } },
- ["LocalAddedLightningDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (7-22) to (275-290) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 50, group = "LocalLightningDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (7-22) to (275-290) Lightning Damage" }, } },
- ["MovementVelocityEnhancedLevel50ModSpeed"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "5% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1803, 3248 }, level = 50, group = "MovementVelocitySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [308396001] = { "5% increased Movement Speed if you haven't been Hit Recently" }, [2250533757] = { "30% increased Movement Speed" }, } },
- ["MovementVelocityEnhancedLevel50ModDodge"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid Bleeding", statOrder = { 1803, 4221 }, level = 50, group = "MovementVelocityDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1618589784] = { "(10-15)% chance to Avoid Bleeding" }, [2250533757] = { "30% increased Movement Speed" }, } },
- ["MovementVelocityEnhancedLevel50ModSpellDodge__"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid being Poisoned", statOrder = { 1803, 1854 }, level = 50, group = "MovementVelocitySpellDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [4053951709] = { "(10-15)% chance to Avoid being Poisoned" }, [2250533757] = { "30% increased Movement Speed" }, } },
- ["SpellDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(70-74)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1228, 9487 }, level = 50, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2974417149] = { "(70-74)% increased Spell Damage" }, [2063695047] = { "Gain 5% of Non-Chaos Damage as extra Chaos Damage" }, } },
- ["SpellDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(105-110)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1228, 9487 }, level = 50, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2974417149] = { "(105-110)% increased Spell Damage" }, [2063695047] = { "Gain 5% of Non-Chaos Damage as extra Chaos Damage" }, } },
- ["TrapDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Trap Damage", statOrder = { 1199 }, level = 50, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(90-95)% increased Trap Damage" }, } },
- ["TrapDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Trap Damage", statOrder = { 1199 }, level = 50, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(133-138)% increased Trap Damage" }, } },
- ["MineDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Mine Damage", statOrder = { 1201 }, level = 50, group = "MineDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2137912951] = { "(90-95)% increased Mine Damage" }, } },
- ["MineDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Mine Damage", statOrder = { 1201 }, level = 50, group = "MineDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2137912951] = { "(133-138)% increased Mine Damage" }, } },
- ["TrapThrowSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Trap Throwing Speed", statOrder = { 1932 }, level = 50, group = "TrapThrowSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(20-22)% increased Trap Throwing Speed" }, } },
- ["TrapThrowSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(30-33)% increased Trap Throwing Speed", statOrder = { 1932 }, level = 50, group = "TrapThrowSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(30-33)% increased Trap Throwing Speed" }, } },
- ["MineThrowSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Mine Throwing Speed", statOrder = { 1933 }, level = 50, group = "MineLayingSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(20-22)% increased Mine Throwing Speed" }, } },
- ["MineThrowSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(30-33)% increased Mine Throwing Speed", statOrder = { 1933 }, level = 50, group = "MineLayingSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(30-33)% increased Mine Throwing Speed" }, } },
- ["TrapCooldownRecoveryAndDurationEnhancedLevel50Mod__"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Trap Duration", "(14-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 1928, 3466 }, level = 50, group = "TrapCooldownRecoveryAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2001530951] = { "(17-20)% increased Trap Duration" }, [3417757416] = { "(14-15)% increased Cooldown Recovery Rate for throwing Traps" }, } },
- ["TrapCooldownRecoveryAndDurationTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(26-30)% increased Trap Duration", "(21-22)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 1928, 3466 }, level = 50, group = "TrapCooldownRecoveryAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2001530951] = { "(26-30)% increased Trap Duration" }, [3417757416] = { "(21-22)% increased Cooldown Recovery Rate for throwing Traps" }, } },
- ["MineDetonationSpeedAndDurationEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Mine Duration", "Mines have (14-15)% increased Detonation Speed", statOrder = { 1929, 9224 }, level = 50, group = "MineDetonationSpeedAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3085465082] = { "Mines have (14-15)% increased Detonation Speed" }, [117667746] = { "(17-20)% increased Mine Duration" }, } },
- ["MineDetonationSpeedAndDurationTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(26-30)% increased Mine Duration", "Mines have (21-22)% increased Detonation Speed", statOrder = { 1929, 9224 }, level = 50, group = "MineDetonationSpeedAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3085465082] = { "Mines have (21-22)% increased Detonation Speed" }, [117667746] = { "(26-30)% increased Mine Duration" }, } },
- ["TrapAreaOfEffectEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (22-25)% increased Area of Effect", statOrder = { 3484 }, level = 50, group = "TrapAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4050593908] = { "Skills used by Traps have (22-25)% increased Area of Effect" }, } },
- ["TrapAreaOfEffectTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (33-37)% increased Area of Effect", statOrder = { 3484 }, level = 50, group = "TrapAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4050593908] = { "Skills used by Traps have (33-37)% increased Area of Effect" }, } },
- ["MineAreaOfEffectEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "Skills used by Mines have (22-25)% increased Area of Effect", statOrder = { 9221 }, level = 50, group = "MineAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2228913626] = { "Skills used by Mines have (22-25)% increased Area of Effect" }, } },
- ["MineAreaOfEffectTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Mines have (33-37)% increased Area of Effect", statOrder = { 9221 }, level = 50, group = "MineAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2228913626] = { "Skills used by Mines have (33-37)% increased Area of Effect" }, } },
- ["LocalIncreaseSocketedTrapGemLevelEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Matatl's", "+2 to Level of Socketed Trap or Mine Gems", statOrder = { 192 }, level = 50, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [150668988] = { "+2 to Level of Socketed Trap or Mine Gems" }, } },
- ["MinionDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (90-95)% increased Damage", statOrder = { 1978 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (90-95)% increased Damage" }, } },
- ["MinionDamageOnTwoHandWeaponEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (133-138)% increased Damage", statOrder = { 1978 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (133-138)% increased Damage" }, } },
- ["MinionDamageOnWeaponEnhancedLevel50ModNew"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (50-66)% increased Damage", "Minions have 5% chance to deal Double Damage", statOrder = { 1978, 9283 }, level = 50, group = "MinionDamageOnWeaponDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [755922799] = { "Minions have 5% chance to deal Double Damage" }, [1589917703] = { "Minions deal (50-66)% increased Damage" }, } },
- ["MinionDamageOnTwoHandWeaponEnhancedLevel50ModNew"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (85-94)% increased Damage", "Minions have 5% chance to deal Double Damage", statOrder = { 1978, 9283 }, level = 50, group = "MinionDamageOnWeaponDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [755922799] = { "Minions have 5% chance to deal Double Damage" }, [1589917703] = { "Minions deal (85-94)% increased Damage" }, } },
- ["MinionAttackAndCastSpeedEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (25-28)% increased Attack Speed", "Minions have (25-28)% increased Cast Speed", statOrder = { 2912, 2913 }, level = 50, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (25-28)% increased Attack Speed" }, [4000101551] = { "Minions have (25-28)% increased Cast Speed" }, } },
- ["MinionAttackAndCastSpeedTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (36-40)% increased Attack Speed", "Minions have (36-40)% increased Cast Speed", statOrder = { 2912, 2913 }, level = 50, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (36-40)% increased Attack Speed" }, [4000101551] = { "Minions have (36-40)% increased Cast Speed" }, } },
- ["MinionDurationEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "(17-20)% increased Minion Duration", statOrder = { 5037 }, level = 50, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(17-20)% increased Minion Duration" }, } },
- ["MinionDurationTwoHandedEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "(27-30)% increased Minion Duration", statOrder = { 5037 }, level = 50, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(27-30)% increased Minion Duration" }, } },
- ["LocalIncreaseSocketedMinionGemLevelEnhancedLevel50Mod"] = { type = "Prefix", affix = "Citaqualotl's", "+2 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 50, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } },
- ["FireDamagePrefixOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Fire Damage", "Adds (15-20) to (30-35) Fire Damage to Spells", statOrder = { 1362, 1409 }, level = 50, group = "FireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [3962278098] = { "(75-79)% increased Fire Damage" }, [1133016593] = { "Adds (15-20) to (30-35) Fire Damage to Spells" }, } },
- ["FireDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod__"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Fire Damage", "Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1362, 1409 }, level = 50, group = "TwoHandFireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [3962278098] = { "(111-115)% increased Fire Damage" }, [1133016593] = { "Adds (20-27) to (41-48) Fire Damage to Spells" }, } },
- ["ColdDamagePrefixOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Cold Damage", "Adds (12-16) to (25-29) Cold Damage to Spells", statOrder = { 1371, 1410 }, level = 50, group = "ColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3291658075] = { "(75-79)% increased Cold Damage" }, [2469416729] = { "Adds (12-16) to (25-29) Cold Damage to Spells" }, } },
- ["ColdDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Cold Damage", "Adds (19-25) to (37-44) Cold Damage to Spells", statOrder = { 1371, 1410 }, level = 50, group = "TwoHandColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3291658075] = { "(111-115)% increased Cold Damage" }, [2469416729] = { "Adds (19-25) to (37-44) Cold Damage to Spells" }, } },
- ["LightningDamagePrefixOnWeaponEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Lightning Damage", "Adds (1-4) to (53-56) Lightning Damage to Spells", statOrder = { 1382, 1411 }, level = 50, group = "LightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (53-56) Lightning Damage to Spells" }, [2231156303] = { "(75-79)% increased Lightning Damage" }, } },
- ["LightningDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Lightning Damage", "Adds (2-6) to (79-84) Lightning Damage to Spells", statOrder = { 1382, 1411 }, level = 50, group = "TwoHandLightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (79-84) Lightning Damage to Spells" }, [2231156303] = { "(111-115)% increased Lightning Damage" }, } },
- ["IncreasedCastSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(29-32)% increased Cast Speed", statOrder = { 1412, 1451 }, level = 50, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, tradeHashes = { [2300399854] = { "Adds (17-24) to (36-40) Chaos Damage to Spells" }, [2891184298] = { "(29-32)% increased Cast Speed" }, } },
- ["IncreasedCastSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (24-32) to (49-57) Chaos Damage to Spells", "(44-49)% increased Cast Speed", statOrder = { 1412, 1451 }, level = 50, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, tradeHashes = { [2300399854] = { "Adds (24-32) to (49-57) Chaos Damage to Spells" }, [2891184298] = { "(44-49)% increased Cast Speed" }, } },
- ["LocalIncreasedAttackSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(26-27)% increased Attack Speed", statOrder = { 1395, 1418 }, level = 50, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, tradeHashes = { [210067635] = { "(26-27)% increased Attack Speed" }, [2223678961] = { "Adds (23-36) to (49-61) Chaos Damage" }, } },
- ["LocalIncreasedAttackSpeedRangedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(14-16)% increased Attack Speed", statOrder = { 1395, 1418 }, level = 50, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, tradeHashes = { [210067635] = { "(14-16)% increased Attack Speed" }, [2223678961] = { "Adds (23-36) to (49-61) Chaos Damage" }, } },
- ["LifeRegenerationEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Guatelitzi", "Regenerate (32-40) Life per second", "Regenerate 0.4% of Life per second", statOrder = { 1579, 1949 }, level = 50, group = "LifeRegenerationAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (32-40) Life per second" }, [836936635] = { "Regenerate 0.4% of Life per second" }, } },
- ["FireResistEnhancedLevel50ModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(3-5)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1630, 2452 }, level = 50, group = "FireResistancePhysTakenAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire", "resistance" }, tradeHashes = { [3342989455] = { "(3-5)% of Physical Damage from Hits taken as Fire Damage" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } },
- ["ColdResistEnhancedLevel50ModPhys_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(3-5)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1636, 2453 }, level = 50, group = "ColdResistancePhysTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [1871056256] = { "(3-5)% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["LightningResistEnhancedLevel50ModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(3-5)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1641, 2454 }, level = 50, group = "LightningResistancePhysTakenAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "lightning", "resistance" }, tradeHashes = { [425242359] = { "(3-5)% of Physical Damage from Hits taken as Lightning Damage" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } },
- ["FireResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched as Life", statOrder = { 1630, 1675 }, level = 50, group = "FireResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, tradeHashes = { [3848282610] = { "0.4% of Fire Damage Leeched as Life" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } },
- ["ColdResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched as Life", statOrder = { 1636, 1680 }, level = 50, group = "ColdResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [3999401129] = { "0.4% of Cold Damage Leeched as Life" }, } },
- ["LightningResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1641, 1684 }, level = 50, group = "LightningResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning", "resistance" }, tradeHashes = { [80079005] = { "0.4% of Lightning Damage Leeched as Life" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } },
- ["FireResistEnhancedLevel50ModAilments_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(45-52) to (75-78) added Fire Damage against Burning Enemies", statOrder = { 1630, 10320 }, level = 50, group = "FireResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [165402179] = { "(45-52) to (75-78) added Fire Damage against Burning Enemies" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } },
- ["ColdResistEnhancedLevel50ModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(30-50)% increased Damage with Hits against Chilled Enemies", statOrder = { 1636, 6075 }, level = 50, group = "ColdResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [2805714016] = { "(30-50)% increased Damage with Hits against Chilled Enemies" }, } },
- ["LightningResistEnhancedLevel50ModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(40-60)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 1641, 5918 }, level = 50, group = "LightningResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance", "critical" }, tradeHashes = { [276103140] = { "(40-60)% increased Critical Strike Chance against Shocked Enemies" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } },
- ["ChaosResistEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "+(31-35)% to Chaos Resistance", "(5-7)% reduced Chaos Damage taken over time", statOrder = { 1646, 1953 }, level = 50, group = "ChaosResistanceDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3762784591] = { "(5-7)% reduced Chaos Damage taken over time" }, [2923486259] = { "+(31-35)% to Chaos Resistance" }, } },
- ["PoisonDurationEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrder = { 1390, 3175 }, level = 50, group = "PoisonDurationChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(13-18)% increased Poison Duration" }, [736967255] = { "(26-30)% increased Chaos Damage" }, } },
- ["ChanceToPoisonEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "30% chance to Poison on Hit", statOrder = { 1390, 8007 }, level = 50, group = "LocalChanceToPoisonOnHitChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "30% chance to Poison on Hit" }, [736967255] = { "(26-30)% increased Chaos Damage" }, } },
- ["PoisonDamageEnhancedLevel50AttacksMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(31-35)% increased Damage with Poison", statOrder = { 1395, 3186 }, level = 50, group = "PoisonDamageAddedChaosToAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [2223678961] = { "Adds (23-36) to (49-61) Chaos Damage" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } },
- ["PoisonDamageEnhancedLevel50SpellsMod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(31-35)% increased Damage with Poison", statOrder = { 1412, 3186 }, level = 50, group = "PoisonDamageAddedChaosToSpells", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "poison", "damage", "chaos", "caster", "ailment" }, tradeHashes = { [2300399854] = { "Adds (17-24) to (36-40) Chaos Damage to Spells" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } },
- ["WeaponFireAddedAsChaos1h1"] = { type = "Prefix", affix = "Acidic", "Gain (5-7)% of Fire Damage as Extra Chaos Damage", statOrder = { 1946 }, level = 66, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (5-7)% of Fire Damage as Extra Chaos Damage" }, } },
- ["WeaponFireAddedAsChaos1h2"] = { type = "Prefix", affix = "Dissolving", "Gain (8-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1946 }, level = 72, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (8-10)% of Fire Damage as Extra Chaos Damage" }, } },
- ["WeaponFireAddedAsChaos1h3_"] = { type = "Prefix", affix = "Corrosive", "Gain (11-13)% of Fire Damage as Extra Chaos Damage", statOrder = { 1946 }, level = 80, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (11-13)% of Fire Damage as Extra Chaos Damage" }, } },
- ["WeaponColdAddedAsChaos1h1"] = { type = "Prefix", affix = "Atrophic", "Gain (5-7)% of Cold Damage as Extra Chaos Damage", statOrder = { 1945 }, level = 66, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (5-7)% of Cold Damage as Extra Chaos Damage" }, } },
- ["WeaponColdAddedAsChaos1h2"] = { type = "Prefix", affix = "Festering", "Gain (8-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1945 }, level = 72, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (8-10)% of Cold Damage as Extra Chaos Damage" }, } },
- ["WeaponColdAddedAsChaos1h3_"] = { type = "Prefix", affix = "Mortifying", "Gain (11-13)% of Cold Damage as Extra Chaos Damage", statOrder = { 1945 }, level = 80, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (11-13)% of Cold Damage as Extra Chaos Damage" }, } },
- ["WeaponLightningAddedAsChaos1h1"] = { type = "Prefix", affix = "Agonizing", "Gain (5-7)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1943 }, level = 66, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (5-7)% of Lightning Damage as Extra Chaos Damage" }, } },
- ["WeaponLightningAddedAsChaos1h2"] = { type = "Prefix", affix = "Harrowing", "Gain (8-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1943 }, level = 72, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (8-10)% of Lightning Damage as Extra Chaos Damage" }, } },
- ["WeaponLightningAddedAsChaos1h3_"] = { type = "Prefix", affix = "Excruciating", "Gain (11-13)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1943 }, level = 80, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (11-13)% of Lightning Damage as Extra Chaos Damage" }, } },
- ["WeaponPhysicalAddedAsChaos1h1____"] = { type = "Prefix", affix = "Pernicious", "Gain (5-7)% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 66, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (5-7)% of Physical Damage as Extra Chaos Damage" }, } },
- ["WeaponPhysicalAddedAsChaos1h2"] = { type = "Prefix", affix = "Inimical", "Gain (8-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 72, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (8-10)% of Physical Damage as Extra Chaos Damage" }, } },
- ["WeaponPhysicalAddedAsChaos1h3_"] = { type = "Prefix", affix = "Baleful", "Gain (11-13)% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 80, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (11-13)% of Physical Damage as Extra Chaos Damage" }, } },
- ["WeaponFireAddedAsChaos2h1_"] = { type = "Prefix", affix = "Acidic", "Gain (10-14)% of Fire Damage as Extra Chaos Damage", statOrder = { 1946 }, level = 66, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (10-14)% of Fire Damage as Extra Chaos Damage" }, } },
- ["WeaponFireAddedAsChaos2h2"] = { type = "Prefix", affix = "Dissolving", "Gain (15-20)% of Fire Damage as Extra Chaos Damage", statOrder = { 1946 }, level = 72, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (15-20)% of Fire Damage as Extra Chaos Damage" }, } },
- ["WeaponFireAddedAsChaos2h3_"] = { type = "Prefix", affix = "Corrosive", "Gain (21-26)% of Fire Damage as Extra Chaos Damage", statOrder = { 1946 }, level = 80, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (21-26)% of Fire Damage as Extra Chaos Damage" }, } },
- ["WeaponColdAddedAsChaos2h1"] = { type = "Prefix", affix = "Atrophic", "Gain (10-14)% of Cold Damage as Extra Chaos Damage", statOrder = { 1945 }, level = 66, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (10-14)% of Cold Damage as Extra Chaos Damage" }, } },
- ["WeaponColdAddedAsChaos2h2"] = { type = "Prefix", affix = "Festering", "Gain (15-20)% of Cold Damage as Extra Chaos Damage", statOrder = { 1945 }, level = 72, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (15-20)% of Cold Damage as Extra Chaos Damage" }, } },
- ["WeaponColdAddedAsChaos2h3"] = { type = "Prefix", affix = "Mortifying", "Gain (21-26)% of Cold Damage as Extra Chaos Damage", statOrder = { 1945 }, level = 80, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (21-26)% of Cold Damage as Extra Chaos Damage" }, } },
- ["WeaponLightningAddedAsChaos2h1"] = { type = "Prefix", affix = "Agonizing", "Gain (10-14)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1943 }, level = 66, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (10-14)% of Lightning Damage as Extra Chaos Damage" }, } },
- ["WeaponLightningAddedAsChaos2h2"] = { type = "Prefix", affix = "Harrowing", "Gain (15-20)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1943 }, level = 72, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (15-20)% of Lightning Damage as Extra Chaos Damage" }, } },
- ["WeaponLightningAddedAsChaos2h3"] = { type = "Prefix", affix = "Excruciating", "Gain (21-26)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1943 }, level = 80, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (21-26)% of Lightning Damage as Extra Chaos Damage" }, } },
- ["WeaponPhysicalAddedAsChaos2h1"] = { type = "Prefix", affix = "Pernicious", "Gain (10-14)% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 66, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (10-14)% of Physical Damage as Extra Chaos Damage" }, } },
- ["WeaponPhysicalAddedAsChaos2h2"] = { type = "Prefix", affix = "Inimical", "Gain (15-20)% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 72, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (15-20)% of Physical Damage as Extra Chaos Damage" }, } },
- ["WeaponPhysicalAddedAsChaos2h3"] = { type = "Prefix", affix = "Baleful", "Gain (21-26)% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 80, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (21-26)% of Physical Damage as Extra Chaos Damage" }, } },
- ["MinionDamageOnWeapon1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (10-19)% increased Damage", statOrder = { 1978 }, level = 2, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (10-19)% increased Damage" }, } },
- ["MinionDamageOnWeapon2"] = { type = "Prefix", affix = "Viscountess's", "Minions deal (20-29)% increased Damage", statOrder = { 1978 }, level = 11, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-29)% increased Damage" }, } },
- ["MinionDamageOnWeapon3"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (30-39)% increased Damage", statOrder = { 1978 }, level = 23, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-39)% increased Damage" }, } },
- ["MinionDamageOnWeapon4_"] = { type = "Prefix", affix = "Countess's", "Minions deal (40-54)% increased Damage", statOrder = { 1978 }, level = 35, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (40-54)% increased Damage" }, } },
- ["MinionDamageOnWeapon5"] = { type = "Prefix", affix = "Duchess's", "Minions deal (55-69)% increased Damage", statOrder = { 1978 }, level = 46, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (55-69)% increased Damage" }, } },
- ["MinionDamageOnWeapon6"] = { type = "Prefix", affix = "Princess's", "Minions deal (70-84)% increased Damage", statOrder = { 1978 }, level = 58, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (70-84)% increased Damage" }, } },
- ["MinionDamageOnWeapon7"] = { type = "Prefix", affix = "Queen's", "Minions deal (85-99)% increased Damage", statOrder = { 1978 }, level = 64, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (85-99)% increased Damage" }, } },
- ["MinionDamageOnWeapon8"] = { type = "Prefix", affix = "Empress's", "Minions deal (100-109)% increased Damage", statOrder = { 1978 }, level = 84, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (100-109)% increased Damage" }, } },
- ["MinionDamageOnWeaponEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (50-66)% increased Damage", statOrder = { 1978 }, level = 58, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (50-66)% increased Damage" }, } },
- ["MinionDamageOnWeaponEssence6"] = { type = "Prefix", affix = "Essences", "Minions deal (67-82)% increased Damage", statOrder = { 1978 }, level = 74, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (67-82)% increased Damage" }, } },
- ["MinionDamageOnWeaponEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (83-94)% increased Damage", statOrder = { 1978 }, level = 82, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (83-94)% increased Damage" }, } },
- ["MinionDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (15-29)% increased Damage", statOrder = { 1978 }, level = 2, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-29)% increased Damage" }, } },
- ["MinionDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (30-44)% increased Damage", statOrder = { 1978 }, level = 11, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-44)% increased Damage" }, } },
- ["MinionDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Duchess's", "Minions deal (45-59)% increased Damage", statOrder = { 1978 }, level = 23, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (45-59)% increased Damage" }, } },
- ["MinionDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Queen's", "Minions deal (60-84)% increased Damage", statOrder = { 1978 }, level = 35, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (60-84)% increased Damage" }, } },
- ["MinionDamageOnTwoHandWeaponEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (85-106)% increased Damage", statOrder = { 1978 }, level = 58, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (85-106)% increased Damage" }, } },
- ["MinionDamageOnTwoHandWeaponEssence6"] = { type = "Prefix", affix = "Essences", "Minions deal (107-122)% increased Damage", statOrder = { 1978 }, level = 74, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (107-122)% increased Damage" }, } },
- ["MinionDamageOnTwoHandWeaponEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (123-144)% increased Damage", statOrder = { 1978 }, level = 82, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (123-144)% increased Damage" }, } },
- ["MinionDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Baron's", "+(17-20) to maximum Mana", "Minions deal (5-9)% increased Damage", statOrder = { 1584, 1978 }, level = 2, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [1589917703] = { "Minions deal (5-9)% increased Damage" }, } },
- ["MinionDamageAndManaOnWeapon2_"] = { type = "Prefix", affix = "Viscount's", "+(21-24) to maximum Mana", "Minions deal (10-14)% increased Damage", statOrder = { 1584, 1978 }, level = 11, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(21-24) to maximum Mana" }, [1589917703] = { "Minions deal (10-14)% increased Damage" }, } },
- ["MinionDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Marquess's", "+(25-28) to maximum Mana", "Minions deal (15-19)% increased Damage", statOrder = { 1584, 1978 }, level = 23, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(25-28) to maximum Mana" }, [1589917703] = { "Minions deal (15-19)% increased Damage" }, } },
- ["MinionDamageAndManaOnWeapon4_"] = { type = "Prefix", affix = "Count's", "+(29-33) to maximum Mana", "Minions deal (20-24)% increased Damage", statOrder = { 1584, 1978 }, level = 35, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1600, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(29-33) to maximum Mana" }, [1589917703] = { "Minions deal (20-24)% increased Damage" }, } },
- ["MinionDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Duke's", "+(34-37) to maximum Mana", "Minions deal (25-29)% increased Damage", statOrder = { 1584, 1978 }, level = 46, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 800, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(34-37) to maximum Mana" }, [1589917703] = { "Minions deal (25-29)% increased Damage" }, } },
- ["MinionDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Prince's", "+(38-41) to maximum Mana", "Minions deal (30-34)% increased Damage", statOrder = { 1584, 1978 }, level = 58, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 400, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(38-41) to maximum Mana" }, [1589917703] = { "Minions deal (30-34)% increased Damage" }, } },
- ["MinionDamageAndManaOnWeapon7_"] = { type = "Prefix", affix = "King's", "+(42-45) to maximum Mana", "Minions deal (35-39)% increased Damage", statOrder = { 1584, 1978 }, level = 80, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(42-45) to maximum Mana" }, [1589917703] = { "Minions deal (35-39)% increased Damage" }, } },
- ["MinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of Motivation", "Minions have (5-7)% increased Attack and Cast Speed", statOrder = { 9273 }, level = 2, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (5-7)% increased Attack and Cast Speed" }, } },
- ["MinionAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Coercion", "Minions have (8-10)% increased Attack and Cast Speed", statOrder = { 9273 }, level = 15, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (8-10)% increased Attack and Cast Speed" }, } },
- ["MinionAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Incitation", "Minions have (11-13)% increased Attack and Cast Speed", statOrder = { 9273 }, level = 30, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (11-13)% increased Attack and Cast Speed" }, } },
- ["MinionAttackAndCastSpeed4"] = { type = "Suffix", affix = "of Agitation", "Minions have (14-16)% increased Attack and Cast Speed", statOrder = { 9273 }, level = 40, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (14-16)% increased Attack and Cast Speed" }, } },
- ["MinionAttackAndCastSpeed5"] = { type = "Suffix", affix = "of Instigation", "Minions have (17-19)% increased Attack and Cast Speed", statOrder = { 9273 }, level = 55, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (17-19)% increased Attack and Cast Speed" }, } },
- ["MinionAttackAndCastSpeed6__"] = { type = "Suffix", affix = "of Provocation", "Minions have (20-22)% increased Attack and Cast Speed", statOrder = { 9273 }, level = 72, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (20-22)% increased Attack and Cast Speed" }, } },
- ["MinionAttackAndCastSpeed7"] = { type = "Suffix", affix = "of Infuriation", "Minions have (23-25)% increased Attack and Cast Speed", statOrder = { 9273 }, level = 83, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (23-25)% increased Attack and Cast Speed" }, } },
- ["MinionGemLevel1h1"] = { type = "Prefix", affix = "Martinet's", "+1 to Level of all Minion Skill Gems", statOrder = { 1619 }, level = 60, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skill Gems" }, } },
- ["MinionLifeWeapon1"] = { type = "Suffix", affix = "of the Administrator", "Minions have (13-17)% increased maximum Life", statOrder = { 1771 }, level = 10, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (13-17)% increased maximum Life" }, } },
- ["MinionLifeWeapon2"] = { type = "Suffix", affix = "of the Rector", "Minions have (18-22)% increased maximum Life", statOrder = { 1771 }, level = 26, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (18-22)% increased maximum Life" }, } },
- ["MinionLifeWeapon3"] = { type = "Suffix", affix = "of the Overseer", "Minions have (23-27)% increased maximum Life", statOrder = { 1771 }, level = 42, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (23-27)% increased maximum Life" }, } },
- ["MinionLifeWeapon4__"] = { type = "Suffix", affix = "of the Taskmaster", "Minions have (28-32)% increased maximum Life", statOrder = { 1771 }, level = 58, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (28-32)% increased maximum Life" }, } },
- ["MinionLifeWeapon5"] = { type = "Suffix", affix = "of the Slavedriver", "Minions have (33-36)% increased maximum Life", statOrder = { 1771 }, level = 74, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (33-36)% increased maximum Life" }, } },
- ["MinionLifeWeapon6_"] = { type = "Suffix", affix = "of the Despot", "Minions have (37-40)% increased maximum Life", statOrder = { 1771 }, level = 82, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (37-40)% increased maximum Life" }, } },
- ["MinionMovementSpeed1"] = { type = "Suffix", affix = "of Coordination", "Minions have (6-10)% increased Movement Speed", statOrder = { 1774 }, level = 1, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (6-10)% increased Movement Speed" }, } },
- ["MinionMovementSpeed2"] = { type = "Suffix", affix = "of Collaboration", "Minions have (11-15)% increased Movement Speed", statOrder = { 1774 }, level = 15, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (11-15)% increased Movement Speed" }, } },
- ["MinionMovementSpeed3"] = { type = "Suffix", affix = "of Integration", "Minions have (16-20)% increased Movement Speed", statOrder = { 1774 }, level = 30, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (16-20)% increased Movement Speed" }, } },
- ["MinionMovementSpeed4"] = { type = "Suffix", affix = "of Orchestration", "Minions have (21-25)% increased Movement Speed", statOrder = { 1774 }, level = 40, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (21-25)% increased Movement Speed" }, } },
- ["MinionMovementSpeed5"] = { type = "Suffix", affix = "of Harmony", "Minions have (26-30)% increased Movement Speed", statOrder = { 1774 }, level = 55, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (26-30)% increased Movement Speed" }, } },
- ["MinionDamagePercent1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (5-10)% increased Damage", statOrder = { 1978 }, level = 4, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (5-10)% increased Damage" }, } },
- ["MinionDamagePercent2"] = { type = "Prefix", affix = "Viscountess's", "Minions deal (11-20)% increased Damage", statOrder = { 1978 }, level = 15, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (11-20)% increased Damage" }, } },
- ["MinionDamagePercent3"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (21-30)% increased Damage", statOrder = { 1978 }, level = 30, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (21-30)% increased Damage" }, } },
- ["MinionDamagePercent4"] = { type = "Prefix", affix = "Countess's", "Minions deal (31-36)% increased Damage", statOrder = { 1978 }, level = 60, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (31-36)% increased Damage" }, } },
- ["MinionDamagePercent5"] = { type = "Prefix", affix = "Duchess's", "Minions deal (37-42)% increased Damage", statOrder = { 1978 }, level = 81, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (37-42)% increased Damage" }, } },
- ["MinionResistancesWeapon1_"] = { type = "Suffix", affix = "of Adjustment", "Minions have +(11-15)% to all Elemental Resistances", statOrder = { 2917 }, level = 8, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(11-15)% to all Elemental Resistances" }, } },
- ["MinionResistancesWeapon2"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(16-20)% to all Elemental Resistances", statOrder = { 2917 }, level = 24, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(16-20)% to all Elemental Resistances" }, } },
- ["MinionResistancesWeapon3"] = { type = "Suffix", affix = "of Adaptation", "Minions have +(21-23)% to all Elemental Resistances", statOrder = { 2917 }, level = 37, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(21-23)% to all Elemental Resistances" }, } },
- ["MinionResistancesWeapon4"] = { type = "Suffix", affix = "of Evolution", "Minions have +(24-26)% to all Elemental Resistances", statOrder = { 2917 }, level = 50, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(24-26)% to all Elemental Resistances" }, } },
- ["MinionResistancesWeapon5"] = { type = "Suffix", affix = "of Metamorphosis", "Minions have +(27-30)% to all Elemental Resistances", statOrder = { 2917 }, level = 61, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(27-30)% to all Elemental Resistances" }, } },
- ["MinionAccuracyRatingWeapon1_"] = { type = "Suffix", affix = "of the Instructor", "Minions have +(80-130) to Accuracy Rating", statOrder = { 9267 }, level = 1, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(80-130) to Accuracy Rating" }, } },
- ["MinionAccuracyRatingWeapon2"] = { type = "Suffix", affix = "of the Tutor", "Minions have +(131-215) to Accuracy Rating", statOrder = { 9267 }, level = 20, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(131-215) to Accuracy Rating" }, } },
- ["MinionAccuracyRatingWeapon3"] = { type = "Suffix", affix = "of the Commander", "Minions have +(216-325) to Accuracy Rating", statOrder = { 9267 }, level = 40, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(216-325) to Accuracy Rating" }, } },
- ["MinionAccuracyRatingWeapon4"] = { type = "Suffix", affix = "of the Magnate", "Minions have +(326-455) to Accuracy Rating", statOrder = { 9267 }, level = 60, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(326-455) to Accuracy Rating" }, } },
- ["MinionAccuracyRatingWeapon5"] = { type = "Suffix", affix = "of the Ruler", "Minions have +(456-545) to Accuracy Rating", statOrder = { 9267 }, level = 75, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(456-545) to Accuracy Rating" }, } },
- ["MinionAccuracyRatingWeapon6"] = { type = "Suffix", affix = "of the Monarch", "Minions have +(546-624) to Accuracy Rating", statOrder = { 9267 }, level = 85, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(546-624) to Accuracy Rating" }, } },
- ["MinionMaxElementalResistance1"] = { type = "Suffix", affix = "of Impermeability", "Minions have +(3-4)% to all maximum Elemental Resistances", statOrder = { 9321 }, level = 68, group = "MinionMaxElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "minion" }, tradeHashes = { [10224385] = { "Minions have +(3-4)% to all maximum Elemental Resistances" }, } },
- ["MinionMaxElementalResistance2"] = { type = "Suffix", affix = "of Countervailing", "Minions have +(5-6)% to all maximum Elemental Resistances", statOrder = { 9321 }, level = 75, group = "MinionMaxElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "minion" }, tradeHashes = { [10224385] = { "Minions have +(5-6)% to all maximum Elemental Resistances" }, } },
- ["MinionMaxElementalResistance3"] = { type = "Suffix", affix = "of Imperviousness", "Minions have +(7-8)% to all maximum Elemental Resistances", statOrder = { 9321 }, level = 81, group = "MinionMaxElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "minion" }, tradeHashes = { [10224385] = { "Minions have +(7-8)% to all maximum Elemental Resistances" }, } },
- ["MinionPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Guard", "Minions have (7-9)% additional Physical Damage Reduction", statOrder = { 2279 }, level = 68, group = "MinionPhysicalDamageReduction", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (7-9)% additional Physical Damage Reduction" }, } },
- ["MinionPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Brigade", "Minions have (10-12)% additional Physical Damage Reduction", statOrder = { 2279 }, level = 75, group = "MinionPhysicalDamageReduction", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (10-12)% additional Physical Damage Reduction" }, } },
- ["MinionPhysicalDamageReduction3"] = { type = "Suffix", affix = "of the Phalanx", "Minions have (13-15)% additional Physical Damage Reduction", statOrder = { 2279 }, level = 81, group = "MinionPhysicalDamageReduction", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (13-15)% additional Physical Damage Reduction" }, } },
- ["MinionCriticalStrikeChanceIncrease1"] = { type = "Suffix", affix = "of Luck", "Minions have (10-19)% increased Critical Strike Chance", statOrder = { 9292 }, level = 11, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (10-19)% increased Critical Strike Chance" }, } },
- ["MinionCriticalStrikeChanceIncrease2"] = { type = "Suffix", affix = "of Fortune", "Minions have (20-39)% increased Critical Strike Chance", statOrder = { 9292 }, level = 21, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (20-39)% increased Critical Strike Chance" }, } },
- ["MinionCriticalStrikeChanceIncrease3"] = { type = "Suffix", affix = "of Providence", "Minions have (40-59)% increased Critical Strike Chance", statOrder = { 9292 }, level = 28, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (40-59)% increased Critical Strike Chance" }, } },
- ["MinionCriticalStrikeChanceIncrease4"] = { type = "Suffix", affix = "of Serendipity", "Minions have (60-79)% increased Critical Strike Chance", statOrder = { 9292 }, level = 41, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (60-79)% increased Critical Strike Chance" }, } },
- ["MinionCriticalStrikeChanceIncrease5"] = { type = "Suffix", affix = "of Determinism", "Minions have (80-99)% increased Critical Strike Chance", statOrder = { 9292 }, level = 59, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (80-99)% increased Critical Strike Chance" }, } },
- ["MinionCriticalStrikeChanceIncrease6"] = { type = "Suffix", affix = "of Destiny", "Minions have (100-109)% increased Critical Strike Chance", statOrder = { 9292 }, level = 76, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (100-109)% increased Critical Strike Chance" }, } },
- ["MinionCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of the Foray", "Minions have +(10-14)% to Critical Strike Multiplier", statOrder = { 9294 }, level = 8, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(10-14)% to Critical Strike Multiplier" }, } },
- ["MinionCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of the Horde", "Minions have +(15-19)% to Critical Strike Multiplier", statOrder = { 9294 }, level = 21, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(15-19)% to Critical Strike Multiplier" }, } },
- ["MinionCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of the Throng", "Minions have +(20-24)% to Critical Strike Multiplier", statOrder = { 9294 }, level = 30, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(20-24)% to Critical Strike Multiplier" }, } },
- ["MinionCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of the Swarm", "Minions have +(25-29)% to Critical Strike Multiplier", statOrder = { 9294 }, level = 44, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(25-29)% to Critical Strike Multiplier" }, } },
- ["MinionCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of the Invasion", "Minions have +(30-34)% to Critical Strike Multiplier", statOrder = { 9294 }, level = 59, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(30-34)% to Critical Strike Multiplier" }, } },
- ["MinionCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of the Legion", "Minions have +(35-38)% to Critical Strike Multiplier", statOrder = { 9294 }, level = 73, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(35-38)% to Critical Strike Multiplier" }, } },
- ["MinionGrantsConvocation1"] = { type = "Suffix", affix = "of the Convocation", "Grants Level 1 Convocation Skill", statOrder = { 689 }, level = 45, group = "MinionGrantsConvocation", weightKey = { "focus_can_roll_minion_modifiers", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1786401772] = { "Grants Level 1 Convocation Skill" }, } },
- ["TrapAndMineThrowSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Trap and Mine Throwing Speed", statOrder = { 10413 }, level = 42, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [464535071] = { "(7-10)% increased Trap and Mine Throwing Speed" }, } },
- ["TrapAndMineThrowSpeedEssence2_"] = { type = "Suffix", affix = "of the Essence", "(11-13)% increased Trap and Mine Throwing Speed", statOrder = { 10413 }, level = 58, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [464535071] = { "(11-13)% increased Trap and Mine Throwing Speed" }, } },
- ["TrapAndMineThrowSpeedEssence3_"] = { type = "Suffix", affix = "of the Essence", "(14-17)% increased Trap and Mine Throwing Speed", statOrder = { 10413 }, level = 74, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [464535071] = { "(14-17)% increased Trap and Mine Throwing Speed" }, } },
- ["TrapAndMineThrowSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(18-21)% increased Trap and Mine Throwing Speed", statOrder = { 10413 }, level = 82, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [464535071] = { "(18-21)% increased Trap and Mine Throwing Speed" }, } },
- ["UnaffectedByShockedGroundInfluence1"] = { type = "Prefix", affix = "Crusader's", "Unaffected by Shocked Ground", statOrder = { 10480 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2234049899] = { "Unaffected by Shocked Ground" }, } },
- ["SocketedLightningGemLevelInfluence1_"] = { type = "Prefix", affix = "Crusader's", "+2 to Level of Socketed Lightning Gems", statOrder = { 174 }, level = 68, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+2 to Level of Socketed Lightning Gems" }, } },
- ["MaximumFireResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } },
- ["MaximumFireResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Fire Resistance", statOrder = { 1628 }, level = 85, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } },
- ["MaximumFireResistanceInfluence1New_"] = { type = "Suffix", affix = "of the Crusade", "+1% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } },
- ["MaximumFireResistanceInfluence2New_"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Fire Resistance", statOrder = { 1628 }, level = 85, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 125, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } },
- ["PhysicalAddedAsExtraLightningBootsInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (3-5)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (3-5)% of Physical Damage as Extra Lightning Damage" }, } },
- ["PhysicalAddedAsExtraLightningBootsInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (6-8)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (6-8)% of Physical Damage as Extra Lightning Damage" }, } },
- ["CooldownRecoveryInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(6-10)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(6-10)% increased Cooldown Recovery Rate" }, } },
- ["CooldownRecoveryInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 80, group = "GlobalCooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(11-15)% increased Cooldown Recovery Rate" }, } },
- ["AvoidIgniteInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 68, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(31-35)% chance to Avoid being Ignited" }, } },
- ["AvoidIgniteInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 70, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(36-40)% chance to Avoid being Ignited" }, } },
- ["AvoidIgniteInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-60)% chance to Avoid being Ignited" }, } },
- ["AvoidFreezeInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 68, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(31-35)% chance to Avoid being Frozen" }, } },
- ["AvoidFreezeInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 70, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(36-40)% chance to Avoid being Frozen" }, } },
- ["AvoidFreezeInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(51-60)% chance to Avoid being Frozen" }, } },
- ["AvoidShockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 68, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(31-35)% chance to Avoid being Shocked" }, } },
- ["AvoidShockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 70, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(36-40)% chance to Avoid being Shocked" }, } },
- ["AvoidShockInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-60)% chance to Avoid being Shocked" }, } },
- ["AvoidProjectilesInfluence1"] = { type = "Suffix", affix = "of Redemption", "(6-9)% chance to avoid Projectiles", statOrder = { 4998 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3452269808] = { "(6-9)% chance to avoid Projectiles" }, } },
- ["AvoidProjectilesInfluence2"] = { type = "Suffix", affix = "of Redemption", "(10-12)% chance to avoid Projectiles", statOrder = { 4998 }, level = 73, group = "ChanceToAvoidProjectiles", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3452269808] = { "(10-12)% chance to avoid Projectiles" }, } },
- ["UnaffectedByBurningGroundInfluence1"] = { type = "Prefix", affix = "Warlord's", "Unaffected by Burning Ground", statOrder = { 10455 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "fire" }, tradeHashes = { [1643688236] = { "Unaffected by Burning Ground" }, } },
- ["SocketedFireGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+2 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 68, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } },
- ["MaximumEnduranceChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 75, group = "MaximumEnduranceCharges", weightKey = { "boots_adjudicator", "default", }, weightVal = { 125, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } },
- ["PhysicalAddedAsExtraFireBootsInfluence1"] = { type = "Prefix", affix = "Warlord's", "Gain (3-5)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (3-5)% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsExtraFireBootsInfluence2"] = { type = "Prefix", affix = "Warlord's", "Gain (6-8)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (6-8)% of Physical Damage as Extra Fire Damage" }, } },
- ["AvoidStunInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(16-20)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 68, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(16-20)% chance to Avoid being Stunned" }, } },
- ["AvoidStunInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(21-25)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 70, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(21-25)% chance to Avoid being Stunned" }, } },
- ["AvoidStunInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(31-35)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(31-35)% chance to Avoid being Stunned" }, } },
- ["AvoidFireDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Fire Damage from Hits", statOrder = { 3378 }, level = 68, group = "FireDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "fire" }, tradeHashes = { [42242677] = { "(5-7)% chance to Avoid Fire Damage from Hits" }, } },
- ["AvoidFireDamageInfluence2__"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3378 }, level = 80, group = "FireDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "fire" }, tradeHashes = { [42242677] = { "(8-10)% chance to Avoid Fire Damage from Hits" }, } },
- ["AvoidColdDamageInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Cold Damage from Hits", statOrder = { 3379 }, level = 68, group = "ColdDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "cold" }, tradeHashes = { [3743375737] = { "(5-7)% chance to Avoid Cold Damage from Hits" }, } },
- ["AvoidColdDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3379 }, level = 80, group = "ColdDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "cold" }, tradeHashes = { [3743375737] = { "(8-10)% chance to Avoid Cold Damage from Hits" }, } },
- ["AvoidLightningDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Lightning Damage from Hits", statOrder = { 3380 }, level = 68, group = "LightningDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(5-7)% chance to Avoid Lightning Damage from Hits" }, } },
- ["AvoidLightningDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3380 }, level = 80, group = "LightningDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(8-10)% chance to Avoid Lightning Damage from Hits" }, } },
- ["LifeRegenerationPercentInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Regenerate (0.8-1.2)% of Life per second", statOrder = { 1949 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (0.8-1.2)% of Life per second" }, } },
- ["LifeRegenerationPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate (1.3-1.5)% of Life per second", statOrder = { 1949 }, level = 73, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.3-1.5)% of Life per second" }, } },
- ["AdditionalPhysicalDamageReductionInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(2-4)% additional Physical Damage Reduction", statOrder = { 2278 }, level = 75, group = "ReducedPhysicalDamageTaken", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [3771516363] = { "(2-4)% additional Physical Damage Reduction" }, } },
- ["UnaffectedByChilledGroundInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Unaffected by Chilled Ground", statOrder = { 10460 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3653191834] = { "Unaffected by Chilled Ground" }, } },
- ["SocketedColdGemLevelInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+2 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 68, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } },
- ["EnduranceChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain an Endurance Charge on Kill", statOrder = { 2634 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "boots_eyrie", "sword_eyrie", "axe_eyrie", "mace_eyrie", "sceptre_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1054322244] = { "(4-6)% chance to gain an Endurance Charge on Kill" }, } },
- ["EnduranceChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2634 }, level = 80, group = "EnduranceChargeOnKillChance", weightKey = { "boots_eyrie", "sword_eyrie", "axe_eyrie", "mace_eyrie", "sceptre_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1054322244] = { "(7-10)% chance to gain an Endurance Charge on Kill" }, } },
- ["PhysicalAddedAsExtraColdBootsInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Gain (3-5)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (3-5)% of Physical Damage as Extra Cold Damage" }, } },
- ["PhysicalAddedAsExtraColdBootsInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (6-8)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (6-8)% of Physical Damage as Extra Cold Damage" }, } },
- ["ElusiveOnCriticalStrikeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(5-10)% chance to gain Elusive on Critical Strike", statOrder = { 4286 }, level = 75, group = "ElusiveOnCriticalStrike", weightKey = { "boots_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [2896192589] = { "(5-10)% chance to gain Elusive on Critical Strike" }, } },
- ["ChanceToDodgeAttacksInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(4-7)% chance to Suppress Spell Damage" }, } },
- ["ChanceToDodgeAttacksInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 73, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(9-12)% chance to Suppress Spell Damage" }, } },
- ["ChanceToDodgeAttacksInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 80, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(13-15)% chance to Suppress Spell Damage" }, } },
- ["ChanceToDodgeSpellsInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(4-7)% chance to Suppress Spell Damage" }, } },
- ["ChanceToDodgeSpellsInfluence2___"] = { type = "Suffix", affix = "of Redemption", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 73, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(9-12)% chance to Suppress Spell Damage" }, } },
- ["ChanceToDodgeSpellsInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 80, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(13-15)% chance to Suppress Spell Damage" }, } },
- ["IncreasedAilmentEffectOnEnemiesInfluence1"] = { type = "Suffix", affix = "of Redemption", "(30-34)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "ailment" }, tradeHashes = { [782230869] = { "(30-34)% increased Effect of Non-Damaging Ailments" }, } },
- ["IncreasedAilmentEffectOnEnemiesInfluence2"] = { type = "Suffix", affix = "of Redemption", "(35-40)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 73, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "ailment" }, tradeHashes = { [782230869] = { "(35-40)% increased Effect of Non-Damaging Ailments" }, } },
- ["OnslaughtOnKillInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2998 }, level = 75, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2988593550] = { "(5-7)% chance to gain Onslaught for 4 seconds on Kill" }, } },
- ["OnslaughtOnKillInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2998 }, level = 80, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2988593550] = { "(8-10)% chance to gain Onslaught for 4 seconds on Kill" }, } },
- ["UnaffectedByDesecratedGroundInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Unaffected by Desecrated Ground", statOrder = { 10466 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos" }, tradeHashes = { [4004298002] = { "Unaffected by Desecrated Ground" }, } },
- ["SocketedChaosGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+2 to Level of Socketed Chaos Gems", statOrder = { 175 }, level = 68, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+2 to Level of Socketed Chaos Gems" }, } },
- ["AdditionalPierceInfluence1"] = { type = "Prefix", affix = "Hunter's", "Projectiles Pierce an additional Target", statOrder = { 1795 }, level = 75, group = "AdditionalPierce", weightKey = { "boots_basilisk", "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } },
- ["AdditionalPierceInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Projectiles Pierce 2 additional Targets", statOrder = { 1795 }, level = 80, group = "AdditionalPierce", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } },
- ["PercentageStrengthInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Strength", statOrder = { 1189 }, level = 68, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(6-8)% increased Strength" }, } },
- ["PercentageStrengthInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Strength", statOrder = { 1189 }, level = 75, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(9-10)% increased Strength" }, } },
- ["AvoidBleedAndPoisonInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% chance to Avoid being Poisoned", "(21-25)% chance to Avoid Bleeding", statOrder = { 1854, 4221 }, level = 68, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(21-25)% chance to Avoid Bleeding" }, [4053951709] = { "(21-25)% chance to Avoid being Poisoned" }, } },
- ["AvoidBleedAndPoisonInfluence2____"] = { type = "Suffix", affix = "of the Hunt", "(26-30)% chance to Avoid being Poisoned", "(26-30)% chance to Avoid Bleeding", statOrder = { 1854, 4221 }, level = 70, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(26-30)% chance to Avoid Bleeding" }, [4053951709] = { "(26-30)% chance to Avoid being Poisoned" }, } },
- ["AvoidBleedAndPoisonInfluence3"] = { type = "Suffix", affix = "of the Hunt", "(41-50)% chance to Avoid being Poisoned", "(41-50)% chance to Avoid Bleeding", statOrder = { 1854, 4221 }, level = 75, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(41-50)% chance to Avoid Bleeding" }, [4053951709] = { "(41-50)% chance to Avoid being Poisoned" }, } },
- ["TailwindOnCriticalStrikeInfluence1"] = { type = "Suffix", affix = "of the Hunt", "You have Tailwind if you have dealt a Critical Strike Recently", statOrder = { 10347 }, level = 75, group = "TailwindOnCriticalStrike", weightKey = { "boots_basilisk", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1085545682] = { "You have Tailwind if you have dealt a Critical Strike Recently" }, } },
- ["FasterIgniteInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (7-9)% faster", statOrder = { 2569 }, level = 68, group = "FasterIgniteDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (7-9)% faster" }, } },
- ["FasterIgniteInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (10-12)% faster", statOrder = { 2569 }, level = 73, group = "FasterIgniteDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (10-12)% faster" }, } },
- ["FasterBleedInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (7-9)% faster", statOrder = { 6549 }, level = 68, group = "FasterBleedDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (7-9)% faster" }, } },
- ["FasterBleedInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (10-12)% faster", statOrder = { 6549 }, level = 73, group = "FasterBleedDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (10-12)% faster" }, } },
- ["FasterPoisonInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (7-9)% faster", statOrder = { 6550 }, level = 68, group = "FasterPoisonDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (7-9)% faster" }, } },
- ["FasterPoisonInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (10-12)% faster", statOrder = { 6550 }, level = 73, group = "FasterPoisonDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (10-12)% faster" }, } },
- ["MaximumColdResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } },
- ["MaximumColdResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Cold Resistance", statOrder = { 1634 }, level = 85, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } },
- ["MaximumColdResistanceInfluence1New"] = { type = "Suffix", affix = "of the Crusade", "+1% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } },
- ["MaximumColdResistanceInfluence2New"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Cold Resistance", statOrder = { 1634 }, level = 85, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 125, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } },
- ["ConvertPhysicalToFireInfluence1"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 68, group = "ConvertPhysicalToFire", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(18-21)% of Physical Damage Converted to Fire Damage" }, } },
- ["ConvertPhysicalToFireInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 71, group = "ConvertPhysicalToFire", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(22-25)% of Physical Damage Converted to Fire Damage" }, } },
- ["ConvertPhysicalToColdInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 68, group = "ConvertPhysicalToCold", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(18-21)% of Physical Damage Converted to Cold Damage" }, } },
- ["ConvertPhysicalToColdInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 71, group = "ConvertPhysicalToCold", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(22-25)% of Physical Damage Converted to Cold Damage" }, } },
- ["ConvertPhysicalToLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 68, group = "ConvertPhysicalToLightning", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(18-21)% of Physical Damage Converted to Lightning Damage" }, } },
- ["ConvertPhysicalToLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 71, group = "ConvertPhysicalToLightning", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(22-25)% of Physical Damage Converted to Lightning Damage" }, } },
- ["MaximumLifeLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "10% increased Maximum total Life Recovery per second from Leech", statOrder = { 1736 }, level = 75, group = "MaximumLifeLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [4118987751] = { "10% increased Maximum total Life Recovery per second from Leech" }, } },
- ["MaximumEnergyShieldLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "15% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1739 }, level = 75, group = "MaximumEnergyShieldLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2013799819] = { "15% increased Maximum total Energy Shield Recovery per second from Leech" }, } },
- ["MaximumEnergyShieldLeechRateSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "15% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1739 }, level = 75, group = "MaximumEnergyShieldLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2013799819] = { "15% increased Maximum total Energy Shield Recovery per second from Leech" }, } },
- ["AvoidInterruptionWhileCastingInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% chance to Ignore Stuns while Casting", statOrder = { 1903 }, level = 68, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(21-25)% chance to Ignore Stuns while Casting" }, } },
- ["AvoidInterruptionWhileCastingInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% chance to Ignore Stuns while Casting", statOrder = { 1903 }, level = 70, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(26-30)% chance to Ignore Stuns while Casting" }, } },
- ["AvoidInterruptionWhileCastingInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Ignore Stuns while Casting", statOrder = { 1903 }, level = 75, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(31-35)% chance to Ignore Stuns while Casting" }, } },
- ["GlobalCriticalStrikeChanceInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 68, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(16-20)% increased Global Critical Strike Chance" }, } },
- ["GlobalCriticalStrikeChanceInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 70, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(21-25)% increased Global Critical Strike Chance" }, } },
- ["GlobalCriticalStrikeChanceInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 75, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(26-30)% increased Global Critical Strike Chance" }, } },
- ["MaximumFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Frenzy Charges", statOrder = { 1814 }, level = 75, group = "MaximumFrenzyCharges", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 125, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } },
- ["MeleeDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Melee Damage", statOrder = { 1239 }, level = 68, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(18-22)% increased Melee Damage" }, } },
- ["MeleeDamageInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Melee Damage", statOrder = { 1239 }, level = 70, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(23-26)% increased Melee Damage" }, } },
- ["MeleeDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Melee Damage", statOrder = { 1239 }, level = 73, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(27-30)% increased Melee Damage" }, } },
- ["ProjectileAttackDamageInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Projectile Attack Damage", statOrder = { 2002 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(18-22)% increased Projectile Attack Damage" }, } },
- ["ProjectileAttackDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Projectile Attack Damage", statOrder = { 2002 }, level = 70, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(23-26)% increased Projectile Attack Damage" }, } },
- ["ProjectileAttackDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Projectile Attack Damage", statOrder = { 2002 }, level = 73, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(27-30)% increased Projectile Attack Damage" }, } },
- ["SpellDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Spell Damage", statOrder = { 1228 }, level = 68, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-22)% increased Spell Damage" }, } },
- ["SpellDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Spell Damage", statOrder = { 1228 }, level = 70, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-26)% increased Spell Damage" }, } },
- ["SpellDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Spell Damage", statOrder = { 1228 }, level = 73, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(27-30)% increased Spell Damage" }, } },
- ["DamageOverTimeInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Damage over Time", statOrder = { 1215 }, level = 68, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [967627487] = { "(18-22)% increased Damage over Time" }, } },
- ["DamageOverTimeInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Damage over Time", statOrder = { 1215 }, level = 70, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [967627487] = { "(23-26)% increased Damage over Time" }, } },
- ["DamageOverTimeInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Damage over Time", statOrder = { 1215 }, level = 73, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [967627487] = { "(27-30)% increased Damage over Time" }, } },
- ["MeleeWeaponRangeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+0.2 metres to Melee Strike Range", statOrder = { 2539 }, level = 82, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, } },
- ["BlockPercentInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(2-3)% Chance to Block Attack Damage", statOrder = { 1143 }, level = 68, group = "BlockPercent", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2530372417] = { "(2-3)% Chance to Block Attack Damage" }, } },
- ["BlockPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(4-5)% Chance to Block Attack Damage", statOrder = { 1143 }, level = 80, group = "BlockPercent", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2530372417] = { "(4-5)% Chance to Block Attack Damage" }, } },
- ["CullingStrikeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Culling Strike", statOrder = { 2044 }, level = 73, group = "CullingStrike", weightKey = { "gloves_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 250, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2524254339] = { "Culling Strike" }, } },
- ["FrenzyChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_eyrie", "quiver_eyrie", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [1826802197] = { "(4-6)% chance to gain a Frenzy Charge on Kill" }, } },
- ["FrenzyChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 80, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_eyrie", "quiver_eyrie", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [1826802197] = { "(7-10)% chance to gain a Frenzy Charge on Kill" }, } },
- ["AddedPhysicalDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (4-5) to (6-8) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9251 }, level = 68, group = "AddedPhysicalDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [2723101291] = { "Adds (4-5) to (6-8) Physical Damage if you've dealt a Critical Strike Recently" }, } },
- ["AddedPhysicalDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (6-8) to (9-11) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9251 }, level = 73, group = "AddedPhysicalDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [2723101291] = { "Adds (6-8) to (9-11) Physical Damage if you've dealt a Critical Strike Recently" }, } },
- ["AddedFireDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-20) to (22-25) Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9239 }, level = 68, group = "AddedFireDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3144358296] = { "Adds (16-20) to (22-25) Fire Damage if you've dealt a Critical Strike Recently" }, } },
- ["AddedFireDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-25) to (26-35) Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9239 }, level = 73, group = "AddedFireDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3144358296] = { "Adds (20-25) to (26-35) Fire Damage if you've dealt a Critical Strike Recently" }, } },
- ["AddedColdDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-20) to (22-25) Cold Damage if you've dealt a Critical Strike Recently", statOrder = { 9234 }, level = 68, group = "AddedColdDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3370223014] = { "Adds (16-20) to (22-25) Cold Damage if you've dealt a Critical Strike Recently" }, } },
- ["AddedColdDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-25) to (26-35) Cold Damage if you've dealt a Critical Strike Recently", statOrder = { 9234 }, level = 73, group = "AddedColdDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3370223014] = { "Adds (20-25) to (26-35) Cold Damage if you've dealt a Critical Strike Recently" }, } },
- ["AddedLightningDamageCritRecentlyInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Adds 1 to (41-47) Lightning Damage if you've dealt a Critical Strike Recently", statOrder = { 9245 }, level = 68, group = "AddedLightningDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [935623115] = { "Adds 1 to (41-47) Lightning Damage if you've dealt a Critical Strike Recently" }, } },
- ["AddedLightningDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds 1 to (48-60) Lightning Damage if you've dealt a Critical Strike Recently", statOrder = { 9245 }, level = 73, group = "AddedLightningDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [935623115] = { "Adds 1 to (48-60) Lightning Damage if you've dealt a Critical Strike Recently" }, } },
- ["MinionDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (18-22)% increased Damage", statOrder = { 1978 }, level = 68, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (18-22)% increased Damage" }, } },
- ["MinionDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (23-26)% increased Damage", statOrder = { 1978 }, level = 70, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (23-26)% increased Damage" }, } },
- ["MinionDamageInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (27-30)% increased Damage", statOrder = { 1978 }, level = 73, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (27-30)% increased Damage" }, } },
- ["IncreasedAccuracyPercentInfluence1"] = { type = "Suffix", affix = "of Redemption", "(12-15)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [624954515] = { "(12-15)% increased Global Accuracy Rating" }, } },
- ["IncreasedAccuracyPercentInfluence2"] = { type = "Suffix", affix = "of Redemption", "(16-20)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 80, group = "IncreasedAccuracyPercent", weightKey = { "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [624954515] = { "(16-20)% increased Global Accuracy Rating" }, } },
- ["GlobalChanceToBlindOnHitInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(8-11)% Global chance to Blind Enemies on hit", statOrder = { 2963 }, level = 68, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2221570601] = { "(8-11)% Global chance to Blind Enemies on hit" }, } },
- ["GlobalChanceToBlindOnHitInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(12-15)% Global chance to Blind Enemies on hit", statOrder = { 2963 }, level = 80, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2221570601] = { "(12-15)% Global chance to Blind Enemies on hit" }, } },
- ["AdditionalChanceToEvadeInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(2-4)% chance to Evade Attack Hits", statOrder = { 5678 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2021058489] = { "+(2-4)% chance to Evade Attack Hits" }, } },
- ["ChanceToIntimidateOnHitInfluence1"] = { type = "Prefix", affix = "Hunter's", "(7-10)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 85, group = "ChanceToIntimidateOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [78985352] = { "(7-10)% chance to Intimidate Enemies for 4 seconds on Hit" }, } },
- ["ChanceToUnnerveOnHitInfluence1___"] = { type = "Prefix", affix = "Hunter's", "(7-10)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 85, group = "ChanceToUnnerveOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [763611529] = { "(7-10)% chance to Unnerve Enemies for 4 seconds on Hit" }, } },
- ["StrikeSkillsAdditionalTargetInfluence1"] = { type = "Prefix", affix = "Hunter's", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9188 }, level = 80, group = "StrikeSkillsAdditionalTarget", weightKey = { "gloves_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } },
- ["ChanceToImpaleInfluence1"] = { type = "Prefix", affix = "Hunter's", "(13-16)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 68, group = "AttackImpaleChance", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(13-16)% chance to Impale Enemies on Hit with Attacks" }, } },
- ["ChanceToImpaleInfluence2"] = { type = "Prefix", affix = "Hunter's", "(17-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 80, group = "AttackImpaleChance", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(17-20)% chance to Impale Enemies on Hit with Attacks" }, } },
- ["AilmentDurationInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(10-12)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(10-12)% increased Duration of Ailments on Enemies" }, } },
- ["AilmentDurationInfluence2"] = { type = "Prefix", affix = "Hunter's", "(13-15)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 80, group = "IncreasedAilmentDuration", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(13-15)% increased Duration of Ailments on Enemies" }, } },
- ["PercentageDexterityInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Dexterity", statOrder = { 1190 }, level = 68, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(6-8)% increased Dexterity" }, } },
- ["PercentageDexterityInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Dexterity", statOrder = { 1190 }, level = 75, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(9-10)% increased Dexterity" }, } },
- ["FireDamageOverTimeMultiplierInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(11-15)% to Fire Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 80, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(16-20)% to Fire Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(11-15)% to Cold Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplierInfluence2__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 80, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(16-20)% to Cold Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(11-15)% to Chaos Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 80, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(16-20)% to Chaos Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(11-15)% to Physical Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 80, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(16-20)% to Physical Damage over Time Multiplier" }, } },
- ["MaximumLightningResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } },
- ["MaximumLightningResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 85, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } },
- ["MaximumLightningResistanceInfluence1New_"] = { type = "Suffix", affix = "of the Crusade", "+1% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } },
- ["MaximumLightningResistanceInfluence2New_"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 85, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 125, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } },
- ["MaximumManaInfluence1"] = { type = "Prefix", affix = "Crusader's", "(9-11)% increased maximum Mana", statOrder = { 1585 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(9-11)% increased maximum Mana" }, } },
- ["MaximumManaInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(12-15)% increased maximum Mana", statOrder = { 1585 }, level = 80, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(12-15)% increased maximum Mana" }, } },
- ["PhysTakenAsLightningHelmInfluence1"] = { type = "Prefix", affix = "Crusader's", "(4-6)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 68, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(4-6)% of Physical Damage from Hits taken as Lightning Damage" }, } },
- ["PhysTakenAsLightningHelmInfluence2"] = { type = "Prefix", affix = "Crusader's", "(7-10)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 83, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(7-10)% of Physical Damage from Hits taken as Lightning Damage" }, } },
- ["EnemyLightningResistanceAuraInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 7921 }, level = 85, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-9% to Lightning Resistance" }, [1849749435] = { "Nearby Enemies have -9% to Lightning Resistance" }, } },
- ["SpellBlockPercentInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(3-4)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 68, group = "SpellBlockPercentage", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(3-4)% Chance to Block Spell Damage" }, } },
- ["SpellBlockPercentInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(5-6)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 80, group = "SpellBlockPercentage", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(5-6)% Chance to Block Spell Damage" }, } },
- ["FortifyEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+(3-4) to maximum Fortification", statOrder = { 9121 }, level = 75, group = "FortifyEffect", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [335507772] = { "+(3-4) to maximum Fortification" }, } },
- ["FortifyEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+(4.2-5) to maximum Fortification", statOrder = { 9121 }, level = 80, group = "FortifyEffect", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [335507772] = { "+(4.2-5) to maximum Fortification" }, } },
- ["EnergyShieldRegenInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Regenerate (1-1.5)% of Energy Shield per second", statOrder = { 2651 }, level = 75, group = "EnergyShieldRegenerationPerMinute", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate (1-1.5)% of Energy Shield per second" }, } },
- ["ReducedIgniteDurationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 68, group = "ReducedBurnDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(31-35)% reduced Ignite Duration on you" }, } },
- ["ReducedIgniteDurationInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 70, group = "ReducedBurnDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(36-40)% reduced Ignite Duration on you" }, } },
- ["ReducedIgniteDurationInfluence3__"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedBurnDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(51-60)% reduced Ignite Duration on you" }, } },
- ["ReducedFreezeDurationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 68, group = "ReducedFreezeDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(31-35)% reduced Freeze Duration on you" }, } },
- ["ReducedFreezeDurationInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 70, group = "ReducedFreezeDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(36-40)% reduced Freeze Duration on you" }, } },
- ["ReducedFreezeDurationInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-60)% reduced Freeze Duration on you" }, } },
- ["ReducedShockEffectInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 68, group = "ReducedShockEffectOnSelf", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(31-35)% reduced Effect of Shock on you" }, } },
- ["ReducedShockEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 70, group = "ReducedShockEffectOnSelf", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(36-40)% reduced Effect of Shock on you" }, } },
- ["ReducedShockEffectInfluence3_"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "helmet_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(51-60)% reduced Effect of Shock on you" }, } },
- ["MaximumPowerChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Power Charges", statOrder = { 1819 }, level = 75, group = "IncreasedMaximumPowerCharges", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 125, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } },
- ["PhysTakenAsFireHelmetInfluence1"] = { type = "Prefix", affix = "Warlord's", "(4-6)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 68, group = "PhysicalDamageTakenAsFireUber", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(4-6)% of Physical Damage from Hits taken as Fire Damage" }, } },
- ["PhysTakenAsFireHelmetInfluence2"] = { type = "Prefix", affix = "Warlord's", "(7-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 83, group = "PhysicalDamageTakenAsFireUber", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(7-10)% of Physical Damage from Hits taken as Fire Damage" }, } },
- ["ElementalDamageInfluence1____"] = { type = "Prefix", affix = "Warlord's", "(12-14)% increased Elemental Damage", statOrder = { 1985 }, level = 68, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(12-14)% increased Elemental Damage" }, } },
- ["ElementalDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(15-18)% increased Elemental Damage", statOrder = { 1985 }, level = 70, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(15-18)% increased Elemental Damage" }, } },
- ["ElementalDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(19-22)% increased Elemental Damage", statOrder = { 1985 }, level = 75, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(19-22)% increased Elemental Damage" }, } },
- ["WarcryAreaOfEffectInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Warcry Skills have (21-25)% increased Area of Effect", statOrder = { 10573 }, level = 68, group = "WarcryAreaOfEffect", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2567751411] = { "Warcry Skills have (21-25)% increased Area of Effect" }, } },
- ["WarcryAreaOfEffectInfluence2"] = { type = "Prefix", affix = "Warlord's", "Warcry Skills have (26-30)% increased Area of Effect", statOrder = { 10573 }, level = 75, group = "WarcryAreaOfEffect", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2567751411] = { "Warcry Skills have (26-30)% increased Area of Effect" }, } },
- ["EnemyFireResistanceAuraInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 7919 }, level = 85, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [3914021960] = { "Nearby Enemies have -9% to Fire Resistance" }, [3372524247] = { "-9% to Fire Resistance" }, } },
- ["CriticalStrikeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(11-13)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(11-13)% to Global Critical Strike Multiplier" }, } },
- ["CriticalStrikeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(14-16)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 70, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(14-16)% to Global Critical Strike Multiplier" }, } },
- ["CriticalStrikeMultiplierInfluence3"] = { type = "Suffix", affix = "of the Conquest", "+(17-20)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(17-20)% to Global Critical Strike Multiplier" }, } },
- ["ManaRegenerationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(41-55)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [789117908] = { "(41-55)% increased Mana Regeneration Rate" }, } },
- ["ManaRegenerationInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(56-70)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegeneration", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [789117908] = { "(56-70)% increased Mana Regeneration Rate" }, } },
- ["GainAccuracyEqualToStrengthInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Gain Accuracy Rating equal to your Strength", statOrder = { 6717 }, level = 75, group = "GainAccuracyEqualToStrength", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1575519214] = { "Gain Accuracy Rating equal to your Strength" }, } },
- ["MinionLifeInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Minions have (21-26)% increased maximum Life", statOrder = { 1771 }, level = 68, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (21-26)% increased maximum Life" }, } },
- ["MinionLifeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Minions have (27-30)% increased maximum Life", statOrder = { 1771 }, level = 70, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (27-30)% increased maximum Life" }, } },
- ["MinionLifeInfluence3"] = { type = "Suffix", affix = "of the Conquest", "Minions have (31-35)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (31-35)% increased maximum Life" }, } },
- ["PowerChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain a Power Charge on Kill", statOrder = { 2638 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(4-6)% chance to gain a Power Charge on Kill" }, } },
- ["PowerChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain a Power Charge on Kill", statOrder = { 2638 }, level = 80, group = "PowerChargeOnKillChance", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(7-10)% chance to gain a Power Charge on Kill" }, } },
- ["PhysTakenAsColdHelmetInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 68, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(4-6)% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysTakenAsColdHelmetInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 83, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(7-10)% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["SpellsAdditionalUnleashSealInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Skills supported by Unleash have +1 to maximum number of Seals", statOrder = { 10719 }, level = 80, group = "SpellsAdditionalUnleashSeal", weightKey = { "helmet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3155029005] = { "Skills supported by Unleash have +1 to maximum number of Seals" }, } },
- ["EnemyColdResistanceAuraInfluence1__"] = { type = "Suffix", affix = "of Redemption", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 7917 }, level = 85, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-9% to Cold Resistance" }, [2674336304] = { "Nearby Enemies have -9% to Cold Resistance" }, } },
- ["ReducedManaReservationInfluence1"] = { type = "Suffix", affix = "of Redemption", "(4-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 68, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1269219558] = { "(4-6)% increased Mana Reservation Efficiency of Skills" }, } },
- ["ManaReservationEfficiencyInfluence1___"] = { type = "Suffix", affix = "of Redemption", "(4-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 68, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4237190083] = { "(4-6)% increased Mana Reservation Efficiency of Skills" }, } },
- ["ReducedManaReservationInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 75, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1269219558] = { "(8-10)% increased Mana Reservation Efficiency of Skills" }, } },
- ["ManaReservationEfficiencyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(7-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4237190083] = { "(7-10)% increased Mana Reservation Efficiency of Skills" }, } },
- ["IgniteChanceAndDamageInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(15-17)% increased Burning Damage", "(6-8)% chance to Ignite", statOrder = { 1882, 2031 }, level = 68, group = "IgniteChanceAndDamage", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(6-8)% chance to Ignite" }, [1175385867] = { "(15-17)% increased Burning Damage" }, } },
- ["IgniteChanceAndDamageInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(18-20)% increased Burning Damage", "(6-8)% chance to Ignite", statOrder = { 1882, 2031 }, level = 75, group = "IgniteChanceAndDamage", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(6-8)% chance to Ignite" }, [1175385867] = { "(18-20)% increased Burning Damage" }, } },
- ["FreezeChanceAndDurationInfluence1____"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Freeze Duration on Enemies", "(6-8)% chance to Freeze", statOrder = { 1863, 2034 }, level = 68, group = "FreezeChanceAndDuration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1073942215] = { "(8-12)% increased Freeze Duration on Enemies" }, [44571480] = { "(6-8)% chance to Freeze" }, } },
- ["FreezeChanceAndDurationInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(13-15)% increased Freeze Duration on Enemies", "(6-8)% chance to Freeze", statOrder = { 1863, 2034 }, level = 75, group = "FreezeChanceAndDuration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1073942215] = { "(13-15)% increased Freeze Duration on Enemies" }, [44571480] = { "(6-8)% chance to Freeze" }, } },
- ["ShockChanceAndEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Shock", "(8-12)% increased Effect of Lightning Ailments", statOrder = { 2038, 7438 }, level = 68, group = "ShockChanceAndEffect", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "(8-12)% increased Effect of Lightning Ailments" }, [1538773178] = { "(6-8)% chance to Shock" }, } },
- ["ShockChanceAndEffectInfluence2"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Shock", "(13-15)% increased Effect of Lightning Ailments", statOrder = { 2038, 7438 }, level = 75, group = "ShockChanceAndEffect", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "(13-15)% increased Effect of Lightning Ailments" }, [1538773178] = { "(6-8)% chance to Shock" }, } },
- ["AddedManaRegenerationInfluence1"] = { type = "Suffix", affix = "of Redemption", "Regenerate (3-5) Mana per second", statOrder = { 1587 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (3-5) Mana per second" }, } },
- ["AddedManaRegenerationInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Regenerate (6-8) Mana per second", statOrder = { 1587 }, level = 75, group = "AddedManaRegeneration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (6-8) Mana per second" }, } },
- ["SpellAddedFireDamageInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrder = { 1409 }, level = 68, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (17-22) to (33-39) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamageInfluence2_"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrder = { 1409 }, level = 70, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (21-28) to (42-49) Fire Damage to Spells" }, } },
- ["SpellAddedFireDamageInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (25-34) to (51-59) Fire Damage to Spells" }, } },
- ["SpellAddedColdDamageInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrder = { 1410 }, level = 68, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (14-18) to (27-32) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrder = { 1410 }, level = 70, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (17-23) to (34-40) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamageInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (21-28) to (41-48) Cold Damage to Spells" }, } },
- ["SpellAddedLightningDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrder = { 1411 }, level = 68, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (58-61) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrder = { 1411 }, level = 70, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (73-77) Lightning Damage to Spells" }, } },
- ["SpellAddedLightningDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-7) to (88-93) Lightning Damage to Spells" }, } },
- ["SpellAddedPhysicalDamageInfluence1__"] = { type = "Prefix", affix = "Hunter's", "Adds (17-22) to (33-39) Physical Damage to Spells", statOrder = { 1408 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (17-22) to (33-39) Physical Damage to Spells" }, } },
- ["SpellAddedPhysicalDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (42-49) Physical Damage to Spells", statOrder = { 1408 }, level = 70, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (21-28) to (42-49) Physical Damage to Spells" }, } },
- ["SpellAddedPhysicalDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (25-34) to (51-59) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (25-34) to (51-59) Physical Damage to Spells" }, } },
- ["SpellAddedChaosDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (14-18) to (27-32) Chaos Damage to Spells", statOrder = { 1412 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (14-18) to (27-32) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (17-23) to (34-40) Chaos Damage to Spells", statOrder = { 1412 }, level = 70, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (17-23) to (34-40) Chaos Damage to Spells" }, } },
- ["SpellAddedChaosDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (41-48) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (21-28) to (41-48) Chaos Damage to Spells" }, } },
- ["EnemyChaosResistanceAuraInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 7916 }, level = 85, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [1902595112] = { "Nearby Enemies have -9% to Chaos Resistance" }, [2923486259] = { "-9% to Chaos Resistance" }, } },
- ["PercentageIntelligenceInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Intelligence", statOrder = { 1191 }, level = 68, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(6-8)% increased Intelligence" }, } },
- ["PercentageIntelligenceInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Intelligence", statOrder = { 1191 }, level = 75, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(9-10)% increased Intelligence" }, } },
- ["IgnitingConfluxInfluence1"] = { type = "Suffix", affix = "of the Hunt", "You have Igniting Conflux for 3 seconds every 8 seconds", statOrder = { 6826 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1190121450] = { "You have Igniting Conflux for 3 seconds every 8 seconds" }, } },
- ["ChillingConfluxInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "You have Chilling Conflux for 3 seconds every 8 seconds", statOrder = { 6826 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1190121450] = { "You have Chilling Conflux for 3 seconds every 8 seconds" }, } },
- ["ShockingConfluxInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "You have Shocking Conflux for 3 seconds every 8 seconds", statOrder = { 6826 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1190121450] = { "You have Shocking Conflux for 3 seconds every 8 seconds" }, } },
- ["PhysTakenAsLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "(8-12)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 68, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(8-12)% of Physical Damage from Hits taken as Lightning Damage" }, } },
- ["PhysTakenAsLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "(13-15)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 83, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(13-15)% of Physical Damage from Hits taken as Lightning Damage" }, } },
- ["ConsecratedGroundStationaryInfluence1_"] = { type = "Prefix", affix = "Crusader's", "You have Consecrated Ground around you while stationary", statOrder = { 5861 }, level = 75, group = "ConsecratedGroundStationary", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [880970200] = { "You have Consecrated Ground around you while stationary" }, } },
- ["HolyPhysicalExplosionInfluence1"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill Explode, dealing 3% of their Life as Physical Damage", statOrder = { 6377 }, level = 85, group = "EnemiesExplodeOnDeathPhysical", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1220361974] = { "Enemies you Kill Explode, dealing 3% of their Life as Physical Damage" }, } },
- ["HolyPhysicalExplosionChanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill have a (11-20)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3309 }, level = 75, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you Kill have a (11-20)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage" }, } },
- ["HolyPhysicalExplosionChanceInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill have a (21-30)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3309 }, level = 85, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 25, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you Kill have a (21-30)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage" }, } },
- ["PercentageIntelligenceBodyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(5-8)% increased Intelligence", statOrder = { 1191 }, level = 68, group = "PercentageIntelligence", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [656461285] = { "(5-8)% increased Intelligence" }, } },
- ["PercentageIntelligenceBodyInfluence2___"] = { type = "Suffix", affix = "of the Crusade", "(9-12)% increased Intelligence", statOrder = { 1191 }, level = 75, group = "PercentageIntelligence", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [656461285] = { "(9-12)% increased Intelligence" }, } },
- ["AddPowerChargeOnCritInfluence1"] = { type = "Suffix", affix = "of the Crusade", "15% chance to gain a Power Charge on Critical Strike", statOrder = { 1835 }, level = 80, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "power_charge", "influence_mod", "critical" }, tradeHashes = { [3814876985] = { "15% chance to gain a Power Charge on Critical Strike" }, } },
- ["EnergyShieldOnKillPercentInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Recover (3-4)% of Energy Shield on Kill", statOrder = { 1755 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (3-4)% of Energy Shield on Kill" }, } },
- ["EnergyShieldOnKillPercentInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Recover (5-6)% of Energy Shield on Kill", statOrder = { 1755 }, level = 80, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (5-6)% of Energy Shield on Kill" }, } },
- ["EnergyShieldRecoveryRateBodyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(8-11)% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(8-11)% increased Energy Shield Recovery rate" }, } },
- ["EnergyShieldRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(12-15)% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 80, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(12-15)% increased Energy Shield Recovery rate" }, } },
- ["PhysTakenAsFireInfluence1"] = { type = "Prefix", affix = "Warlord's", "(8-12)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 68, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(8-12)% of Physical Damage from Hits taken as Fire Damage" }, } },
- ["PhysTakenAsFireInfluence2"] = { type = "Prefix", affix = "Warlord's", "(13-15)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 83, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(13-15)% of Physical Damage from Hits taken as Fire Damage" }, } },
- ["SocketedActiveGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of Socketed Skill Gems", statOrder = { 195 }, level = 80, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, } },
- ["ReflectedPhysicalDamageInfluence1__"] = { type = "Prefix", affix = "Warlord's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 9669 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [129035625] = { "You and your Minions take 100% reduced Reflected Physical Damage" }, } },
+ ["CriticalStrikeChanceUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 68, group = "CriticalStrikeChance", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(10-15)% increased Global Critical Strike Chance" }, } },
+ ["CriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 75, group = "CriticalStrikeChance", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(16-20)% increased Global Critical Strike Chance" }, } },
+ ["CriticalStrikeChanceUber3_"] = { type = "Suffix", affix = "of Shaping", "(21-25)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 80, group = "CriticalStrikeChance", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(21-25)% increased Global Critical Strike Chance" }, } },
+ ["CriticalStrikeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(8-12)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(8-12)% to Global Critical Strike Multiplier" }, } },
+ ["CriticalStrikeMultiplierUber2_"] = { type = "Suffix", affix = "of the Elder", "+(13-16)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(13-16)% to Global Critical Strike Multiplier" }, } },
+ ["CriticalStrikeMultiplierUber3"] = { type = "Suffix", affix = "of the Elder", "+(17-20)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 80, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(17-20)% to Global Critical Strike Multiplier" }, } },
+ ["AddedFireDamageToSpellsAndAttacksUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (17-20) to (38-42) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 68, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (17-20) to (38-42) Fire Damage to Spells and Attacks" }, } },
+ ["AddedFireDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (21-24) to (43-48) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 75, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "attack", "caster" }, tradeHashes = { [3964634628] = { "Adds (21-24) to (43-48) Fire Damage to Spells and Attacks" }, } },
+ ["AddedColdDamageToSpellsAndAttacksUber1__"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-20) to (38-42) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 68, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (17-20) to (38-42) Cold Damage to Spells and Attacks" }, } },
+ ["AddedColdDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (21-24) to (43-48) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 75, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "attack", "caster" }, tradeHashes = { [1662717006] = { "Adds (21-24) to (43-48) Cold Damage to Spells and Attacks" }, } },
+ ["AddedLightningDamageToSpellsAndAttacksUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (9-12) to (48-52) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 68, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (9-12) to (48-52) Lightning Damage to Spells and Attacks" }, } },
+ ["AddedLightningDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (13-16) to (56-60) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 75, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "attack", "caster" }, tradeHashes = { [2885144362] = { "Adds (13-16) to (56-60) Lightning Damage to Spells and Attacks" }, } },
+ ["IncreasedExperienceGainUber1"] = { type = "Prefix", affix = "The Shaper's", "(2-3)% increased Experience gain", statOrder = { 1603 }, level = 85, group = "ExperienceIncrease", weightKey = { "ring_shaper", "default", }, weightVal = { 50, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3666934677] = { "(2-3)% increased Experience gain" }, } },
+ ["LifeGainPerTargetUber1"] = { type = "Prefix", affix = "The Elder's", "Gain (10-15) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 68, group = "LifeGainPerTarget", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (10-15) Life per Enemy Hit with Attacks" }, } },
+ ["LifeGainPerTargetUber2"] = { type = "Prefix", affix = "The Elder's", "Gain (16-20) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 75, group = "LifeGainPerTarget", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (16-20) Life per Enemy Hit with Attacks" }, } },
+ ["ManaGainPerTargetUberShaper1"] = { type = "Prefix", affix = "The Shaper's", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 68, group = "ManaGainPerTarget", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (2-3) Mana per Enemy Hit with Attacks" }, } },
+ ["ManaGainPerTargetUberElder1"] = { type = "Prefix", affix = "The Elder's", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 68, group = "ManaGainPerTarget", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (2-3) Mana per Enemy Hit with Attacks" }, } },
+ ["LifeGainedOnSpellHitUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-12) Life per Enemy Hit with Spells", statOrder = { 1739 }, level = 68, group = "LifeGainedOnSpellHit", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain (8-12) Life per Enemy Hit with Spells" }, } },
+ ["LifeGainedOnSpellHitUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-15) Life per Enemy Hit with Spells", statOrder = { 1739 }, level = 75, group = "LifeGainedOnSpellHit", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain (13-15) Life per Enemy Hit with Spells" }, } },
+ ["ManaGainedOnSpellHitUber1_"] = { type = "Prefix", affix = "The Shaper's", "Gain (2-3) Mana per Enemy Hit with Spells", statOrder = { 8179 }, level = 68, group = "ManaGainedOnSpellHit", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana", "caster" }, tradeHashes = { [2474196346] = { "Gain (2-3) Mana per Enemy Hit with Spells" }, } },
+ ["IncreasedAccuracyPercentUber1_"] = { type = "Suffix", affix = "of the Elder", "(6-10)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [624954515] = { "(6-10)% increased Global Accuracy Rating" }, } },
+ ["IncreasedAccuracyPercentUber2"] = { type = "Suffix", affix = "of the Elder", "(11-15)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [624954515] = { "(11-15)% increased Global Accuracy Rating" }, } },
+ ["IncreasedAccuracyPercentUber3"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 82, group = "IncreasedAccuracyPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [624954515] = { "(16-20)% increased Global Accuracy Rating" }, } },
+ ["CurseOnHitAssassinsMarkUber1"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 8 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 758 }, level = 75, group = "CurseOnHitCriticalWeakness", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3382957283] = { "Trigger Level 8 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } },
+ ["CurseOnHitAssassinsMarkUber2"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 12 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 758 }, level = 80, group = "CurseOnHitCriticalWeakness", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3382957283] = { "Trigger Level 12 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } },
+ ["CurseOnHitPoachersMarkUber1"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 759 }, level = 75, group = "CurseOnHitPoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2659463225] = { "Trigger Level 8 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } },
+ ["CurseOnHitPoachersMarkUber2"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 759 }, level = 80, group = "CurseOnHitPoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2659463225] = { "Trigger Level 12 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } },
+ ["CurseOnHitWarlordsMarkUber1_"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 761 }, level = 75, group = "CurseOnHitWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2021420128] = { "Trigger Level 8 Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } },
+ ["CurseOnHitWarlordsMarkUber2"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 761 }, level = 80, group = "CurseOnHitWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2021420128] = { "Trigger Level 12 Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } },
+ ["CurseOnHitAssassinsMarkNewUber1"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 8 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 798 }, level = 75, group = "TriggerOnRareAssassinsMark", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3924520095] = { "Trigger Level 8 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } },
+ ["CurseOnHitAssassinsMarkNewUber2"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 12 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 798 }, level = 80, group = "TriggerOnRareAssassinsMark", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3924520095] = { "Trigger Level 12 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } },
+ ["CurseOnHitPoachersMarkNewUber1__"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 803 }, level = 75, group = "TriggerOnRarePoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3904501306] = { "Trigger Level 8 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } },
+ ["CurseOnHitPoachersMarkNewUber2__"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 803 }, level = 80, group = "TriggerOnRarePoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3904501306] = { "Trigger Level 12 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } },
+ ["CurseOnHitWarlordsMarkNewUber1"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 806 }, level = 75, group = "TriggerOnRareWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2049471530] = { "Trigger Level 8 Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } },
+ ["CurseOnHitWarlordsMarkNewUber2"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 806 }, level = 80, group = "TriggerOnRareWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2049471530] = { "Trigger Level 12 Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark" }, } },
+ ["GrantsHeraldOfAshSkillUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Herald of Ash Skill", statOrder = { 705 }, level = 68, group = "HeraldOfAshSkill", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [3880462354] = { "Grants Level 22 Herald of Ash Skill" }, } },
+ ["GrantsHeraldOfIceSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Herald of Ice Skill", statOrder = { 706 }, level = 68, group = "HeraldOfIceSkill", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [3846248551] = { "Grants Level 22 Herald of Ice Skill" }, } },
+ ["GrantsHeraldOfThunderSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Herald of Thunder Skill", statOrder = { 709 }, level = 68, group = "HeraldOfThunderSkill", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [1665492921] = { "Grants Level 22 Herald of Thunder Skill" }, } },
+ ["AdditionalChanceToEvadeUber1__"] = { type = "Suffix", affix = "of the Elder", "+(2-3)% chance to Evade Attack Hits", statOrder = { 5673 }, level = 68, group = "AdditionalChanceToEvade", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2021058489] = { "+(2-3)% chance to Evade Attack Hits" }, } },
+ ["AdditionalChanceToEvadeUber2"] = { type = "Suffix", affix = "of the Elder", "+(4-5)% chance to Evade Attack Hits", statOrder = { 5673 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2021058489] = { "+(4-5)% chance to Evade Attack Hits" }, } },
+ ["ChanceToIgniteAddedDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies", statOrder = { 6884 }, level = 68, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "" }, [794830148] = { "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies" }, } },
+ ["ChanceToIgniteAddedDamageUber2__"] = { type = "Prefix", affix = "The Elder's", "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies", statOrder = { 6884 }, level = 75, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "" }, [794830148] = { "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies" }, } },
+ ["ChanceToFreezeAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6883 }, level = 68, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [2233361223] = { "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies" }, [44571480] = { "" }, } },
+ ["ChanceToFreezeAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6883 }, level = 75, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [2233361223] = { "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies" }, [44571480] = { "" }, } },
+ ["ChanceToShockAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies", statOrder = { 6886 }, level = 68, group = "ChanceToShockAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, tradeHashes = { [90012347] = { "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies" }, [1538773178] = { "" }, } },
+ ["ChanceToShockAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies", statOrder = { 6886 }, level = 75, group = "ChanceToShockAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, tradeHashes = { [90012347] = { "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies" }, [1538773178] = { "" }, } },
+ ["PhysicalAttackDamageTakenUber1_"] = { type = "Suffix", affix = "of Shaping", "-(35-25) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 68, group = "PhysicalAttackDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "physical", "attack" }, tradeHashes = { [3441651621] = { "-(35-25) Physical Damage taken from Attack Hits" }, } },
+ ["PhysicalAttackDamageTakenUber2"] = { type = "Suffix", affix = "of Shaping", "-(45-36) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 75, group = "PhysicalAttackDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "physical", "attack" }, tradeHashes = { [3441651621] = { "-(45-36) Physical Damage taken from Attack Hits" }, } },
+ ["IncreasedCooldownRecoveryUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } },
+ ["IncreasedCooldownRecoveryUber2_"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 84, group = "GlobalCooldownRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(16-20)% increased Cooldown Recovery Rate" }, } },
+ ["MaximumLifeIncreasePercentBeltUber1"] = { type = "Prefix", affix = "The Elder's", "(4-7)% increased maximum Life", statOrder = { 1571 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(4-7)% increased maximum Life" }, } },
+ ["MaximumLifeIncreasePercentBeltUber2"] = { type = "Prefix", affix = "The Elder's", "(8-10)% increased maximum Life", statOrder = { 1571 }, level = 75, group = "MaximumLifeIncreasePercent", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, } },
+ ["GlobalEnergyShieldPercentBeltUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-7)% increased maximum Energy Shield", statOrder = { 1561 }, level = 68, group = "GlobalEnergyShieldPercent", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(4-7)% increased maximum Energy Shield" }, } },
+ ["GlobalEnergyShieldPercentBeltUber2"] = { type = "Prefix", affix = "The Shaper's", "(8-10)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(8-10)% increased maximum Energy Shield" }, } },
+ ["FlaskEffectUber1"] = { type = "Prefix", affix = "The Elder's", "Flasks applied to you have (4-7)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, tradeHashes = { [114734841] = { "Flasks applied to you have (4-7)% increased Effect" }, } },
+ ["FlaskEffectUber2"] = { type = "Prefix", affix = "The Elder's", "Flasks applied to you have (8-10)% increased Effect", statOrder = { 2742 }, level = 81, group = "FlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, tradeHashes = { [114734841] = { "Flasks applied to you have (8-10)% increased Effect" }, } },
+ ["AllResistancesBeltUber1"] = { type = "Suffix", affix = "of the Elder", "+(13-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 68, group = "AllResistances", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(13-15)% to all Elemental Resistances" }, } },
+ ["AllResistancesBeltUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-18)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(16-18)% to all Elemental Resistances" }, } },
+ ["ReducedCriticalStrikeDamageTakenUber1"] = { type = "Prefix", affix = "The Shaper's", "You take (15-20)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 68, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (15-20)% reduced Extra Damage from Critical Strikes" }, } },
+ ["ReducedCriticalStrikeDamageTakenUber2"] = { type = "Prefix", affix = "The Shaper's", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 75, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (21-30)% reduced Extra Damage from Critical Strikes" }, } },
+ ["LifeRecoveryRateUber1"] = { type = "Suffix", affix = "of the Elder", "(7-9)% increased Life Recovery rate", statOrder = { 1578 }, level = 68, group = "LifeRecoveryRate", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(7-9)% increased Life Recovery rate" }, } },
+ ["LifeRecoveryRateUber2_"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(10-12)% increased Life Recovery rate" }, } },
+ ["EnergyShieldRecoveryRateUber1"] = { type = "Suffix", affix = "of Shaping", "(7-9)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(7-9)% increased Energy Shield Recovery rate" }, } },
+ ["EnergyShieldRecoveryRateUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(10-12)% increased Energy Shield Recovery rate" }, } },
+ ["ManaRecoveryRateUber1_"] = { type = "Suffix", affix = "of Shaping", "(7-9)% increased Mana Recovery rate", statOrder = { 1586 }, level = 68, group = "ManaRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3513180117] = { "(7-9)% increased Mana Recovery rate" }, } },
+ ["ManaRecoveryRateUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3513180117] = { "(10-12)% increased Mana Recovery rate" }, } },
+ ["FlaskChanceToNotConsumeChargesUber1_"] = { type = "Prefix", affix = "The Elder's", "(6-10)% chance for Flasks you use to not consume Charges", statOrder = { 4230 }, level = 82, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt_elder", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, tradeHashes = { [311641062] = { "(6-10)% chance for Flasks you use to not consume Charges" }, } },
+ ["ChaosResistanceWhileUsingFlaskUber1"] = { type = "Suffix", affix = "of the Elder", "+(20-25)% to Chaos Resistance during any Flask Effect", statOrder = { 3301 }, level = 68, group = "ChaosResistanceWhileUsingFlask", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+(20-25)% to Chaos Resistance during any Flask Effect" }, } },
+ ["ChaosResistanceWhileUsingFlaskUber2_"] = { type = "Suffix", affix = "of the Elder", "+(26-30)% to Chaos Resistance during any Flask Effect", statOrder = { 3301 }, level = 75, group = "ChaosResistanceWhileUsingFlask", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+(26-30)% to Chaos Resistance during any Flask Effect" }, } },
+ ["MovementSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Movement Speed during any Flask Effect", statOrder = { 3186 }, level = 81, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "speed" }, tradeHashes = { [304970526] = { "(6-10)% increased Movement Speed during any Flask Effect" }, } },
+ ["FortifyOnMeleeStunUber1"] = { type = "Prefix", affix = "The Elder's", "Melee Hits which Stun have (8-12)% chance to Fortify", statOrder = { 5678 }, level = 68, group = "FortifyOnMeleeStun", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3206381437] = { "Melee Hits which Stun have (8-12)% chance to Fortify" }, } },
+ ["GrantsEnduringCrySkillUber1"] = { type = "Prefix", affix = "The Elder's", "Grants Level 22 Enduring Cry Skill", statOrder = { 702 }, level = 68, group = "EnduringCrySkill", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [1031644844] = { "Grants Level 22 Enduring Cry Skill" }, } },
+ ["GrantsRallyingCrySkillUber1"] = { type = "Prefix", affix = "The Elder's", "Grants Level 22 Rallying Cry Skill", statOrder = { 718 }, level = 68, group = "RallyingCrySkill", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [2007746338] = { "Grants Level 22 Rallying Cry Skill" }, } },
+ ["GrantsAbyssalCrySkillUber1"] = { type = "Prefix", affix = "The Shaper's", "Grants Level 22 Intimidating Cry Skill", statOrder = { 685 }, level = 68, group = "AbyssalCrySkill", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [1271338211] = { "Grants Level 22 Intimidating Cry Skill" }, } },
+ ["RemoveIgniteOnFlaskUseUber1"] = { type = "Suffix", affix = "of the Elder", "Remove Ignite and Burning when you use a Flask", statOrder = { 9907 }, level = 75, group = "RemoveIgniteOnFlaskUse", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "flask", "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1162425204] = { "Remove Ignite and Burning when you use a Flask" }, } },
+ ["RemoveFreezeOnFlaskUseUber1_"] = { type = "Suffix", affix = "of Shaping", "Remove Chill and Freeze when you use a Flask", statOrder = { 9903 }, level = 75, group = "RemoveFreezeOnFlaskUse", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "flask", "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3296873305] = { "Remove Chill and Freeze when you use a Flask" }, } },
+ ["RemoveShockOnFlaskUseUber1_"] = { type = "Suffix", affix = "of Shaping", "Remove Shock when you use a Flask", statOrder = { 9917 }, level = 75, group = "RemoveShockOnFlaskUse", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "flask", "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [561861132] = { "Remove Shock when you use a Flask" }, } },
+ ["AttackSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of the Elder", "(8-14)% increased Attack Speed during any Flask Effect", statOrder = { 3300 }, level = 68, group = "AttackSpeedDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "attack", "speed" }, tradeHashes = { [1365052901] = { "(8-14)% increased Attack Speed during any Flask Effect" }, } },
+ ["CastSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(8-14)% increased Cast Speed during any Flask Effect", statOrder = { 5466 }, level = 68, group = "CastSpeedDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "caster", "speed" }, tradeHashes = { [252194507] = { "(8-14)% increased Cast Speed during any Flask Effect" }, } },
+ ["MeleeDamageDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Melee Damage during any Flask Effect", statOrder = { 9190 }, level = 68, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [4091369450] = { "(20-25)% increased Melee Damage during any Flask Effect" }, } },
+ ["MeleeDamageDuringFlaskEffectUber2_"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Melee Damage during any Flask Effect", statOrder = { 9190 }, level = 75, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [4091369450] = { "(26-30)% increased Melee Damage during any Flask Effect" }, } },
+ ["MeleeDamageDuringFlaskEffectUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Melee Damage during any Flask Effect", statOrder = { 9190 }, level = 80, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [4091369450] = { "(31-35)% increased Melee Damage during any Flask Effect" }, } },
+ ["ProjectileAttackDamageDuringFlaskEffectUber1_"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9728 }, level = 68, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [2771016039] = { "(20-25)% increased Projectile Attack Damage during any Flask Effect" }, } },
+ ["ProjectileAttackDamageDuringFlaskEffectUber2_"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9728 }, level = 75, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [2771016039] = { "(26-30)% increased Projectile Attack Damage during any Flask Effect" }, } },
+ ["ProjectileAttackDamageDuringFlaskEffectUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9728 }, level = 80, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [2771016039] = { "(31-35)% increased Projectile Attack Damage during any Flask Effect" }, } },
+ ["SpellDamageDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(20-25)% increased Spell Damage during any Flask Effect", statOrder = { 10148 }, level = 68, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2080171093] = { "(20-25)% increased Spell Damage during any Flask Effect" }, } },
+ ["SpellDamageDuringFlaskEffectUber2"] = { type = "Suffix", affix = "of Shaping", "(26-30)% increased Spell Damage during any Flask Effect", statOrder = { 10148 }, level = 75, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2080171093] = { "(26-30)% increased Spell Damage during any Flask Effect" }, } },
+ ["SpellDamageDuringFlaskEffectUber3_"] = { type = "Suffix", affix = "of Shaping", "(31-35)% increased Spell Damage during any Flask Effect", statOrder = { 10148 }, level = 80, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2080171093] = { "(31-35)% increased Spell Damage during any Flask Effect" }, } },
+ ["PhysicalDamageBeltUber1"] = { type = "Prefix", affix = "The Elder's", "(16-20)% increased Global Physical Damage", statOrder = { 1231 }, level = 68, group = "PhysicalDamagePercentPrefix", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1310194496] = { "(16-20)% increased Global Physical Damage" }, } },
+ ["PhysicalDamageBeltUber2"] = { type = "Prefix", affix = "The Elder's", "(21-25)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPrefix", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1310194496] = { "(21-25)% increased Global Physical Damage" }, } },
+ ["PhysicalDamageBeltUber3___"] = { type = "Prefix", affix = "The Elder's", "(26-30)% increased Global Physical Damage", statOrder = { 1231 }, level = 80, group = "PhysicalDamagePercentPrefix", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1310194496] = { "(26-30)% increased Global Physical Damage" }, } },
+ ["ElementalDamageBeltUber1"] = { type = "Prefix", affix = "The Shaper's", "(11-15)% increased Elemental Damage", statOrder = { 1980 }, level = 68, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(11-15)% increased Elemental Damage" }, } },
+ ["ElementalDamageBeltUber2"] = { type = "Prefix", affix = "The Shaper's", "(16-20)% increased Elemental Damage", statOrder = { 1980 }, level = 75, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(16-20)% increased Elemental Damage" }, } },
+ ["ElementalDamageBeltUber3"] = { type = "Prefix", affix = "The Shaper's", "(21-25)% increased Elemental Damage", statOrder = { 1980 }, level = 80, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(21-25)% increased Elemental Damage" }, } },
+ ["ArmourDoubleArmourEffectUber1"] = { type = "Prefix", affix = "The Elder's", "(11-20)% chance to Defend with 200% of Armour", statOrder = { 5671 }, level = 75, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [327253797] = { "(11-20)% chance to Defend with 200% of Armour" }, } },
+ ["ArmourDoubleArmourEffectUber2"] = { type = "Prefix", affix = "The Elder's", "(21-30)% chance to Defend with 200% of Armour", statOrder = { 5671 }, level = 80, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [327253797] = { "(21-30)% chance to Defend with 200% of Armour" }, } },
+ ["IncreasedEnergyShieldFromBodyArmourUber1_"] = { type = "Prefix", affix = "The Shaper's", "(21-25)% increased Energy Shield from Equipped Body Armour", statOrder = { 9133 }, level = 75, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1195319608] = { "(21-25)% increased Energy Shield from Equipped Body Armour" }, } },
+ ["IncreasedEnergyShieldFromBodyArmourUber2"] = { type = "Prefix", affix = "The Shaper's", "(26-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 9133 }, level = 80, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1195319608] = { "(26-30)% increased Energy Shield from Equipped Body Armour" }, } },
+ ["AdditionalArrowUber1__"] = { type = "Prefix", affix = "The Shaper's", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 80, group = "AdditionalArrows", weightKey = { "quiver_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } },
+ ["PoisonOnHitQuiverUber1_"] = { type = "Suffix", affix = "of the Elder", "15% chance to Poison on Hit", "(15-25)% increased Damage with Poison", statOrder = { 3173, 3181 }, level = 68, group = "PoisonOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(15-25)% increased Damage with Poison" }, [795138349] = { "15% chance to Poison on Hit" }, } },
+ ["PoisonOnHitQuiverUber2"] = { type = "Suffix", affix = "of the Elder", "20% chance to Poison on Hit", "(26-30)% increased Damage with Poison", statOrder = { 3173, 3181 }, level = 75, group = "PoisonOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(26-30)% increased Damage with Poison" }, [795138349] = { "20% chance to Poison on Hit" }, } },
+ ["BleedOnHitQuiverUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 68, group = "BleedOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(15-25)% increased Damage with Bleeding" }, [3204820200] = { "Attacks have 10% chance to cause Bleeding" }, } },
+ ["BleedOnHitQuiverUber2_"] = { type = "Suffix", affix = "of the Elder", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 75, group = "BleedOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(26-30)% increased Damage with Bleeding" }, [3204820200] = { "Attacks have 15% chance to cause Bleeding" }, } },
+ ["MaimOnHitQuiverUber1"] = { type = "Suffix", affix = "of Shaping", "Attacks have 15% chance to Maim on Hit", statOrder = { 8154 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have 15% chance to Maim on Hit" }, } },
+ ["MaimOnHitQuiverUber2"] = { type = "Suffix", affix = "of Shaping", "Attacks have 20% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have 20% chance to Maim on Hit" }, } },
+ ["ChancetoGainPhasingOnKillUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(5-6)% chance to gain Phasing for 4 seconds on Kill" }, } },
+ ["ChancetoGainPhasingOnKillUber2_"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 75, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(7-8)% chance to gain Phasing for 4 seconds on Kill" }, } },
+ ["ChancetoGainPhasingOnKillUber3_"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 80, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(9-10)% chance to gain Phasing for 4 seconds on Kill" }, } },
+ ["AddedColdDamagePerFrenzyChargeUber1"] = { type = "Prefix", affix = "The Elder's", "8 to 12 Added Cold Damage per Frenzy Charge", statOrder = { 4273 }, level = 80, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "quiver_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "8 to 12 Added Cold Damage per Frenzy Charge" }, } },
+ ["PhysicalAddedAsColdQuiverUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (5-10)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (5-10)% of Physical Damage as Extra Cold Damage" }, } },
+ ["PhysicalAddedAsColdQuiverUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (11-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (11-15)% of Physical Damage as Extra Cold Damage" }, } },
+ ["MovementVelocityQuiverUber1"] = { type = "Prefix", affix = "The Shaper's", "(3-6)% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(3-6)% increased Movement Speed" }, } },
+ ["MovementVelocityQuiverUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% increased Movement Speed", statOrder = { 1798 }, level = 80, group = "MovementVelocity", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(7-10)% increased Movement Speed" }, } },
+ ["FrenzyChargeOnHittingRareOrUniqueUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6760 }, level = 75, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "quiver_elder", "default", }, weightVal = { 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [4179663748] = { "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy" }, } },
+ ["MaximumFireResistanceUber1"] = { type = "Prefix", affix = "The Elder's", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } },
+ ["MaximumFireResistanceUber2"] = { type = "Prefix", affix = "The Elder's", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 80, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } },
+ ["MaximumFireResistanceUber3_"] = { type = "Prefix", affix = "The Elder's", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 86, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } },
+ ["MaximumColdResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } },
+ ["MaximumColdResistanceUber2"] = { type = "Prefix", affix = "The Shaper's", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 80, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } },
+ ["MaximumColdResistanceUber3"] = { type = "Prefix", affix = "The Shaper's", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 86, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } },
+ ["MaximumLightningResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } },
+ ["MaximumLightningResistanceUber2"] = { type = "Prefix", affix = "The Shaper's", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 80, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } },
+ ["MaximumLightningResistanceUber3"] = { type = "Prefix", affix = "The Shaper's", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 86, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } },
+ ["MaximumAllResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 80, group = "MaximumResistances", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } },
+ ["MaximumAllResistanceUber2__"] = { type = "Prefix", affix = "The Shaper's", "+2% to all maximum Resistances", statOrder = { 1642 }, level = 85, group = "MaximumResistances", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } },
+ ["SupportedByCastOnDamageTakenUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 5 Cast when Damage Taken", statOrder = { 239 }, level = 68, group = "SupportedByCastOnDamageTaken", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3036440332] = { "Socketed Gems are Supported by Level 5 Cast when Damage Taken" }, } },
+ ["MaximumLifeIncreasePercentShieldUber1"] = { type = "Prefix", affix = "The Elder's", "(3-6)% increased maximum Life", statOrder = { 1571 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(3-6)% increased maximum Life" }, } },
+ ["MaximumLifeIncreasePercentShieldUber2"] = { type = "Prefix", affix = "The Elder's", "(7-10)% increased maximum Life", statOrder = { 1571 }, level = 84, group = "MaximumLifeIncreasePercent", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(7-10)% increased maximum Life" }, } },
+ ["DisplaySocketedGemsGetReducedReservationUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems have 20% increased Reservation Efficiency", statOrder = { 528 }, level = 68, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 20% increased Reservation Efficiency" }, } },
+ ["DisplaySocketedGemsGetReducedReservationUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 528 }, level = 80, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 30% increased Reservation Efficiency" }, } },
+ ["BlockAppliesToSpellsShieldUber1_"] = { type = "Suffix", affix = "of Shaping", "(9-12)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 68, group = "BlockingBlocksSpells", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2881111359] = { "(9-12)% Chance to Block Spell Damage" }, } },
+ ["BlockAppliesToSpellsShieldUber2_"] = { type = "Suffix", affix = "of Shaping", "(12-15)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 75, group = "BlockingBlocksSpells", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2881111359] = { "(12-15)% Chance to Block Spell Damage" }, } },
+ ["SpellBlockOnShieldUber1"] = { type = "Suffix", affix = "of Shaping", "(7-9)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 68, group = "SpellBlockPercentage", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(7-9)% Chance to Block Spell Damage" }, } },
+ ["SpellBlockOnShieldUber2_"] = { type = "Suffix", affix = "of Shaping", "(10-12)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(10-12)% Chance to Block Spell Damage" }, } },
+ ["GainArmourIfBlockedRecentlyUber1"] = { type = "Prefix", affix = "The Elder's", "+(500-650) Armour if you've Blocked Recently", statOrder = { 4499 }, level = 68, group = "GainArmourIfBlockedRecently", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [4091848539] = { "+(500-650) Armour if you've Blocked Recently" }, } },
+ ["GainArmourIfBlockedRecentlyUber2"] = { type = "Prefix", affix = "The Elder's", "+(651-800) Armour if you've Blocked Recently", statOrder = { 4499 }, level = 75, group = "GainArmourIfBlockedRecently", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [4091848539] = { "+(651-800) Armour if you've Blocked Recently" }, } },
+ ["AdditionalBlockWith5NearbyEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "+(2-3)% Chance to Block Attack Damage if there are at least 5 nearby Enemies", statOrder = { 4546 }, level = 68, group = "AdditionalBlockWith5NearbyEnemies", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [1214532298] = { "+(2-3)% Chance to Block Attack Damage if there are at least 5 nearby Enemies" }, } },
+ ["AdditionalBlockWith5NearbyEnemiesUber2"] = { type = "Suffix", affix = "of the Elder", "+(4-5)% Chance to Block Attack Damage if there are at least 5 nearby Enemies", statOrder = { 4546 }, level = 75, group = "AdditionalBlockWith5NearbyEnemies", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [1214532298] = { "+(4-5)% Chance to Block Attack Damage if there are at least 5 nearby Enemies" }, } },
+ ["GainRandomChargeOnBlockUber1__"] = { type = "Suffix", affix = "of Shaping", "Gain an Endurance, Frenzy or Power charge when you Block", statOrder = { 6812 }, level = 68, group = "GainRandomChargeOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, tradeHashes = { [2199099676] = { "Gain an Endurance, Frenzy or Power charge when you Block" }, } },
+ ["ChanceToDodgeIfBlockedRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(4-7)% chance to Suppress Spell Damage" }, } },
+ ["DamagePerBlockChanceUber1_"] = { type = "Prefix", affix = "The Elder's", "1% increased Damage per 1% Chance to Block Attack Damage", statOrder = { 6059 }, level = 68, group = "DamagePerBlockChance", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3400437584] = { "1% increased Damage per 1% Chance to Block Attack Damage" }, } },
+ ["ChanceToChillAttackersOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "(25-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(25-40)% chance to Chill Attackers for 4 seconds on Block" }, } },
+ ["ChanceToChillAttackersOnBlockUber2"] = { type = "Suffix", affix = "of Shaping", "(41-50)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 75, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(41-50)% chance to Chill Attackers for 4 seconds on Block" }, } },
+ ["ChanceToShockAttackersOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "(25-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10005 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(25-40)% chance to Shock Attackers for 4 seconds on Block" }, } },
+ ["ChanceToShockAttackersOnBlockUber2"] = { type = "Suffix", affix = "of Shaping", "(41-50)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10005 }, level = 75, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(41-50)% chance to Shock Attackers for 4 seconds on Block" }, } },
+ ["RecoverLifePercentOnBlockUber1_"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of Life when you Block", statOrder = { 3060 }, level = 68, group = "RecoverLifePercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "resource", "influence_mod", "life" }, tradeHashes = { [2442647190] = { "Recover (3-5)% of Life when you Block" }, } },
+ ["RecoverManaPercentOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of your maximum Mana when you Block", statOrder = { 8186 }, level = 68, group = "RecoverManaPercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "resource", "influence_mod", "mana" }, tradeHashes = { [3041288981] = { "Recover (3-5)% of your maximum Mana when you Block" }, } },
+ ["RecoverEnergyShieldPercentOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of Energy Shield when you Block", statOrder = { 2467 }, level = 68, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1606263610] = { "Recover (3-5)% of Energy Shield when you Block" }, } },
+ ["MaximumTotemUber1"] = { type = "Prefix", affix = "The Shaper's", "+1 to maximum number of Summoned Totems", statOrder = { 2254 }, level = 70, group = "AdditionalTotems", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, tradeHashes = { [429867172] = { "+1 to maximum number of Summoned Totems" }, } },
+ ["SupportedByEnduranceChargeOnStunWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 10 Endurance Charge on Melee Stun", statOrder = { 526 }, level = 68, group = "SupportedByEnduranceChargeOnStunWeapon", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3375208082] = { "Socketed Gems are Supported by Level 10 Endurance Charge on Melee Stun" }, } },
+ ["SupportedByOnslaughtWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 344 }, level = 68, group = "SupportedByOnslaughtWeapon", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "bow_elder", "default", }, weightVal = { 0, 400, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3237923082] = { "Socketed Gems are Supported by Level 10 Momentum" }, } },
+ ["SupportedByPowerChargeOnCritWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 10 Power Charge On Critical Strike", statOrder = { 356 }, level = 68, group = "SupportedByPowerChargeOnCritWeapon", weightKey = { "grants_2h_support", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [4015918489] = { "Socketed Gems are Supported by Level 10 Power Charge On Critical Strike" }, } },
+ ["SupportedByFortifyWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 1 Fortify", statOrder = { 496 }, level = 68, group = "SupportedByFortifyWeapon", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 1 Fortify" }, } },
+ ["SupportedByArcaneSurgeWeaponUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 226 }, level = 68, group = "SupportedByArcaneSurgeWeapon", weightKey = { "grants_2h_support", "staff_shaper", "default", }, weightVal = { 0, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2287264161] = { "Socketed Gems are Supported by Level 1 Arcane Surge" }, } },
+ ["SupportedByInspirationWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 1 Inspiration", statOrder = { 494 }, level = 68, group = "SupportedByInspirationWeapon", weightKey = { "grants_2h_support", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1866911844] = { "Socketed Gems are Supported by Level 1 Inspiration" }, } },
+ ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Melee Physical Damage", "(101-115)% increased Physical Damage", statOrder = { 468, 1232 }, level = 68, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [2985291457] = { "Socketed Gems are Supported by Level 16 Melee Physical Damage" }, } },
+ ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Melee Physical Damage", "(116-126)% increased Physical Damage", statOrder = { 468, 1232 }, level = 75, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [2985291457] = { "Socketed Gems are Supported by Level 18 Melee Physical Damage" }, } },
+ ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Melee Physical Damage", "(127-134)% increased Physical Damage", statOrder = { 468, 1232 }, level = 80, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [2985291457] = { "Socketed Gems are Supported by Level 20 Melee Physical Damage" }, } },
+ ["LocalIncreasedPhysicalDamagePercentBrutalityUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Brutality", "(101-115)% increased Physical Damage", statOrder = { 237, 1232 }, level = 68, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [715256302] = { "Socketed Gems are Supported by Level 16 Brutality" }, } },
+ ["LocalIncreasedPhysicalDamagePercentBrutalityUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Brutality", "(116-126)% increased Physical Damage", statOrder = { 237, 1232 }, level = 75, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [715256302] = { "Socketed Gems are Supported by Level 18 Brutality" }, } },
+ ["LocalIncreasedPhysicalDamagePercentBrutalityUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Brutality", "(127-134)% increased Physical Damage", statOrder = { 237, 1232 }, level = 80, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [715256302] = { "Socketed Gems are Supported by Level 20 Brutality" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAddedFireUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Added Fire Damage", "(101-115)% increased Physical Damage", statOrder = { 462, 1232 }, level = 68, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [2572192375] = { "Socketed Gems are Supported by Level 16 Added Fire Damage" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAddedFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Added Fire Damage", "(116-126)% increased Physical Damage", statOrder = { 462, 1232 }, level = 75, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [2572192375] = { "Socketed Gems are Supported by Level 18 Added Fire Damage" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAddedFireUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Added Fire Damage", "(127-134)% increased Physical Damage", statOrder = { 462, 1232 }, level = 80, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [2572192375] = { "Socketed Gems are Supported by Level 20 Added Fire Damage" }, } },
+ ["LocalIncreasedPhysicalDamagePercentRuthlessUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Ruthless", "(101-115)% increased Physical Damage", statOrder = { 370, 1232 }, level = 68, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [3796013729] = { "Socketed Gems are Supported by Level 16 Ruthless" }, } },
+ ["LocalIncreasedPhysicalDamagePercentRuthlessUber2__"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Ruthless", "(116-126)% increased Physical Damage", statOrder = { 370, 1232 }, level = 75, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [3796013729] = { "Socketed Gems are Supported by Level 18 Ruthless" }, } },
+ ["LocalIncreasedPhysicalDamagePercentRuthlessUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Ruthless", "(127-134)% increased Physical Damage", statOrder = { 370, 1232 }, level = 80, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [3796013729] = { "Socketed Gems are Supported by Level 20 Ruthless" }, } },
+ ["LocalIncreasedPhysicalDamagePercentOnslaughtUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Momentum", "(101-115)% increased Physical Damage", statOrder = { 344, 1232 }, level = 68, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [3237923082] = { "Socketed Gems are Supported by Level 16 Momentum" }, } },
+ ["LocalIncreasedPhysicalDamagePercentOnslaughtUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Momentum", "(116-126)% increased Physical Damage", statOrder = { 344, 1232 }, level = 75, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [3237923082] = { "Socketed Gems are Supported by Level 18 Momentum" }, } },
+ ["LocalIncreasedPhysicalDamagePercentOnslaughtUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Momentum", "(127-134)% increased Physical Damage", statOrder = { 344, 1232 }, level = 80, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [3237923082] = { "Socketed Gems are Supported by Level 20 Momentum" }, } },
+ ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Endurance Charge on Melee Stun", "(101-115)% increased Physical Damage", statOrder = { 526, 1232 }, level = 68, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [3375208082] = { "Socketed Gems are Supported by Level 16 Endurance Charge on Melee Stun" }, } },
+ ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Endurance Charge on Melee Stun", "(116-126)% increased Physical Damage", statOrder = { 526, 1232 }, level = 75, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [3375208082] = { "Socketed Gems are Supported by Level 18 Endurance Charge on Melee Stun" }, } },
+ ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", "(127-134)% increased Physical Damage", statOrder = { 526, 1232 }, level = 80, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [3375208082] = { "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun" }, } },
+ ["LocalIncreasedPhysicalDamagePercentFortifyUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Fortify", "(101-115)% increased Physical Damage", statOrder = { 496, 1232 }, level = 68, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [107118693] = { "Socketed Gems are Supported by Level 16 Fortify" }, } },
+ ["LocalIncreasedPhysicalDamagePercentFortifyUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Fortify", "(116-126)% increased Physical Damage", statOrder = { 496, 1232 }, level = 75, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [107118693] = { "Socketed Gems are Supported by Level 18 Fortify" }, } },
+ ["LocalIncreasedPhysicalDamagePercentFortifyUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fortify", "(127-134)% increased Physical Damage", statOrder = { 496, 1232 }, level = 80, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [107118693] = { "Socketed Gems are Supported by Level 20 Fortify" }, } },
+ ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(101-115)% increased Physical Damage", statOrder = { 356, 1232 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike" }, } },
+ ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(116-126)% increased Physical Damage", statOrder = { 356, 1232 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike" }, } },
+ ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(127-134)% increased Physical Damage", statOrder = { 356, 1232 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike" }, } },
+ ["LocalIncreasedPhysicalDamagePercentIronGripUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Iron Grip", "(101-115)% increased Physical Damage", statOrder = { 319, 1232 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [251446805] = { "Socketed Gems are Supported by Level 16 Iron Grip" }, } },
+ ["LocalIncreasedPhysicalDamagePercentIronGripUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Iron Grip", "(116-126)% increased Physical Damage", statOrder = { 319, 1232 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [251446805] = { "Socketed Gems are Supported by Level 18 Iron Grip" }, } },
+ ["LocalIncreasedPhysicalDamagePercentIronGripUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Iron Grip", "(127-134)% increased Physical Damage", statOrder = { 319, 1232 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [251446805] = { "Socketed Gems are Supported by Level 20 Iron Grip" }, } },
+ ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 16 Faster Projectiles", "(101-115)% increased Physical Damage", statOrder = { 482, 1232 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [99089516] = { "Socketed Gems are supported by Level 16 Faster Projectiles" }, } },
+ ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 18 Faster Projectiles", "(116-126)% increased Physical Damage", statOrder = { 482, 1232 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [99089516] = { "Socketed Gems are supported by Level 18 Faster Projectiles" }, } },
+ ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 20 Faster Projectiles", "(127-134)% increased Physical Damage", statOrder = { 482, 1232 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [99089516] = { "Socketed Gems are supported by Level 20 Faster Projectiles" }, } },
+ ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Vicious Projectiles", "(101-115)% increased Physical Damage", statOrder = { 351, 1232 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(101-115)% increased Physical Damage" }, [2513293614] = { "Socketed Gems are Supported by Level 16 Vicious Projectiles" }, } },
+ ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Vicious Projectiles", "(116-126)% increased Physical Damage", statOrder = { 351, 1232 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(116-126)% increased Physical Damage" }, [2513293614] = { "Socketed Gems are Supported by Level 18 Vicious Projectiles" }, } },
+ ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Vicious Projectiles", "(127-134)% increased Physical Damage", statOrder = { 351, 1232 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, tradeHashes = { [1805374733] = { "(127-134)% increased Physical Damage" }, [2513293614] = { "Socketed Gems are Supported by Level 20 Vicious Projectiles" }, } },
+ ["SupportedByMeleeSplashDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 16 Melee Splash", "(23-27)% increased Area Damage", statOrder = { 471, 2035 }, level = 68, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 16 Melee Splash" }, [4251717817] = { "(23-27)% increased Area Damage" }, } },
+ ["SupportedByMeleeSplashDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 18 Melee Splash", "(28-32)% increased Area Damage", statOrder = { 471, 2035 }, level = 75, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 18 Melee Splash" }, [4251717817] = { "(28-32)% increased Area Damage" }, } },
+ ["SupportedByMeleeSplashDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 20 Melee Splash", "(33-37)% increased Area Damage", statOrder = { 471, 2035 }, level = 80, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1811422871] = { "Socketed Gems are supported by Level 20 Melee Splash" }, [4251717817] = { "(33-37)% increased Area Damage" }, } },
+ ["SupportedBySpiritStrikeAreaUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Ancestral Call", "(5-8)% increased Area of Effect", statOrder = { 382, 1880 }, level = 68, group = "SupportedBySpiritStrikeArea", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [280731498] = { "(5-8)% increased Area of Effect" }, [696805682] = { "Socketed Gems are Supported by Level 16 Ancestral Call" }, } },
+ ["SupportedBySpiritStrikeAreaUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Ancestral Call", "(9-12)% increased Area of Effect", statOrder = { 382, 1880 }, level = 75, group = "SupportedBySpiritStrikeArea", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [280731498] = { "(9-12)% increased Area of Effect" }, [696805682] = { "Socketed Gems are Supported by Level 18 Ancestral Call" }, } },
+ ["SupportedBySpiritStrikeAreaUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Ancestral Call", "(13-15)% increased Area of Effect", statOrder = { 382, 1880 }, level = 80, group = "SupportedBySpiritStrikeArea", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [280731498] = { "(13-15)% increased Area of Effect" }, [696805682] = { "Socketed Gems are Supported by Level 20 Ancestral Call" }, } },
+ ["LocalIncreasedAttackSpeedMultistrikeUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Multistrike", "(17-19)% increased Attack Speed", statOrder = { 481, 1413 }, level = 68, group = "LocalIncreasedAttackSpeedMultistrike", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, [2501237765] = { "Socketed Gems are supported by Level 18 Multistrike" }, } },
+ ["LocalIncreasedAttackSpeedMultistrikeUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Multistrike", "(20-21)% increased Attack Speed", statOrder = { 481, 1413 }, level = 75, group = "LocalIncreasedAttackSpeedMultistrike", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(20-21)% increased Attack Speed" }, [2501237765] = { "Socketed Gems are supported by Level 20 Multistrike" }, } },
+ ["LocalIncreasedAttackSpeedFasterAttacksUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Attacks", "(17-19)% increased Attack Speed", statOrder = { 469, 1413 }, level = 68, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 18 Faster Attacks" }, } },
+ ["LocalIncreasedAttackSpeedFasterAttacksUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Attacks", "(20-21)% increased Attack Speed", statOrder = { 469, 1413 }, level = 75, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(20-21)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 20 Faster Attacks" }, } },
+ ["LocalIncreasedAttackSpeedRangedOnslaughtUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Momentum", "(8-10)% increased Attack Speed", statOrder = { 344, 1413 }, level = 68, group = "LocalIncreasedAttackSpeedOnslaught", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, [3237923082] = { "Socketed Gems are Supported by Level 18 Momentum" }, } },
+ ["LocalIncreasedAttackSpeedRangedOnslaughtUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Momentum", "(11-12)% increased Attack Speed", statOrder = { 344, 1413 }, level = 75, group = "LocalIncreasedAttackSpeedOnslaught", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(11-12)% increased Attack Speed" }, [3237923082] = { "Socketed Gems are Supported by Level 20 Momentum" }, } },
+ ["LocalIncreasedAttackSpeedRangedFasterAttacksUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Attacks", "(8-10)% increased Attack Speed", statOrder = { 469, 1413 }, level = 68, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 18 Faster Attacks" }, } },
+ ["LocalIncreasedAttackSpeedRangedFasterAttacksUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Attacks", "(11-12)% increased Attack Speed", statOrder = { 469, 1413 }, level = 75, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [210067635] = { "(11-12)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 20 Faster Attacks" }, } },
+ ["LocalIncreasedAttackSpeedTwoHandedDoubleDamageUber1"] = { type = "Suffix", affix = "of Shaping", "(17-19)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1413, 5659 }, level = 68, group = "AttackSpeedDoubleDamage", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, [1172810729] = { "(4-6)% chance to deal Double Damage" }, } },
+ ["LocalIncreasedAttackSpeedTwoHandedDoubleDamageUber2"] = { type = "Suffix", affix = "of Shaping", "(20-21)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1413, 5659 }, level = 75, group = "AttackSpeedDoubleDamage", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, tradeHashes = { [210067635] = { "(20-21)% increased Attack Speed" }, [1172810729] = { "(4-6)% chance to deal Double Damage" }, } },
+ ["LocalIncreasedAttackSpeedTwoHandedKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "(17-19)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1413, 4894 }, level = 68, group = "AttackSpeedKilledRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, [1507059769] = { "20% increased Attack Speed if you've Killed Recently" }, } },
+ ["LocalIncreasedAttackSpeedTwoHandedKilledRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(20-21)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1413, 4894 }, level = 75, group = "AttackSpeedKilledRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(20-21)% increased Attack Speed" }, [1507059769] = { "20% increased Attack Speed if you've Killed Recently" }, } },
+ ["LocalIncreasedAttackSpeedRangedDoubleDamageUber1"] = { type = "Suffix", affix = "of Shaping", "(8-10)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1413, 5659 }, level = 68, group = "AttackSpeedDoubleDamage", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, [1172810729] = { "(4-6)% chance to deal Double Damage" }, } },
+ ["LocalIncreasedAttackSpeedRangedDoubleDamageUber2"] = { type = "Suffix", affix = "of Shaping", "(11-12)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1413, 5659 }, level = 75, group = "AttackSpeedDoubleDamage", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, tradeHashes = { [210067635] = { "(11-12)% increased Attack Speed" }, [1172810729] = { "(4-6)% chance to deal Double Damage" }, } },
+ ["LocalIncreasedAttackSpeedRangedKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "(8-10)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1413, 4894 }, level = 68, group = "AttackSpeedKilledRecently", weightKey = { "bow_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, [1507059769] = { "20% increased Attack Speed if you've Killed Recently" }, } },
+ ["LocalIncreasedAttackSpeedRangedKilledRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(11-12)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1413, 4894 }, level = 75, group = "AttackSpeedKilledRecently", weightKey = { "bow_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(11-12)% increased Attack Speed" }, [1507059769] = { "20% increased Attack Speed if you've Killed Recently" }, } },
+ ["CriticalStrikeChanceSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Increased Critical Strikes", "(22-25)% increased Critical Strike Chance", statOrder = { 313, 1464 }, level = 68, group = "CriticalStrikeChanceSupported", weightKey = { "grants_crit_chance_support", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "attack", "critical", "gem" }, tradeHashes = { [2375316951] = { "(22-25)% increased Critical Strike Chance" }, [2259700079] = { "Socketed Gems are Supported by Level 18 Increased Critical Strikes" }, } },
+ ["CriticalStrikeChanceSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", "(26-29)% increased Critical Strike Chance", statOrder = { 313, 1464 }, level = 75, group = "CriticalStrikeChanceSupported", weightKey = { "grants_crit_chance_support", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "attack", "critical", "gem" }, tradeHashes = { [2375316951] = { "(26-29)% increased Critical Strike Chance" }, [2259700079] = { "Socketed Gems are Supported by Level 20 Increased Critical Strikes" }, } },
+ ["CriticalStrikeChanceTwoHandedCritChanceRecentlyUber1_"] = { type = "Suffix", affix = "of Shaping", "(22-25)% increased Critical Strike Chance", "50% increased Critical Strike Chance if you have Killed Recently", statOrder = { 1464, 5925 }, level = 68, group = "CriticalStrikeChanceTwoHandedCritChanceRecently", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [2375316951] = { "(22-25)% increased Critical Strike Chance" }, [3914638685] = { "50% increased Critical Strike Chance if you have Killed Recently" }, } },
+ ["CriticalStrikeChanceTwoHandedCritChanceRecentlyUber2"] = { type = "Suffix", affix = "of Shaping", "(26-29)% increased Critical Strike Chance", "50% increased Critical Strike Chance if you have Killed Recently", statOrder = { 1464, 5925 }, level = 75, group = "CriticalStrikeChanceTwoHandedCritChanceRecently", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [2375316951] = { "(26-29)% increased Critical Strike Chance" }, [3914638685] = { "50% increased Critical Strike Chance if you have Killed Recently" }, } },
+ ["CriticalStrikeChanceTwoHandedCritMultiRecentlyUber1_"] = { type = "Suffix", affix = "of the Elder", "(22-25)% increased Critical Strike Chance", "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", statOrder = { 1464, 5960 }, level = 68, group = "CriticalStrikeChanceTwoHandedCritMultiRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "critical" }, tradeHashes = { [2375316951] = { "(22-25)% increased Critical Strike Chance" }, [1478247313] = { "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently" }, } },
+ ["CriticalStrikeChanceTwoHandedCritMultiRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(26-29)% increased Critical Strike Chance", "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", statOrder = { 1464, 5960 }, level = 75, group = "CriticalStrikeChanceTwoHandedCritMultiRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "critical" }, tradeHashes = { [2375316951] = { "(26-29)% increased Critical Strike Chance" }, [1478247313] = { "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently" }, } },
+ ["CriticalMultiplierSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Increased Critical Damage", "+(22-25)% to Global Critical Strike Multiplier", statOrder = { 485, 1488 }, level = 68, group = "CriticalStrikeMultiplierSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "attack", "critical", "gem" }, tradeHashes = { [1108755349] = { "Socketed Gems are supported by Level 18 Increased Critical Damage" }, [3556824919] = { "+(22-25)% to Global Critical Strike Multiplier" }, } },
+ ["CriticalMultiplierSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Increased Critical Damage", "+(26-29)% to Global Critical Strike Multiplier", statOrder = { 485, 1488 }, level = 75, group = "CriticalStrikeMultiplierSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "attack", "critical", "gem" }, tradeHashes = { [1108755349] = { "Socketed Gems are supported by Level 20 Increased Critical Damage" }, [3556824919] = { "+(26-29)% to Global Critical Strike Multiplier" }, } },
+ ["CriticalMultiplierSupportedTwoHandedUber1"] = { type = "Suffix", affix = "of Shaping", "+(22-25)% to Global Critical Strike Multiplier", "(5-8)% chance to gain a Power Charge on Critical Strike", statOrder = { 1488, 1830 }, level = 68, group = "CriticalMultiplierSupportedTwoHanded", weightKey = { "bow_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod", "damage", "attack", "critical" }, tradeHashes = { [3814876985] = { "(5-8)% chance to gain a Power Charge on Critical Strike" }, [3556824919] = { "+(22-25)% to Global Critical Strike Multiplier" }, } },
+ ["CriticalMultiplierSupportedTwoHandedUber2"] = { type = "Suffix", affix = "of Shaping", "+(26-29)% to Global Critical Strike Multiplier", "(9-10)% chance to gain a Power Charge on Critical Strike", statOrder = { 1488, 1830 }, level = 75, group = "CriticalMultiplierSupportedTwoHanded", weightKey = { "bow_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod", "damage", "attack", "critical" }, tradeHashes = { [3814876985] = { "(9-10)% chance to gain a Power Charge on Critical Strike" }, [3556824919] = { "+(26-29)% to Global Critical Strike Multiplier" }, } },
+ ["WeaponElementalDamageSupportedUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 18 Elemental Damage with Attacks", "(28-32)% increased Elemental Damage with Attack Skills", statOrder = { 487, 6321 }, level = 68, group = "IncreasedWeaponElementalDamagePercentSupported", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "attack", "gem" }, tradeHashes = { [387439868] = { "(28-32)% increased Elemental Damage with Attack Skills" }, [2532625478] = { "Socketed Gems are supported by Level 18 Elemental Damage with Attacks" }, } },
+ ["WeaponElementalDamageSupportedUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 20 Elemental Damage with Attacks", "(33-37)% increased Elemental Damage with Attack Skills", statOrder = { 487, 6321 }, level = 75, group = "IncreasedWeaponElementalDamagePercentSupported", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "attack", "gem" }, tradeHashes = { [387439868] = { "(33-37)% increased Elemental Damage with Attack Skills" }, [2532625478] = { "Socketed Gems are supported by Level 20 Elemental Damage with Attacks" }, } },
+ ["ChanceToMaimUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Maim", "15% chance to Maim on Hit", statOrder = { 331, 7988 }, level = 68, group = "ChanceToMaimSupported", weightKey = { "grants_2h_support", "2h_mace_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "influence_mod", "attack", "gem" }, tradeHashes = { [3826977109] = { "Socketed Gems are Supported by Level 18 Maim" }, [2763429652] = { "15% chance to Maim on Hit" }, } },
+ ["ChanceToMaimUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Maim", "20% chance to Maim on Hit", statOrder = { 331, 7988 }, level = 75, group = "ChanceToMaimSupported", weightKey = { "grants_2h_support", "2h_mace_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "influence_mod", "attack", "gem" }, tradeHashes = { [3826977109] = { "Socketed Gems are Supported by Level 20 Maim" }, [2763429652] = { "20% chance to Maim on Hit" }, } },
+ ["ChanceToPoisonUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance to Poison", "15% chance to Poison on Hit", statOrder = { 523, 8002 }, level = 68, group = "ChanceToPoisonSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "poison", "influence_mod", "chaos", "attack", "ailment", "gem" }, tradeHashes = { [3885634897] = { "15% chance to Poison on Hit" }, [228165595] = { "Socketed Gems are Supported by Level 18 Chance to Poison" }, } },
+ ["ChanceToPoisonUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance to Poison", "20% chance to Poison on Hit", statOrder = { 523, 8002 }, level = 75, group = "ChanceToPoisonSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "poison", "influence_mod", "chaos", "attack", "ailment", "gem" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit" }, [228165595] = { "Socketed Gems are Supported by Level 20 Chance to Poison" }, } },
+ ["ChanceToBleedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance To Bleed", "10% chance to cause Bleeding on Hit", statOrder = { 244, 2483 }, level = 68, group = "ChanceToBleedSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "bleed", "influence_mod", "physical", "attack", "ailment", "gem" }, tradeHashes = { [1519615863] = { "10% chance to cause Bleeding on Hit" }, [4197676934] = { "Socketed Gems are Supported by Level 18 Chance To Bleed" }, } },
+ ["ChanceToBleedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance To Bleed", "15% chance to cause Bleeding on Hit", statOrder = { 244, 2483 }, level = 75, group = "ChanceToBleedSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "bleed", "influence_mod", "physical", "attack", "ailment", "gem" }, tradeHashes = { [1519615863] = { "15% chance to cause Bleeding on Hit" }, [4197676934] = { "Socketed Gems are Supported by Level 20 Chance To Bleed" }, } },
+ ["PhysicalAddedAsFireUber1_"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (7-12)% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (13-17)% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsFireUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 80, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (18-20)% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsColdUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (7-12)% of Physical Damage as Extra Cold Damage" }, } },
+ ["PhysicalAddedAsColdUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (13-17)% of Physical Damage as Extra Cold Damage" }, } },
+ ["PhysicalAddedAsColdUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 80, group = "PhysicalAddedAsCold", weightKey = { "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (18-20)% of Physical Damage as Extra Cold Damage" }, } },
+ ["PhysicalAddedAsLightningUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (7-12)% of Physical Damage as Extra Lightning Damage" }, } },
+ ["PhysicalAddedAsLightningUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (13-17)% of Physical Damage as Extra Lightning Damage" }, } },
+ ["PhysicalAddedAsLightningUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 80, group = "PhysicalAddedAsLightning", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (18-20)% of Physical Damage as Extra Lightning Damage" }, } },
+ ["OnslaugtOnKillUber1"] = { type = "Suffix", affix = "of Shaping", "(5-6)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3380 }, level = 68, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [665823128] = { "(5-6)% chance to gain Onslaught for 4 seconds on Kill" }, } },
+ ["OnslaugtOnKillUber2"] = { type = "Suffix", affix = "of Shaping", "(7-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3380 }, level = 75, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [665823128] = { "(7-8)% chance to gain Onslaught for 4 seconds on Kill" }, } },
+ ["OnslaugtOnKillUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3380 }, level = 83, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [665823128] = { "(9-10)% chance to gain Onslaught for 4 seconds on Kill" }, } },
+ ["UnholyMightOnKillUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3562211447] = { "(5-6)% chance to gain Unholy Might for 3 seconds on Kill" }, } },
+ ["UnholyMightOnKillUber2_"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 75, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3562211447] = { "(7-8)% chance to gain Unholy Might for 3 seconds on Kill" }, } },
+ ["UnholyMightOnKillUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 84, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3562211447] = { "(9-10)% chance to gain Unholy Might for 3 seconds on Kill" }, } },
+ ["BlindOnHitUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 68, group = "AttacksBlindOnHitChance", weightKey = { "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "axe_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(5-6)% chance to Blind Enemies on Hit with Attacks" }, } },
+ ["BlindOnHitUber2"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 75, group = "AttacksBlindOnHitChance", weightKey = { "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "axe_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(7-8)% chance to Blind Enemies on Hit with Attacks" }, } },
+ ["BlindOnHitUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 81, group = "AttacksBlindOnHitChance", weightKey = { "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "axe_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(9-10)% chance to Blind Enemies on Hit with Attacks" }, } },
+ ["BlindOnHitShaperUber1"] = { type = "Suffix", affix = "of Shaping", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 68, group = "AttacksBlindOnHitChance", weightKey = { "quiver_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(5-6)% chance to Blind Enemies on Hit with Attacks" }, } },
+ ["BlindOnHitShaperUber2"] = { type = "Suffix", affix = "of Shaping", "(7-8)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 75, group = "AttacksBlindOnHitChance", weightKey = { "quiver_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(7-8)% chance to Blind Enemies on Hit with Attacks" }, } },
+ ["BlindOnHitShaperUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 81, group = "AttacksBlindOnHitChance", weightKey = { "quiver_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(9-10)% chance to Blind Enemies on Hit with Attacks" }, } },
+ ["BlockWhileDualWieldingUber1"] = { type = "Suffix", affix = "of Shaping", "+(2-4)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 68, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2166444903] = { "+(2-4)% Chance to Block Attack Damage while Dual Wielding" }, } },
+ ["BlockWhileDualWieldingUber2"] = { type = "Suffix", affix = "of Shaping", "+(5-7)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 75, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2166444903] = { "+(5-7)% Chance to Block Attack Damage while Dual Wielding" }, } },
+ ["BlockWhileDualWieldingUber3_"] = { type = "Suffix", affix = "of Shaping", "+(8-9)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 80, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2166444903] = { "+(8-9)% Chance to Block Attack Damage while Dual Wielding" }, } },
+ ["PhysicalDamageWhileDualWieldingUber1"] = { type = "Suffix", affix = "of the Elder", "(23-27)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1279 }, level = 68, group = "DualWieldingPhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "(23-27)% increased Physical Attack Damage while Dual Wielding" }, } },
+ ["PhysicalDamageWhileDualWieldingUber2"] = { type = "Suffix", affix = "of the Elder", "(28-32)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1279 }, level = 75, group = "DualWieldingPhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "(28-32)% increased Physical Attack Damage while Dual Wielding" }, } },
+ ["PhysicalDamageWhileDualWieldingUber3"] = { type = "Suffix", affix = "of the Elder", "(33-37)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1279 }, level = 80, group = "DualWieldingPhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "(33-37)% increased Physical Attack Damage while Dual Wielding" }, } },
+ ["ElementalPenetrationWeaponUber1"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (5-6)% Elemental Resistances", statOrder = { 2980 }, level = 68, group = "ElementalPenetration", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (5-6)% Elemental Resistances" }, } },
+ ["ElementalPenetrationWeaponUber2"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (7-8)% Elemental Resistances", statOrder = { 2980 }, level = 75, group = "ElementalPenetration", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (7-8)% Elemental Resistances" }, } },
+ ["ElementalPenetrationWeaponUber3"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (9-10)% Elemental Resistances", statOrder = { 2980 }, level = 83, group = "ElementalPenetration", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (9-10)% Elemental Resistances" }, } },
+ ["ElementalPenetrationWeaponNewUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2980 }, level = 68, group = "ElementalPenetration", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 4% Elemental Resistances" }, } },
+ ["ElementalPenetrationWeaponNewUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 5% Elemental Resistances", statOrder = { 2980 }, level = 75, group = "ElementalPenetration", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 5% Elemental Resistances" }, } },
+ ["ElementalPenetrationWeaponNewUber3"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 6% Elemental Resistances", statOrder = { 2980 }, level = 83, group = "ElementalPenetration", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 6% Elemental Resistances" }, } },
+ ["ElementalPenetrationTwoWeaponNewUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (7-8)% Elemental Resistances", statOrder = { 2980 }, level = 68, group = "ElementalPenetration", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (7-8)% Elemental Resistances" }, } },
+ ["ElementalPenetrationTwoWeaponNewUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (9-10)% Elemental Resistances", statOrder = { 2980 }, level = 75, group = "ElementalPenetration", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (9-10)% Elemental Resistances" }, } },
+ ["ElementalPenetrationTwoWeaponNewUber3"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (11-12)% Elemental Resistances", statOrder = { 2980 }, level = 83, group = "ElementalPenetration", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (11-12)% Elemental Resistances" }, } },
+ ["WeaponSocketedAttacksDamageFinalUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 40% more Attack Damage", statOrder = { 546 }, level = 83, group = "SocketedAttacksDamageFinal", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "influence_mod", "damage", "attack", "gem" }, tradeHashes = { [1970781345] = { "Socketed Skills deal 40% more Attack Damage" }, } },
+ ["WeaponSocketedAttacksDamageFinalTwoHandUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 20% more Attack Damage", statOrder = { 546 }, level = 83, group = "SocketedAttacksDamageFinal", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "influence_mod", "damage", "attack", "gem" }, tradeHashes = { [1970781345] = { "Socketed Skills deal 20% more Attack Damage" }, } },
+ ["WeaponSocketedSpellsDamageFinalUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 40% more Spell Damage", statOrder = { 565 }, level = 83, group = "SocketedSpellsDamageFinal", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2964800094] = { "Socketed Skills deal 40% more Spell Damage" }, } },
+ ["WeaponSocketedSpellsDamageFinalTwoHandUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 20% more Spell Damage", statOrder = { 565 }, level = 83, group = "SocketedSpellsDamageFinal", weightKey = { "staff_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2964800094] = { "Socketed Skills deal 20% more Spell Damage" }, } },
+ ["ChanceForPoisonDamageFinalInflictedWithThisWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7871 }, level = 83, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [2523146878] = { "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage" }, } },
+ ["ChanceForBleedDamageFinalInflictedWithThisWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7870 }, level = 83, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1560880986] = { "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage" }, } },
+ ["LocalBleedDamageOverTimeMultiplierUber1___"] = { type = "Prefix", affix = "The Elder's", "+(37-42)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7864 }, level = 68, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, tradeHashes = { [951608773] = { "+(37-42)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon" }, } },
+ ["LocalBleedDamageOverTimeMultiplierUber2"] = { type = "Prefix", affix = "The Elder's", "+(43-50)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7864 }, level = 75, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, tradeHashes = { [951608773] = { "+(43-50)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon" }, } },
+ ["LocalBleedDamageOverTimeMultiplierUber3"] = { type = "Prefix", affix = "The Elder's", "+(51-59)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7864 }, level = 83, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, tradeHashes = { [951608773] = { "+(51-59)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon" }, } },
+ ["LocalPoisonDamageOverTimeMultiplierUber1__"] = { type = "Prefix", affix = "The Elder's", "+(37-42)% to Damage over Time Multiplier for Poison inflicted with this Weapon", statOrder = { 1264 }, level = 68, group = "LocalPoisonDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "poison", "influence_mod", "chaos", "attack", "ailment" }, tradeHashes = { [4096656097] = { "+(37-42)% to Damage over Time Multiplier for Poison inflicted with this Weapon" }, } },
+ ["LocalPoisonDamageOverTimeMultiplierUber2__"] = { type = "Prefix", affix = "The Elder's", "+(43-50)% to Damage over Time Multiplier for Poison inflicted with this Weapon", statOrder = { 1264 }, level = 75, group = "LocalPoisonDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "poison", "influence_mod", "chaos", "attack", "ailment" }, tradeHashes = { [4096656097] = { "+(43-50)% to Damage over Time Multiplier for Poison inflicted with this Weapon" }, } },
+ ["LocalPoisonDamageOverTimeMultiplierUber3"] = { type = "Prefix", affix = "The Elder's", "+(51-59)% to Damage over Time Multiplier for Poison inflicted with this Weapon", statOrder = { 1264 }, level = 83, group = "LocalPoisonDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "poison", "influence_mod", "chaos", "attack", "ailment" }, tradeHashes = { [4096656097] = { "+(51-59)% to Damage over Time Multiplier for Poison inflicted with this Weapon" }, } },
+ ["PhysicalDamageConvertedToChaosUber1"] = { type = "Suffix", affix = "of the Elder", "(10-15)% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 68, group = "PhysicalDamageConvertedToChaos", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "influence_mod", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(10-15)% of Physical Damage Converted to Chaos Damage" }, } },
+ ["PhysicalDamageConvertedToChaosUber2"] = { type = "Suffix", affix = "of the Elder", "(16-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertedToChaos", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "influence_mod", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(16-20)% of Physical Damage Converted to Chaos Damage" }, } },
+ ["PhysicalDamageConvertedToChaosUber3"] = { type = "Suffix", affix = "of the Elder", "(21-25)% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 85, group = "PhysicalDamageConvertedToChaos", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "influence_mod", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(21-25)% of Physical Damage Converted to Chaos Damage" }, } },
+ ["AddedFireDamagePerStrengthUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4869 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "default", }, weightVal = { 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1060540099] = { "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength" }, } },
+ ["AddedFireDamagePerStrengthTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4869 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1060540099] = { "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength" }, } },
+ ["AddedColdDamagePerDexterityUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4924 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "bow_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [149574107] = { "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity" }, } },
+ ["AddedColdDamagePerDexterityTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4924 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [149574107] = { "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity" }, } },
+ ["AddedLightningDamagePerIntelligenceUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } },
+ ["AddedLightningDamagePerIntelligenceTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } },
+ ["SupportedByCastOnCritUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 18 Cast On Critical Strike", statOrder = { 472 }, level = 68, group = "SupportedByCastOnCritWeapon", weightKey = { "grants_2h_support", "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "default", }, weightVal = { 0, 350, 350, 350, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2325632050] = { "Socketed Gems are supported by Level 18 Cast On Critical Strike" }, } },
+ ["SupportedByCastOnCritUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 20 Cast On Critical Strike", statOrder = { 472 }, level = 75, group = "SupportedByCastOnCritWeapon", weightKey = { "grants_2h_support", "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "default", }, weightVal = { 0, 350, 350, 350, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2325632050] = { "Socketed Gems are supported by Level 20 Cast On Critical Strike" }, } },
+ ["SupportedByCastOnMeleeKillUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cast On Melee Kill", statOrder = { 240 }, level = 68, group = "SupportedByCastOnMeleeKillWeapon", weightKey = { "grants_2h_support", "2h_mace_shaper", "2h_axe_shaper", "2h_sword_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3312593243] = { "Socketed Gems are Supported by Level 18 Cast On Melee Kill" }, } },
+ ["SupportedByCastOnMeleeKillUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cast On Melee Kill", statOrder = { 240 }, level = 75, group = "SupportedByCastOnMeleeKillWeapon", weightKey = { "grants_2h_support", "2h_mace_shaper", "2h_axe_shaper", "2h_sword_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3312593243] = { "Socketed Gems are Supported by Level 20 Cast On Melee Kill" }, } },
+ ["SupportedByCastWhileChannellingUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cast While Channelling", statOrder = { 242 }, level = 68, group = "SupportedByCastWhileChannellingWeapon", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1316646496] = { "Socketed Gems are Supported by Level 18 Cast While Channelling" }, } },
+ ["SupportedByCastWhileChannellingUber2_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cast While Channelling", statOrder = { 242 }, level = 75, group = "SupportedByCastWhileChannellingWeapon", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1316646496] = { "Socketed Gems are Supported by Level 20 Cast While Channelling" }, } },
+ ["CullingStrikeUber1"] = { type = "Suffix", affix = "of the Elder", "Culling Strike", statOrder = { 2039 }, level = 68, group = "CullingStrike", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2524254339] = { "Culling Strike" }, } },
+ ["MeleeWeaponRangeUber1"] = { type = "Suffix", affix = "of the Elder", "+0.1 metres to Weapon Range", statOrder = { 2745 }, level = 75, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [350598685] = { "+0.1 metres to Weapon Range" }, } },
+ ["MeleeWeaponRangeUber2"] = { type = "Suffix", affix = "of the Elder", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 85, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } },
+ ["AreaOfEffectTwoHandedWeaponUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% increased Area of Effect", statOrder = { 1880 }, level = 68, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(5-10)% increased Area of Effect" }, } },
+ ["AreaOfEffectTwoHandedWeaponUber2"] = { type = "Suffix", affix = "of the Elder", "(11-15)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(11-15)% increased Area of Effect" }, } },
+ ["AreaOfEffectTwoHandedWeaponUber3"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Area of Effect", statOrder = { 1880 }, level = 82, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(16-20)% increased Area of Effect" }, } },
+ ["MovementVelocityTwoHandedWeaponUber1"] = { type = "Suffix", affix = "of Shaping", "(3-6)% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(3-6)% increased Movement Speed" }, } },
+ ["MovementVelocityTwoHandedWeaponUber2"] = { type = "Suffix", affix = "of Shaping", "(7-10)% increased Movement Speed", statOrder = { 1798 }, level = 84, group = "MovementVelocity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(7-10)% increased Movement Speed" }, } },
+ ["AdditionalArrowsUber1"] = { type = "Suffix", affix = "of the Elder", "Skills fire an additional Projectile", statOrder = { 1792 }, level = 82, group = "AdditionalProjectiles", weightKey = { "2h_sword_elder", "2h_axe_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [74338099] = { "Skills fire an additional Projectile" }, } },
+ ["AdditionalPierceRangedUber1"] = { type = "Suffix", affix = "of Shaping", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 68, group = "AdditionalPierce", weightKey = { "bow_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } },
+ ["AdditionalPierceRangedUber2"] = { type = "Suffix", affix = "of Shaping", "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "bow_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } },
+ ["SpellDamageOnWeaponControlledDestructionUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Controlled Destruction", "(45-52)% increased Spell Damage", statOrder = { 525, 1223 }, level = 68, group = "WeaponSpellDamageControlledDestruction", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(45-52)% increased Spell Damage" }, [3718597497] = { "Socketed Gems are Supported by Level 16 Controlled Destruction" }, } },
+ ["SpellDamageOnWeaponControlledDestructionUber2_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Controlled Destruction", "(53-56)% increased Spell Damage", statOrder = { 525, 1223 }, level = 75, group = "WeaponSpellDamageControlledDestruction", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(53-56)% increased Spell Damage" }, [3718597497] = { "Socketed Gems are Supported by Level 18 Controlled Destruction" }, } },
+ ["SpellDamageOnWeaponControlledDestructionUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Controlled Destruction", "(57-60)% increased Spell Damage", statOrder = { 525, 1223 }, level = 80, group = "WeaponSpellDamageControlledDestruction", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(57-60)% increased Spell Damage" }, [3718597497] = { "Socketed Gems are Supported by Level 20 Controlled Destruction" }, } },
+ ["SpellDamageOnWeaponEfficacyUber1_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Efficacy", "(45-52)% increased Spell Damage", statOrder = { 265, 1223 }, level = 68, group = "WeaponSpellDamageEfficacy", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(45-52)% increased Spell Damage" }, [3924539382] = { "Socketed Gems are Supported by Level 16 Efficacy" }, } },
+ ["SpellDamageOnWeaponEfficacyUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Efficacy", "(53-56)% increased Spell Damage", statOrder = { 265, 1223 }, level = 75, group = "WeaponSpellDamageEfficacy", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(53-56)% increased Spell Damage" }, [3924539382] = { "Socketed Gems are Supported by Level 18 Efficacy" }, } },
+ ["SpellDamageOnWeaponEfficacyUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Efficacy", "(57-60)% increased Spell Damage", statOrder = { 265, 1223 }, level = 80, group = "WeaponSpellDamageEfficacy", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(57-60)% increased Spell Damage" }, [3924539382] = { "Socketed Gems are Supported by Level 20 Efficacy" }, } },
+ ["SpellDamageOnWeaponArcaneSurgeUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Arcane Surge", "(67-78)% increased Spell Damage", statOrder = { 226, 1223 }, level = 68, group = "WeaponSpellDamageArcaneSurge", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(67-78)% increased Spell Damage" }, [2287264161] = { "Socketed Gems are Supported by Level 16 Arcane Surge" }, } },
+ ["SpellDamageOnWeaponArcaneSurgeUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Arcane Surge", "(79-83)% increased Spell Damage", statOrder = { 226, 1223 }, level = 75, group = "WeaponSpellDamageArcaneSurge", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(79-83)% increased Spell Damage" }, [2287264161] = { "Socketed Gems are Supported by Level 18 Arcane Surge" }, } },
+ ["SpellDamageOnWeaponArcaneSurgeUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Arcane Surge", "(84-87)% increased Spell Damage", statOrder = { 226, 1223 }, level = 80, group = "WeaponSpellDamageArcaneSurge", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(84-87)% increased Spell Damage" }, [2287264161] = { "Socketed Gems are Supported by Level 20 Arcane Surge" }, } },
+ ["SpellDamageOnWeaponReducedManaUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Inspiration", "(67-78)% increased Spell Damage", statOrder = { 494, 1223 }, level = 68, group = "WeaponSpellDamageReducedMana", weightKey = { "grants_2h_support", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(67-78)% increased Spell Damage" }, [1866911844] = { "Socketed Gems are Supported by Level 16 Inspiration" }, } },
+ ["SpellDamageOnWeaponReducedManaUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Inspiration", "(79-83)% increased Spell Damage", statOrder = { 494, 1223 }, level = 75, group = "WeaponSpellDamageReducedMana", weightKey = { "grants_2h_support", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(79-83)% increased Spell Damage" }, [1866911844] = { "Socketed Gems are Supported by Level 18 Inspiration" }, } },
+ ["SpellDamageOnWeaponReducedManaUber3__"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Inspiration", "(84-87)% increased Spell Damage", statOrder = { 494, 1223 }, level = 80, group = "WeaponSpellDamageReducedMana", weightKey = { "grants_2h_support", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(84-87)% increased Spell Damage" }, [1866911844] = { "Socketed Gems are Supported by Level 20 Inspiration" }, } },
+ ["SpellDamageOnWeaponPowerChargeOnCritUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(67-78)% increased Spell Damage", statOrder = { 356, 1223 }, level = 68, group = "WeaponSpellDamagePowerChargeOnCrit", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(67-78)% increased Spell Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike" }, } },
+ ["SpellDamageOnWeaponPowerChargeOnCritUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(79-83)% increased Spell Damage", statOrder = { 356, 1223 }, level = 75, group = "WeaponSpellDamagePowerChargeOnCrit", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(79-83)% increased Spell Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike" }, } },
+ ["SpellDamageOnWeaponPowerChargeOnCritUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(84-87)% increased Spell Damage", statOrder = { 356, 1223 }, level = 80, group = "WeaponSpellDamagePowerChargeOnCrit", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(84-87)% increased Spell Damage" }, [4015918489] = { "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike" }, } },
+ ["ElementalDamagePrefixOnWeaponElementalFocusUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Elemental Focus", "(45-52)% increased Elemental Damage", statOrder = { 267, 1980 }, level = 68, group = "ElementalDamagePrefixElementalFocus", weightKey = { "sceptre_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "gem" }, tradeHashes = { [1169422227] = { "Socketed Gems are Supported by Level 16 Elemental Focus" }, [3141070085] = { "(45-52)% increased Elemental Damage" }, } },
+ ["ElementalDamagePrefixOnWeaponElementalFocusUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Elemental Focus", "(53-56)% increased Elemental Damage", statOrder = { 267, 1980 }, level = 75, group = "ElementalDamagePrefixElementalFocus", weightKey = { "sceptre_shaper", "default", }, weightVal = { 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "gem" }, tradeHashes = { [1169422227] = { "Socketed Gems are Supported by Level 18 Elemental Focus" }, [3141070085] = { "(53-56)% increased Elemental Damage" }, } },
+ ["ElementalDamagePrefixOnWeaponElementalFocusUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Elemental Focus", "(57-60)% increased Elemental Damage", statOrder = { 267, 1980 }, level = 80, group = "ElementalDamagePrefixElementalFocus", weightKey = { "sceptre_shaper", "default", }, weightVal = { 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "gem" }, tradeHashes = { [1169422227] = { "Socketed Gems are Supported by Level 20 Elemental Focus" }, [3141070085] = { "(57-60)% increased Elemental Damage" }, } },
+ ["FireDamagePrefixOnWeaponFirePenetrationUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Fire Penetration", "(45-52)% increased Fire Damage", statOrder = { 277, 1357 }, level = 68, group = "FireDamagePrefixFirePenetration", weightKey = { "sceptre_elder", "wand_elder", "default", }, weightVal = { 400, 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [3962278098] = { "(45-52)% increased Fire Damage" }, [1979658770] = { "Socketed Gems are Supported by Level 16 Fire Penetration" }, } },
+ ["FireDamagePrefixOnWeaponFirePenetrationUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Fire Penetration", "(53-56)% increased Fire Damage", statOrder = { 277, 1357 }, level = 75, group = "FireDamagePrefixFirePenetration", weightKey = { "sceptre_elder", "wand_elder", "default", }, weightVal = { 200, 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [3962278098] = { "(53-56)% increased Fire Damage" }, [1979658770] = { "Socketed Gems are Supported by Level 18 Fire Penetration" }, } },
+ ["FireDamagePrefixOnWeaponFirePenetrationUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fire Penetration", "(57-60)% increased Fire Damage", statOrder = { 277, 1357 }, level = 80, group = "FireDamagePrefixFirePenetration", weightKey = { "sceptre_elder", "wand_elder", "default", }, weightVal = { 100, 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [3962278098] = { "(57-60)% increased Fire Damage" }, [1979658770] = { "Socketed Gems are Supported by Level 20 Fire Penetration" }, } },
+ ["ColdDamagePrefixOnWeaponColdPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Cold Penetration", "(45-52)% increased Cold Damage", statOrder = { 513, 1366 }, level = 68, group = "ColdDamagePrefixColdPenetration", weightKey = { "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "cold", "gem" }, tradeHashes = { [3291658075] = { "(45-52)% increased Cold Damage" }, [1991958615] = { "Socketed Gems are Supported by Level 16 Cold Penetration" }, } },
+ ["ColdDamagePrefixOnWeaponColdPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cold Penetration", "(53-56)% increased Cold Damage", statOrder = { 513, 1366 }, level = 75, group = "ColdDamagePrefixColdPenetration", weightKey = { "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "cold", "gem" }, tradeHashes = { [3291658075] = { "(53-56)% increased Cold Damage" }, [1991958615] = { "Socketed Gems are Supported by Level 18 Cold Penetration" }, } },
+ ["ColdDamagePrefixOnWeaponColdPenetrationUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cold Penetration", "(57-60)% increased Cold Damage", statOrder = { 513, 1366 }, level = 80, group = "ColdDamagePrefixColdPenetration", weightKey = { "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "cold", "gem" }, tradeHashes = { [3291658075] = { "(57-60)% increased Cold Damage" }, [1991958615] = { "Socketed Gems are Supported by Level 20 Cold Penetration" }, } },
+ ["LightningDamagePrefixOnWeaponLightningPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Lightning Penetration", "(45-52)% increased Lightning Damage", statOrder = { 326, 1377 }, level = 68, group = "LightningDamagePrefixLightningPenetration", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "gem" }, tradeHashes = { [3354027870] = { "Socketed Gems are Supported by Level 16 Lightning Penetration" }, [2231156303] = { "(45-52)% increased Lightning Damage" }, } },
+ ["LightningDamagePrefixOnWeaponLightningPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Lightning Penetration", "(53-56)% increased Lightning Damage", statOrder = { 326, 1377 }, level = 75, group = "LightningDamagePrefixLightningPenetration", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "gem" }, tradeHashes = { [3354027870] = { "Socketed Gems are Supported by Level 18 Lightning Penetration" }, [2231156303] = { "(53-56)% increased Lightning Damage" }, } },
+ ["LightningDamagePrefixOnWeaponLightningPenetrationUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Lightning Penetration", "(57-60)% increased Lightning Damage", statOrder = { 326, 1377 }, level = 80, group = "LightningDamagePrefixLightningPenetration", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "gem" }, tradeHashes = { [3354027870] = { "Socketed Gems are Supported by Level 20 Lightning Penetration" }, [2231156303] = { "(57-60)% increased Lightning Damage" }, } },
+ ["IncreasedCastSpeedSpellEchoUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Echo", "(15-17)% increased Cast Speed", statOrder = { 341, 1446 }, level = 68, group = "IncreasedCastSpeedSpellEcho", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [913919528] = { "Socketed Gems are Supported by Level 18 Spell Echo" }, [2891184298] = { "(15-17)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedSpellEchoUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Echo", "(18-20)% increased Cast Speed", statOrder = { 341, 1446 }, level = 75, group = "IncreasedCastSpeedSpellEcho", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [913919528] = { "Socketed Gems are Supported by Level 20 Spell Echo" }, [2891184298] = { "(18-20)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedFasterCastingUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Casting", "(15-17)% increased Cast Speed", statOrder = { 500, 1446 }, level = 68, group = "IncreasedCastSpeedFasterCasting", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 18 Faster Casting" }, [2891184298] = { "(15-17)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedFasterCastingUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Casting", "(18-20)% increased Cast Speed", statOrder = { 500, 1446 }, level = 75, group = "IncreasedCastSpeedFasterCasting", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 20 Faster Casting" }, [2891184298] = { "(18-20)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedTwoHandedAvoidInterruptionUber1"] = { type = "Suffix", affix = "of the Elder", "(15-17)% increased Cast Speed", "(15-25)% chance to Ignore Stuns while Casting", statOrder = { 1446, 1898 }, level = 68, group = "IncreasedCastSpeedTwoHandedAvoidInterruption", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [1916706958] = { "(15-25)% chance to Ignore Stuns while Casting" }, [2891184298] = { "(15-17)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedTwoHandedAvoidInterruptionUber2"] = { type = "Suffix", affix = "of the Elder", "(18-20)% increased Cast Speed", "(26-35)% chance to Ignore Stuns while Casting", statOrder = { 1446, 1898 }, level = 75, group = "IncreasedCastSpeedTwoHandedAvoidInterruption", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [1916706958] = { "(26-35)% chance to Ignore Stuns while Casting" }, [2891184298] = { "(18-20)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedTwoHandedKilledRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(15-17)% increased Cast Speed", "20% increased Cast Speed if you've Killed Recently", statOrder = { 1446, 5467 }, level = 68, group = "IncreasedCastSpeedTwoHandedKilledRecently", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [2072625596] = { "20% increased Cast Speed if you've Killed Recently" }, [2891184298] = { "(15-17)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedTwoHandedKilledRecentlyUber2"] = { type = "Suffix", affix = "of Shaping", "(18-20)% increased Cast Speed", "20% increased Cast Speed if you've Killed Recently", statOrder = { 1446, 5467 }, level = 75, group = "IncreasedCastSpeedTwoHandedKilledRecently", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [2072625596] = { "20% increased Cast Speed if you've Killed Recently" }, [2891184298] = { "(18-20)% increased Cast Speed" }, } },
+ ["CriticalStrikeChanceSpellsSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Increased Critical Strikes", "(60-74)% increased Spell Critical Strike Chance", statOrder = { 313, 1458 }, level = 68, group = "CriticalStrikeChanceSpellsSupported", weightKey = { "grants_crit_chance_support", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "critical", "gem" }, tradeHashes = { [2259700079] = { "Socketed Gems are Supported by Level 18 Increased Critical Strikes" }, [737908626] = { "(60-74)% increased Spell Critical Strike Chance" }, } },
+ ["CriticalStrikeChanceSpellsSupportedUber2__"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", "(75-82)% increased Spell Critical Strike Chance", statOrder = { 313, 1458 }, level = 75, group = "CriticalStrikeChanceSpellsSupported", weightKey = { "grants_crit_chance_support", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "critical", "gem" }, tradeHashes = { [2259700079] = { "Socketed Gems are Supported by Level 20 Increased Critical Strikes" }, [737908626] = { "(75-82)% increased Spell Critical Strike Chance" }, } },
+ ["CriticalStrikeChanceSpellsTwoHandedPowerChargeUber1"] = { type = "Suffix", affix = "of Shaping", "(60-74)% increased Spell Critical Strike Chance", "10% chance to gain a Power Charge on Critical Strike", statOrder = { 1458, 1830 }, level = 68, group = "CriticalStrikeChanceSpellsTwoHandedPowerCharge", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "power_charge", "influence_mod", "caster", "critical" }, tradeHashes = { [3814876985] = { "10% chance to gain a Power Charge on Critical Strike" }, [737908626] = { "(60-74)% increased Spell Critical Strike Chance" }, } },
+ ["CriticalStrikeChanceSpellsTwoHandedPowerChargeUber2"] = { type = "Suffix", affix = "of Shaping", "(75-82)% increased Spell Critical Strike Chance", "10% chance to gain a Power Charge on Critical Strike", statOrder = { 1458, 1830 }, level = 75, group = "CriticalStrikeChanceSpellsTwoHandedPowerCharge", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "power_charge", "influence_mod", "caster", "critical" }, tradeHashes = { [3814876985] = { "10% chance to gain a Power Charge on Critical Strike" }, [737908626] = { "(75-82)% increased Spell Critical Strike Chance" }, } },
+ ["ChanceToFreezeShockIgniteProliferationUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Elemental Proliferation", "(5-7)% chance to Freeze, Shock and Ignite", statOrder = { 466, 2801 }, level = 68, group = "ChanceToFreezeShockIgniteProliferation", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, tradeHashes = { [800141891] = { "(5-7)% chance to Freeze, Shock and Ignite" }, [2929101122] = { "Socketed Gems are Supported by Level 18 Elemental Proliferation" }, } },
+ ["ChanceToFreezeShockIgniteProliferationUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Elemental Proliferation", "(8-10)% chance to Freeze, Shock and Ignite", statOrder = { 466, 2801 }, level = 75, group = "ChanceToFreezeShockIgniteProliferation", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, tradeHashes = { [800141891] = { "(8-10)% chance to Freeze, Shock and Ignite" }, [2929101122] = { "Socketed Gems are Supported by Level 20 Elemental Proliferation" }, } },
+ ["ChanceToFreezeShockIgniteUnboundAilmentsUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Unbound Ailments", "(5-7)% chance to Freeze, Shock and Ignite", statOrder = { 393, 2801 }, level = 68, group = "ChanceToFreezeShockIgniteUnboundAilments", weightKey = { "sceptre_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, tradeHashes = { [800141891] = { "(5-7)% chance to Freeze, Shock and Ignite" }, [3699494172] = { "Socketed Gems are Supported by Level 18 Unbound Ailments" }, } },
+ ["ChanceToFreezeShockIgniteUnboundAilmentsUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Unbound Ailments", "(8-10)% chance to Freeze, Shock and Ignite", statOrder = { 393, 2801 }, level = 75, group = "ChanceToFreezeShockIgniteUnboundAilments", weightKey = { "sceptre_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, tradeHashes = { [800141891] = { "(8-10)% chance to Freeze, Shock and Ignite" }, [3699494172] = { "Socketed Gems are Supported by Level 20 Unbound Ailments" }, } },
+ ["PoisonDamageWeaponSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Chance to Poison", "(19-23)% increased Damage with Poison", statOrder = { 523, 3181 }, level = 68, group = "PoisonDamageWeaponSupported", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 18 Chance to Poison" }, [1290399200] = { "(19-23)% increased Damage with Poison" }, } },
+ ["PoisonDamageWeaponSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Chance to Poison", "(24-26)% increased Damage with Poison", statOrder = { 523, 3181 }, level = 75, group = "PoisonDamageWeaponSupported", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 20 Chance to Poison" }, [1290399200] = { "(24-26)% increased Damage with Poison" }, } },
+ ["PoisonDurationWeaponSupportedUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Critical Strike Affliction", "(6-9)% increased Poison Duration", statOrder = { 355, 3170 }, level = 68, group = "PoisonDurationWeaponSupported", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, tradeHashes = { [2011656677] = { "(6-9)% increased Poison Duration" }, [2228279620] = { "Socketed Gems are Supported by Level 18 Critical Strike Affliction" }, } },
+ ["PoisonDurationWeaponSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Critical Strike Affliction", "(10-14)% increased Poison Duration", statOrder = { 355, 3170 }, level = 75, group = "PoisonDurationWeaponSupported", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, tradeHashes = { [2011656677] = { "(10-14)% increased Poison Duration" }, [2228279620] = { "Socketed Gems are Supported by Level 20 Critical Strike Affliction" }, } },
+ ["SupportedByIncreasedAreaOfEffectDamageUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Increased Area of Effect", "(23-27)% increased Area Damage", statOrder = { 224, 2035 }, level = 68, group = "SupportedByIncreasedAreaOfEffectDamage", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(23-27)% increased Area Damage" }, [3720936304] = { "Socketed Gems are Supported by Level 16 Increased Area of Effect" }, } },
+ ["SupportedByIncreasedAreaOfEffectDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Increased Area of Effect", "(28-32)% increased Area Damage", statOrder = { 224, 2035 }, level = 75, group = "SupportedByIncreasedAreaOfEffectDamage", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(28-32)% increased Area Damage" }, [3720936304] = { "Socketed Gems are Supported by Level 18 Increased Area of Effect" }, } },
+ ["SupportedByIncreasedAreaOfEffectDamageUber3_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Increased Area of Effect", "(33-37)% increased Area Damage", statOrder = { 224, 2035 }, level = 80, group = "SupportedByIncreasedAreaOfEffectDamage", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(33-37)% increased Area Damage" }, [3720936304] = { "Socketed Gems are Supported by Level 20 Increased Area of Effect" }, } },
+ ["SupportedBySpellCascadeAreaUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Spell Cascade", "(5-8)% increased Area of Effect", statOrder = { 379, 1880 }, level = 68, group = "SupportedBySpellCascadeArea", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [503990161] = { "Socketed Gems are Supported by Level 16 Spell Cascade" }, [280731498] = { "(5-8)% increased Area of Effect" }, } },
+ ["SupportedBySpellCascadeAreaUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Spell Cascade", "(9-12)% increased Area of Effect", statOrder = { 379, 1880 }, level = 75, group = "SupportedBySpellCascadeArea", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [503990161] = { "Socketed Gems are Supported by Level 18 Spell Cascade" }, [280731498] = { "(9-12)% increased Area of Effect" }, } },
+ ["SupportedBySpellCascadeAreaUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Spell Cascade", "(13-15)% increased Area of Effect", statOrder = { 379, 1880 }, level = 80, group = "SupportedBySpellCascadeArea", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [503990161] = { "Socketed Gems are Supported by Level 20 Spell Cascade" }, [280731498] = { "(13-15)% increased Area of Effect" }, } },
+ ["SupportedByLesserMultipleProjectilesDamageUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Multiple Projectiles", "(15-20)% increased Projectile Damage", statOrder = { 505, 1996 }, level = 68, group = "SupportedByLesserMultipleProjectilesDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [584144941] = { "Socketed Gems are Supported by Level 16 Multiple Projectiles" }, [1839076647] = { "(15-20)% increased Projectile Damage" }, } },
+ ["SupportedByLesserMultipleProjectilesDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Multiple Projectiles", "(21-25)% increased Projectile Damage", statOrder = { 505, 1996 }, level = 75, group = "SupportedByLesserMultipleProjectilesDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [584144941] = { "Socketed Gems are Supported by Level 18 Multiple Projectiles" }, [1839076647] = { "(21-25)% increased Projectile Damage" }, } },
+ ["SupportedByLesserMultipleProjectilesDamageUber3_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Multiple Projectiles", "(26-30)% increased Projectile Damage", statOrder = { 505, 1996 }, level = 80, group = "SupportedByLesserMultipleProjectilesDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [584144941] = { "Socketed Gems are Supported by Level 20 Multiple Projectiles" }, [1839076647] = { "(26-30)% increased Projectile Damage" }, } },
+ ["SupportedByVolleySpeedUber1__"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Volley", "(15-18)% increased Projectile Speed", statOrder = { 350, 1796 }, level = 68, group = "SupportedByVolleySpeed", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [2696557965] = { "Socketed Gems are Supported by Level 16 Volley" }, [3759663284] = { "(15-18)% increased Projectile Speed" }, } },
+ ["SupportedByVolleySpeedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Volley", "(19-22)% increased Projectile Speed", statOrder = { 350, 1796 }, level = 75, group = "SupportedByVolleySpeed", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [2696557965] = { "Socketed Gems are Supported by Level 18 Volley" }, [3759663284] = { "(19-22)% increased Projectile Speed" }, } },
+ ["SupportedByVolleySpeedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Volley", "(23-25)% increased Projectile Speed", statOrder = { 350, 1796 }, level = 80, group = "SupportedByVolleySpeed", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [2696557965] = { "Socketed Gems are Supported by Level 20 Volley" }, [3759663284] = { "(23-25)% increased Projectile Speed" }, } },
+ ["ElementalDamagePercentAddedAsChaosUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (5-6)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 75, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (5-6)% of Elemental Damage as Extra Chaos Damage" }, } },
+ ["ElementalDamagePercentAddedAsChaosUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-8)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 85, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (7-8)% of Elemental Damage as Extra Chaos Damage" }, } },
+ ["ElementalDamagePercentAddedAsChaosStaffUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (10-12)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 75, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (10-12)% of Elemental Damage as Extra Chaos Damage" }, } },
+ ["ElementalDamagePercentAddedAsChaosStaffUber2__"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-15)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 85, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, tradeHashes = { [3495544060] = { "Gain (13-15)% of Elemental Damage as Extra Chaos Damage" }, } },
+ ["DisplaySocketedSkillsChainUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems Chain 1 additional times", statOrder = { 540 }, level = 85, group = "DisplaySocketedSkillsChain", weightKey = { "bow_shaper", "default", }, weightVal = { 200, 0 }, modTags = { "skill", "influence_mod", "gem" }, tradeHashes = { [2788729902] = { "Socketed Gems Chain 1 additional times" }, } },
+ ["SpellAddedPhysicalDamageWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (22-31) to (46-53) Physical Damage to Spells", statOrder = { 1403 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (22-31) to (46-53) Physical Damage to Spells" }, } },
+ ["SpellAddedPhysicalDamageWeaponUber2_"] = { type = "Prefix", affix = "The Elder's", "Adds (28-37) to (55-64) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (28-37) to (55-64) Physical Damage to Spells" }, } },
+ ["SpellAddedPhysicalDamageWeaponUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (32-44) to (66-76) Physical Damage to Spells", statOrder = { 1403 }, level = 84, group = "SpellAddedPhysicalDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (32-44) to (66-76) Physical Damage to Spells" }, } },
+ ["SpellAddedPhysicalDamageTwoHandWeaponUber1_"] = { type = "Prefix", affix = "The Elder's", "Adds (37-49) to (75-86) Physical Damage to Spells", statOrder = { 1403 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (37-49) to (75-86) Physical Damage to Spells" }, } },
+ ["SpellAddedPhysicalDamageTwoHandWeaponUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (44-58) to (88-103) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (44-58) to (88-103) Physical Damage to Spells" }, } },
+ ["SpellAddedPhysicalDamageTwoHandWeaponUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (60-73) to (108-122) Physical Damage to Spells", statOrder = { 1403 }, level = 84, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (60-73) to (108-122) Physical Damage to Spells" }, } },
+ ["SpellAddedChaosDamageWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (22-31) to (46-53) Chaos Damage to Spells", statOrder = { 1407 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (22-31) to (46-53) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageWeaponUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (28-37) to (55-64) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (28-37) to (55-64) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageWeaponUber3_"] = { type = "Prefix", affix = "The Elder's", "Adds (32-44) to (66-76) Chaos Damage to Spells", statOrder = { 1407 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (32-44) to (66-76) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageTwoHandWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (37-49) to (75-86) Chaos Damage to Spells", statOrder = { 1407 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (37-49) to (75-86) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageTwoHandWeaponUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (44-58) to (88-103) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (44-58) to (88-103) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageTwoHandWeaponUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (60-73) to (108-122) Chaos Damage to Spells", statOrder = { 1407 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (60-73) to (108-122) Chaos Damage to Spells" }, } },
+ ["SpellDamagePer16StrengthUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 16 Strength", statOrder = { 10156 }, level = 68, group = "SpellDamagePer16Strength", weightKey = { "sceptre_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [4249521944] = { "1% increased Spell Damage per 16 Strength" }, } },
+ ["SpellDamagePer16DexterityUber1__"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 16 Dexterity", statOrder = { 10154 }, level = 68, group = "SpellDamagePer16Dexterity", weightKey = { "rune_dagger_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2612056840] = { "1% increased Spell Damage per 16 Dexterity" }, } },
+ ["SpellDamagePer16IntelligenceUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 16 Intelligence", statOrder = { 10155 }, level = 68, group = "SpellDamagePer16Intelligence", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [3961014595] = { "1% increased Spell Damage per 16 Intelligence" }, } },
+ ["SpellDamagePer10StrengthUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 10 Strength", statOrder = { 10153 }, level = 68, group = "SpellDamagePer10Strength", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [1073314277] = { "1% increased Spell Damage per 10 Strength" }, } },
+ ["SpellDamagePer10IntelligenceUber1_"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2738 }, level = 68, group = "SpellDamagePer10Intelligence", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2818518881] = { "1% increased Spell Damage per 10 Intelligence" }, } },
+ ["MaximumEnduranceChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 84, group = "MaximumEnduranceCharges", weightKey = { "2h_mace_shaper", "2h_sword_shaper", "2h_axe_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } },
+ ["MaximumFrenzyChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 84, group = "MaximumFrenzyCharges", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } },
+ ["MaximumPowerChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 84, group = "IncreasedMaximumPowerCharges", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } },
+ ["PowerChargeOnBlockUber1"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "25% chance to gain a Power Charge when you Block", statOrder = { 1151, 4270 }, level = 68, group = "PowerChargeOnBlockUber", weightKey = { "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block", "power_charge", "influence_mod" }, tradeHashes = { [1001829678] = { "+5% Chance to Block Attack Damage while wielding a Staff" }, [3945147290] = { "25% chance to gain a Power Charge when you Block" }, } },
+ ["CriticalStrikeMultiplierIfBlockedRecentlyUber1_"] = { type = "Suffix", affix = "of Shaping", "+5% Chance to Block Attack Damage while wielding a Staff", "+(35-45)% to Critical Strike Multiplier if you have Blocked Recently", statOrder = { 1151, 5963 }, level = 68, group = "CriticalStrikeMultiplierIfBlockedRecentlyUber", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block", "influence_mod", "damage", "critical" }, tradeHashes = { [3527458221] = { "+(35-45)% to Critical Strike Multiplier if you have Blocked Recently" }, [1001829678] = { "+5% Chance to Block Attack Damage while wielding a Staff" }, } },
+ ["BlockingBlocksSpellsUber1"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "(12-18)% Chance to Block Spell Damage", statOrder = { 1151, 1155 }, level = 68, group = "BlockingBlocksSpellsUber", weightKey = { "staff_elder", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [1001829678] = { "+5% Chance to Block Attack Damage while wielding a Staff" }, [2881111359] = { "(12-18)% Chance to Block Spell Damage" }, } },
+ ["SpellBlockStaffUber1_"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "(8-12)% Chance to Block Spell Damage", statOrder = { 1151, 1160 }, level = 68, group = "SpellBlockAndBlockUber", weightKey = { "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(8-12)% Chance to Block Spell Damage" }, [1001829678] = { "+5% Chance to Block Attack Damage while wielding a Staff" }, } },
+ ["CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "+(15-25)% to Global Critical Strike Multiplier", "(80-100)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 1488, 5927 }, level = 68, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(15-25)% to Global Critical Strike Multiplier" }, [2856328513] = { "(80-100)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently" }, } },
+ ["PowerChargeOnManaSpentUber1"] = { type = "Suffix", affix = "of Shaping", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7892 }, level = 68, group = "PowerChargeOnManaSpent", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [3269060224] = { "Gain a Power Charge after Spending a total of 200 Mana" }, } },
+ ["IncreasedDamagePerPowerChargeUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% increased Damage per Power Charge", statOrder = { 6066 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(5-10)% increased Damage per Power Charge" }, } },
+ ["ProjectileDamagePerEnemyPiercedUber1_"] = { type = "Suffix", affix = "of Shaping", "Projectiles deal (20-30)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9734 }, level = 68, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (20-30)% increased Damage with Hits and Ailments for each Enemy Pierced" }, } },
+ ["IncreaseProjectileAttackDamagePerAccuracyUber1"] = { type = "Suffix", affix = "of the Elder", "1% increased Projectile Attack Damage per 200 Accuracy Rating", statOrder = { 4308 }, level = 68, group = "IncreaseProjectileAttackDamagePerAccuracy", weightKey = { "bow_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [4157767905] = { "1% increased Projectile Attack Damage per 200 Accuracy Rating" }, } },
+ ["CriticalStrikeChanceAgainstPoisonedEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(80-100)% increased Critical Strike Chance against Poisoned Enemies", statOrder = { 3292 }, level = 68, group = "CriticalStrikeChanceAgainstPoisonedEnemies", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [1345659139] = { "(80-100)% increased Critical Strike Chance against Poisoned Enemies" }, } },
+ ["CriticalStrikeMultiplierAgainstEnemiesOnFullLifeUber1"] = { type = "Suffix", affix = "of Shaping", "+(50-60)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrder = { 3433 }, level = 68, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [2355615476] = { "+(50-60)% to Critical Strike Multiplier against Enemies that are on Full Life" }, } },
+ ["GainRareMonsterModsOnKillChanceUber1"] = { type = "Suffix", affix = "of the Elder", "When you Kill a Rare Monster, (15-20)% chance to gain one of its Modifiers for 10 seconds", statOrder = { 6696 }, level = 68, group = "GainRareMonsterModsOnKillChance", weightKey = { "claw_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2736829661] = { "When you Kill a Rare Monster, (15-20)% chance to gain one of its Modifiers for 10 seconds" }, } },
+ ["EnemiesHaveReducedEvasionIfHitRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "Enemies have 20% reduced Evasion if you have Hit them Recently", statOrder = { 6417 }, level = 68, group = "EnemiesHaveReducedEvasionIfHitRecently", weightKey = { "claw_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [1773891268] = { "Enemies have 20% reduced Evasion if you have Hit them Recently" }, } },
+ ["LifeGainPerBlindedEnemyHitUber1"] = { type = "Suffix", affix = "of the Elder", "Gain (35-50) Life per Blinded Enemy Hit with this Weapon", statOrder = { 7984 }, level = 68, group = "LifeGainPerBlindedEnemyHit", weightKey = { "claw_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, tradeHashes = { [1649099067] = { "Gain (35-50) Life per Blinded Enemy Hit with this Weapon" }, } },
+ ["CriticalChanceAgainstBlindedEnemiesUber1_"] = { type = "Suffix", affix = "of Shaping", "(80-100)% increased Critical Strike Chance against Blinded Enemies", statOrder = { 3406 }, level = 68, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { "claw_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [1939202111] = { "(80-100)% increased Critical Strike Chance against Blinded Enemies" }, } },
+ ["AdditionalBlockChancePerEnduranceChargeUber1_"] = { type = "Suffix", affix = "of the Elder", "(20-25)% chance to gain an Endurance Charge when you Block", "+1% Chance to Block Attack Damage per Endurance Charge", statOrder = { 2124, 4542 }, level = 68, group = "AdditionalBlockChancePerEnduranceChargeUber", weightKey = { "sword_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "block", "endurance_charge", "influence_mod" }, tradeHashes = { [417188801] = { "(20-25)% chance to gain an Endurance Charge when you Block" }, [3039589351] = { "+1% Chance to Block Attack Damage per Endurance Charge" }, } },
+ ["AccuracyRatingPerFrenzyChargeUber1"] = { type = "Suffix", affix = "of Shaping", "5% increased Accuracy Rating per Frenzy Charge", "(20-25)% chance to gain a Frenzy Charge when you Block", statOrder = { 2050, 5690 }, level = 68, group = "AccuracyRatingPerFrenzyChargeUber", weightKey = { "sword_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "block", "frenzy_charge", "influence_mod", "attack" }, tradeHashes = { [3700381193] = { "5% increased Accuracy Rating per Frenzy Charge" }, [3769211656] = { "(20-25)% chance to gain a Frenzy Charge when you Block" }, } },
+ ["MovementSkillsCostNoManaUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Movement Skills Cost no Mana", statOrder = { 560 }, level = 68, group = "DisplayMovementSkillsCostNoMana", weightKey = { "2h_sword_shaper", "sword_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "skill", "resource", "influence_mod", "mana", "gem" }, tradeHashes = { [3263216405] = { "Socketed Movement Skills Cost no Mana" }, } },
+ ["GainEnduranceChargeWhileStationaryUber1"] = { type = "Suffix", affix = "of the Elder", "Gain an Endurance Charge every 4 seconds while Stationary", statOrder = { 9532 }, level = 68, group = "GainEnduranceChargeWhileStationary", weightKey = { "2h_sword_elder", "sword_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [2156210979] = { "Gain an Endurance Charge every 4 seconds while Stationary" }, } },
+ ["CullingStrikeOnBleedingEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(30-49)% increased Physical Damage", "Hits with this Weapon have Culling Strike against Bleeding Enemies", statOrder = { 1232, 7884 }, level = 68, group = "CullingStrikeOnBleedingEnemiesUber", weightKey = { "2h_axe_elder", "axe_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [2558253923] = { "Hits with this Weapon have Culling Strike against Bleeding Enemies" }, [1805374733] = { "(30-49)% increased Physical Damage" }, } },
+ ["GainEnduranceChargeOnHittingBleedingEnemyUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% chance to gain an Endurance Charge when you Hit a Bleeding Enemy", statOrder = { 5686 }, level = 68, group = "GainEnduranceChargeOnHittingBleedingEnemy", weightKey = { "axe_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1536266147] = { "(5-10)% chance to gain an Endurance Charge when you Hit a Bleeding Enemy" }, } },
+ ["GainEnduranceChargeOnCritUber1"] = { type = "Suffix", affix = "of Shaping", "(15-20)% increased Critical Strike Chance", "(5-10)% chance to gain an Endurance Charge on Critical Strike", statOrder = { 1464, 1819 }, level = 68, group = "GainEnduranceChargeOnCritUber", weightKey = { "2h_axe_shaper", "axe_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod", "attack", "critical" }, tradeHashes = { [2375316951] = { "(15-20)% increased Critical Strike Chance" }, [2542650946] = { "(5-10)% chance to gain an Endurance Charge on Critical Strike" }, } },
+ ["CriticalStrikeChanceIfKilledRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(80-100)% increased Critical Strike Chance if you have Killed Recently", statOrder = { 5925 }, level = 68, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "axe_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [3914638685] = { "(80-100)% increased Critical Strike Chance if you have Killed Recently" }, } },
+ ["EnemiesExplodeOnDeathDealingFireUber1"] = { type = "Suffix", affix = "of Shaping", "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage", statOrder = { 2706 }, level = 68, group = "EnemiesExplodeOnDeath", weightKey = { "2h_mace_shaper", "mace_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3457687358] = { "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage" }, } },
+ ["GainFortifyOnStunChanceUber1"] = { type = "Suffix", affix = "of Shaping", "Melee Hits which Stun have (10-20)% chance to Fortify", statOrder = { 5678 }, level = 68, group = "GainFortifyOnStunChance", weightKey = { "mace_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3206381437] = { "Melee Hits which Stun have (10-20)% chance to Fortify" }, } },
+ ["AreaOfEffectPer50StrengthUber1"] = { type = "Suffix", affix = "of the Elder", "3% increased Area of Effect per 50 Strength", statOrder = { 4731 }, level = 68, group = "AreaOfEffectPer50Strength", weightKey = { "mace_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2611023406] = { "3% increased Area of Effect per 50 Strength" }, } },
+ ["AreaOfEffectIfStunnedEnemyRecentlyUber1___"] = { type = "Suffix", affix = "of the Elder", "(25-35)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4728 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_elder", "mace_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [430248187] = { "(25-35)% increased Area of Effect if you have Stunned an Enemy Recently" }, } },
+ ["MeleeWeaponRangeIfKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "+(0.1-0.2) metres to Melee Strike Range if you have Killed Recently", statOrder = { 9212 }, level = 68, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "2h_sword_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3255961830] = { "+(0.1-0.2) metres to Melee Strike Range if you have Killed Recently" }, } },
+ ["MovementSkillsFortifyOnHitChanceUber1"] = { type = "Suffix", affix = "of Shaping", "Hits with Melee Movement Skills have (30-50)% chance to Fortify", statOrder = { 9194 }, level = 68, group = "MovementSkillsFortifyOnHitChance", weightKey = { "2h_sword_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [59547568] = { "Hits with Melee Movement Skills have (30-50)% chance to Fortify" }, } },
+ ["GainEnduranceChargeOnTauntingEnemiesUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-30)% chance to gain an Endurance Charge when you Taunt an Enemy", statOrder = { 5688 }, level = 68, group = "GainEnduranceChargeOnTauntingEnemies", weightKey = { "2h_axe_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1657549833] = { "(15-30)% chance to gain an Endurance Charge when you Taunt an Enemy" }, } },
+ ["RemoveBleedingOnWarcryUber1"] = { type = "Suffix", affix = "of the Elder", "Removes Bleeding when you use a Warcry", statOrder = { 9902 }, level = 68, group = "RemoveBleedingOnWarcry", weightKey = { "2h_axe_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, tradeHashes = { [3936926420] = { "Removes Bleeding when you use a Warcry" }, } },
+ ["AreaOfEffectPerEnduranceChargeUber1"] = { type = "Suffix", affix = "of the Elder", "5% increased Area of Effect per Endurance Charge", statOrder = { 4733 }, level = 68, group = "AreaOfEffectPerEnduranceCharge", weightKey = { "2h_mace_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2448279015] = { "5% increased Area of Effect per Endurance Charge" }, } },
+ ["StunDurationAndThresholdUber1"] = { type = "Suffix", affix = "of Shaping", "(20-30)% reduced Enemy Stun Threshold", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1517, 1863 }, level = 68, group = "StunDurationAndThresholdUber", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2517001139] = { "(20-30)% increased Stun Duration on Enemies" }, [1443060084] = { "(20-30)% reduced Enemy Stun Threshold" }, } },
+ ["PhysicalDamageAddedAsRandomElementUber1"] = { type = "Suffix", affix = "of Shaping", "Gain (7-9)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 68, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (7-9)% of Physical Damage as Extra Damage of a random Element" }, } },
+ ["PhysicalDamageAddedAsRandomElementUber2"] = { type = "Suffix", affix = "of Shaping", "Gain (10-12)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 75, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (10-12)% of Physical Damage as Extra Damage of a random Element" }, } },
+ ["PhysicalDamageAddedAsRandomElementUber3"] = { type = "Suffix", affix = "of Shaping", "Gain (13-15)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 80, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (13-15)% of Physical Damage as Extra Damage of a random Element" }, } },
+ ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 695 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [1265282021] = { "Grants Level 20 Aspect of the Cat Skill" }, } },
+ ["GrantsBirdAspectCrafted"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 690 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [3914740665] = { "Grants Level 20 Aspect of the Avian Skill" }, } },
+ ["GrantsSpiderAspectCrafted"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 720 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 20 Aspect of the Spider Skill" }, } },
+ ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 697 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 20 Aspect of the Crab Skill" }, } },
+ ["GrantsCatAspectCrafted30"] = { type = "Suffix", affix = "of Farrul", "Grants Level 30 Aspect of the Cat Skill", statOrder = { 695 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [1265282021] = { "Grants Level 30 Aspect of the Cat Skill" }, } },
+ ["GrantsBirdAspectCrafted30"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 30 Aspect of the Avian Skill", statOrder = { 690 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [3914740665] = { "Grants Level 30 Aspect of the Avian Skill" }, } },
+ ["GrantsSpiderAspectCrafted30"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 30 Aspect of the Spider Skill", statOrder = { 720 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 30 Aspect of the Spider Skill" }, } },
+ ["GrantsCrabAspectCrafted30"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 30 Aspect of the Crab Skill", statOrder = { 697 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 30 Aspect of the Crab Skill" }, } },
+ ["LocalIncreaseSocketedMinionGemLevelDelve"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 60, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } },
+ ["MaximumMinionCountZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "" }, [125218179] = { "" }, } },
+ ["MaximumMinionCountSkeletonDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrder = { 2162 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } },
+ ["MaximumMinionCountSpectreDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Spectres", statOrder = { 2161 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } },
+ ["MinionDamageDelve"] = { type = "Suffix", affix = "of the Underground", "Minions deal (25-35)% increased Damage", statOrder = { 1973 }, level = 60, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (25-35)% increased Damage" }, } },
+ ["MaximumMinionCountAmuletZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "+1 to maximum number of Raised Zombies" }, [2428829184] = { "" }, [125218179] = { "" }, } },
+ ["MaximumMinionCountAmuletSkeletonDelve__"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrder = { 2162 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } },
+ ["ReducedManaReservationsCostDelve_"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 60, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "10% increased Mana Reservation Efficiency of Skills" }, } },
+ ["LocalIncreaseSocketedAuraLevelDelve"] = { type = "Suffix", affix = "of the Underground", "+2 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 60, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } },
+ ["ReducedPhysicalDamageTakenDelve"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 60, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } },
+ ["BleedingDamageChanceDelve__"] = { type = "Suffix", affix = "of the Underground", "Attacks have 25% chance to cause Bleeding", "(30-50)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 60, group = "BleedingDamageChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(30-50)% increased Damage with Bleeding" }, [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } },
+ ["CorruptedBloodImmunityDelve"] = { type = "Suffix", affix = "of the Underground", "Corrupted Blood cannot be inflicted on you", statOrder = { 5408 }, level = 60, group = "CorruptedBloodImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } },
+ ["DoubleDamageChanceDelve"] = { type = "Suffix", affix = "of the Underground", "10% chance to deal Double Damage", statOrder = { 5659 }, level = 60, group = "DoubleDamageChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1172810729] = { "10% chance to deal Double Damage" }, } },
+ ["SpellAddedPhysicalDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Global Physical Damage", "Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1231, 1403 }, level = 60, group = "SpellAddedPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (11-15) to (23-26) Physical Damage to Spells" }, [1310194496] = { "(20-40)% increased Global Physical Damage" }, } },
+ ["SpellAddedPhysicalDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Global Physical Damage", "Adds (15-20) to (30-35) Physical Damage to Spells", statOrder = { 1231, 1403 }, level = 60, group = "SpellAddedPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (15-20) to (30-35) Physical Damage to Spells" }, [1310194496] = { "(20-40)% increased Global Physical Damage" }, } },
+ ["CurseOnHitLevelVulnerabilityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Vulnerability on Hit", statOrder = { 2523 }, level = 60, group = "CurseOnHitLevelVulnerabilityMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3967845372] = { "Curse Enemies with Vulnerability on Hit" }, } },
+ ["PhysicalDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 60, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "0.4% of Physical Damage Leeched as Life" }, } },
+ ["PhysicalDamageTakenAsFireDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 60, group = "PhysicalDamageTakenAsFireUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } },
+ ["MaximumFireResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 60, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } },
+ ["FireDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Fire Damage taken", statOrder = { 2242 }, level = 60, group = "FireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3743301799] = { "(4-6)% reduced Fire Damage taken" }, } },
+ ["LocalFireDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (18-24) to (36-42) Fire Damage", statOrder = { 1357, 1362 }, level = 60, group = "LocalFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3962278098] = { "(20-40)% increased Fire Damage" }, [709508406] = { "Adds (18-24) to (36-42) Fire Damage" }, } },
+ ["LocalFireDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (31-42) to (64-74) Fire Damage", statOrder = { 1357, 1362 }, level = 60, group = "LocalFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3962278098] = { "(20-40)% increased Fire Damage" }, [709508406] = { "Adds (31-42) to (64-74) Fire Damage" }, } },
+ ["SpellAddedFireDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (14-20) to (29-34) Fire Damage to Spells", statOrder = { 1357, 1404 }, level = 60, group = "SpellAddedFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-20) to (29-34) Fire Damage to Spells" }, [3962278098] = { "(20-40)% increased Fire Damage" }, } },
+ ["SpellAddedFireDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (20-26) to (39-46) Fire Damage to Spells", statOrder = { 1357, 1404 }, level = 60, group = "SpellAddedFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-26) to (39-46) Fire Damage to Spells" }, [3962278098] = { "(20-40)% increased Fire Damage" }, } },
+ ["CurseOnHitLevelFlammabilityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Flammability on Hit", statOrder = { 2530 }, level = 60, group = "FlammabilityOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [338121249] = { "Curse Enemies with Flammability on Hit" }, } },
+ ["FireDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 60, group = "FireDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "0.4% of Fire Damage Leeched as Life" }, } },
+ ["PhysicalDamageTakenAsColdDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 60, group = "PhysicalDamageTakenAsColdUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "10% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["MaximumColdResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 60, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } },
+ ["ColdDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Cold Damage taken", statOrder = { 3389 }, level = 60, group = "ColdDamageTakenPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3303114033] = { "(4-6)% reduced Cold Damage taken" }, } },
+ ["LocalColdDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (15-20) to (30-35) Cold Damage", statOrder = { 1366, 1371 }, level = 60, group = "LocalColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (15-20) to (30-35) Cold Damage" }, [3291658075] = { "(20-40)% increased Cold Damage" }, } },
+ ["LocalColdDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (26-35) to (52-60) Cold Damage", statOrder = { 1366, 1371 }, level = 60, group = "LocalColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (26-35) to (52-60) Cold Damage" }, [3291658075] = { "(20-40)% increased Cold Damage" }, } },
+ ["SpellAddedColdDamageHybridDelve_"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (12-16) to (24-28) Cold Damage to Spells", statOrder = { 1366, 1405 }, level = 60, group = "SpellAddedColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3291658075] = { "(20-40)% increased Cold Damage" }, [2469416729] = { "Adds (12-16) to (24-28) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (18-24) to (36-42) Cold Damage to Spells", statOrder = { 1366, 1405 }, level = 60, group = "SpellAddedColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3291658075] = { "(20-40)% increased Cold Damage" }, [2469416729] = { "Adds (18-24) to (36-42) Cold Damage to Spells" }, } },
+ ["CurseOnHitLevelFrostbiteDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Frostbite on Hit", statOrder = { 2531 }, level = 60, group = "FrostbiteOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [426847518] = { "Curse Enemies with Frostbite on Hit" }, } },
+ ["ColdDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 60, group = "ColdDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "0.4% of Cold Damage Leeched as Life" }, } },
+ ["PhysicalDamageTakenAsLightningDelve_"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 60, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "10% of Physical Damage from Hits taken as Lightning Damage" }, } },
+ ["MaximumLightningResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 60, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } },
+ ["LightningDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Lightning Damage taken", statOrder = { 3388 }, level = 60, group = "LightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [1276918229] = { "(4-6)% reduced Lightning Damage taken" }, } },
+ ["LocalLightningDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-5) to (63-66) Lightning Damage", statOrder = { 1377, 1382 }, level = 60, group = "LocalLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2231156303] = { "(20-40)% increased Lightning Damage" }, [3336890334] = { "Adds (2-5) to (63-66) Lightning Damage" }, } },
+ ["LocalLightningDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-9) to (110-116) Lightning Damage", statOrder = { 1377, 1382 }, level = 60, group = "LocalLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2231156303] = { "(20-40)% increased Lightning Damage" }, [3336890334] = { "Adds (2-9) to (110-116) Lightning Damage" }, } },
+ ["SpellAddedLightningDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (1-4) to (50-53) Lightning Damage to Spells", statOrder = { 1377, 1406 }, level = 60, group = "SpellAddedLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (50-53) Lightning Damage to Spells" }, [2231156303] = { "(20-40)% increased Lightning Damage" }, } },
+ ["SpellAddedLightningDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-6) to (76-80) Lightning Damage to Spells", statOrder = { 1377, 1406 }, level = 60, group = "SpellAddedLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (76-80) Lightning Damage to Spells" }, [2231156303] = { "(20-40)% increased Lightning Damage" }, } },
+ ["CurseOnHitLevelConductivityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Conductivity on Hit", statOrder = { 2527 }, level = 60, group = "ConductivityOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [710372469] = { "Curse Enemies with Conductivity on Hit" }, } },
+ ["LightningDamageLifeLeechDelve__"] = { type = "Prefix", affix = "Subterranean", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 60, group = "LightningDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "0.4% of Lightning Damage Leeched as Life" }, } },
+ ["PhysicalDamageTakenAsChaosDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 60, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "10% of Physical Damage from Hits taken as Chaos Damage" }, } },
+ ["MaximumChaosResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 60, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } },
+ ["ChaosDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Chaos Damage taken", statOrder = { 2243 }, level = 60, group = "ChaosDamageTakenPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [2960683632] = { "(4-6)% reduced Chaos Damage taken" }, } },
+ ["LocalChaosDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (18-28) to (39-49) Chaos Damage", statOrder = { 1385, 1390 }, level = 60, group = "LocalChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [736967255] = { "(15-30)% increased Chaos Damage" }, [2223678961] = { "Adds (18-28) to (39-49) Chaos Damage" }, } },
+ ["LocalChaosDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (32-50) to (68-86) Chaos Damage", statOrder = { 1385, 1390 }, level = 60, group = "LocalChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [736967255] = { "(15-30)% increased Chaos Damage" }, [2223678961] = { "Adds (32-50) to (68-86) Chaos Damage" }, } },
+ ["SpellAddedChaosDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (11-15) to (23-26) Chaos Damage to Spells", statOrder = { 1385, 1407 }, level = 60, group = "SpellAddedChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [736967255] = { "(15-30)% increased Chaos Damage" }, [2300399854] = { "Adds (11-15) to (23-26) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (15-20) to (30-35) Chaos Damage to Spells", statOrder = { 1385, 1407 }, level = 60, group = "SpellAddedChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [736967255] = { "(15-30)% increased Chaos Damage" }, [2300399854] = { "Adds (15-20) to (30-35) Chaos Damage to Spells" }, } },
+ ["CurseOnHitLevelDespairDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 60, group = "CurseOnHitDespairMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } },
+ ["ChaosDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 60, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "0.4% of Chaos Damage Leeched as Life" }, } },
+ ["CurseEffectivenessDelve"] = { type = "Suffix", affix = "of the Underground", "(10-15)% increased Effect of your Curses", statOrder = { 2596 }, level = 60, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(10-15)% increased Effect of your Curses" }, } },
+ ["AdditionalCurseOnEnemiesDelve"] = { type = "Prefix", affix = "Subterranean", "You can apply an additional Curse", statOrder = { 2168 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } },
+ ["IncreaseSocketedCurseGemLevelDelve_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Curse Gems", statOrder = { 184 }, level = 60, group = "IncreaseSocketedCurseGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+2 to Level of Socketed Curse Gems" }, } },
+ ["CurseAreaOfEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(25-40)% increased Area of Effect of Hex Skills", statOrder = { 2225 }, level = 60, group = "CurseAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(25-40)% increased Area of Effect of Hex Skills" }, } },
+ ["CurseDurationDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Skills have (25-40)% increased Skill Effect Duration", statOrder = { 6000 }, level = 60, group = "CurseDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have (25-40)% increased Skill Effect Duration" }, } },
+ ["IncreasedDamagePerCurseDelve"] = { type = "Prefix", affix = "Subterranean", "(8-10)% increased Damage with Hits and Ailments per Curse on Enemy", statOrder = { 3015 }, level = 60, group = "IncreasedDamagePerCurse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1818773442] = { "(8-10)% increased Damage with Hits and Ailments per Curse on Enemy" }, } },
+ ["ManaRegenerationDelve"] = { type = "Suffix", affix = "of the Underground", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 60, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } },
+ ["PercentDamageGoesToManaDelve"] = { type = "Suffix", affix = "of the Underground", "(5-8)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 60, group = "PercentDamageGoesToMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [472520716] = { "(5-8)% of Damage taken Recouped as Mana" }, } },
+ ["AddedManaRegenerationDelve"] = { type = "Suffix", affix = "of the Underground", "Regenerate (3-5) Mana per second", statOrder = { 1582 }, level = 60, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (3-5) Mana per second" }, } },
+ ["MaximumManaIncreasePercentDelve_"] = { type = "Prefix", affix = "Subterranean", "(10-15)% increased maximum Mana", statOrder = { 1580 }, level = 60, group = "MaximumManaIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(10-15)% increased maximum Mana" }, } },
+ ["ImpaleChanceDelve__"] = { type = "Prefix", affix = "Subterranean", "(5-10)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 60, group = "AttackImpaleChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(5-10)% chance to Impale Enemies on Hit with Attacks" }, } },
+ ["FasterBleedDelve"] = { type = "Suffix", affix = "of the Underground", "Bleeding you inflict deals Damage (5-10)% faster", statOrder = { 6544 }, level = 60, group = "FasterBleedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (5-10)% faster" }, } },
+ ["AddedPhysicalSpellDamageDelve___"] = { type = "Prefix", affix = "Subterranean", "Adds (11-22) to (34-46) Physical Damage to Spells", statOrder = { 1403 }, level = 60, group = "SpellAddedPhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (11-22) to (34-46) Physical Damage to Spells" }, } },
+ ["LightningAilmentEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Effect of Lightning Ailments", statOrder = { 7433 }, level = 60, group = "LightningAilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "(15-25)% increased Effect of Lightning Ailments" }, } },
+ ["PhysicalDamageConvertedToLightningDelve"] = { type = "Prefix", affix = "Subterranean", "10% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 60, group = "ConvertPhysicalToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "10% of Physical Damage Converted to Lightning Damage" }, } },
+ ["ColdAilmentDurationDelve"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Duration of Cold Ailments", statOrder = { 5796 }, level = 60, group = "ColdAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3571964448] = { "(15-25)% increased Duration of Cold Ailments" }, } },
+ ["PhysicalDamageConvertedToColdDelve"] = { type = "Prefix", affix = "Subterranean", "10% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 60, group = "ConvertPhysicalToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "10% of Physical Damage Converted to Cold Damage" }, } },
+ ["FasterIgniteDelve_"] = { type = "Suffix", affix = "of the Underground", "Ignites you inflict deal Damage (5-10)% faster", statOrder = { 2564 }, level = 60, group = "FasterIgniteDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (5-10)% faster" }, } },
+ ["PhysicalDamageConvertedToFireDelve"] = { type = "Prefix", affix = "Subterranean", "10% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 60, group = "ConvertPhysicalToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "10% of Physical Damage Converted to Fire Damage" }, } },
+ ["FasterPoisonDelve_"] = { type = "Suffix", affix = "of the Underground", "Poisons you inflict deal Damage (5-10)% faster", statOrder = { 6545 }, level = 60, group = "FasterPoisonDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (5-10)% faster" }, } },
+ ["ZeroChaosResistanceDelve"] = { type = "Suffix", affix = "of the Underground", "Chaos Resistance is Zero", statOrder = { 10726 }, level = 60, group = "ZeroChaosResistanceDelve", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is Zero" }, } },
+ ["MinionCriticalStrikeMultiplierDelve"] = { type = "Suffix", affix = "of the Underground", "Minions have +(30-38)% to Critical Strike Multiplier", statOrder = { 9290 }, level = 60, group = "MinionCriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(30-38)% to Critical Strike Multiplier" }, } },
+ ["MinionLargerAggroRadiusDelve"] = { type = "Suffix", affix = "of the Underground", "Minions are Aggressive", statOrder = { 10760 }, level = 60, group = "MinionLargerAggroRadius", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [128585622] = { "Minions are Aggressive" }, } },
+ ["MinionAreaOfEffectDelve"] = { type = "Prefix", affix = "Subterranean", "Minions have (20-30)% increased Area of Effect", statOrder = { 3024 }, level = 60, group = "MinionAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (20-30)% increased Area of Effect" }, } },
+ ["MinionLeechDelve___"] = { type = "Prefix", affix = "Subterranean", "Minions Leech 1% of Damage as Life", statOrder = { 2910 }, level = 60, group = "MinionLifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2770782267] = { "Minions Leech 1% of Damage as Life" }, } },
+ ["SpiritAndPhantasmRefreshOnUniqueDelve"] = { type = "Prefix", affix = "Subterranean", "Summoned Phantasms have 5% chance to refresh their Duration when they Hit a Rare or Unique Enemy", "Summoned Raging Spirits have 5% chance to refresh their Duration when they Hit a Rare or Unique Enemy", statOrder = { 9614, 9802 }, level = 60, group = "SpiritAndPhantasmRefreshOnUnique", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [4070754804] = { "Summoned Raging Spirits have 5% chance to refresh their Duration when they Hit a Rare or Unique Enemy" }, [7847395] = { "Summoned Phantasms have 5% chance to refresh their Duration when they Hit a Rare or Unique Enemy" }, } },
+ ["AuraEffectOnEnemiesDelve_____"] = { type = "Suffix", affix = "of the Underground", "(12-18)% increased Effect of Non-Curse Auras from your Skills on Enemies", statOrder = { 3567 }, level = 60, group = "AuraEffectOnEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, tradeHashes = { [1636209393] = { "(12-18)% increased Effect of Non-Curse Auras from your Skills on Enemies" }, } },
+ ["LifeReservationEfficiencyDelve"] = { type = "Prefix", affix = "Subterranean", "10% increased Life Reservation Efficiency of Skills", statOrder = { 2226 }, level = 60, group = "LifeReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [635485889] = { "10% increased Life Reservation Efficiency of Skills" }, } },
+ ["DoomGainRateDelve"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Damage with Hits and Ailments against Cursed Enemies", statOrder = { 7151 }, level = 60, group = "HitAndAilmentDamageCursedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "curse" }, tradeHashes = { [539970476] = { "(40-60)% increased Damage with Hits and Ailments against Cursed Enemies" }, } },
+ ["MarkEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Effect of your Marks", statOrder = { 2598 }, level = 60, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(15-25)% increased Effect of your Marks" }, } },
+ ["ChaosNonAilmentDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Waning", "+(26-35)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(26-35)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosNonAilmentDamageOverTimeMultiplier2h2"] = { type = "Prefix", affix = "Wasting", "+(36-45)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(36-45)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosNonAilmentDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Deteriorating", "+(46-55)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(46-55)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosNonAilmentDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Atrophying", "+(56-65)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(56-65)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosNonAilmentDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Disintegrating", "+(66-75)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(66-75)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosNonAilmentDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Waning", "+(14-18)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(14-18)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosNonAilmentDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Wasting", "+(19-23)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(19-23)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosNonAilmentDamageOverTimeMultiplier1h3___"] = { type = "Prefix", affix = "Deteriorating", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(24-28)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosNonAilmentDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Atrophying", "+(29-33)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(29-33)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosNonAilmentDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Disintegrating", "+(34-38)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(34-38)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosNonAilmentDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "chaos_damage", "influence_mod", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(11-15)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosNonAilmentDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 80, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "chaos_damage", "influence_mod", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(16-20)% to Chaos Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplier2h1_"] = { type = "Prefix", affix = "Inclement", "+(26-35)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(26-35)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplier2h2_"] = { type = "Prefix", affix = "Bleak", "+(36-45)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(36-45)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Boreal", "+(46-55)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(46-55)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Gelid", "+(56-65)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(56-65)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Heartstopping", "+(66-75)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(66-75)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Inclement", "+(14-18)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(14-18)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Bleak", "+(19-23)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(19-23)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Boreal", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(24-28)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Gelid", "+(29-33)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(29-33)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Heartstopping", "+(34-38)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(34-38)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(11-15)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplierUber2_"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 80, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(16-20)% to Cold Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Earnest", "+(26-35)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(26-35)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplier2h2"] = { type = "Prefix", affix = "Fervid", "+(36-45)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(36-45)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Ardent", "+(46-55)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(46-55)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Zealous", "+(56-65)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(56-65)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplier2h5__"] = { type = "Prefix", affix = "Fanatical", "+(66-75)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(66-75)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Earnest", "+(14-18)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(14-18)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Fervid", "+(19-23)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(19-23)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Ardent", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(24-28)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Zealous", "+(29-33)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(29-33)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Fanatical", "+(34-38)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(34-38)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplierUber1___"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(11-15)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 80, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(16-20)% to Fire Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Seeping", "+(26-35)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(26-35)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplier2h2_"] = { type = "Prefix", affix = "Spilling", "+(36-45)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(36-45)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Phlebotomising", "+(46-55)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(46-55)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Hemorrhaging", "+(56-65)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(56-65)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Exsanguinating", "+(66-75)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(66-75)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Seeping", "+(14-18)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(14-18)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplier1h2_"] = { type = "Prefix", affix = "Spilling", "+(19-23)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(19-23)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Phlebotomising", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(24-28)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplier1h4_"] = { type = "Prefix", affix = "Hemorrhaging", "+(29-33)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(29-33)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Exsanguinating", "+(34-38)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(34-38)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(11-15)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierUber2__"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 80, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(16-20)% to Physical Damage over Time Multiplier" }, } },
+ ["GlobalDamageOverTimeMultiplier1h1"] = { type = "Suffix", affix = "of Acrimony", "+(7-11)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 44, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(7-11)% to Damage over Time Multiplier" }, } },
+ ["GlobalDamageOverTimeMultiplier1h2_"] = { type = "Suffix", affix = "of Dispersion", "+(12-15)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 55, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(12-15)% to Damage over Time Multiplier" }, } },
+ ["GlobalDamageOverTimeMultiplier1h3"] = { type = "Suffix", affix = "of Liquefaction", "+(16-19)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(16-19)% to Damage over Time Multiplier" }, } },
+ ["GlobalDamageOverTimeMultiplier1h4"] = { type = "Suffix", affix = "of Melting", "+(20-23)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 76, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(20-23)% to Damage over Time Multiplier" }, } },
+ ["GlobalDamageOverTimeMultiplier1h5"] = { type = "Suffix", affix = "of Dissolution", "+(24-26)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 82, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(24-26)% to Damage over Time Multiplier" }, } },
+ ["GlobalDamageOverTimeMultiplier2h1__"] = { type = "Suffix", affix = "of Acrimony", "+(16-21)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 44, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(16-21)% to Damage over Time Multiplier" }, } },
+ ["GlobalDamageOverTimeMultiplier2h2"] = { type = "Suffix", affix = "of Dispersion", "+(24-29)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 55, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(24-29)% to Damage over Time Multiplier" }, } },
+ ["GlobalDamageOverTimeMultiplier2h3___"] = { type = "Suffix", affix = "of Liquefaction", "+(31-35)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(31-35)% to Damage over Time Multiplier" }, } },
+ ["GlobalDamageOverTimeMultiplier2h4_"] = { type = "Suffix", affix = "of Melting", "+(36-40)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 76, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(36-40)% to Damage over Time Multiplier" }, } },
+ ["GlobalDamageOverTimeMultiplier2h5____"] = { type = "Suffix", affix = "of Dissolution", "+(41-45)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 82, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(41-45)% to Damage over Time Multiplier" }, } },
+ ["GlobalDamageOverTimeMultiplierEssence1_"] = { type = "Suffix", affix = "of the Essence", "+10% to Damage over Time Multiplier", statOrder = { 1242 }, level = 63, group = "GlobalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+10% to Damage over Time Multiplier" }, } },
+ ["GlobalDamageOverTimeMultiplierRingEssence1"] = { type = "Suffix", affix = "of the Essence", "+(12-15)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 63, group = "GlobalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "damage" }, tradeHashes = { [3988349707] = { "+(12-15)% to Damage over Time Multiplier" }, } },
+ ["GlobalDamageOverTimeMultiplierWithAttacks1h1"] = { type = "Suffix", affix = "of Acrimony", "+(7-11)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1246 }, level = 44, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, tradeHashes = { [693959086] = { "+(7-11)% to Damage over Time Multiplier with Attack Skills" }, } },
+ ["GlobalDamageOverTimeMultiplierWithAttacks1h2___"] = { type = "Suffix", affix = "of Dispersion", "+(12-15)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1246 }, level = 55, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, tradeHashes = { [693959086] = { "+(12-15)% to Damage over Time Multiplier with Attack Skills" }, } },
+ ["GlobalDamageOverTimeMultiplierWithAttacks1h3"] = { type = "Suffix", affix = "of Liquefaction", "+(16-19)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1246 }, level = 68, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, tradeHashes = { [693959086] = { "+(16-19)% to Damage over Time Multiplier with Attack Skills" }, } },
+ ["GlobalDamageOverTimeMultiplierWithAttacks1h4_"] = { type = "Suffix", affix = "of Melting", "+(20-23)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1246 }, level = 76, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, tradeHashes = { [693959086] = { "+(20-23)% to Damage over Time Multiplier with Attack Skills" }, } },
+ ["GlobalDamageOverTimeMultiplierWithAttacks1h5"] = { type = "Suffix", affix = "of Dissolution", "+(24-26)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1246 }, level = 82, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, tradeHashes = { [693959086] = { "+(24-26)% to Damage over Time Multiplier with Attack Skills" }, } },
+ ["ChaosDamageOverTimeMultiplierTwoHand1_"] = { type = "Suffix", affix = "of Waning", "+(26-35)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(26-35)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplierTwoHand2__"] = { type = "Suffix", affix = "of Wasting", "+(36-45)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(36-45)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplierTwoHand3_"] = { type = "Suffix", affix = "of Deteriorating", "+(46-55)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(46-55)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplierTwoHand4__"] = { type = "Suffix", affix = "of Atrophying", "+(56-65)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(56-65)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplierTwoHand5___"] = { type = "Suffix", affix = "of Disintegrating", "+(66-75)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(66-75)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplier1_"] = { type = "Suffix", affix = "of Waning", "+(14-18)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 400, 400, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(14-18)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Wasting", "+(19-23)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(19-23)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of Deteriorating", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 200, 200, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(24-28)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of Atrophying", "+(29-33)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 100, 100, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(29-33)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Disintegrating", "+(34-38)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 50, 50, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(34-38)% to Chaos Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplierTwoHand1_"] = { type = "Suffix", affix = "of the Inclement", "+(26-35)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(26-35)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplierTwoHand2"] = { type = "Suffix", affix = "of the Bleak", "+(36-45)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(36-45)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplierTwoHand3"] = { type = "Suffix", affix = "of the Boreal", "+(46-55)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(46-55)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplierTwoHand4"] = { type = "Suffix", affix = "of the Gelid", "+(56-65)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(56-65)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplierTwoHand5"] = { type = "Suffix", affix = "of Heartstopping", "+(66-75)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(66-75)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of the Inclement", "+(14-18)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(14-18)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of the Bleak", "+(19-23)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 220, 220, 220, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(19-23)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of the Boreal", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 140, 140, 140, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(24-28)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of the Gelid", "+(29-33)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 70, 70, 70, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(29-33)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Heartstopping", "+(34-38)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 35, 35, 35, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(34-38)% to Cold Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplierTwoHand1_"] = { type = "Suffix", affix = "of the Earnest", "+(26-35)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(26-35)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplierTwoHand2_"] = { type = "Suffix", affix = "of the Fervid", "+(36-45)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(36-45)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplierTwoHand3"] = { type = "Suffix", affix = "of the Ardent", "+(46-55)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(46-55)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplierTwoHand4"] = { type = "Suffix", affix = "of the Zealous", "+(56-65)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(56-65)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplierTwoHand5_"] = { type = "Suffix", affix = "of the Fanatical", "+(66-75)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(66-75)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of the Earnest", "+(14-18)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(14-18)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of the Fervid", "+(19-23)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 220, 220, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(19-23)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of the Ardent", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 140, 140, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(24-28)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplier4__"] = { type = "Suffix", affix = "of the Zealous", "+(29-33)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 70, 70, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(29-33)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of the Fanatical", "+(34-38)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 35, 35, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(34-38)% to Fire Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierTwoHand1"] = { type = "Suffix", affix = "of Seeping", "+(26-35)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(26-35)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierTwoHand2"] = { type = "Suffix", affix = "of Spilling", "+(36-45)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(36-45)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierTwoHand3"] = { type = "Suffix", affix = "of Phlebotomising", "+(46-55)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(46-55)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierTwoHand4"] = { type = "Suffix", affix = "of Hemorrhaging", "+(56-65)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(56-65)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierTwoHand5"] = { type = "Suffix", affix = "of Exsanguinating", "+(66-75)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(66-75)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplier1__"] = { type = "Suffix", affix = "of Seeping", "+(14-18)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(14-18)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Spilling", "+(19-23)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 220, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(19-23)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplier3__"] = { type = "Suffix", affix = "of Phlebotomising", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 140, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(24-28)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of Hemorrhaging", "+(29-33)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 70, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(29-33)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Exsanguinating", "+(34-38)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 35, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(34-38)% to Physical Damage over Time Multiplier" }, } },
+ ["IncreasedLifeEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Guatelitzi's", "+(70-79) to maximum Life", "2% increased maximum Life", statOrder = { 1569, 1571 }, level = 50, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "2% increased maximum Life" }, [3299347043] = { "+(70-79) to maximum Life" }, } },
+ ["IncreasedLifeEnhancedLevel50BodyMod"] = { type = "Prefix", affix = "Guatelitzi's", "+(110-119) to maximum Life", "(8-10)% increased maximum Life", statOrder = { 1569, 1571 }, level = 50, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, [3299347043] = { "+(110-119) to maximum Life" }, } },
+ ["IncreasedManaEnhancedLevel50ModPercent"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(7-10)% increased maximum Mana", statOrder = { 1579, 1580 }, level = 50, group = "IncreasedManaAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-73) to maximum Mana" }, [2748665614] = { "(7-10)% increased maximum Mana" }, } },
+ ["IncreasedManaEnhancedLevel50ModOnHit"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1579, 1744 }, level = 50, group = "IncreasedManaAndOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [820939409] = { "Gain (2-3) Mana per Enemy Hit with Attacks" }, } },
+ ["IncreasedManaEnhancedLevel50ModRegen"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Regenerate (5-7) Mana per second", statOrder = { 1579, 1582 }, level = 50, group = "IncreasedManaAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [4291461939] = { "Regenerate (5-7) Mana per second" }, } },
+ ["IncreasedManaEnhancedLevel50ModReservation_"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 1579, 2232 }, level = 50, group = "IncreasedManaAndReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-73) to maximum Mana" }, [1269219558] = { "(6-10)% increased Mana Reservation Efficiency of Skills" }, } },
+ ["IncreasedManaEnhancedLevel50ModCost"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "-(8-6) to Total Mana Cost of Skills", statOrder = { 1579, 1891 }, level = 50, group = "IncreasedManaAndCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [3736589033] = { "-(8-6) to Total Mana Cost of Skills" }, } },
+ ["IncreasedManaEnhancedLevel50ModCostNew"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Non-Channelling Skills have -(8-6) to Total Mana Cost", statOrder = { 1579, 10062 }, level = 50, group = "IncreasedManaAndCostNew", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [677564538] = { "Non-Channelling Skills have -(8-6) to Total Mana Cost" }, } },
+ ["IncreasedEnergyShieldEnhancedLevel50ModES_"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "3% increased maximum Energy Shield", statOrder = { 1558, 1561 }, level = 50, group = "EnergyShieldAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "3% increased maximum Energy Shield" }, [3489782002] = { "+(44-47) to maximum Energy Shield" }, } },
+ ["IncreasedEnergyShieldEnhancedLevel50ModRegen"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Regenerate 0.4% of Energy Shield per second", statOrder = { 1558, 2646 }, level = 50, group = "EnergyShieldAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate 0.4% of Energy Shield per second" }, [3489782002] = { "+(44-47) to maximum Energy Shield" }, } },
+ ["AddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (11-13) Fire Damage to Attacks", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1360, 1955 }, level = 50, group = "FireDamagePhysConvertedToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHashes = { [1533563525] = { "25% of Physical Damage Converted to Fire Damage" }, [1573130764] = { "Adds (5-7) to (11-13) Fire Damage to Attacks" }, } },
+ ["AddedColdDamageEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (10-12) Cold Damage to Attacks", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1369, 1957 }, level = 50, group = "ColdDamagePhysConvertedToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, tradeHashes = { [2133341901] = { "25% of Physical Damage Converted to Cold Damage" }, [4067062424] = { "Adds (5-7) to (10-12) Cold Damage to Attacks" }, } },
+ ["AddedLightningDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (1-2) to (22-23) Lightning Damage to Attacks", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1380, 1959 }, level = 50, group = "LightningDamagePhysConvertedToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (22-23) Lightning Damage to Attacks" }, [3240769289] = { "25% of Physical Damage Converted to Lightning Damage" }, } },
+ ["LocalIncreasedPhysicalDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (3-5)% of Physical Damage as Extra Chaos Damage", statOrder = { 1232, 1935 }, level = 50, group = "LocalPhysicalDamagePercentAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, tradeHashes = { [1805374733] = { "(155-169)% increased Physical Damage" }, [3319896421] = { "Gain (3-5)% of Physical Damage as Extra Chaos Damage" }, } },
+ ["LocalAddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (45-61) to (91-106) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 50, group = "LocalFireDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (45-61) to (91-106) Fire Damage" }, } },
+ ["LocalAddedFireDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (79-106) to (159-186) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 50, group = "LocalFireDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (79-106) to (159-186) Fire Damage" }, } },
+ ["LocalAddedColdDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (37-50) to (74-87) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 50, group = "LocalColdDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (37-50) to (74-87) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } },
+ ["LocalAddedColdDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (65-87) to (130-152) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 50, group = "LocalColdDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (65-87) to (130-152) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } },
+ ["LocalAddedLightningDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (4-13) to (158-166) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 50, group = "LocalLightningDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (4-13) to (158-166) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (7-22) to (275-290) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 50, group = "LocalLightningDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (7-22) to (275-290) Lightning Damage" }, } },
+ ["MovementVelocityEnhancedLevel50ModSpeed"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "5% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1798, 3243 }, level = 50, group = "MovementVelocitySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [308396001] = { "5% increased Movement Speed if you haven't been Hit Recently" }, [2250533757] = { "30% increased Movement Speed" }, } },
+ ["MovementVelocityEnhancedLevel50ModDodge"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid Bleeding", statOrder = { 1798, 4216 }, level = 50, group = "MovementVelocityDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1618589784] = { "(10-15)% chance to Avoid Bleeding" }, [2250533757] = { "30% increased Movement Speed" }, } },
+ ["MovementVelocityEnhancedLevel50ModSpellDodge__"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid being Poisoned", statOrder = { 1798, 1849 }, level = 50, group = "MovementVelocitySpellDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [4053951709] = { "(10-15)% chance to Avoid being Poisoned" }, [2250533757] = { "30% increased Movement Speed" }, } },
+ ["SpellDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(70-74)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1223, 9488 }, level = 50, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2974417149] = { "(70-74)% increased Spell Damage" }, [2063695047] = { "Gain 5% of Non-Chaos Damage as extra Chaos Damage" }, } },
+ ["SpellDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(105-110)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1223, 9488 }, level = 50, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2974417149] = { "(105-110)% increased Spell Damage" }, [2063695047] = { "Gain 5% of Non-Chaos Damage as extra Chaos Damage" }, } },
+ ["TrapDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Trap Damage", statOrder = { 1194 }, level = 50, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(90-95)% increased Trap Damage" }, } },
+ ["TrapDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Trap Damage", statOrder = { 1194 }, level = 50, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(133-138)% increased Trap Damage" }, } },
+ ["MineDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Mine Damage", statOrder = { 1196 }, level = 50, group = "MineDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2137912951] = { "(90-95)% increased Mine Damage" }, } },
+ ["MineDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Mine Damage", statOrder = { 1196 }, level = 50, group = "MineDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2137912951] = { "(133-138)% increased Mine Damage" }, } },
+ ["TrapThrowSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 50, group = "TrapThrowSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(20-22)% increased Trap Throwing Speed" }, } },
+ ["TrapThrowSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(30-33)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 50, group = "TrapThrowSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(30-33)% increased Trap Throwing Speed" }, } },
+ ["MineThrowSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 50, group = "MineLayingSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(20-22)% increased Mine Throwing Speed" }, } },
+ ["MineThrowSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(30-33)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 50, group = "MineLayingSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(30-33)% increased Mine Throwing Speed" }, } },
+ ["TrapCooldownRecoveryAndDurationEnhancedLevel50Mod__"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Trap Duration", "(14-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 1923, 3461 }, level = 50, group = "TrapCooldownRecoveryAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2001530951] = { "(17-20)% increased Trap Duration" }, [3417757416] = { "(14-15)% increased Cooldown Recovery Rate for throwing Traps" }, } },
+ ["TrapCooldownRecoveryAndDurationTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(26-30)% increased Trap Duration", "(21-22)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 1923, 3461 }, level = 50, group = "TrapCooldownRecoveryAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2001530951] = { "(26-30)% increased Trap Duration" }, [3417757416] = { "(21-22)% increased Cooldown Recovery Rate for throwing Traps" }, } },
+ ["MineDetonationSpeedAndDurationEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Mine Duration", "Mines have (14-15)% increased Detonation Speed", statOrder = { 1924, 9220 }, level = 50, group = "MineDetonationSpeedAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3085465082] = { "Mines have (14-15)% increased Detonation Speed" }, [117667746] = { "(17-20)% increased Mine Duration" }, } },
+ ["MineDetonationSpeedAndDurationTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(26-30)% increased Mine Duration", "Mines have (21-22)% increased Detonation Speed", statOrder = { 1924, 9220 }, level = 50, group = "MineDetonationSpeedAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3085465082] = { "Mines have (21-22)% increased Detonation Speed" }, [117667746] = { "(26-30)% increased Mine Duration" }, } },
+ ["TrapAreaOfEffectEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (22-25)% increased Area of Effect", statOrder = { 3479 }, level = 50, group = "TrapAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4050593908] = { "Skills used by Traps have (22-25)% increased Area of Effect" }, } },
+ ["TrapAreaOfEffectTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (33-37)% increased Area of Effect", statOrder = { 3479 }, level = 50, group = "TrapAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4050593908] = { "Skills used by Traps have (33-37)% increased Area of Effect" }, } },
+ ["MineAreaOfEffectEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "Skills used by Mines have (22-25)% increased Area of Effect", statOrder = { 9217 }, level = 50, group = "MineAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2228913626] = { "Skills used by Mines have (22-25)% increased Area of Effect" }, } },
+ ["MineAreaOfEffectTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Mines have (33-37)% increased Area of Effect", statOrder = { 9217 }, level = 50, group = "MineAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2228913626] = { "Skills used by Mines have (33-37)% increased Area of Effect" }, } },
+ ["LocalIncreaseSocketedTrapGemLevelEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Matatl's", "+2 to Level of Socketed Trap or Mine Gems", statOrder = { 187 }, level = 50, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [150668988] = { "+2 to Level of Socketed Trap or Mine Gems" }, } },
+ ["MinionDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (90-95)% increased Damage", statOrder = { 1973 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (90-95)% increased Damage" }, } },
+ ["MinionDamageOnTwoHandWeaponEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (133-138)% increased Damage", statOrder = { 1973 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (133-138)% increased Damage" }, } },
+ ["MinionDamageOnWeaponEnhancedLevel50ModNew"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (50-66)% increased Damage", "Minions have 5% chance to deal Double Damage", statOrder = { 1973, 9279 }, level = 50, group = "MinionDamageOnWeaponDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [755922799] = { "Minions have 5% chance to deal Double Damage" }, [1589917703] = { "Minions deal (50-66)% increased Damage" }, } },
+ ["MinionDamageOnTwoHandWeaponEnhancedLevel50ModNew"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (85-94)% increased Damage", "Minions have 5% chance to deal Double Damage", statOrder = { 1973, 9279 }, level = 50, group = "MinionDamageOnWeaponDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [755922799] = { "Minions have 5% chance to deal Double Damage" }, [1589917703] = { "Minions deal (85-94)% increased Damage" }, } },
+ ["MinionAttackAndCastSpeedEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (25-28)% increased Attack Speed", "Minions have (25-28)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 50, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (25-28)% increased Attack Speed" }, [4000101551] = { "Minions have (25-28)% increased Cast Speed" }, } },
+ ["MinionAttackAndCastSpeedTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (36-40)% increased Attack Speed", "Minions have (36-40)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 50, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (36-40)% increased Attack Speed" }, [4000101551] = { "Minions have (36-40)% increased Cast Speed" }, } },
+ ["MinionDurationEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "(17-20)% increased Minion Duration", statOrder = { 5032 }, level = 50, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(17-20)% increased Minion Duration" }, } },
+ ["MinionDurationTwoHandedEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "(27-30)% increased Minion Duration", statOrder = { 5032 }, level = 50, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(27-30)% increased Minion Duration" }, } },
+ ["LocalIncreaseSocketedMinionGemLevelEnhancedLevel50Mod"] = { type = "Prefix", affix = "Citaqualotl's", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 50, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } },
+ ["FireDamagePrefixOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Fire Damage", "Adds (15-20) to (30-35) Fire Damage to Spells", statOrder = { 1357, 1404 }, level = 50, group = "FireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [3962278098] = { "(75-79)% increased Fire Damage" }, [1133016593] = { "Adds (15-20) to (30-35) Fire Damage to Spells" }, } },
+ ["FireDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod__"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Fire Damage", "Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1357, 1404 }, level = 50, group = "TwoHandFireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [3962278098] = { "(111-115)% increased Fire Damage" }, [1133016593] = { "Adds (20-27) to (41-48) Fire Damage to Spells" }, } },
+ ["ColdDamagePrefixOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Cold Damage", "Adds (12-16) to (25-29) Cold Damage to Spells", statOrder = { 1366, 1405 }, level = 50, group = "ColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3291658075] = { "(75-79)% increased Cold Damage" }, [2469416729] = { "Adds (12-16) to (25-29) Cold Damage to Spells" }, } },
+ ["ColdDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Cold Damage", "Adds (19-25) to (37-44) Cold Damage to Spells", statOrder = { 1366, 1405 }, level = 50, group = "TwoHandColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3291658075] = { "(111-115)% increased Cold Damage" }, [2469416729] = { "Adds (19-25) to (37-44) Cold Damage to Spells" }, } },
+ ["LightningDamagePrefixOnWeaponEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Lightning Damage", "Adds (1-4) to (53-56) Lightning Damage to Spells", statOrder = { 1377, 1406 }, level = 50, group = "LightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (53-56) Lightning Damage to Spells" }, [2231156303] = { "(75-79)% increased Lightning Damage" }, } },
+ ["LightningDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Lightning Damage", "Adds (2-6) to (79-84) Lightning Damage to Spells", statOrder = { 1377, 1406 }, level = 50, group = "TwoHandLightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (79-84) Lightning Damage to Spells" }, [2231156303] = { "(111-115)% increased Lightning Damage" }, } },
+ ["IncreasedCastSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(29-32)% increased Cast Speed", statOrder = { 1407, 1446 }, level = 50, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, tradeHashes = { [2300399854] = { "Adds (17-24) to (36-40) Chaos Damage to Spells" }, [2891184298] = { "(29-32)% increased Cast Speed" }, } },
+ ["IncreasedCastSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (24-32) to (49-57) Chaos Damage to Spells", "(44-49)% increased Cast Speed", statOrder = { 1407, 1446 }, level = 50, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, tradeHashes = { [2300399854] = { "Adds (24-32) to (49-57) Chaos Damage to Spells" }, [2891184298] = { "(44-49)% increased Cast Speed" }, } },
+ ["LocalIncreasedAttackSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(26-27)% increased Attack Speed", statOrder = { 1390, 1413 }, level = 50, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, tradeHashes = { [210067635] = { "(26-27)% increased Attack Speed" }, [2223678961] = { "Adds (23-36) to (49-61) Chaos Damage" }, } },
+ ["LocalIncreasedAttackSpeedRangedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(14-16)% increased Attack Speed", statOrder = { 1390, 1413 }, level = 50, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, tradeHashes = { [210067635] = { "(14-16)% increased Attack Speed" }, [2223678961] = { "Adds (23-36) to (49-61) Chaos Damage" }, } },
+ ["LifeRegenerationEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Guatelitzi", "Regenerate (32-40) Life per second", "Regenerate 0.4% of Life per second", statOrder = { 1574, 1944 }, level = 50, group = "LifeRegenerationAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3325883026] = { "Regenerate (32-40) Life per second" }, [836936635] = { "Regenerate 0.4% of Life per second" }, } },
+ ["FireResistEnhancedLevel50ModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(3-5)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1625, 2447 }, level = 50, group = "FireResistancePhysTakenAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire", "resistance" }, tradeHashes = { [3342989455] = { "(3-5)% of Physical Damage from Hits taken as Fire Damage" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } },
+ ["ColdResistEnhancedLevel50ModPhys_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(3-5)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1631, 2448 }, level = 50, group = "ColdResistancePhysTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [1871056256] = { "(3-5)% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["LightningResistEnhancedLevel50ModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(3-5)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1636, 2449 }, level = 50, group = "LightningResistancePhysTakenAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "lightning", "resistance" }, tradeHashes = { [425242359] = { "(3-5)% of Physical Damage from Hits taken as Lightning Damage" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } },
+ ["FireResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched as Life", statOrder = { 1625, 1670 }, level = 50, group = "FireResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, tradeHashes = { [3848282610] = { "0.4% of Fire Damage Leeched as Life" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } },
+ ["ColdResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched as Life", statOrder = { 1631, 1675 }, level = 50, group = "ColdResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [3999401129] = { "0.4% of Cold Damage Leeched as Life" }, } },
+ ["LightningResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1636, 1679 }, level = 50, group = "LightningResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning", "resistance" }, tradeHashes = { [80079005] = { "0.4% of Lightning Damage Leeched as Life" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } },
+ ["FireResistEnhancedLevel50ModAilments_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(45-52) to (75-78) added Fire Damage against Burning Enemies", statOrder = { 1625, 10321 }, level = 50, group = "FireResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [165402179] = { "(45-52) to (75-78) added Fire Damage against Burning Enemies" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } },
+ ["ColdResistEnhancedLevel50ModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(30-50)% increased Damage with Hits against Chilled Enemies", statOrder = { 1631, 6070 }, level = 50, group = "ColdResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [2805714016] = { "(30-50)% increased Damage with Hits against Chilled Enemies" }, } },
+ ["LightningResistEnhancedLevel50ModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(40-60)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 1636, 5913 }, level = 50, group = "LightningResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance", "critical" }, tradeHashes = { [276103140] = { "(40-60)% increased Critical Strike Chance against Shocked Enemies" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } },
+ ["ChaosResistEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "+(31-35)% to Chaos Resistance", "(5-7)% reduced Chaos Damage taken over time", statOrder = { 1641, 1948 }, level = 50, group = "ChaosResistanceDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [3762784591] = { "(5-7)% reduced Chaos Damage taken over time" }, [2923486259] = { "+(31-35)% to Chaos Resistance" }, } },
+ ["PoisonDurationEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrder = { 1385, 3170 }, level = 50, group = "PoisonDurationChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(13-18)% increased Poison Duration" }, [736967255] = { "(26-30)% increased Chaos Damage" }, } },
+ ["ChanceToPoisonEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "30% chance to Poison on Hit", statOrder = { 1385, 8002 }, level = 50, group = "LocalChanceToPoisonOnHitChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "30% chance to Poison on Hit" }, [736967255] = { "(26-30)% increased Chaos Damage" }, } },
+ ["PoisonDamageEnhancedLevel50AttacksMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(31-35)% increased Damage with Poison", statOrder = { 1390, 3181 }, level = 50, group = "PoisonDamageAddedChaosToAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, tradeHashes = { [2223678961] = { "Adds (23-36) to (49-61) Chaos Damage" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } },
+ ["PoisonDamageEnhancedLevel50SpellsMod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(31-35)% increased Damage with Poison", statOrder = { 1407, 3181 }, level = 50, group = "PoisonDamageAddedChaosToSpells", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "poison", "damage", "chaos", "caster", "ailment" }, tradeHashes = { [2300399854] = { "Adds (17-24) to (36-40) Chaos Damage to Spells" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } },
+ ["WeaponFireAddedAsChaos1h1"] = { type = "Prefix", affix = "Acidic", "Gain (5-7)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 66, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (5-7)% of Fire Damage as Extra Chaos Damage" }, } },
+ ["WeaponFireAddedAsChaos1h2"] = { type = "Prefix", affix = "Dissolving", "Gain (8-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 72, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (8-10)% of Fire Damage as Extra Chaos Damage" }, } },
+ ["WeaponFireAddedAsChaos1h3_"] = { type = "Prefix", affix = "Corrosive", "Gain (11-13)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 80, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (11-13)% of Fire Damage as Extra Chaos Damage" }, } },
+ ["WeaponColdAddedAsChaos1h1"] = { type = "Prefix", affix = "Atrophic", "Gain (5-7)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 66, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (5-7)% of Cold Damage as Extra Chaos Damage" }, } },
+ ["WeaponColdAddedAsChaos1h2"] = { type = "Prefix", affix = "Festering", "Gain (8-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 72, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (8-10)% of Cold Damage as Extra Chaos Damage" }, } },
+ ["WeaponColdAddedAsChaos1h3_"] = { type = "Prefix", affix = "Mortifying", "Gain (11-13)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 80, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (11-13)% of Cold Damage as Extra Chaos Damage" }, } },
+ ["WeaponLightningAddedAsChaos1h1"] = { type = "Prefix", affix = "Agonizing", "Gain (5-7)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 66, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (5-7)% of Lightning Damage as Extra Chaos Damage" }, } },
+ ["WeaponLightningAddedAsChaos1h2"] = { type = "Prefix", affix = "Harrowing", "Gain (8-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 72, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (8-10)% of Lightning Damage as Extra Chaos Damage" }, } },
+ ["WeaponLightningAddedAsChaos1h3_"] = { type = "Prefix", affix = "Excruciating", "Gain (11-13)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 80, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (11-13)% of Lightning Damage as Extra Chaos Damage" }, } },
+ ["WeaponPhysicalAddedAsChaos1h1____"] = { type = "Prefix", affix = "Pernicious", "Gain (5-7)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 66, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (5-7)% of Physical Damage as Extra Chaos Damage" }, } },
+ ["WeaponPhysicalAddedAsChaos1h2"] = { type = "Prefix", affix = "Inimical", "Gain (8-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 72, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (8-10)% of Physical Damage as Extra Chaos Damage" }, } },
+ ["WeaponPhysicalAddedAsChaos1h3_"] = { type = "Prefix", affix = "Baleful", "Gain (11-13)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 80, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (11-13)% of Physical Damage as Extra Chaos Damage" }, } },
+ ["WeaponFireAddedAsChaos2h1_"] = { type = "Prefix", affix = "Acidic", "Gain (10-14)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 66, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (10-14)% of Fire Damage as Extra Chaos Damage" }, } },
+ ["WeaponFireAddedAsChaos2h2"] = { type = "Prefix", affix = "Dissolving", "Gain (15-20)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 72, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (15-20)% of Fire Damage as Extra Chaos Damage" }, } },
+ ["WeaponFireAddedAsChaos2h3_"] = { type = "Prefix", affix = "Corrosive", "Gain (21-26)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 80, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain (21-26)% of Fire Damage as Extra Chaos Damage" }, } },
+ ["WeaponColdAddedAsChaos2h1"] = { type = "Prefix", affix = "Atrophic", "Gain (10-14)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 66, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (10-14)% of Cold Damage as Extra Chaos Damage" }, } },
+ ["WeaponColdAddedAsChaos2h2"] = { type = "Prefix", affix = "Festering", "Gain (15-20)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 72, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (15-20)% of Cold Damage as Extra Chaos Damage" }, } },
+ ["WeaponColdAddedAsChaos2h3"] = { type = "Prefix", affix = "Mortifying", "Gain (21-26)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 80, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain (21-26)% of Cold Damage as Extra Chaos Damage" }, } },
+ ["WeaponLightningAddedAsChaos2h1"] = { type = "Prefix", affix = "Agonizing", "Gain (10-14)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 66, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (10-14)% of Lightning Damage as Extra Chaos Damage" }, } },
+ ["WeaponLightningAddedAsChaos2h2"] = { type = "Prefix", affix = "Harrowing", "Gain (15-20)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 72, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (15-20)% of Lightning Damage as Extra Chaos Damage" }, } },
+ ["WeaponLightningAddedAsChaos2h3"] = { type = "Prefix", affix = "Excruciating", "Gain (21-26)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 80, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain (21-26)% of Lightning Damage as Extra Chaos Damage" }, } },
+ ["WeaponPhysicalAddedAsChaos2h1"] = { type = "Prefix", affix = "Pernicious", "Gain (10-14)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 66, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (10-14)% of Physical Damage as Extra Chaos Damage" }, } },
+ ["WeaponPhysicalAddedAsChaos2h2"] = { type = "Prefix", affix = "Inimical", "Gain (15-20)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 72, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (15-20)% of Physical Damage as Extra Chaos Damage" }, } },
+ ["WeaponPhysicalAddedAsChaos2h3"] = { type = "Prefix", affix = "Baleful", "Gain (21-26)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 80, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (21-26)% of Physical Damage as Extra Chaos Damage" }, } },
+ ["MinionDamageOnWeapon1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (10-19)% increased Damage", statOrder = { 1973 }, level = 2, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (10-19)% increased Damage" }, } },
+ ["MinionDamageOnWeapon2"] = { type = "Prefix", affix = "Viscountess's", "Minions deal (20-29)% increased Damage", statOrder = { 1973 }, level = 11, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-29)% increased Damage" }, } },
+ ["MinionDamageOnWeapon3"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (30-39)% increased Damage", statOrder = { 1973 }, level = 23, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-39)% increased Damage" }, } },
+ ["MinionDamageOnWeapon4_"] = { type = "Prefix", affix = "Countess's", "Minions deal (40-54)% increased Damage", statOrder = { 1973 }, level = 35, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (40-54)% increased Damage" }, } },
+ ["MinionDamageOnWeapon5"] = { type = "Prefix", affix = "Duchess's", "Minions deal (55-69)% increased Damage", statOrder = { 1973 }, level = 46, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (55-69)% increased Damage" }, } },
+ ["MinionDamageOnWeapon6"] = { type = "Prefix", affix = "Princess's", "Minions deal (70-84)% increased Damage", statOrder = { 1973 }, level = 58, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (70-84)% increased Damage" }, } },
+ ["MinionDamageOnWeapon7"] = { type = "Prefix", affix = "Queen's", "Minions deal (85-99)% increased Damage", statOrder = { 1973 }, level = 64, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (85-99)% increased Damage" }, } },
+ ["MinionDamageOnWeapon8"] = { type = "Prefix", affix = "Empress's", "Minions deal (100-109)% increased Damage", statOrder = { 1973 }, level = 84, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (100-109)% increased Damage" }, } },
+ ["MinionDamageOnWeaponEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (50-66)% increased Damage", statOrder = { 1973 }, level = 58, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (50-66)% increased Damage" }, } },
+ ["MinionDamageOnWeaponEssence6"] = { type = "Prefix", affix = "Essences", "Minions deal (67-82)% increased Damage", statOrder = { 1973 }, level = 74, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (67-82)% increased Damage" }, } },
+ ["MinionDamageOnWeaponEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (83-94)% increased Damage", statOrder = { 1973 }, level = 82, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (83-94)% increased Damage" }, } },
+ ["MinionDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (15-29)% increased Damage", statOrder = { 1973 }, level = 2, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-29)% increased Damage" }, } },
+ ["MinionDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (30-44)% increased Damage", statOrder = { 1973 }, level = 11, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-44)% increased Damage" }, } },
+ ["MinionDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Duchess's", "Minions deal (45-59)% increased Damage", statOrder = { 1973 }, level = 23, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (45-59)% increased Damage" }, } },
+ ["MinionDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Queen's", "Minions deal (60-84)% increased Damage", statOrder = { 1973 }, level = 35, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (60-84)% increased Damage" }, } },
+ ["MinionDamageOnTwoHandWeaponEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (85-106)% increased Damage", statOrder = { 1973 }, level = 58, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (85-106)% increased Damage" }, } },
+ ["MinionDamageOnTwoHandWeaponEssence6"] = { type = "Prefix", affix = "Essences", "Minions deal (107-122)% increased Damage", statOrder = { 1973 }, level = 74, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (107-122)% increased Damage" }, } },
+ ["MinionDamageOnTwoHandWeaponEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (123-144)% increased Damage", statOrder = { 1973 }, level = 82, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (123-144)% increased Damage" }, } },
+ ["MinionDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Baron's", "+(17-20) to maximum Mana", "Minions deal (5-9)% increased Damage", statOrder = { 1579, 1973 }, level = 2, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [1589917703] = { "Minions deal (5-9)% increased Damage" }, } },
+ ["MinionDamageAndManaOnWeapon2_"] = { type = "Prefix", affix = "Viscount's", "+(21-24) to maximum Mana", "Minions deal (10-14)% increased Damage", statOrder = { 1579, 1973 }, level = 11, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(21-24) to maximum Mana" }, [1589917703] = { "Minions deal (10-14)% increased Damage" }, } },
+ ["MinionDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Marquess's", "+(25-28) to maximum Mana", "Minions deal (15-19)% increased Damage", statOrder = { 1579, 1973 }, level = 23, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(25-28) to maximum Mana" }, [1589917703] = { "Minions deal (15-19)% increased Damage" }, } },
+ ["MinionDamageAndManaOnWeapon4_"] = { type = "Prefix", affix = "Count's", "+(29-33) to maximum Mana", "Minions deal (20-24)% increased Damage", statOrder = { 1579, 1973 }, level = 35, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1600, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(29-33) to maximum Mana" }, [1589917703] = { "Minions deal (20-24)% increased Damage" }, } },
+ ["MinionDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Duke's", "+(34-37) to maximum Mana", "Minions deal (25-29)% increased Damage", statOrder = { 1579, 1973 }, level = 46, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 800, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(34-37) to maximum Mana" }, [1589917703] = { "Minions deal (25-29)% increased Damage" }, } },
+ ["MinionDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Prince's", "+(38-41) to maximum Mana", "Minions deal (30-34)% increased Damage", statOrder = { 1579, 1973 }, level = 58, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 400, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(38-41) to maximum Mana" }, [1589917703] = { "Minions deal (30-34)% increased Damage" }, } },
+ ["MinionDamageAndManaOnWeapon7_"] = { type = "Prefix", affix = "King's", "+(42-45) to maximum Mana", "Minions deal (35-39)% increased Damage", statOrder = { 1579, 1973 }, level = 80, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [1050105434] = { "+(42-45) to maximum Mana" }, [1589917703] = { "Minions deal (35-39)% increased Damage" }, } },
+ ["MinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of Motivation", "Minions have (5-7)% increased Attack and Cast Speed", statOrder = { 9269 }, level = 2, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (5-7)% increased Attack and Cast Speed" }, } },
+ ["MinionAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Coercion", "Minions have (8-10)% increased Attack and Cast Speed", statOrder = { 9269 }, level = 15, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (8-10)% increased Attack and Cast Speed" }, } },
+ ["MinionAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Incitation", "Minions have (11-13)% increased Attack and Cast Speed", statOrder = { 9269 }, level = 30, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (11-13)% increased Attack and Cast Speed" }, } },
+ ["MinionAttackAndCastSpeed4"] = { type = "Suffix", affix = "of Agitation", "Minions have (14-16)% increased Attack and Cast Speed", statOrder = { 9269 }, level = 40, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (14-16)% increased Attack and Cast Speed" }, } },
+ ["MinionAttackAndCastSpeed5"] = { type = "Suffix", affix = "of Instigation", "Minions have (17-19)% increased Attack and Cast Speed", statOrder = { 9269 }, level = 55, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (17-19)% increased Attack and Cast Speed" }, } },
+ ["MinionAttackAndCastSpeed6__"] = { type = "Suffix", affix = "of Provocation", "Minions have (20-22)% increased Attack and Cast Speed", statOrder = { 9269 }, level = 72, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (20-22)% increased Attack and Cast Speed" }, } },
+ ["MinionAttackAndCastSpeed7"] = { type = "Suffix", affix = "of Infuriation", "Minions have (23-25)% increased Attack and Cast Speed", statOrder = { 9269 }, level = 83, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (23-25)% increased Attack and Cast Speed" }, } },
+ ["MinionGemLevel1h1"] = { type = "Prefix", affix = "Martinet's", "+1 to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 60, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skill Gems" }, } },
+ ["MinionLifeWeapon1"] = { type = "Suffix", affix = "of the Administrator", "Minions have (13-17)% increased maximum Life", statOrder = { 1766 }, level = 10, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (13-17)% increased maximum Life" }, } },
+ ["MinionLifeWeapon2"] = { type = "Suffix", affix = "of the Rector", "Minions have (18-22)% increased maximum Life", statOrder = { 1766 }, level = 26, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (18-22)% increased maximum Life" }, } },
+ ["MinionLifeWeapon3"] = { type = "Suffix", affix = "of the Overseer", "Minions have (23-27)% increased maximum Life", statOrder = { 1766 }, level = 42, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (23-27)% increased maximum Life" }, } },
+ ["MinionLifeWeapon4__"] = { type = "Suffix", affix = "of the Taskmaster", "Minions have (28-32)% increased maximum Life", statOrder = { 1766 }, level = 58, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (28-32)% increased maximum Life" }, } },
+ ["MinionLifeWeapon5"] = { type = "Suffix", affix = "of the Slavedriver", "Minions have (33-36)% increased maximum Life", statOrder = { 1766 }, level = 74, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (33-36)% increased maximum Life" }, } },
+ ["MinionLifeWeapon6_"] = { type = "Suffix", affix = "of the Despot", "Minions have (37-40)% increased maximum Life", statOrder = { 1766 }, level = 82, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (37-40)% increased maximum Life" }, } },
+ ["MinionMovementSpeed1"] = { type = "Suffix", affix = "of Coordination", "Minions have (6-10)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (6-10)% increased Movement Speed" }, } },
+ ["MinionMovementSpeed2"] = { type = "Suffix", affix = "of Collaboration", "Minions have (11-15)% increased Movement Speed", statOrder = { 1769 }, level = 15, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (11-15)% increased Movement Speed" }, } },
+ ["MinionMovementSpeed3"] = { type = "Suffix", affix = "of Integration", "Minions have (16-20)% increased Movement Speed", statOrder = { 1769 }, level = 30, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (16-20)% increased Movement Speed" }, } },
+ ["MinionMovementSpeed4"] = { type = "Suffix", affix = "of Orchestration", "Minions have (21-25)% increased Movement Speed", statOrder = { 1769 }, level = 40, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (21-25)% increased Movement Speed" }, } },
+ ["MinionMovementSpeed5"] = { type = "Suffix", affix = "of Harmony", "Minions have (26-30)% increased Movement Speed", statOrder = { 1769 }, level = 55, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (26-30)% increased Movement Speed" }, } },
+ ["MinionDamagePercent1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (5-10)% increased Damage", statOrder = { 1973 }, level = 4, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (5-10)% increased Damage" }, } },
+ ["MinionDamagePercent2"] = { type = "Prefix", affix = "Viscountess's", "Minions deal (11-20)% increased Damage", statOrder = { 1973 }, level = 15, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (11-20)% increased Damage" }, } },
+ ["MinionDamagePercent3"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (21-30)% increased Damage", statOrder = { 1973 }, level = 30, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (21-30)% increased Damage" }, } },
+ ["MinionDamagePercent4"] = { type = "Prefix", affix = "Countess's", "Minions deal (31-36)% increased Damage", statOrder = { 1973 }, level = 60, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (31-36)% increased Damage" }, } },
+ ["MinionDamagePercent5"] = { type = "Prefix", affix = "Duchess's", "Minions deal (37-42)% increased Damage", statOrder = { 1973 }, level = 81, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (37-42)% increased Damage" }, } },
+ ["MinionResistancesWeapon1_"] = { type = "Suffix", affix = "of Adjustment", "Minions have +(11-15)% to all Elemental Resistances", statOrder = { 2912 }, level = 8, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(11-15)% to all Elemental Resistances" }, } },
+ ["MinionResistancesWeapon2"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(16-20)% to all Elemental Resistances", statOrder = { 2912 }, level = 24, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(16-20)% to all Elemental Resistances" }, } },
+ ["MinionResistancesWeapon3"] = { type = "Suffix", affix = "of Adaptation", "Minions have +(21-23)% to all Elemental Resistances", statOrder = { 2912 }, level = 37, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(21-23)% to all Elemental Resistances" }, } },
+ ["MinionResistancesWeapon4"] = { type = "Suffix", affix = "of Evolution", "Minions have +(24-26)% to all Elemental Resistances", statOrder = { 2912 }, level = 50, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(24-26)% to all Elemental Resistances" }, } },
+ ["MinionResistancesWeapon5"] = { type = "Suffix", affix = "of Metamorphosis", "Minions have +(27-30)% to all Elemental Resistances", statOrder = { 2912 }, level = 61, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(27-30)% to all Elemental Resistances" }, } },
+ ["MinionAccuracyRatingWeapon1_"] = { type = "Suffix", affix = "of the Instructor", "Minions have +(80-130) to Accuracy Rating", statOrder = { 9263 }, level = 1, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(80-130) to Accuracy Rating" }, } },
+ ["MinionAccuracyRatingWeapon2"] = { type = "Suffix", affix = "of the Tutor", "Minions have +(131-215) to Accuracy Rating", statOrder = { 9263 }, level = 20, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(131-215) to Accuracy Rating" }, } },
+ ["MinionAccuracyRatingWeapon3"] = { type = "Suffix", affix = "of the Commander", "Minions have +(216-325) to Accuracy Rating", statOrder = { 9263 }, level = 40, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(216-325) to Accuracy Rating" }, } },
+ ["MinionAccuracyRatingWeapon4"] = { type = "Suffix", affix = "of the Magnate", "Minions have +(326-455) to Accuracy Rating", statOrder = { 9263 }, level = 60, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(326-455) to Accuracy Rating" }, } },
+ ["MinionAccuracyRatingWeapon5"] = { type = "Suffix", affix = "of the Ruler", "Minions have +(456-545) to Accuracy Rating", statOrder = { 9263 }, level = 75, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(456-545) to Accuracy Rating" }, } },
+ ["MinionAccuracyRatingWeapon6"] = { type = "Suffix", affix = "of the Monarch", "Minions have +(546-624) to Accuracy Rating", statOrder = { 9263 }, level = 85, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1661151735] = { "Minions have +(546-624) to Accuracy Rating" }, } },
+ ["MinionMaxElementalResistance1"] = { type = "Suffix", affix = "of Impermeability", "Minions have +(3-4)% to all maximum Elemental Resistances", statOrder = { 9317 }, level = 68, group = "MinionMaxElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "minion" }, tradeHashes = { [10224385] = { "Minions have +(3-4)% to all maximum Elemental Resistances" }, } },
+ ["MinionMaxElementalResistance2"] = { type = "Suffix", affix = "of Countervailing", "Minions have +(5-6)% to all maximum Elemental Resistances", statOrder = { 9317 }, level = 75, group = "MinionMaxElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "minion" }, tradeHashes = { [10224385] = { "Minions have +(5-6)% to all maximum Elemental Resistances" }, } },
+ ["MinionMaxElementalResistance3"] = { type = "Suffix", affix = "of Imperviousness", "Minions have +(7-8)% to all maximum Elemental Resistances", statOrder = { 9317 }, level = 81, group = "MinionMaxElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "minion" }, tradeHashes = { [10224385] = { "Minions have +(7-8)% to all maximum Elemental Resistances" }, } },
+ ["MinionPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Guard", "Minions have (7-9)% additional Physical Damage Reduction", statOrder = { 2274 }, level = 68, group = "MinionPhysicalDamageReduction", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (7-9)% additional Physical Damage Reduction" }, } },
+ ["MinionPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Brigade", "Minions have (10-12)% additional Physical Damage Reduction", statOrder = { 2274 }, level = 75, group = "MinionPhysicalDamageReduction", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (10-12)% additional Physical Damage Reduction" }, } },
+ ["MinionPhysicalDamageReduction3"] = { type = "Suffix", affix = "of the Phalanx", "Minions have (13-15)% additional Physical Damage Reduction", statOrder = { 2274 }, level = 81, group = "MinionPhysicalDamageReduction", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (13-15)% additional Physical Damage Reduction" }, } },
+ ["MinionCriticalStrikeChanceIncrease1"] = { type = "Suffix", affix = "of Luck", "Minions have (10-19)% increased Critical Strike Chance", statOrder = { 9288 }, level = 11, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (10-19)% increased Critical Strike Chance" }, } },
+ ["MinionCriticalStrikeChanceIncrease2"] = { type = "Suffix", affix = "of Fortune", "Minions have (20-39)% increased Critical Strike Chance", statOrder = { 9288 }, level = 21, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (20-39)% increased Critical Strike Chance" }, } },
+ ["MinionCriticalStrikeChanceIncrease3"] = { type = "Suffix", affix = "of Providence", "Minions have (40-59)% increased Critical Strike Chance", statOrder = { 9288 }, level = 28, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (40-59)% increased Critical Strike Chance" }, } },
+ ["MinionCriticalStrikeChanceIncrease4"] = { type = "Suffix", affix = "of Serendipity", "Minions have (60-79)% increased Critical Strike Chance", statOrder = { 9288 }, level = 41, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (60-79)% increased Critical Strike Chance" }, } },
+ ["MinionCriticalStrikeChanceIncrease5"] = { type = "Suffix", affix = "of Determinism", "Minions have (80-99)% increased Critical Strike Chance", statOrder = { 9288 }, level = 59, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (80-99)% increased Critical Strike Chance" }, } },
+ ["MinionCriticalStrikeChanceIncrease6"] = { type = "Suffix", affix = "of Destiny", "Minions have (100-109)% increased Critical Strike Chance", statOrder = { 9288 }, level = 76, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (100-109)% increased Critical Strike Chance" }, } },
+ ["MinionCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of the Foray", "Minions have +(10-14)% to Critical Strike Multiplier", statOrder = { 9290 }, level = 8, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(10-14)% to Critical Strike Multiplier" }, } },
+ ["MinionCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of the Horde", "Minions have +(15-19)% to Critical Strike Multiplier", statOrder = { 9290 }, level = 21, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(15-19)% to Critical Strike Multiplier" }, } },
+ ["MinionCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of the Throng", "Minions have +(20-24)% to Critical Strike Multiplier", statOrder = { 9290 }, level = 30, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(20-24)% to Critical Strike Multiplier" }, } },
+ ["MinionCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of the Swarm", "Minions have +(25-29)% to Critical Strike Multiplier", statOrder = { 9290 }, level = 44, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(25-29)% to Critical Strike Multiplier" }, } },
+ ["MinionCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of the Invasion", "Minions have +(30-34)% to Critical Strike Multiplier", statOrder = { 9290 }, level = 59, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(30-34)% to Critical Strike Multiplier" }, } },
+ ["MinionCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of the Legion", "Minions have +(35-38)% to Critical Strike Multiplier", statOrder = { 9290 }, level = 73, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(35-38)% to Critical Strike Multiplier" }, } },
+ ["MinionGrantsConvocation1"] = { type = "Suffix", affix = "of the Convocation", "Grants Level 1 Convocation Skill", statOrder = { 684 }, level = 45, group = "MinionGrantsConvocation", weightKey = { "focus_can_roll_minion_modifiers", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [1786401772] = { "Grants Level 1 Convocation Skill" }, } },
+ ["TrapAndMineThrowSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Trap and Mine Throwing Speed", statOrder = { 10414 }, level = 42, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [464535071] = { "(7-10)% increased Trap and Mine Throwing Speed" }, } },
+ ["TrapAndMineThrowSpeedEssence2_"] = { type = "Suffix", affix = "of the Essence", "(11-13)% increased Trap and Mine Throwing Speed", statOrder = { 10414 }, level = 58, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [464535071] = { "(11-13)% increased Trap and Mine Throwing Speed" }, } },
+ ["TrapAndMineThrowSpeedEssence3_"] = { type = "Suffix", affix = "of the Essence", "(14-17)% increased Trap and Mine Throwing Speed", statOrder = { 10414 }, level = 74, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [464535071] = { "(14-17)% increased Trap and Mine Throwing Speed" }, } },
+ ["TrapAndMineThrowSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(18-21)% increased Trap and Mine Throwing Speed", statOrder = { 10414 }, level = 82, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [464535071] = { "(18-21)% increased Trap and Mine Throwing Speed" }, } },
+ ["UnaffectedByShockedGroundInfluence1"] = { type = "Prefix", affix = "Crusader's", "Unaffected by Shocked Ground", statOrder = { 10481 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2234049899] = { "Unaffected by Shocked Ground" }, } },
+ ["SocketedLightningGemLevelInfluence1_"] = { type = "Prefix", affix = "Crusader's", "+2 to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 68, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "gem" }, tradeHashes = { [4043416969] = { "+2 to Level of Socketed Lightning Gems" }, } },
+ ["MaximumFireResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } },
+ ["MaximumFireResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 85, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } },
+ ["MaximumFireResistanceInfluence1New_"] = { type = "Suffix", affix = "of the Crusade", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } },
+ ["MaximumFireResistanceInfluence2New_"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 85, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 125, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } },
+ ["PhysicalAddedAsExtraLightningBootsInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (3-5)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (3-5)% of Physical Damage as Extra Lightning Damage" }, } },
+ ["PhysicalAddedAsExtraLightningBootsInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (6-8)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (6-8)% of Physical Damage as Extra Lightning Damage" }, } },
+ ["CooldownRecoveryInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(6-10)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(6-10)% increased Cooldown Recovery Rate" }, } },
+ ["CooldownRecoveryInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 80, group = "GlobalCooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(11-15)% increased Cooldown Recovery Rate" }, } },
+ ["AvoidIgniteInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 68, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(31-35)% chance to Avoid being Ignited" }, } },
+ ["AvoidIgniteInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 70, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(36-40)% chance to Avoid being Ignited" }, } },
+ ["AvoidIgniteInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-60)% chance to Avoid being Ignited" }, } },
+ ["AvoidFreezeInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 68, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(31-35)% chance to Avoid being Frozen" }, } },
+ ["AvoidFreezeInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 70, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(36-40)% chance to Avoid being Frozen" }, } },
+ ["AvoidFreezeInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(51-60)% chance to Avoid being Frozen" }, } },
+ ["AvoidShockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 68, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(31-35)% chance to Avoid being Shocked" }, } },
+ ["AvoidShockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 70, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(36-40)% chance to Avoid being Shocked" }, } },
+ ["AvoidShockInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-60)% chance to Avoid being Shocked" }, } },
+ ["AvoidProjectilesInfluence1"] = { type = "Suffix", affix = "of Redemption", "(6-9)% chance to avoid Projectiles", statOrder = { 4993 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3452269808] = { "(6-9)% chance to avoid Projectiles" }, } },
+ ["AvoidProjectilesInfluence2"] = { type = "Suffix", affix = "of Redemption", "(10-12)% chance to avoid Projectiles", statOrder = { 4993 }, level = 73, group = "ChanceToAvoidProjectiles", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3452269808] = { "(10-12)% chance to avoid Projectiles" }, } },
+ ["UnaffectedByBurningGroundInfluence1"] = { type = "Prefix", affix = "Warlord's", "Unaffected by Burning Ground", statOrder = { 10456 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "fire" }, tradeHashes = { [1643688236] = { "Unaffected by Burning Ground" }, } },
+ ["SocketedFireGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+2 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 68, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, } },
+ ["MaximumEnduranceChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 75, group = "MaximumEnduranceCharges", weightKey = { "boots_adjudicator", "default", }, weightVal = { 125, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } },
+ ["PhysicalAddedAsExtraFireBootsInfluence1"] = { type = "Prefix", affix = "Warlord's", "Gain (3-5)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (3-5)% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsExtraFireBootsInfluence2"] = { type = "Prefix", affix = "Warlord's", "Gain (6-8)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (6-8)% of Physical Damage as Extra Fire Damage" }, } },
+ ["AvoidStunInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(16-20)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 68, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(16-20)% chance to Avoid being Stunned" }, } },
+ ["AvoidStunInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(21-25)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 70, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(21-25)% chance to Avoid being Stunned" }, } },
+ ["AvoidStunInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(31-35)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(31-35)% chance to Avoid being Stunned" }, } },
+ ["AvoidFireDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 68, group = "FireDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "fire" }, tradeHashes = { [42242677] = { "(5-7)% chance to Avoid Fire Damage from Hits" }, } },
+ ["AvoidFireDamageInfluence2__"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 80, group = "FireDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "fire" }, tradeHashes = { [42242677] = { "(8-10)% chance to Avoid Fire Damage from Hits" }, } },
+ ["AvoidColdDamageInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 68, group = "ColdDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "cold" }, tradeHashes = { [3743375737] = { "(5-7)% chance to Avoid Cold Damage from Hits" }, } },
+ ["AvoidColdDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 80, group = "ColdDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "cold" }, tradeHashes = { [3743375737] = { "(8-10)% chance to Avoid Cold Damage from Hits" }, } },
+ ["AvoidLightningDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 68, group = "LightningDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(5-7)% chance to Avoid Lightning Damage from Hits" }, } },
+ ["AvoidLightningDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 80, group = "LightningDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(8-10)% chance to Avoid Lightning Damage from Hits" }, } },
+ ["LifeRegenerationPercentInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Regenerate (0.8-1.2)% of Life per second", statOrder = { 1944 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (0.8-1.2)% of Life per second" }, } },
+ ["LifeRegenerationPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate (1.3-1.5)% of Life per second", statOrder = { 1944 }, level = 73, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.3-1.5)% of Life per second" }, } },
+ ["AdditionalPhysicalDamageReductionInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(2-4)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 75, group = "ReducedPhysicalDamageTaken", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [3771516363] = { "(2-4)% additional Physical Damage Reduction" }, } },
+ ["UnaffectedByChilledGroundInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Unaffected by Chilled Ground", statOrder = { 10461 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3653191834] = { "Unaffected by Chilled Ground" }, } },
+ ["SocketedColdGemLevelInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+2 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 68, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "gem" }, tradeHashes = { [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } },
+ ["EnduranceChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "boots_eyrie", "sword_eyrie", "axe_eyrie", "mace_eyrie", "sceptre_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1054322244] = { "(4-6)% chance to gain an Endurance Charge on Kill" }, } },
+ ["EnduranceChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 80, group = "EnduranceChargeOnKillChance", weightKey = { "boots_eyrie", "sword_eyrie", "axe_eyrie", "mace_eyrie", "sceptre_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1054322244] = { "(7-10)% chance to gain an Endurance Charge on Kill" }, } },
+ ["PhysicalAddedAsExtraColdBootsInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Gain (3-5)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (3-5)% of Physical Damage as Extra Cold Damage" }, } },
+ ["PhysicalAddedAsExtraColdBootsInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (6-8)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (6-8)% of Physical Damage as Extra Cold Damage" }, } },
+ ["ElusiveOnCriticalStrikeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(5-10)% chance to gain Elusive on Critical Strike", statOrder = { 4281 }, level = 75, group = "ElusiveOnCriticalStrike", weightKey = { "boots_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [2896192589] = { "(5-10)% chance to gain Elusive on Critical Strike" }, } },
+ ["ChanceToDodgeAttacksInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(4-7)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToDodgeAttacksInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 73, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(9-12)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToDodgeAttacksInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 80, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(13-15)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToDodgeSpellsInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(4-7)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToDodgeSpellsInfluence2___"] = { type = "Suffix", affix = "of Redemption", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 73, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(9-12)% chance to Suppress Spell Damage" }, } },
+ ["ChanceToDodgeSpellsInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 80, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(13-15)% chance to Suppress Spell Damage" }, } },
+ ["IncreasedAilmentEffectOnEnemiesInfluence1"] = { type = "Suffix", affix = "of Redemption", "(30-34)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "ailment" }, tradeHashes = { [782230869] = { "(30-34)% increased Effect of Non-Damaging Ailments" }, } },
+ ["IncreasedAilmentEffectOnEnemiesInfluence2"] = { type = "Suffix", affix = "of Redemption", "(35-40)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 73, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "ailment" }, tradeHashes = { [782230869] = { "(35-40)% increased Effect of Non-Damaging Ailments" }, } },
+ ["OnslaughtOnKillInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 75, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2988593550] = { "(5-7)% chance to gain Onslaught for 4 seconds on Kill" }, } },
+ ["OnslaughtOnKillInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 80, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2988593550] = { "(8-10)% chance to gain Onslaught for 4 seconds on Kill" }, } },
+ ["UnaffectedByDesecratedGroundInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Unaffected by Desecrated Ground", statOrder = { 10467 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos" }, tradeHashes = { [4004298002] = { "Unaffected by Desecrated Ground" }, } },
+ ["SocketedChaosGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+2 to Level of Socketed Chaos Gems", statOrder = { 170 }, level = 68, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2675603254] = { "+2 to Level of Socketed Chaos Gems" }, } },
+ ["AdditionalPierceInfluence1"] = { type = "Prefix", affix = "Hunter's", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "boots_basilisk", "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } },
+ ["AdditionalPierceInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 80, group = "AdditionalPierce", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } },
+ ["PercentageStrengthInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Strength", statOrder = { 1184 }, level = 68, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(6-8)% increased Strength" }, } },
+ ["PercentageStrengthInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Strength", statOrder = { 1184 }, level = 75, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(9-10)% increased Strength" }, } },
+ ["AvoidBleedAndPoisonInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% chance to Avoid being Poisoned", "(21-25)% chance to Avoid Bleeding", statOrder = { 1849, 4216 }, level = 68, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(21-25)% chance to Avoid Bleeding" }, [4053951709] = { "(21-25)% chance to Avoid being Poisoned" }, } },
+ ["AvoidBleedAndPoisonInfluence2____"] = { type = "Suffix", affix = "of the Hunt", "(26-30)% chance to Avoid being Poisoned", "(26-30)% chance to Avoid Bleeding", statOrder = { 1849, 4216 }, level = 70, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(26-30)% chance to Avoid Bleeding" }, [4053951709] = { "(26-30)% chance to Avoid being Poisoned" }, } },
+ ["AvoidBleedAndPoisonInfluence3"] = { type = "Suffix", affix = "of the Hunt", "(41-50)% chance to Avoid being Poisoned", "(41-50)% chance to Avoid Bleeding", statOrder = { 1849, 4216 }, level = 75, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(41-50)% chance to Avoid Bleeding" }, [4053951709] = { "(41-50)% chance to Avoid being Poisoned" }, } },
+ ["TailwindOnCriticalStrikeInfluence1"] = { type = "Suffix", affix = "of the Hunt", "You have Tailwind if you have dealt a Critical Strike Recently", statOrder = { 10348 }, level = 75, group = "TailwindOnCriticalStrike", weightKey = { "boots_basilisk", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1085545682] = { "You have Tailwind if you have dealt a Critical Strike Recently" }, } },
+ ["FasterIgniteInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (7-9)% faster", statOrder = { 2564 }, level = 68, group = "FasterIgniteDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (7-9)% faster" }, } },
+ ["FasterIgniteInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (10-12)% faster", statOrder = { 2564 }, level = 73, group = "FasterIgniteDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (10-12)% faster" }, } },
+ ["FasterBleedInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (7-9)% faster", statOrder = { 6544 }, level = 68, group = "FasterBleedDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (7-9)% faster" }, } },
+ ["FasterBleedInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (10-12)% faster", statOrder = { 6544 }, level = 73, group = "FasterBleedDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (10-12)% faster" }, } },
+ ["FasterPoisonInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (7-9)% faster", statOrder = { 6545 }, level = 68, group = "FasterPoisonDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (7-9)% faster" }, } },
+ ["FasterPoisonInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (10-12)% faster", statOrder = { 6545 }, level = 73, group = "FasterPoisonDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (10-12)% faster" }, } },
+ ["MaximumColdResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } },
+ ["MaximumColdResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 85, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } },
+ ["MaximumColdResistanceInfluence1New"] = { type = "Suffix", affix = "of the Crusade", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } },
+ ["MaximumColdResistanceInfluence2New"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 85, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 125, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } },
+ ["ConvertPhysicalToFireInfluence1"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 68, group = "ConvertPhysicalToFire", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(18-21)% of Physical Damage Converted to Fire Damage" }, } },
+ ["ConvertPhysicalToFireInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 71, group = "ConvertPhysicalToFire", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(22-25)% of Physical Damage Converted to Fire Damage" }, } },
+ ["ConvertPhysicalToColdInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 68, group = "ConvertPhysicalToCold", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(18-21)% of Physical Damage Converted to Cold Damage" }, } },
+ ["ConvertPhysicalToColdInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 71, group = "ConvertPhysicalToCold", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(22-25)% of Physical Damage Converted to Cold Damage" }, } },
+ ["ConvertPhysicalToLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 68, group = "ConvertPhysicalToLightning", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(18-21)% of Physical Damage Converted to Lightning Damage" }, } },
+ ["ConvertPhysicalToLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 71, group = "ConvertPhysicalToLightning", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(22-25)% of Physical Damage Converted to Lightning Damage" }, } },
+ ["MaximumLifeLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "10% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 75, group = "MaximumLifeLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [4118987751] = { "10% increased Maximum total Life Recovery per second from Leech" }, } },
+ ["MaximumEnergyShieldLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "15% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1734 }, level = 75, group = "MaximumEnergyShieldLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2013799819] = { "15% increased Maximum total Energy Shield Recovery per second from Leech" }, } },
+ ["MaximumEnergyShieldLeechRateSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "15% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1734 }, level = 75, group = "MaximumEnergyShieldLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2013799819] = { "15% increased Maximum total Energy Shield Recovery per second from Leech" }, } },
+ ["AvoidInterruptionWhileCastingInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 68, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(21-25)% chance to Ignore Stuns while Casting" }, } },
+ ["AvoidInterruptionWhileCastingInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 70, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(26-30)% chance to Ignore Stuns while Casting" }, } },
+ ["AvoidInterruptionWhileCastingInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 75, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(31-35)% chance to Ignore Stuns while Casting" }, } },
+ ["GlobalCriticalStrikeChanceInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 68, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(16-20)% increased Global Critical Strike Chance" }, } },
+ ["GlobalCriticalStrikeChanceInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 70, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(21-25)% increased Global Critical Strike Chance" }, } },
+ ["GlobalCriticalStrikeChanceInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 75, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(26-30)% increased Global Critical Strike Chance" }, } },
+ ["MaximumFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 75, group = "MaximumFrenzyCharges", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 125, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } },
+ ["MeleeDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Melee Damage", statOrder = { 1234 }, level = 68, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(18-22)% increased Melee Damage" }, } },
+ ["MeleeDamageInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Melee Damage", statOrder = { 1234 }, level = 70, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(23-26)% increased Melee Damage" }, } },
+ ["MeleeDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Melee Damage", statOrder = { 1234 }, level = 73, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(27-30)% increased Melee Damage" }, } },
+ ["ProjectileAttackDamageInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(18-22)% increased Projectile Attack Damage" }, } },
+ ["ProjectileAttackDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 70, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(23-26)% increased Projectile Attack Damage" }, } },
+ ["ProjectileAttackDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 73, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(27-30)% increased Projectile Attack Damage" }, } },
+ ["SpellDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Spell Damage", statOrder = { 1223 }, level = 68, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-22)% increased Spell Damage" }, } },
+ ["SpellDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Spell Damage", statOrder = { 1223 }, level = 70, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-26)% increased Spell Damage" }, } },
+ ["SpellDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Spell Damage", statOrder = { 1223 }, level = 73, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(27-30)% increased Spell Damage" }, } },
+ ["DamageOverTimeInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Damage over Time", statOrder = { 1210 }, level = 68, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [967627487] = { "(18-22)% increased Damage over Time" }, } },
+ ["DamageOverTimeInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Damage over Time", statOrder = { 1210 }, level = 70, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [967627487] = { "(23-26)% increased Damage over Time" }, } },
+ ["DamageOverTimeInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Damage over Time", statOrder = { 1210 }, level = 73, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [967627487] = { "(27-30)% increased Damage over Time" }, } },
+ ["MeleeWeaponRangeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+0.2 metres to Melee Strike Range", statOrder = { 2534 }, level = 82, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [2264295449] = { "+0.2 metres to Melee Strike Range" }, } },
+ ["BlockPercentInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(2-3)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 68, group = "BlockPercent", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2530372417] = { "(2-3)% Chance to Block Attack Damage" }, } },
+ ["BlockPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(4-5)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 80, group = "BlockPercent", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2530372417] = { "(4-5)% Chance to Block Attack Damage" }, } },
+ ["CullingStrikeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Culling Strike", statOrder = { 2039 }, level = 73, group = "CullingStrike", weightKey = { "gloves_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 250, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2524254339] = { "Culling Strike" }, } },
+ ["FrenzyChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_eyrie", "quiver_eyrie", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [1826802197] = { "(4-6)% chance to gain a Frenzy Charge on Kill" }, } },
+ ["FrenzyChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 80, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_eyrie", "quiver_eyrie", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [1826802197] = { "(7-10)% chance to gain a Frenzy Charge on Kill" }, } },
+ ["AddedPhysicalDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (4-5) to (6-8) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9247 }, level = 68, group = "AddedPhysicalDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [2723101291] = { "Adds (4-5) to (6-8) Physical Damage if you've dealt a Critical Strike Recently" }, } },
+ ["AddedPhysicalDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (6-8) to (9-11) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9247 }, level = 73, group = "AddedPhysicalDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [2723101291] = { "Adds (6-8) to (9-11) Physical Damage if you've dealt a Critical Strike Recently" }, } },
+ ["AddedFireDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-20) to (22-25) Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9235 }, level = 68, group = "AddedFireDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3144358296] = { "Adds (16-20) to (22-25) Fire Damage if you've dealt a Critical Strike Recently" }, } },
+ ["AddedFireDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-25) to (26-35) Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9235 }, level = 73, group = "AddedFireDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3144358296] = { "Adds (20-25) to (26-35) Fire Damage if you've dealt a Critical Strike Recently" }, } },
+ ["AddedColdDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-20) to (22-25) Cold Damage if you've dealt a Critical Strike Recently", statOrder = { 9230 }, level = 68, group = "AddedColdDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3370223014] = { "Adds (16-20) to (22-25) Cold Damage if you've dealt a Critical Strike Recently" }, } },
+ ["AddedColdDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-25) to (26-35) Cold Damage if you've dealt a Critical Strike Recently", statOrder = { 9230 }, level = 73, group = "AddedColdDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3370223014] = { "Adds (20-25) to (26-35) Cold Damage if you've dealt a Critical Strike Recently" }, } },
+ ["AddedLightningDamageCritRecentlyInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Adds 1 to (41-47) Lightning Damage if you've dealt a Critical Strike Recently", statOrder = { 9241 }, level = 68, group = "AddedLightningDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [935623115] = { "Adds 1 to (41-47) Lightning Damage if you've dealt a Critical Strike Recently" }, } },
+ ["AddedLightningDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds 1 to (48-60) Lightning Damage if you've dealt a Critical Strike Recently", statOrder = { 9241 }, level = 73, group = "AddedLightningDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [935623115] = { "Adds 1 to (48-60) Lightning Damage if you've dealt a Critical Strike Recently" }, } },
+ ["MinionDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (18-22)% increased Damage", statOrder = { 1973 }, level = 68, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (18-22)% increased Damage" }, } },
+ ["MinionDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (23-26)% increased Damage", statOrder = { 1973 }, level = 70, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (23-26)% increased Damage" }, } },
+ ["MinionDamageInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (27-30)% increased Damage", statOrder = { 1973 }, level = 73, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (27-30)% increased Damage" }, } },
+ ["IncreasedAccuracyPercentInfluence1"] = { type = "Suffix", affix = "of Redemption", "(12-15)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [624954515] = { "(12-15)% increased Global Accuracy Rating" }, } },
+ ["IncreasedAccuracyPercentInfluence2"] = { type = "Suffix", affix = "of Redemption", "(16-20)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 80, group = "IncreasedAccuracyPercent", weightKey = { "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [624954515] = { "(16-20)% increased Global Accuracy Rating" }, } },
+ ["GlobalChanceToBlindOnHitInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(8-11)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 68, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2221570601] = { "(8-11)% Global chance to Blind Enemies on hit" }, } },
+ ["GlobalChanceToBlindOnHitInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(12-15)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 80, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2221570601] = { "(12-15)% Global chance to Blind Enemies on hit" }, } },
+ ["AdditionalChanceToEvadeInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(2-4)% chance to Evade Attack Hits", statOrder = { 5673 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2021058489] = { "+(2-4)% chance to Evade Attack Hits" }, } },
+ ["ChanceToIntimidateOnHitInfluence1"] = { type = "Prefix", affix = "Hunter's", "(7-10)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 85, group = "ChanceToIntimidateOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [78985352] = { "(7-10)% chance to Intimidate Enemies for 4 seconds on Hit" }, } },
+ ["ChanceToUnnerveOnHitInfluence1___"] = { type = "Prefix", affix = "Hunter's", "(7-10)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 85, group = "ChanceToUnnerveOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { }, tradeHashes = { [763611529] = { "(7-10)% chance to Unnerve Enemies for 4 seconds on Hit" }, } },
+ ["StrikeSkillsAdditionalTargetInfluence1"] = { type = "Prefix", affix = "Hunter's", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9184 }, level = 80, group = "StrikeSkillsAdditionalTarget", weightKey = { "gloves_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } },
+ ["ChanceToImpaleInfluence1"] = { type = "Prefix", affix = "Hunter's", "(13-16)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 68, group = "AttackImpaleChance", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(13-16)% chance to Impale Enemies on Hit with Attacks" }, } },
+ ["ChanceToImpaleInfluence2"] = { type = "Prefix", affix = "Hunter's", "(17-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 80, group = "AttackImpaleChance", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(17-20)% chance to Impale Enemies on Hit with Attacks" }, } },
+ ["AilmentDurationInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(10-12)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(10-12)% increased Duration of Ailments on Enemies" }, } },
+ ["AilmentDurationInfluence2"] = { type = "Prefix", affix = "Hunter's", "(13-15)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 80, group = "IncreasedAilmentDuration", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(13-15)% increased Duration of Ailments on Enemies" }, } },
+ ["PercentageDexterityInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Dexterity", statOrder = { 1185 }, level = 68, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(6-8)% increased Dexterity" }, } },
+ ["PercentageDexterityInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Dexterity", statOrder = { 1185 }, level = 75, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(9-10)% increased Dexterity" }, } },
+ ["FireDamageOverTimeMultiplierInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(11-15)% to Fire Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 80, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(16-20)% to Fire Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(11-15)% to Cold Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplierInfluence2__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 80, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(16-20)% to Cold Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(11-15)% to Chaos Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 80, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(16-20)% to Chaos Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(11-15)% to Physical Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 80, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(16-20)% to Physical Damage over Time Multiplier" }, } },
+ ["MaximumLightningResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } },
+ ["MaximumLightningResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 85, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } },
+ ["MaximumLightningResistanceInfluence1New_"] = { type = "Suffix", affix = "of the Crusade", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } },
+ ["MaximumLightningResistanceInfluence2New_"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 85, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 125, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } },
+ ["MaximumManaInfluence1"] = { type = "Prefix", affix = "Crusader's", "(9-11)% increased maximum Mana", statOrder = { 1580 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(9-11)% increased maximum Mana" }, } },
+ ["MaximumManaInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(12-15)% increased maximum Mana", statOrder = { 1580 }, level = 80, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(12-15)% increased maximum Mana" }, } },
+ ["PhysTakenAsLightningHelmInfluence1"] = { type = "Prefix", affix = "Crusader's", "(4-6)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 68, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(4-6)% of Physical Damage from Hits taken as Lightning Damage" }, } },
+ ["PhysTakenAsLightningHelmInfluence2"] = { type = "Prefix", affix = "Crusader's", "(7-10)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 83, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(7-10)% of Physical Damage from Hits taken as Lightning Damage" }, } },
+ ["EnemyLightningResistanceAuraInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 7916 }, level = 85, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-9% to Lightning Resistance" }, [1849749435] = { "Nearby Enemies have -9% to Lightning Resistance" }, } },
+ ["SpellBlockPercentInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(3-4)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 68, group = "SpellBlockPercentage", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(3-4)% Chance to Block Spell Damage" }, } },
+ ["SpellBlockPercentInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(5-6)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 80, group = "SpellBlockPercentage", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(5-6)% Chance to Block Spell Damage" }, } },
+ ["FortifyEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+(3-4) to maximum Fortification", statOrder = { 9117 }, level = 75, group = "FortifyEffect", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [335507772] = { "+(3-4) to maximum Fortification" }, } },
+ ["FortifyEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+(4.2-5) to maximum Fortification", statOrder = { 9117 }, level = 80, group = "FortifyEffect", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [335507772] = { "+(4.2-5) to maximum Fortification" }, } },
+ ["EnergyShieldRegenInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Regenerate (1-1.5)% of Energy Shield per second", statOrder = { 2646 }, level = 75, group = "EnergyShieldRegenerationPerMinute", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate (1-1.5)% of Energy Shield per second" }, } },
+ ["ReducedIgniteDurationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 68, group = "ReducedBurnDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(31-35)% reduced Ignite Duration on you" }, } },
+ ["ReducedIgniteDurationInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 70, group = "ReducedBurnDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(36-40)% reduced Ignite Duration on you" }, } },
+ ["ReducedIgniteDurationInfluence3__"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedBurnDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(51-60)% reduced Ignite Duration on you" }, } },
+ ["ReducedFreezeDurationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 68, group = "ReducedFreezeDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(31-35)% reduced Freeze Duration on you" }, } },
+ ["ReducedFreezeDurationInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 70, group = "ReducedFreezeDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(36-40)% reduced Freeze Duration on you" }, } },
+ ["ReducedFreezeDurationInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-60)% reduced Freeze Duration on you" }, } },
+ ["ReducedShockEffectInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 68, group = "ReducedShockEffectOnSelf", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(31-35)% reduced Effect of Shock on you" }, } },
+ ["ReducedShockEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 70, group = "ReducedShockEffectOnSelf", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(36-40)% reduced Effect of Shock on you" }, } },
+ ["ReducedShockEffectInfluence3_"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "helmet_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(51-60)% reduced Effect of Shock on you" }, } },
+ ["MaximumPowerChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 75, group = "IncreasedMaximumPowerCharges", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 125, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } },
+ ["PhysTakenAsFireHelmetInfluence1"] = { type = "Prefix", affix = "Warlord's", "(4-6)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 68, group = "PhysicalDamageTakenAsFireUber", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(4-6)% of Physical Damage from Hits taken as Fire Damage" }, } },
+ ["PhysTakenAsFireHelmetInfluence2"] = { type = "Prefix", affix = "Warlord's", "(7-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 83, group = "PhysicalDamageTakenAsFireUber", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(7-10)% of Physical Damage from Hits taken as Fire Damage" }, } },
+ ["ElementalDamageInfluence1____"] = { type = "Prefix", affix = "Warlord's", "(12-14)% increased Elemental Damage", statOrder = { 1980 }, level = 68, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(12-14)% increased Elemental Damage" }, } },
+ ["ElementalDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(15-18)% increased Elemental Damage", statOrder = { 1980 }, level = 70, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(15-18)% increased Elemental Damage" }, } },
+ ["ElementalDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(19-22)% increased Elemental Damage", statOrder = { 1980 }, level = 75, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(19-22)% increased Elemental Damage" }, } },
+ ["WarcryAreaOfEffectInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Warcry Skills have (21-25)% increased Area of Effect", statOrder = { 10574 }, level = 68, group = "WarcryAreaOfEffect", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2567751411] = { "Warcry Skills have (21-25)% increased Area of Effect" }, } },
+ ["WarcryAreaOfEffectInfluence2"] = { type = "Prefix", affix = "Warlord's", "Warcry Skills have (26-30)% increased Area of Effect", statOrder = { 10574 }, level = 75, group = "WarcryAreaOfEffect", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2567751411] = { "Warcry Skills have (26-30)% increased Area of Effect" }, } },
+ ["EnemyFireResistanceAuraInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 7914 }, level = 85, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [3914021960] = { "Nearby Enemies have -9% to Fire Resistance" }, [3372524247] = { "-9% to Fire Resistance" }, } },
+ ["CriticalStrikeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(11-13)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(11-13)% to Global Critical Strike Multiplier" }, } },
+ ["CriticalStrikeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(14-16)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 70, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(14-16)% to Global Critical Strike Multiplier" }, } },
+ ["CriticalStrikeMultiplierInfluence3"] = { type = "Suffix", affix = "of the Conquest", "+(17-20)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(17-20)% to Global Critical Strike Multiplier" }, } },
+ ["ManaRegenerationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(41-55)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [789117908] = { "(41-55)% increased Mana Regeneration Rate" }, } },
+ ["ManaRegenerationInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(56-70)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [789117908] = { "(56-70)% increased Mana Regeneration Rate" }, } },
+ ["GainAccuracyEqualToStrengthInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Gain Accuracy Rating equal to your Strength", statOrder = { 6712 }, level = 75, group = "GainAccuracyEqualToStrength", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1575519214] = { "Gain Accuracy Rating equal to your Strength" }, } },
+ ["MinionLifeInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Minions have (21-26)% increased maximum Life", statOrder = { 1766 }, level = 68, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (21-26)% increased maximum Life" }, } },
+ ["MinionLifeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Minions have (27-30)% increased maximum Life", statOrder = { 1766 }, level = 70, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (27-30)% increased maximum Life" }, } },
+ ["MinionLifeInfluence3"] = { type = "Suffix", affix = "of the Conquest", "Minions have (31-35)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (31-35)% increased maximum Life" }, } },
+ ["PowerChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(4-6)% chance to gain a Power Charge on Kill" }, } },
+ ["PowerChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 80, group = "PowerChargeOnKillChance", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(7-10)% chance to gain a Power Charge on Kill" }, } },
+ ["PhysTakenAsColdHelmetInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 68, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(4-6)% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysTakenAsColdHelmetInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 83, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(7-10)% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["SpellsAdditionalUnleashSealInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Skills supported by Unleash have +1 to maximum number of Seals", statOrder = { 10720 }, level = 80, group = "SpellsAdditionalUnleashSeal", weightKey = { "helmet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3155029005] = { "Skills supported by Unleash have +1 to maximum number of Seals" }, } },
+ ["EnemyColdResistanceAuraInfluence1__"] = { type = "Suffix", affix = "of Redemption", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 7912 }, level = 85, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-9% to Cold Resistance" }, [2674336304] = { "Nearby Enemies have -9% to Cold Resistance" }, } },
+ ["ReducedManaReservationInfluence1"] = { type = "Suffix", affix = "of Redemption", "(4-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 68, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1269219558] = { "(4-6)% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ManaReservationEfficiencyInfluence1___"] = { type = "Suffix", affix = "of Redemption", "(4-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 68, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4237190083] = { "(4-6)% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ReducedManaReservationInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 75, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1269219558] = { "(8-10)% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ManaReservationEfficiencyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(7-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4237190083] = { "(7-10)% increased Mana Reservation Efficiency of Skills" }, } },
+ ["IgniteChanceAndDamageInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(15-17)% increased Burning Damage", "(6-8)% chance to Ignite", statOrder = { 1877, 2026 }, level = 68, group = "IgniteChanceAndDamage", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(6-8)% chance to Ignite" }, [1175385867] = { "(15-17)% increased Burning Damage" }, } },
+ ["IgniteChanceAndDamageInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(18-20)% increased Burning Damage", "(6-8)% chance to Ignite", statOrder = { 1877, 2026 }, level = 75, group = "IgniteChanceAndDamage", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(6-8)% chance to Ignite" }, [1175385867] = { "(18-20)% increased Burning Damage" }, } },
+ ["FreezeChanceAndDurationInfluence1____"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Freeze Duration on Enemies", "(6-8)% chance to Freeze", statOrder = { 1858, 2029 }, level = 68, group = "FreezeChanceAndDuration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1073942215] = { "(8-12)% increased Freeze Duration on Enemies" }, [44571480] = { "(6-8)% chance to Freeze" }, } },
+ ["FreezeChanceAndDurationInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(13-15)% increased Freeze Duration on Enemies", "(6-8)% chance to Freeze", statOrder = { 1858, 2029 }, level = 75, group = "FreezeChanceAndDuration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1073942215] = { "(13-15)% increased Freeze Duration on Enemies" }, [44571480] = { "(6-8)% chance to Freeze" }, } },
+ ["ShockChanceAndEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Shock", "(8-12)% increased Effect of Lightning Ailments", statOrder = { 2033, 7433 }, level = 68, group = "ShockChanceAndEffect", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "(8-12)% increased Effect of Lightning Ailments" }, [1538773178] = { "(6-8)% chance to Shock" }, } },
+ ["ShockChanceAndEffectInfluence2"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Shock", "(13-15)% increased Effect of Lightning Ailments", statOrder = { 2033, 7433 }, level = 75, group = "ShockChanceAndEffect", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "(13-15)% increased Effect of Lightning Ailments" }, [1538773178] = { "(6-8)% chance to Shock" }, } },
+ ["AddedManaRegenerationInfluence1"] = { type = "Suffix", affix = "of Redemption", "Regenerate (3-5) Mana per second", statOrder = { 1582 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (3-5) Mana per second" }, } },
+ ["AddedManaRegenerationInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Regenerate (6-8) Mana per second", statOrder = { 1582 }, level = 75, group = "AddedManaRegeneration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (6-8) Mana per second" }, } },
+ ["SpellAddedFireDamageInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrder = { 1404 }, level = 68, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (17-22) to (33-39) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamageInfluence2_"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrder = { 1404 }, level = 70, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (21-28) to (42-49) Fire Damage to Spells" }, } },
+ ["SpellAddedFireDamageInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (25-34) to (51-59) Fire Damage to Spells" }, } },
+ ["SpellAddedColdDamageInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrder = { 1405 }, level = 68, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (14-18) to (27-32) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrder = { 1405 }, level = 70, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (17-23) to (34-40) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamageInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (21-28) to (41-48) Cold Damage to Spells" }, } },
+ ["SpellAddedLightningDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrder = { 1406 }, level = 68, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (58-61) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrder = { 1406 }, level = 70, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (73-77) Lightning Damage to Spells" }, } },
+ ["SpellAddedLightningDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-7) to (88-93) Lightning Damage to Spells" }, } },
+ ["SpellAddedPhysicalDamageInfluence1__"] = { type = "Prefix", affix = "Hunter's", "Adds (17-22) to (33-39) Physical Damage to Spells", statOrder = { 1403 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (17-22) to (33-39) Physical Damage to Spells" }, } },
+ ["SpellAddedPhysicalDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (42-49) Physical Damage to Spells", statOrder = { 1403 }, level = 70, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (21-28) to (42-49) Physical Damage to Spells" }, } },
+ ["SpellAddedPhysicalDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (25-34) to (51-59) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (25-34) to (51-59) Physical Damage to Spells" }, } },
+ ["SpellAddedChaosDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (14-18) to (27-32) Chaos Damage to Spells", statOrder = { 1407 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (14-18) to (27-32) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (17-23) to (34-40) Chaos Damage to Spells", statOrder = { 1407 }, level = 70, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (17-23) to (34-40) Chaos Damage to Spells" }, } },
+ ["SpellAddedChaosDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (41-48) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (21-28) to (41-48) Chaos Damage to Spells" }, } },
+ ["EnemyChaosResistanceAuraInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 7911 }, level = 85, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [1902595112] = { "Nearby Enemies have -9% to Chaos Resistance" }, [2923486259] = { "-9% to Chaos Resistance" }, } },
+ ["PercentageIntelligenceInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Intelligence", statOrder = { 1186 }, level = 68, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(6-8)% increased Intelligence" }, } },
+ ["PercentageIntelligenceInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Intelligence", statOrder = { 1186 }, level = 75, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(9-10)% increased Intelligence" }, } },
+ ["IgnitingConfluxInfluence1"] = { type = "Suffix", affix = "of the Hunt", "You have Igniting Conflux for 3 seconds every 8 seconds", statOrder = { 6821 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1190121450] = { "You have Igniting Conflux for 3 seconds every 8 seconds" }, } },
+ ["ChillingConfluxInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "You have Chilling Conflux for 3 seconds every 8 seconds", statOrder = { 6821 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1190121450] = { "You have Chilling Conflux for 3 seconds every 8 seconds" }, } },
+ ["ShockingConfluxInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "You have Shocking Conflux for 3 seconds every 8 seconds", statOrder = { 6821 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1190121450] = { "You have Shocking Conflux for 3 seconds every 8 seconds" }, } },
+ ["PhysTakenAsLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "(8-12)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 68, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(8-12)% of Physical Damage from Hits taken as Lightning Damage" }, } },
+ ["PhysTakenAsLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "(13-15)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 83, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(13-15)% of Physical Damage from Hits taken as Lightning Damage" }, } },
+ ["ConsecratedGroundStationaryInfluence1_"] = { type = "Prefix", affix = "Crusader's", "You have Consecrated Ground around you while stationary", statOrder = { 5856 }, level = 75, group = "ConsecratedGroundStationary", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [880970200] = { "You have Consecrated Ground around you while stationary" }, } },
+ ["HolyPhysicalExplosionInfluence1"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill Explode, dealing 3% of their Life as Physical Damage", statOrder = { 6372 }, level = 85, group = "EnemiesExplodeOnDeathPhysical", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1220361974] = { "Enemies you Kill Explode, dealing 3% of their Life as Physical Damage" }, } },
+ ["HolyPhysicalExplosionChanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill have a (11-20)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3304 }, level = 75, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you Kill have a (11-20)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage" }, } },
+ ["HolyPhysicalExplosionChanceInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill have a (21-30)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3304 }, level = 85, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 25, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you Kill have a (21-30)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage" }, } },
+ ["PercentageIntelligenceBodyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(5-8)% increased Intelligence", statOrder = { 1186 }, level = 68, group = "PercentageIntelligence", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [656461285] = { "(5-8)% increased Intelligence" }, } },
+ ["PercentageIntelligenceBodyInfluence2___"] = { type = "Suffix", affix = "of the Crusade", "(9-12)% increased Intelligence", statOrder = { 1186 }, level = 75, group = "PercentageIntelligence", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [656461285] = { "(9-12)% increased Intelligence" }, } },
+ ["AddPowerChargeOnCritInfluence1"] = { type = "Suffix", affix = "of the Crusade", "15% chance to gain a Power Charge on Critical Strike", statOrder = { 1830 }, level = 80, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "power_charge", "influence_mod", "critical" }, tradeHashes = { [3814876985] = { "15% chance to gain a Power Charge on Critical Strike" }, } },
+ ["EnergyShieldOnKillPercentInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Recover (3-4)% of Energy Shield on Kill", statOrder = { 1750 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (3-4)% of Energy Shield on Kill" }, } },
+ ["EnergyShieldOnKillPercentInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Recover (5-6)% of Energy Shield on Kill", statOrder = { 1750 }, level = 80, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (5-6)% of Energy Shield on Kill" }, } },
+ ["EnergyShieldRecoveryRateBodyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(8-11)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(8-11)% increased Energy Shield Recovery rate" }, } },
+ ["EnergyShieldRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(12-15)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 80, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(12-15)% increased Energy Shield Recovery rate" }, } },
+ ["PhysTakenAsFireInfluence1"] = { type = "Prefix", affix = "Warlord's", "(8-12)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 68, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(8-12)% of Physical Damage from Hits taken as Fire Damage" }, } },
+ ["PhysTakenAsFireInfluence2"] = { type = "Prefix", affix = "Warlord's", "(13-15)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 83, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(13-15)% of Physical Damage from Hits taken as Fire Damage" }, } },
+ ["SocketedActiveGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of Socketed Skill Gems", statOrder = { 190 }, level = 80, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, } },
+ ["ReflectedPhysicalDamageInfluence1__"] = { type = "Prefix", affix = "Warlord's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 9670 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [129035625] = { "You and your Minions take 100% reduced Reflected Physical Damage" }, } },
["PhysicalDamageCannotBeReflectedPercentInfluence1"] = { type = "Prefix", affix = "Warlord's", "100% of Physical Hit Damage from you and your Minions cannot be Reflected", statOrder = { 3 }, level = 75, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1818622832] = { "100% of Physical Hit Damage from you and your Minions cannot be Reflected" }, } },
- ["AllResistancesInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(10-12)% to all Elemental Resistances", statOrder = { 1624 }, level = 68, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-12)% to all Elemental Resistances" }, } },
- ["AllResistancesInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(13-15)% to all Elemental Resistances", statOrder = { 1624 }, level = 70, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(13-15)% to all Elemental Resistances" }, } },
- ["AllResistancesInfluence3_"] = { type = "Suffix", affix = "of the Conquest", "+(16-18)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(16-18)% to all Elemental Resistances" }, } },
- ["PercentageStrengthBodyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-8)% increased Strength", statOrder = { 1189 }, level = 68, group = "PercentageStrength", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [734614379] = { "(5-8)% increased Strength" }, } },
- ["PercentageStrengthBodyInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(9-12)% increased Strength", statOrder = { 1189 }, level = 75, group = "PercentageStrength", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [734614379] = { "(9-12)% increased Strength" }, } },
- ["EnduranceChargeIfHitRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6751 }, level = 80, group = "EnduranceChargeIfHitRecently", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [2894476716] = { "Gain 1 Endurance Charge every second if you've been Hit Recently" }, } },
- ["LifeOnKillPercentInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Recover (3-4)% of Life on Kill", statOrder = { 1754 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2023107756] = { "Recover (3-4)% of Life on Kill" }, } },
- ["LifeOnKillPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Recover (5-6)% of Life on Kill", statOrder = { 1754 }, level = 80, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2023107756] = { "Recover (5-6)% of Life on Kill" }, } },
- ["LifeRecoveryRateBodyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(8-11)% increased Life Recovery rate", statOrder = { 1583 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(8-11)% increased Life Recovery rate" }, } },
- ["LifeRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(12-15)% increased Life Recovery rate", statOrder = { 1583 }, level = 80, group = "LifeRecoveryRate", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(12-15)% increased Life Recovery rate" }, } },
- ["SocketedAttacksManaCostInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 554 }, level = 85, group = "SocketedAttacksManaCost", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "resource", "influence_mod", "mana", "attack", "gem" }, tradeHashes = { [2264586521] = { "Socketed Attacks have -15 to Total Mana Cost" }, } },
- ["PhysTakenAsColdInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(8-12)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 68, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(8-12)% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysTakenAsColdInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(13-15)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 83, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(13-15)% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["SocketedSupportGemLevelInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+1 to Level of Socketed Support Gems", statOrder = { 194 }, level = 80, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [4154259475] = { "+1 to Level of Socketed Support Gems" }, } },
- ["ReflectedElementalDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 6339 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take 100% reduced Reflected Elemental Damage" }, } },
+ ["AllResistancesInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(10-12)% to all Elemental Resistances", statOrder = { 1619 }, level = 68, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(10-12)% to all Elemental Resistances" }, } },
+ ["AllResistancesInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(13-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 70, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(13-15)% to all Elemental Resistances" }, } },
+ ["AllResistancesInfluence3_"] = { type = "Suffix", affix = "of the Conquest", "+(16-18)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(16-18)% to all Elemental Resistances" }, } },
+ ["PercentageStrengthBodyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-8)% increased Strength", statOrder = { 1184 }, level = 68, group = "PercentageStrength", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [734614379] = { "(5-8)% increased Strength" }, } },
+ ["PercentageStrengthBodyInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(9-12)% increased Strength", statOrder = { 1184 }, level = 75, group = "PercentageStrength", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [734614379] = { "(9-12)% increased Strength" }, } },
+ ["EnduranceChargeIfHitRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6746 }, level = 80, group = "EnduranceChargeIfHitRecently", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [2894476716] = { "Gain 1 Endurance Charge every second if you've been Hit Recently" }, } },
+ ["LifeOnKillPercentInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Recover (3-4)% of Life on Kill", statOrder = { 1749 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2023107756] = { "Recover (3-4)% of Life on Kill" }, } },
+ ["LifeOnKillPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Recover (5-6)% of Life on Kill", statOrder = { 1749 }, level = 80, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2023107756] = { "Recover (5-6)% of Life on Kill" }, } },
+ ["LifeRecoveryRateBodyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(8-11)% increased Life Recovery rate", statOrder = { 1578 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(8-11)% increased Life Recovery rate" }, } },
+ ["LifeRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(12-15)% increased Life Recovery rate", statOrder = { 1578 }, level = 80, group = "LifeRecoveryRate", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(12-15)% increased Life Recovery rate" }, } },
+ ["SocketedAttacksManaCostInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 549 }, level = 85, group = "SocketedAttacksManaCost", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "resource", "influence_mod", "mana", "attack", "gem" }, tradeHashes = { [2264586521] = { "Socketed Attacks have -15 to Total Mana Cost" }, } },
+ ["PhysTakenAsColdInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(8-12)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 68, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(8-12)% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysTakenAsColdInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(13-15)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 83, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(13-15)% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["SocketedSupportGemLevelInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+1 to Level of Socketed Support Gems", statOrder = { 189 }, level = 80, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [4154259475] = { "+1 to Level of Socketed Support Gems" }, } },
+ ["ReflectedElementalDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 6334 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take 100% reduced Reflected Elemental Damage" }, } },
["ElementalDamageCannotBeReflectedPercentInfluence1"] = { type = "Prefix", affix = "Redeemer's", "100% of Elemental Hit Damage from you and your Minions cannot be Reflected", statOrder = { 2 }, level = 75, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3408683611] = { "100% of Elemental Hit Damage from you and your Minions cannot be Reflected" }, } },
- ["NearbyEnemiesAreBlindedInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Nearby Enemies are Blinded", statOrder = { 3401 }, level = 75, group = "NearbyEnemiesAreBlinded", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [223497523] = { "" }, [2826979740] = { "Nearby Enemies are Blinded" }, } },
- ["PercentageDexterityBodyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-8)% increased Dexterity", statOrder = { 1190 }, level = 68, group = "PercentageDexterity", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [4139681126] = { "(5-8)% increased Dexterity" }, } },
- ["PercentageDexterityBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(9-12)% increased Dexterity", statOrder = { 1190 }, level = 75, group = "PercentageDexterity", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [4139681126] = { "(9-12)% increased Dexterity" }, } },
- ["FrenzyChargeOnHitChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1838 }, level = 80, group = "FrenzyChargeOnHitChance", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [2323242761] = { "10% chance to gain a Frenzy Charge on Hit" }, } },
- ["ManaOnKillPercentInfluence1"] = { type = "Suffix", affix = "of Redemption", "Recover (3-4)% of Mana on Kill", statOrder = { 1756 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1030153674] = { "Recover (3-4)% of Mana on Kill" }, } },
- ["ManaOnKillPercentInfluence2"] = { type = "Suffix", affix = "of Redemption", "Recover (5-6)% of Mana on Kill", statOrder = { 1756 }, level = 80, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1030153674] = { "Recover (5-6)% of Mana on Kill" }, } },
- ["ManaRecoveryRateBodyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-11)% increased Mana Recovery rate", statOrder = { 1591 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3513180117] = { "(8-11)% increased Mana Recovery rate" }, } },
- ["ManaRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(12-15)% increased Mana Recovery rate", statOrder = { 1591 }, level = 80, group = "ManaRecoveryRate", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3513180117] = { "(12-15)% increased Mana Recovery rate" }, } },
- ["AuraEffectBodyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1880071428] = { "(15-20)% increased effect of Non-Curse Auras from your Skills" }, } },
- ["AuraEffectBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 80, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1880071428] = { "(21-25)% increased effect of Non-Curse Auras from your Skills" }, } },
- ["MaximumLifeBodyInfluence1"] = { type = "Prefix", affix = "Hunter's", "(5-8)% increased maximum Life", statOrder = { 1576 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-8)% increased maximum Life" }, } },
- ["MaximumLifeBodyInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(9-12)% increased maximum Life", statOrder = { 1576 }, level = 85, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(9-12)% increased maximum Life" }, } },
- ["PhysTakenAsChaosInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(8-12)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "(8-12)% of Physical Damage from Hits taken as Chaos Damage" }, } },
- ["PhysTakenAsChaosInfluence2"] = { type = "Prefix", affix = "Hunter's", "(13-15)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 83, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "(13-15)% of Physical Damage from Hits taken as Chaos Damage" }, } },
- ["AdditionalCurseOnEnemiesInfluence1"] = { type = "Prefix", affix = "Hunter's", "You can apply an additional Curse", statOrder = { 2173 }, level = 82, group = "AdditionalCurseOnEnemies", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } },
- ["RegenerateLifeOver1SecondInfluence1"] = { type = "Prefix", affix = "Hunter's", "Every 4 seconds, Regenerate 15% of Life over one second", statOrder = { 3791 }, level = 80, group = "RegenerateLifeOver1Second", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1242155304] = { "Every 4 seconds, Regenerate 15% of Life over one second" }, } },
- ["OfferingEffectInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(16-20)% increased effect of Offerings", statOrder = { 4068 }, level = 68, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(16-20)% increased effect of Offerings" }, } },
- ["OfferingEffectInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% increased effect of Offerings", statOrder = { 4068 }, level = 80, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(21-25)% increased effect of Offerings" }, } },
- ["AdditionalCritWithAttacksInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Attacks have +(0.5-1)% to Critical Strike Chance", statOrder = { 4797 }, level = 68, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(0.5-1)% to Critical Strike Chance" }, } },
- ["AdditionalCritWithAttacksInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Attacks have +(1.1-1.5)% to Critical Strike Chance", statOrder = { 4797 }, level = 84, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(1.1-1.5)% to Critical Strike Chance" }, } },
- ["AdditionalCritWithSpellsInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(0.5-1)% to Spell Critical Strike Chance", statOrder = { 10124 }, level = 68, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [791835907] = { "+(0.5-1)% to Spell Critical Strike Chance" }, } },
- ["AdditionalCritWithSpellsInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(1.1-1.5)% to Spell Critical Strike Chance", statOrder = { 10124 }, level = 84, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [791835907] = { "+(1.1-1.5)% to Spell Critical Strike Chance" }, } },
- ["LifeRegenerationPercentBodyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1-1.5)% of Life per second", statOrder = { 1949 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-1.5)% of Life per second" }, } },
- ["LifeRegenerationPercentBodyInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.6-2)% of Life per second", statOrder = { 1949 }, level = 75, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.6-2)% of Life per second" }, } },
- ["MaximumLightningResistanceHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } },
- ["MaximumLightningResistanceHighInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 80, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } },
- ["MaximumLightningResistanceHighInfluence3_"] = { type = "Prefix", affix = "Crusader's", "+3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 86, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } },
- ["DamagePerBlockChanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "1% increased Damage per 1% Chance to Block Attack Damage", statOrder = { 6064 }, level = 68, group = "DamagePerBlockChance", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3400437584] = { "1% increased Damage per 1% Chance to Block Attack Damage" }, } },
- ["MinimumPowerChargeInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+1 to Minimum Power Charges", statOrder = { 1818 }, level = 68, group = "MinimumPowerCharges", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [1999711879] = { "+1 to Minimum Power Charges" }, } },
- ["MinimumPowerChargeInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+2 to Minimum Power Charges", statOrder = { 1818 }, level = 80, group = "MinimumPowerCharges", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [1999711879] = { "+2 to Minimum Power Charges" }, } },
- ["RecoverEnergyShieldPercentOnBlockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Recover (3-5)% of Energy Shield when you Block", statOrder = { 2472 }, level = 68, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { "shield_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "block", "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1606263610] = { "Recover (3-5)% of Energy Shield when you Block" }, } },
- ["EnergyShieldRegenHighInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Regenerate (1.5-2.5)% of Energy Shield per second", statOrder = { 2651 }, level = 75, group = "EnergyShieldRegenerationPerMinute", weightKey = { "shield_crusader", "amulet_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate (1.5-2.5)% of Energy Shield per second" }, } },
- ["ChanceToChillAttackersOnBlockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5771 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(25-40)% chance to Chill Attackers for 4 seconds on Block" }, } },
- ["ChanceToChillAttackersOnBlockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5771 }, level = 75, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(41-50)% chance to Chill Attackers for 4 seconds on Block" }, } },
- ["ChanceToShockAttackersOnBlockInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(25-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10004 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(25-40)% chance to Shock Attackers for 4 seconds on Block" }, } },
- ["ChanceToShockAttackersOnBlockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10004 }, level = 75, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(41-50)% chance to Shock Attackers for 4 seconds on Block" }, } },
- ["SpellBlockIfBlockedSpellsInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "+(7-9)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", statOrder = { 10132 }, level = 68, group = "SpellBlockIfBlockedSpellRecently", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [4263513561] = { "+(7-9)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently" }, } },
- ["SpellBlockIfBlockedSpellsInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+(10-12)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", statOrder = { 10132 }, level = 75, group = "SpellBlockIfBlockedSpellRecently", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [4263513561] = { "+(10-12)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently" }, } },
- ["WarcryBuffEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(18-21)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 68, group = "WarcryEffect", weightKey = { "shield_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3037553757] = { "(18-21)% increased Warcry Buff Effect" }, } },
- ["WarcryBuffEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffect", weightKey = { "shield_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3037553757] = { "(22-25)% increased Warcry Buff Effect" }, } },
- ["MaximumFireResistanceHighInfluence1__"] = { type = "Prefix", affix = "Warlord's", "+1% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } },
- ["MaximumFireResistanceHighInfluence2__"] = { type = "Prefix", affix = "Warlord's", "+2% to maximum Fire Resistance", statOrder = { 1628 }, level = 80, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } },
- ["MaximumFireResistanceHighInfluence3"] = { type = "Prefix", affix = "Warlord's", "+3% to maximum Fire Resistance", statOrder = { 1628 }, level = 86, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } },
- ["AreaOfEffectInfluence1"] = { type = "Prefix", affix = "Warlord's", "(7-9)% increased Area of Effect", statOrder = { 1885 }, level = 68, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(7-9)% increased Area of Effect" }, } },
- ["AreaOfEffectInfluence2"] = { type = "Prefix", affix = "Warlord's", "(10-12)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(10-12)% increased Area of Effect" }, } },
- ["AreaOfEffectInfluence3"] = { type = "Prefix", affix = "Warlord's", "(13-15)% increased Area of Effect", statOrder = { 1885 }, level = 80, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(13-15)% increased Area of Effect" }, } },
- ["MinimumEnduranceChargeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+1 to Minimum Endurance Charges", statOrder = { 1808 }, level = 68, group = "MinimumEnduranceCharges", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [3706959521] = { "+1 to Minimum Endurance Charges" }, } },
- ["MinimumEnduranceChargeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+2 to Minimum Endurance Charges", statOrder = { 1808 }, level = 80, group = "MinimumEnduranceCharges", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [3706959521] = { "+2 to Minimum Endurance Charges" }, } },
- ["RecoverLifePercentOnBlockInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "Recover (3-5)% of Life when you Block", statOrder = { 3065 }, level = 68, group = "RecoverLifePercentOnBlock", weightKey = { "shield_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "block", "resource", "influence_mod", "life" }, tradeHashes = { [2442647190] = { "Recover (3-5)% of Life when you Block" }, } },
- ["AttackBlockIfBlockedAttacksInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(5-6)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", statOrder = { 5235 }, level = 68, group = "AttackBlockIfBlockedAttackRecently", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [3789765926] = { "+(5-6)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently" }, } },
- ["AttackBlockIfBlockedAttacksInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(7-8)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", statOrder = { 5235 }, level = 75, group = "AttackBlockIfBlockedAttackRecently", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [3789765926] = { "+(7-8)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently" }, } },
- ["AdditionalPhysicalDamageReductionHighInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(3-5)% additional Physical Damage Reduction", statOrder = { 2278 }, level = 75, group = "ReducedPhysicalDamageTaken", weightKey = { "shield_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } },
- ["MaximumColdResistanceHighInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+1% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } },
- ["MaximumColdResistanceHighInfluence2"] = { type = "Prefix", affix = "Redeemer's", "+2% to maximum Cold Resistance", statOrder = { 1634 }, level = 80, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } },
- ["MaximumColdResistanceHighInfluence3__"] = { type = "Prefix", affix = "Redeemer's", "+3% to maximum Cold Resistance", statOrder = { 1634 }, level = 86, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } },
- ["EnergyShieldDelayHighInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(16-20)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 68, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(16-20)% faster start of Energy Shield Recharge" }, } },
- ["EnergyShieldDelayHighInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(21-25)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 75, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(21-25)% faster start of Energy Shield Recharge" }, } },
- ["EnergyShieldDelayHighInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 80, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(26-30)% faster start of Energy Shield Recharge" }, } },
- ["WeaponElementalDamageInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 68, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(26-30)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamageInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "(31-35)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 75, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(31-35)% increased Elemental Damage with Attack Skills" }, } },
- ["WeaponElementalDamageInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "(36-40)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 80, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(36-40)% increased Elemental Damage with Attack Skills" }, } },
- ["MinimumFrenzyChargeInfluence1"] = { type = "Suffix", affix = "of Redemption", "+1 to Minimum Frenzy Charges", statOrder = { 1813 }, level = 68, group = "MinimumFrenzyCharges", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [658456881] = { "+1 to Minimum Frenzy Charges" }, } },
- ["MinimumFrenzyChargeInfluence2"] = { type = "Suffix", affix = "of Redemption", "+2 to Minimum Frenzy Charges", statOrder = { 1813 }, level = 80, group = "MinimumFrenzyCharges", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [658456881] = { "+2 to Minimum Frenzy Charges" }, } },
- ["RecoverManaPercentOnBlockInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Recover (3-5)% of your maximum Mana when you Block", statOrder = { 8191 }, level = 68, group = "RecoverManaPercentOnBlock", weightKey = { "shield_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "block", "resource", "influence_mod", "mana" }, tradeHashes = { [3041288981] = { "Recover (3-5)% of your maximum Mana when you Block" }, } },
- ["AdditionalChanceToEvadeHighInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(3-5)% chance to Evade Attack Hits", statOrder = { 5678 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "shield_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2021058489] = { "+(3-5)% chance to Evade Attack Hits" }, } },
- ["AvoidPhysicalDamageInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to Avoid Physical Damage from Hits", statOrder = { 3376 }, level = 68, group = "PhysicalDamageAvoidance", weightKey = { "shield_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [2415497478] = { "(5-7)% chance to Avoid Physical Damage from Hits" }, } },
- ["AvoidPhysicalDamageInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to Avoid Physical Damage from Hits", statOrder = { 3376 }, level = 80, group = "PhysicalDamageAvoidance", weightKey = { "shield_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [2415497478] = { "(8-10)% chance to Avoid Physical Damage from Hits" }, } },
- ["CurseEffectivenessInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-11)% increased Effect of your Curses", statOrder = { 2601 }, level = 73, group = "CurseEffectiveness", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2353576063] = { "(8-11)% increased Effect of your Curses" }, } },
- ["CurseEffectivenessInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Effect of your Curses", statOrder = { 2601 }, level = 80, group = "CurseEffectiveness", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2353576063] = { "(8-12)% increased Effect of your Curses" }, } },
- ["AuraEffectInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 73, group = "AuraEffect", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1880071428] = { "(5-7)% increased effect of Non-Curse Auras from your Skills" }, } },
- ["AuraEffectInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 80, group = "AuraEffect", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1880071428] = { "(8-10)% increased effect of Non-Curse Auras from your Skills" }, } },
- ["IncreasedAilmentEffectLowInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-20)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "shield_eyrie", "quiver_eyrie", "ring_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "ailment" }, tradeHashes = { [782230869] = { "(15-20)% increased Effect of Non-Damaging Ailments" }, } },
- ["IncreasedAilmentEffectLowInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "shield_eyrie", "quiver_eyrie", "ring_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "ailment" }, tradeHashes = { [782230869] = { "(21-25)% increased Effect of Non-Damaging Ailments" }, } },
- ["MaximumResistancesInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1% to all maximum Resistances", statOrder = { 1647 }, level = 80, group = "MaximumResistances", weightKey = { "shield_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } },
- ["MaximumResistancesInfluence2"] = { type = "Prefix", affix = "Hunter's", "+2% to all maximum Resistances", statOrder = { 1647 }, level = 85, group = "MaximumResistances", weightKey = { "shield_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } },
- ["MaximumChaosResistanceHighInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to maximum Chaos Resistance" }, } },
- ["MaximumChaosResistanceHighInfluence2"] = { type = "Prefix", affix = "Hunter's", "+2% to maximum Chaos Resistance", statOrder = { 1645 }, level = 80, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, } },
- ["MaximumChaosResistanceHighInfluence3"] = { type = "Prefix", affix = "Hunter's", "+3% to maximum Chaos Resistance", statOrder = { 1645 }, level = 86, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } },
- ["MaximumLifeInfluence1"] = { type = "Prefix", affix = "Hunter's", "(3-6)% increased maximum Life", statOrder = { 1576 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "shield_basilisk", "belt_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(3-6)% increased maximum Life" }, } },
- ["MaximumLifeInfluence2"] = { type = "Prefix", affix = "Hunter's", "(7-10)% increased maximum Life", statOrder = { 1576 }, level = 84, group = "MaximumLifeIncreasePercent", weightKey = { "shield_basilisk", "belt_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(7-10)% increased maximum Life" }, } },
- ["NoExtraDamageFromBleedMovingInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3197 }, level = 75, group = "NoExtraDamageFromBleedMoving", weightKey = { "shield_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [935326447] = { "Moving while Bleeding doesn't cause you to take extra Damage" }, } },
- ["GainRandomChargeOnBlockInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Gain an Endurance, Frenzy or Power charge when you Block", statOrder = { 6817 }, level = 68, group = "GainRandomChargeOnBlock", weightKey = { "shield_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "block", "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [2199099676] = { "Gain an Endurance, Frenzy or Power charge when you Block" }, } },
- ["SocketedGemsReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Socketed Gems have 20% increased Reservation Efficiency", statOrder = { 533 }, level = 68, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 20% increased Reservation Efficiency" }, } },
- ["SocketedGemsReducedReservationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 533 }, level = 80, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 30% increased Reservation Efficiency" }, } },
- ["DegenDamageTakenInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(4-6)% reduced Damage taken from Damage Over Time", statOrder = { 2250 }, level = 68, group = "DegenDamageTaken", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [1101403182] = { "(4-6)% reduced Damage taken from Damage Over Time" }, } },
- ["DegenDamageTakenInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-10)% reduced Damage taken from Damage Over Time", statOrder = { 2250 }, level = 80, group = "DegenDamageTaken", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [1101403182] = { "(7-10)% reduced Damage taken from Damage Over Time" }, } },
- ["LifeRegenerationPercentHighInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.1-1.5)% of Life per second", statOrder = { 1949 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "shield_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.1-1.5)% of Life per second" }, } },
- ["LifeRegenerationPercentHighInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.6-2)% of Life per second", statOrder = { 1949 }, level = 80, group = "LifeRegenerationRatePercentage", weightKey = { "shield_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.6-2)% of Life per second" }, } },
- ["PhysicalAddedAsExtraLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (5-10)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "quiver_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (5-10)% of Physical Damage as Extra Lightning Damage" }, } },
- ["PhysicalAddedAsExtraLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (11-15)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "quiver_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (11-15)% of Physical Damage as Extra Lightning Damage" }, } },
- ["AdditionalArrowInfluence1"] = { type = "Prefix", affix = "Warlord's", "Bow Attacks fire an additional Arrow", statOrder = { 1799 }, level = 80, group = "AdditionalArrows", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } },
- ["PhysicalAddedAsExtraFireInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Gain (5-10)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "quiver_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (5-10)% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsExtraFireInfluence2_____"] = { type = "Prefix", affix = "Warlord's", "Gain (11-15)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "quiver_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (11-15)% of Physical Damage as Extra Fire Damage" }, } },
- ["MaimOnHitInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 15% chance to Maim on Hit", statOrder = { 8159 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have 15% chance to Maim on Hit" }, } },
- ["MaimOnHitInfluence2___"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 20% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have 20% chance to Maim on Hit" }, } },
- ["ChancetoGainPhasingOnKillInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(5-6)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(5-6)% chance to gain Phasing for 4 seconds on Kill" }, } },
- ["ChancetoGainPhasingOnKillInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(7-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 70, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(7-8)% chance to gain Phasing for 4 seconds on Kill" }, } },
- ["ChancetoGainPhasingOnKillInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(9-10)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 73, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(9-10)% chance to gain Phasing for 4 seconds on Kill" }, } },
- ["BleedOnHitDamageInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrder = { 2494, 3174 }, level = 68, group = "BleedOnHitAndDamage", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(15-25)% increased Damage with Bleeding" }, [3204820200] = { "Attacks have 10% chance to cause Bleeding" }, } },
- ["BleedOnHitDamageInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrder = { 2494, 3174 }, level = 75, group = "BleedOnHitAndDamage", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(26-30)% increased Damage with Bleeding" }, [3204820200] = { "Attacks have 15% chance to cause Bleeding" }, } },
- ["PhysicalAddedAsExtraColdInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Gain (5-10)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "quiver_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (5-10)% of Physical Damage as Extra Cold Damage" }, } },
- ["PhysicalAddedAsExtraColdInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (11-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "quiver_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (11-15)% of Physical Damage as Extra Cold Damage" }, } },
- ["MovementVelocityExtraInfluence1"] = { type = "Prefix", affix = "Hunter's", "(3-6)% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocity", weightKey = { "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(3-6)% increased Movement Speed" }, } },
- ["MovementVelocityExtraInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(7-10)% increased Movement Speed", statOrder = { 1803 }, level = 80, group = "MovementVelocity", weightKey = { "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(7-10)% increased Movement Speed" }, } },
- ["ManaGainPerTargetInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Gain (3-5) Mana per Enemy Hit with Attacks", statOrder = { 1749 }, level = 68, group = "ManaGainPerTarget", weightKey = { "gloves_basilisk", "quiver_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (3-5) Mana per Enemy Hit with Attacks" }, } },
- ["ChaosDamageOverTimeMultiplierQuiverInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Chaos Damage over Time Multiplier with Attack Skills", statOrder = { 1266 }, level = 68, group = "ChaosDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3913282911] = { "+(16-20)% to Chaos Damage over Time Multiplier with Attack Skills" }, } },
- ["ChaosDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Chaos Damage over Time Multiplier with Attack Skills", statOrder = { 1266 }, level = 80, group = "ChaosDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3913282911] = { "+(21-25)% to Chaos Damage over Time Multiplier with Attack Skills" }, } },
- ["PhysicalDamageOverTimeMultiplierQuiverInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Physical Damage over Time Multiplier with Attack Skills", statOrder = { 1255 }, level = 68, group = "PhysicalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [709768359] = { "+(16-20)% to Physical Damage over Time Multiplier with Attack Skills" }, } },
- ["PhysicalDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Physical Damage over Time Multiplier with Attack Skills", statOrder = { 1255 }, level = 80, group = "PhysicalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [709768359] = { "+(21-25)% to Physical Damage over Time Multiplier with Attack Skills" }, } },
- ["FireDamageOverTimeMultiplierQuiverInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Fire Damage over Time Multiplier with Attack Skills", statOrder = { 1258 }, level = 68, group = "FireDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2139660169] = { "+(16-20)% to Fire Damage over Time Multiplier with Attack Skills" }, } },
- ["FireDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Fire Damage over Time Multiplier with Attack Skills", statOrder = { 1258 }, level = 80, group = "FireDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2139660169] = { "+(21-25)% to Fire Damage over Time Multiplier with Attack Skills" }, } },
- ["PoisonOnHitDamageInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "15% chance to Poison on Hit", "(15-25)% increased Damage with Poison", statOrder = { 3178, 3186 }, level = 68, group = "PoisonOnHitAndDamage", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(15-25)% increased Damage with Poison" }, [795138349] = { "15% chance to Poison on Hit" }, } },
- ["PoisonOnHitDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "20% chance to Poison on Hit", "(26-30)% increased Damage with Poison", statOrder = { 3178, 3186 }, level = 75, group = "PoisonOnHitAndDamage", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(26-30)% increased Damage with Poison" }, [795138349] = { "20% chance to Poison on Hit" }, } },
- ["GlobalEnergyShieldPercentInfluence1"] = { type = "Prefix", affix = "Crusader's", "(7-9)% increased maximum Energy Shield", statOrder = { 1566 }, level = 68, group = "GlobalEnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(7-9)% increased maximum Energy Shield" }, } },
- ["GlobalEnergyShieldPercentInfluence2"] = { type = "Prefix", affix = "Crusader's", "(10-12)% increased maximum Energy Shield", statOrder = { 1566 }, level = 78, group = "GlobalEnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(10-12)% increased maximum Energy Shield" }, } },
- ["GlobalEnergyShieldPercentInfluence3"] = { type = "Prefix", affix = "Crusader's", "(13-15)% increased maximum Energy Shield", statOrder = { 1566 }, level = 82, group = "GlobalEnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(13-15)% increased maximum Energy Shield" }, } },
- ["CriticalStrikeChanceShockedEnemiesInfluence1"] = { type = "Prefix", affix = "Crusader's", "(30-34)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5918 }, level = 68, group = "CritChanceShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [276103140] = { "(30-34)% increased Critical Strike Chance against Shocked Enemies" }, } },
- ["CriticalStrikeChanceShockedEnemiesInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-39)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5918 }, level = 75, group = "CritChanceShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [276103140] = { "(35-39)% increased Critical Strike Chance against Shocked Enemies" }, } },
- ["CriticalStrikeChanceShockedEnemiesInfluence3__"] = { type = "Prefix", affix = "Crusader's", "(40-45)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5918 }, level = 80, group = "CritChanceShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [276103140] = { "(40-45)% increased Critical Strike Chance against Shocked Enemies" }, } },
- ["LightningDamageInfluence1__"] = { type = "Prefix", affix = "Crusader's", "(16-20)% increased Lightning Damage", statOrder = { 1382 }, level = 68, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(16-20)% increased Lightning Damage" }, } },
- ["LightningDamageInfluence2"] = { type = "Prefix", affix = "Crusader's", "(21-25)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(21-25)% increased Lightning Damage" }, } },
- ["LightningDamageInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(26-30)% increased Lightning Damage", statOrder = { 1382 }, level = 80, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(26-30)% increased Lightning Damage" }, } },
- ["FortifyOnMeleeStunInfluence1"] = { type = "Prefix", affix = "Crusader's", "Melee Hits which Stun have (8-12)% chance to Fortify", statOrder = { 5683 }, level = 68, group = "FortifyOnMeleeStun", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3206381437] = { "Melee Hits which Stun have (8-12)% chance to Fortify" }, } },
- ["CooldownRecoveryHighInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } },
- ["CooldownRecoveryHighInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 84, group = "GlobalCooldownRecovery", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(16-20)% increased Cooldown Recovery Rate" }, } },
- ["SpellDamageDuringFlaskEffectInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "(20-25)% increased Spell Damage during any Flask Effect", statOrder = { 10147 }, level = 68, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2080171093] = { "(20-25)% increased Spell Damage during any Flask Effect" }, } },
- ["SpellDamageDuringFlaskEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Spell Damage during any Flask Effect", statOrder = { 10147 }, level = 75, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2080171093] = { "(26-30)% increased Spell Damage during any Flask Effect" }, } },
- ["SpellDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% increased Spell Damage during any Flask Effect", statOrder = { 10147 }, level = 80, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2080171093] = { "(31-35)% increased Spell Damage during any Flask Effect" }, } },
- ["EnergyShieldRecoveryRateInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(7-9)% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(7-9)% increased Energy Shield Recovery rate" }, } },
- ["EnergyShieldRecoveryRateInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(10-12)% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(10-12)% increased Energy Shield Recovery rate" }, } },
- ["RemoveShockOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Remove Shock when you use a Flask", statOrder = { 9916 }, level = 75, group = "RemoveShockOnFlaskUse", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [561861132] = { "Remove Shock when you use a Flask" }, } },
- ["GlobalArmourPercentInfluence1"] = { type = "Prefix", affix = "Warlord's", "(7-9)% increased Armour", statOrder = { 1546 }, level = 68, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [2866361420] = { "(7-9)% increased Armour" }, } },
- ["GlobalArmourPercentInfluence2___"] = { type = "Prefix", affix = "Warlord's", "(10-12)% increased Armour", statOrder = { 1546 }, level = 78, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [2866361420] = { "(10-12)% increased Armour" }, } },
- ["GlobalArmourPercentInfluence3"] = { type = "Prefix", affix = "Warlord's", "(13-15)% increased Armour", statOrder = { 1546 }, level = 82, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [2866361420] = { "(13-15)% increased Armour" }, } },
- ["FireDamageBurningEnemiesInfluence1"] = { type = "Prefix", affix = "Warlord's", "(22-27) to (41-46) added Fire Damage against Burning Enemies", statOrder = { 10320 }, level = 68, group = "AddedFireBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [165402179] = { "(22-27) to (41-46) added Fire Damage against Burning Enemies" }, } },
- ["FireDamageBurningEnemiesInfluence2"] = { type = "Prefix", affix = "Warlord's", "(28-32) to (47-51) added Fire Damage against Burning Enemies", statOrder = { 10320 }, level = 75, group = "AddedFireBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [165402179] = { "(28-32) to (47-51) added Fire Damage against Burning Enemies" }, } },
- ["FireDamageBurningEnemiesInfluence3"] = { type = "Prefix", affix = "Warlord's", "(33-39) to (52-55) added Fire Damage against Burning Enemies", statOrder = { 10320 }, level = 80, group = "AddedFireBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [165402179] = { "(33-39) to (52-55) added Fire Damage against Burning Enemies" }, } },
- ["FireDamageInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(16-20)% increased Fire Damage", statOrder = { 1362 }, level = 68, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(16-20)% increased Fire Damage" }, } },
- ["FireDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(21-25)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(21-25)% increased Fire Damage" }, } },
- ["FireDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(26-30)% increased Fire Damage", statOrder = { 1362 }, level = 80, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(26-30)% increased Fire Damage" }, } },
- ["ReducedCriticalStrikeDamageTakenInfluence1"] = { type = "Prefix", affix = "Warlord's", "You take (15-20)% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 68, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (15-20)% reduced Extra Damage from Critical Strikes" }, } },
- ["ReducedCriticalStrikeDamageTakenInfluence2_"] = { type = "Prefix", affix = "Warlord's", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 75, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (21-30)% reduced Extra Damage from Critical Strikes" }, } },
- ["AllDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(11-15)% increased Damage", statOrder = { 1196 }, level = 75, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2154246560] = { "(11-15)% increased Damage" }, } },
- ["AllDamageInfluence2___"] = { type = "Prefix", affix = "Warlord's", "(16-20)% increased Damage", statOrder = { 1196 }, level = 80, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2154246560] = { "(16-20)% increased Damage" }, } },
- ["AllDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(21-25)% increased Damage", statOrder = { 1196 }, level = 85, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2154246560] = { "(21-25)% increased Damage" }, } },
- ["MeleeDamageDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(20-25)% increased Melee Damage during any Flask Effect", statOrder = { 9194 }, level = 68, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [4091369450] = { "(20-25)% increased Melee Damage during any Flask Effect" }, } },
- ["MeleeDamageDuringFlaskEffectInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(26-30)% increased Melee Damage during any Flask Effect", statOrder = { 9194 }, level = 75, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [4091369450] = { "(26-30)% increased Melee Damage during any Flask Effect" }, } },
- ["MeleeDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(31-35)% increased Melee Damage during any Flask Effect", statOrder = { 9194 }, level = 80, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [4091369450] = { "(31-35)% increased Melee Damage during any Flask Effect" }, } },
- ["LifeRecoveryRateInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(7-9)% increased Life Recovery rate", statOrder = { 1583 }, level = 68, group = "LifeRecoveryRate", weightKey = { "belt_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(7-9)% increased Life Recovery rate" }, } },
- ["LifeRecoveryRateInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(10-12)% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRate", weightKey = { "belt_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(10-12)% increased Life Recovery rate" }, } },
- ["RemoveIgniteOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Remove Ignite and Burning when you use a Flask", statOrder = { 9906 }, level = 75, group = "RemoveIgniteOnFlaskUse", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1162425204] = { "Remove Ignite and Burning when you use a Flask" }, } },
- ["GlobalEvasionPercentInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(7-9)% increased Evasion Rating", statOrder = { 1554 }, level = 68, group = "GlobalEvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2106365538] = { "(7-9)% increased Evasion Rating" }, } },
- ["GlobalEvasionPercentInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(10-12)% increased Evasion Rating", statOrder = { 1554 }, level = 78, group = "GlobalEvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2106365538] = { "(10-12)% increased Evasion Rating" }, } },
- ["GlobalEvasionPercentInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "(13-15)% increased Evasion Rating", statOrder = { 1554 }, level = 82, group = "GlobalEvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2106365538] = { "(13-15)% increased Evasion Rating" }, } },
- ["DamageChilledEnemiesInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Damage with Hits against Chilled Enemies", statOrder = { 6075 }, level = 68, group = "DamageChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2805714016] = { "(26-30)% increased Damage with Hits against Chilled Enemies" }, } },
- ["DamageChilledEnemiesInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(31-35)% increased Damage with Hits against Chilled Enemies", statOrder = { 6075 }, level = 75, group = "DamageChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2805714016] = { "(31-35)% increased Damage with Hits against Chilled Enemies" }, } },
- ["DamageChilledEnemiesInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(36-40)% increased Damage with Hits against Chilled Enemies", statOrder = { 6075 }, level = 80, group = "DamageChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2805714016] = { "(36-40)% increased Damage with Hits against Chilled Enemies" }, } },
- ["FlaskEffectInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Flasks applied to you have (4-7)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, tradeHashes = { [114734841] = { "Flasks applied to you have (4-7)% increased Effect" }, } },
- ["FlaskEffectInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Flasks applied to you have (8-10)% increased Effect", statOrder = { 2747 }, level = 81, group = "FlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, tradeHashes = { [114734841] = { "Flasks applied to you have (8-10)% increased Effect" }, } },
- ["ColdDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(16-20)% increased Cold Damage", statOrder = { 1371 }, level = 68, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(16-20)% increased Cold Damage" }, } },
- ["ColdDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(21-25)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(21-25)% increased Cold Damage" }, } },
- ["ColdDamageInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Cold Damage", statOrder = { 1371 }, level = 80, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(26-30)% increased Cold Damage" }, } },
- ["AttackSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "(8-14)% increased Attack Speed during any Flask Effect", statOrder = { 3305 }, level = 68, group = "AttackSpeedDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "flask", "influence_mod", "attack", "speed" }, tradeHashes = { [1365052901] = { "(8-14)% increased Attack Speed during any Flask Effect" }, } },
- ["ProjectileAttackDamageDuringFlaskEffectInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(20-25)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9727 }, level = 68, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [2771016039] = { "(20-25)% increased Projectile Attack Damage during any Flask Effect" }, } },
- ["ProjectileAttackDamageDuringFlaskEffectInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(26-30)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9727 }, level = 75, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [2771016039] = { "(26-30)% increased Projectile Attack Damage during any Flask Effect" }, } },
- ["ProjectileAttackDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of Redemption", "(31-35)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9727 }, level = 80, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [2771016039] = { "(31-35)% increased Projectile Attack Damage during any Flask Effect" }, } },
- ["ManaRecoveryRateInfluence1"] = { type = "Suffix", affix = "of Redemption", "(7-9)% increased Mana Recovery rate", statOrder = { 1591 }, level = 68, group = "ManaRecoveryRate", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3513180117] = { "(7-9)% increased Mana Recovery rate" }, } },
- ["ManaRecoveryRateInfluence2__"] = { type = "Suffix", affix = "of Redemption", "(10-12)% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRate", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3513180117] = { "(10-12)% increased Mana Recovery rate" }, } },
- ["RemoveFreezeOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of Redemption", "Remove Chill and Freeze when you use a Flask", statOrder = { 9902 }, level = 75, group = "RemoveFreezeOnFlaskUse", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3296873305] = { "Remove Chill and Freeze when you use a Flask" }, } },
- ["FlaskChanceToNotConsumeChargesInfluence1"] = { type = "Prefix", affix = "Hunter's", "(6-10)% chance for Flasks you use to not consume Charges", statOrder = { 4235 }, level = 80, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, tradeHashes = { [311641062] = { "(6-10)% chance for Flasks you use to not consume Charges" }, } },
- ["FlaskChargeOnCritInfluence1"] = { type = "Prefix", affix = "Hunter's", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 3396 }, level = 75, group = "FlaskChargeOnCrit", weightKey = { "belt_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [3738001379] = { "Gain a Flask Charge when you deal a Critical Strike" }, } },
- ["ChaosDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "(16-20)% increased Chaos Damage", statOrder = { 1390 }, level = 68, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(16-20)% increased Chaos Damage" }, } },
- ["ChaosDamageInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(21-25)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(21-25)% increased Chaos Damage" }, } },
- ["ChaosDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "(26-30)% increased Chaos Damage", statOrder = { 1390 }, level = 80, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(26-30)% increased Chaos Damage" }, } },
- ["PercentageAllAttributesInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-9)% increased Attributes", statOrder = { 1188 }, level = 68, group = "PercentageAllAttributes", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3143208761] = { "(6-9)% increased Attributes" }, } },
- ["PercentageAllAttributesInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(10-12)% increased Attributes", statOrder = { 1188 }, level = 75, group = "PercentageAllAttributes", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3143208761] = { "(10-12)% increased Attributes" }, } },
- ["CastSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(8-14)% increased Cast Speed during any Flask Effect", statOrder = { 5471 }, level = 68, group = "CastSpeedDuringFlaskEffect", weightKey = { "belt_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "flask", "caster", "speed" }, tradeHashes = { [252194507] = { "(8-14)% increased Cast Speed during any Flask Effect" }, } },
- ["ArmourPenetrationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Hits have (30-39)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 68, group = "ChanceToIgnoreEnemyArmour", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (30-39)% chance to ignore Enemy Physical Damage Reduction" }, } },
- ["ArmourPenetrationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits have (40-50)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (40-50)% chance to ignore Enemy Physical Damage Reduction" }, } },
- ["MovementSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-10)% increased Movement Speed during any Flask Effect", statOrder = { 3191 }, level = 81, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "speed" }, tradeHashes = { [304970526] = { "(6-10)% increased Movement Speed during any Flask Effect" }, } },
- ["PhysicalAttackDamageTakenInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "-(35-25) Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 68, group = "PhysicalAttackDamageTaken", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(35-25) Physical Damage taken from Attack Hits" }, } },
- ["PhysicalAttackDamageTakenInfluence2"] = { type = "Suffix", affix = "of the Hunt", "-(45-36) Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 75, group = "PhysicalAttackDamageTaken", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(45-36) Physical Damage taken from Attack Hits" }, } },
- ["ChanceToShockAddedDamageInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies", statOrder = { 6891 }, level = 68, group = "ChanceToShockAddedDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, tradeHashes = { [90012347] = { "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies" }, [1538773178] = { "" }, } },
- ["ChanceToShockAddedDamageInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies", statOrder = { 6891 }, level = 75, group = "ChanceToShockAddedDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, tradeHashes = { [90012347] = { "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies" }, [1538773178] = { "" }, } },
- ["AddedLightningDamagePerPowerChargeInfluence1__"] = { type = "Prefix", affix = "Crusader's", "1 to (6-8) Lightning Damage per Power Charge", statOrder = { 9246 }, level = 75, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [1917107159] = { "1 to (6-8) Lightning Damage per Power Charge" }, } },
- ["AddedLightningDamagePerPowerChargeInfluence2"] = { type = "Prefix", affix = "Crusader's", "(1-2) to (9-11) Lightning Damage per Power Charge", statOrder = { 9246 }, level = 80, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [1917107159] = { "(1-2) to (9-11) Lightning Damage per Power Charge" }, } },
- ["SpellDamageRingInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(15-17)% increased Spell Damage", statOrder = { 1228 }, level = 68, group = "SpellDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-17)% increased Spell Damage" }, } },
- ["SpellDamageRingInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(18-21)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-21)% increased Spell Damage" }, } },
- ["SpellDamageRingInfluence3__"] = { type = "Prefix", affix = "Crusader's", "(22-25)% increased Spell Damage", statOrder = { 1228 }, level = 80, group = "SpellDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(22-25)% increased Spell Damage" }, } },
- ["IncreasedLifeLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "(35-40)% increased total Recovery per second from Life Leech", statOrder = { 2162 }, level = 68, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2633745731] = { "(35-40)% increased total Recovery per second from Life Leech" }, } },
- ["IncreasedLifeLeechRateInfluence2"] = { type = "Prefix", affix = "Crusader's", "(41-45)% increased total Recovery per second from Life Leech", statOrder = { 2162 }, level = 75, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2633745731] = { "(41-45)% increased total Recovery per second from Life Leech" }, } },
- ["IncreasedLifeLeechRateInfluence3"] = { type = "Prefix", affix = "Crusader's", "(46-50)% increased total Recovery per second from Life Leech", statOrder = { 2162 }, level = 80, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2633745731] = { "(46-50)% increased total Recovery per second from Life Leech" }, } },
- ["IncreasedLifeLeechRateSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(35-40)% increased total Recovery per second from Life Leech", statOrder = { 2162 }, level = 68, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2633745731] = { "(35-40)% increased total Recovery per second from Life Leech" }, } },
- ["IncreasedLifeLeechRateSuffixInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-45)% increased total Recovery per second from Life Leech", statOrder = { 2162 }, level = 75, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2633745731] = { "(41-45)% increased total Recovery per second from Life Leech" }, } },
- ["IncreasedLifeLeechRateSuffixInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(46-50)% increased total Recovery per second from Life Leech", statOrder = { 2162 }, level = 80, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2633745731] = { "(46-50)% increased total Recovery per second from Life Leech" }, } },
- ["ReducedCurseEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-29)% reduced Effect of Curses on you", statOrder = { 2175 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3407849389] = { "(25-29)% reduced Effect of Curses on you" }, } },
- ["ReducedCurseEffectInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(35-40)% reduced Effect of Curses on you", statOrder = { 2175 }, level = 75, group = "ReducedCurseEffect", weightKey = { "ring_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3407849389] = { "(35-40)% reduced Effect of Curses on you" }, } },
- ["CurseOnHitConductivityInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Conductivity on Hit", statOrder = { 2532 }, level = 75, group = "ConductivityOnHitLevel", weightKey = { "ring_crusader", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [710372469] = { "Curse Enemies with Conductivity on Hit" }, } },
- ["CurseOnHitConductivityInfluence2___"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Conductivity on Hit", statOrder = { 2532 }, level = 80, group = "ConductivityOnHitLevel", weightKey = { "ring_crusader", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [710372469] = { "Curse Enemies with Conductivity on Hit" }, } },
- ["LifeGainedOnSpellHitInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (8-12) Life per Enemy Hit with Spells", statOrder = { 1744 }, level = 68, group = "LifeGainedOnSpellHit", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain (8-12) Life per Enemy Hit with Spells" }, } },
- ["LifeGainedOnSpellHitInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (13-15) Life per Enemy Hit with Spells", statOrder = { 1744 }, level = 75, group = "LifeGainedOnSpellHit", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain (13-15) Life per Enemy Hit with Spells" }, } },
- ["GlobalCriticalStrikeChanceRingInfluence1___"] = { type = "Suffix", affix = "of the Crusade", "(15-17)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 68, group = "CriticalStrikeChance", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(15-17)% increased Global Critical Strike Chance" }, } },
- ["GlobalCriticalStrikeChanceRingInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(18-21)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 75, group = "CriticalStrikeChance", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(18-21)% increased Global Critical Strike Chance" }, } },
- ["GlobalCriticalStrikeChanceRingInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 80, group = "CriticalStrikeChance", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(22-25)% increased Global Critical Strike Chance" }, } },
- ["ChanceToIgniteAddedDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies", statOrder = { 6889 }, level = 68, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "" }, [794830148] = { "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies" }, } },
- ["ChanceToIgniteAddedDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies", statOrder = { 6889 }, level = 75, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "" }, [794830148] = { "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies" }, } },
- ["AddedFireDamagePerEnduranceChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "(2-3) to (4-5) Fire Damage per Endurance Charge", statOrder = { 9241 }, level = 75, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [1073447019] = { "(2-3) to (4-5) Fire Damage per Endurance Charge" }, } },
- ["AddedFireDamagePerEnduranceChargeInfluence2__"] = { type = "Prefix", affix = "Warlord's", "(3-4) to (6-7) Fire Damage per Endurance Charge", statOrder = { 9241 }, level = 80, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [1073447019] = { "(3-4) to (6-7) Fire Damage per Endurance Charge" }, } },
- ["MeleeDamageRingInfluence1"] = { type = "Prefix", affix = "Warlord's", "(15-17)% increased Melee Damage", statOrder = { 1239 }, level = 68, group = "MeleeDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(15-17)% increased Melee Damage" }, } },
- ["MeleeDamageRingInfluence2"] = { type = "Prefix", affix = "Warlord's", "(18-21)% increased Melee Damage", statOrder = { 1239 }, level = 75, group = "MeleeDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(18-21)% increased Melee Damage" }, } },
- ["MeleeDamageRingInfluence3"] = { type = "Prefix", affix = "Warlord's", "(22-25)% increased Melee Damage", statOrder = { 1239 }, level = 80, group = "MeleeDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(22-25)% increased Melee Damage" }, } },
- ["CurseOnHitFlammabilityInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Flammability on Hit", statOrder = { 2535 }, level = 75, group = "FlammabilityOnHitLevel", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [338121249] = { "Curse Enemies with Flammability on Hit" }, } },
- ["CurseOnHitFlammabilityInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Flammability on Hit", statOrder = { 2535 }, level = 80, group = "FlammabilityOnHitLevel", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [338121249] = { "Curse Enemies with Flammability on Hit" }, } },
- ["CurseOnHitVulnerabilityInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Vulnerability on Hit", statOrder = { 2528 }, level = 75, group = "CurseOnHitLevelVulnerabilityMod", weightKey = { "ring_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3967845372] = { "Curse Enemies with Vulnerability on Hit" }, } },
- ["CurseOnHitVulnerabilityInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Vulnerability on Hit", statOrder = { 2528 }, level = 80, group = "CurseOnHitLevelVulnerabilityMod", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3967845372] = { "Curse Enemies with Vulnerability on Hit" }, } },
- ["CriticalStrikeMultiplierRingInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(14-16)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(14-16)% to Global Critical Strike Multiplier" }, } },
- ["CriticalStrikeMultiplierRingInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(17-19)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(17-19)% to Global Critical Strike Multiplier" }, } },
- ["CriticalStrikeMultiplierRingInfluence3_"] = { type = "Suffix", affix = "of the Conquest", "+(20-22)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 80, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-22)% to Global Critical Strike Multiplier" }, } },
- ["BleedDamageAndDurationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(8-12)% increased Damage with Bleeding", "(5-6)% increased Bleeding Duration", statOrder = { 3174, 4999 }, level = 68, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(5-6)% increased Bleeding Duration" }, [1294118672] = { "(8-12)% increased Damage with Bleeding" }, } },
- ["BleedDamageAndDurationInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(13-17)% increased Damage with Bleeding", "(7-8)% increased Bleeding Duration", statOrder = { 3174, 4999 }, level = 75, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(7-8)% increased Bleeding Duration" }, [1294118672] = { "(13-17)% increased Damage with Bleeding" }, } },
- ["BleedDamageAndDurationInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(18-22)% increased Damage with Bleeding", "(9-10)% increased Bleeding Duration", statOrder = { 3174, 4999 }, level = 80, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(9-10)% increased Bleeding Duration" }, [1294118672] = { "(18-22)% increased Damage with Bleeding" }, } },
- ["ChanceToFreezeAddedDamageInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6888 }, level = 68, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [2233361223] = { "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies" }, [44571480] = { "" }, } },
- ["ChanceToFreezeAddedDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6888 }, level = 75, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [2233361223] = { "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies" }, [44571480] = { "" }, } },
- ["AddedColdDamagePerFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(2-3) to (4-5) Added Cold Damage per Frenzy Charge", statOrder = { 4278 }, level = 75, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "(2-3) to (4-5) Added Cold Damage per Frenzy Charge" }, } },
- ["AddedColdDamagePerFrenzyChargeInfluence2__"] = { type = "Prefix", affix = "Redeemer's", "(3-4) to (6-7) Added Cold Damage per Frenzy Charge", statOrder = { 4278 }, level = 80, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "(3-4) to (6-7) Added Cold Damage per Frenzy Charge" }, } },
- ["ProjectileAttackDamageRingInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(15-17)% increased Projectile Attack Damage", statOrder = { 2002 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(15-17)% increased Projectile Attack Damage" }, } },
- ["ProjectileAttackDamageRingInfluence2___"] = { type = "Prefix", affix = "Redeemer's", "(18-21)% increased Projectile Attack Damage", statOrder = { 2002 }, level = 75, group = "ProjectileAttackDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(18-21)% increased Projectile Attack Damage" }, } },
- ["ProjectileAttackDamageRingInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(22-25)% increased Projectile Attack Damage", statOrder = { 2002 }, level = 80, group = "ProjectileAttackDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(22-25)% increased Projectile Attack Damage" }, } },
- ["MinionDamageRingInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (15-17)% increased Damage", statOrder = { 1978 }, level = 68, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-17)% increased Damage" }, } },
- ["MinionDamageRingInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (18-21)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (18-21)% increased Damage" }, } },
- ["MinionDamageRingInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (22-25)% increased Damage", statOrder = { 1978 }, level = 80, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (22-25)% increased Damage" }, } },
- ["EnergyShieldRechargeDelayInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(15-20)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 68, group = "EnergyShieldDelay", weightKey = { "ring_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(15-20)% faster start of Energy Shield Recharge" }, } },
- ["EnergyShieldRechargeDelayInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(20-24)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 75, group = "EnergyShieldDelay", weightKey = { "ring_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(20-24)% faster start of Energy Shield Recharge" }, } },
- ["CurseOnHitFrostbiteInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Frostbite on Hit", statOrder = { 2536 }, level = 75, group = "FrostbiteOnHitLevel", weightKey = { "ring_eyrie", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [426847518] = { "Curse Enemies with Frostbite on Hit" }, } },
- ["CurseOnHitFrostbiteInfluence2"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Frostbite on Hit", statOrder = { 2536 }, level = 80, group = "FrostbiteOnHitLevel", weightKey = { "ring_eyrie", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [426847518] = { "Curse Enemies with Frostbite on Hit" }, } },
- ["AttackSpeedHitRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Attack Speed if you've been Hit Recently", statOrder = { 4900 }, level = 75, group = "AttackSpeedHitRecently", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [4137521191] = { "(8-12)% increased Attack Speed if you've been Hit Recently" }, } },
- ["IncreasedExperienceGainInfluence1"] = { type = "Prefix", affix = "Hunter's", "(2-3)% increased Experience gain", statOrder = { 1608 }, level = 85, group = "ExperienceIncrease", weightKey = { "ring_basilisk", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHashes = { [3666934677] = { "(2-3)% increased Experience gain" }, } },
- ["ReflectedPhysicalDamageRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (31-45)% reduced Reflected Physical Damage", statOrder = { 9669 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical" }, tradeHashes = { [129035625] = { "You and your Minions take (31-45)% reduced Reflected Physical Damage" }, } },
- ["ReflectedPhysicalDamageRingInfluence2_"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (46-55)% reduced Reflected Physical Damage", statOrder = { 9669 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical" }, tradeHashes = { [129035625] = { "You and your Minions take (46-55)% reduced Reflected Physical Damage" }, } },
+ ["NearbyEnemiesAreBlindedInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Nearby Enemies are Blinded", statOrder = { 3396 }, level = 75, group = "NearbyEnemiesAreBlinded", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [223497523] = { "" }, [2826979740] = { "Nearby Enemies are Blinded" }, } },
+ ["PercentageDexterityBodyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-8)% increased Dexterity", statOrder = { 1185 }, level = 68, group = "PercentageDexterity", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [4139681126] = { "(5-8)% increased Dexterity" }, } },
+ ["PercentageDexterityBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(9-12)% increased Dexterity", statOrder = { 1185 }, level = 75, group = "PercentageDexterity", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, tradeHashes = { [4139681126] = { "(9-12)% increased Dexterity" }, } },
+ ["FrenzyChargeOnHitChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1833 }, level = 80, group = "FrenzyChargeOnHitChance", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [2323242761] = { "10% chance to gain a Frenzy Charge on Hit" }, } },
+ ["ManaOnKillPercentInfluence1"] = { type = "Suffix", affix = "of Redemption", "Recover (3-4)% of Mana on Kill", statOrder = { 1751 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1030153674] = { "Recover (3-4)% of Mana on Kill" }, } },
+ ["ManaOnKillPercentInfluence2"] = { type = "Suffix", affix = "of Redemption", "Recover (5-6)% of Mana on Kill", statOrder = { 1751 }, level = 80, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1030153674] = { "Recover (5-6)% of Mana on Kill" }, } },
+ ["ManaRecoveryRateBodyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-11)% increased Mana Recovery rate", statOrder = { 1586 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3513180117] = { "(8-11)% increased Mana Recovery rate" }, } },
+ ["ManaRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(12-15)% increased Mana Recovery rate", statOrder = { 1586 }, level = 80, group = "ManaRecoveryRate", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3513180117] = { "(12-15)% increased Mana Recovery rate" }, } },
+ ["AuraEffectBodyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1880071428] = { "(15-20)% increased effect of Non-Curse Auras from your Skills" }, } },
+ ["AuraEffectBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 80, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1880071428] = { "(21-25)% increased effect of Non-Curse Auras from your Skills" }, } },
+ ["MaximumLifeBodyInfluence1"] = { type = "Prefix", affix = "Hunter's", "(5-8)% increased maximum Life", statOrder = { 1571 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-8)% increased maximum Life" }, } },
+ ["MaximumLifeBodyInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(9-12)% increased maximum Life", statOrder = { 1571 }, level = 85, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(9-12)% increased maximum Life" }, } },
+ ["PhysTakenAsChaosInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(8-12)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "(8-12)% of Physical Damage from Hits taken as Chaos Damage" }, } },
+ ["PhysTakenAsChaosInfluence2"] = { type = "Prefix", affix = "Hunter's", "(13-15)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 83, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "(13-15)% of Physical Damage from Hits taken as Chaos Damage" }, } },
+ ["AdditionalCurseOnEnemiesInfluence1"] = { type = "Prefix", affix = "Hunter's", "You can apply an additional Curse", statOrder = { 2168 }, level = 82, group = "AdditionalCurseOnEnemies", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } },
+ ["RegenerateLifeOver1SecondInfluence1"] = { type = "Prefix", affix = "Hunter's", "Every 4 seconds, Regenerate 15% of Life over one second", statOrder = { 3786 }, level = 80, group = "RegenerateLifeOver1Second", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1242155304] = { "Every 4 seconds, Regenerate 15% of Life over one second" }, } },
+ ["OfferingEffectInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(16-20)% increased effect of Offerings", statOrder = { 4063 }, level = 68, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(16-20)% increased effect of Offerings" }, } },
+ ["OfferingEffectInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% increased effect of Offerings", statOrder = { 4063 }, level = 80, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(21-25)% increased effect of Offerings" }, } },
+ ["AdditionalCritWithAttacksInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Attacks have +(0.5-1)% to Critical Strike Chance", statOrder = { 4792 }, level = 68, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(0.5-1)% to Critical Strike Chance" }, } },
+ ["AdditionalCritWithAttacksInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Attacks have +(1.1-1.5)% to Critical Strike Chance", statOrder = { 4792 }, level = 84, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(1.1-1.5)% to Critical Strike Chance" }, } },
+ ["AdditionalCritWithSpellsInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(0.5-1)% to Spell Critical Strike Chance", statOrder = { 10125 }, level = 68, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [791835907] = { "+(0.5-1)% to Spell Critical Strike Chance" }, } },
+ ["AdditionalCritWithSpellsInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(1.1-1.5)% to Spell Critical Strike Chance", statOrder = { 10125 }, level = 84, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [791835907] = { "+(1.1-1.5)% to Spell Critical Strike Chance" }, } },
+ ["LifeRegenerationPercentBodyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1-1.5)% of Life per second", statOrder = { 1944 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-1.5)% of Life per second" }, } },
+ ["LifeRegenerationPercentBodyInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.6-2)% of Life per second", statOrder = { 1944 }, level = 75, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.6-2)% of Life per second" }, } },
+ ["MaximumLightningResistanceHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to maximum Lightning Resistance" }, } },
+ ["MaximumLightningResistanceHighInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 80, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to maximum Lightning Resistance" }, } },
+ ["MaximumLightningResistanceHighInfluence3_"] = { type = "Prefix", affix = "Crusader's", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 86, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } },
+ ["DamagePerBlockChanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "1% increased Damage per 1% Chance to Block Attack Damage", statOrder = { 6059 }, level = 68, group = "DamagePerBlockChance", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3400437584] = { "1% increased Damage per 1% Chance to Block Attack Damage" }, } },
+ ["MinimumPowerChargeInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+1 to Minimum Power Charges", statOrder = { 1813 }, level = 68, group = "MinimumPowerCharges", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [1999711879] = { "+1 to Minimum Power Charges" }, } },
+ ["MinimumPowerChargeInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+2 to Minimum Power Charges", statOrder = { 1813 }, level = 80, group = "MinimumPowerCharges", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [1999711879] = { "+2 to Minimum Power Charges" }, } },
+ ["RecoverEnergyShieldPercentOnBlockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Recover (3-5)% of Energy Shield when you Block", statOrder = { 2467 }, level = 68, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { "shield_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "block", "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1606263610] = { "Recover (3-5)% of Energy Shield when you Block" }, } },
+ ["EnergyShieldRegenHighInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Regenerate (1.5-2.5)% of Energy Shield per second", statOrder = { 2646 }, level = 75, group = "EnergyShieldRegenerationPerMinute", weightKey = { "shield_crusader", "amulet_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [3594640492] = { "Regenerate (1.5-2.5)% of Energy Shield per second" }, } },
+ ["ChanceToChillAttackersOnBlockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(25-40)% chance to Chill Attackers for 4 seconds on Block" }, } },
+ ["ChanceToChillAttackersOnBlockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 75, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(41-50)% chance to Chill Attackers for 4 seconds on Block" }, } },
+ ["ChanceToShockAttackersOnBlockInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(25-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10005 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(25-40)% chance to Shock Attackers for 4 seconds on Block" }, } },
+ ["ChanceToShockAttackersOnBlockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10005 }, level = 75, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(41-50)% chance to Shock Attackers for 4 seconds on Block" }, } },
+ ["SpellBlockIfBlockedSpellsInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "+(7-9)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", statOrder = { 10133 }, level = 68, group = "SpellBlockIfBlockedSpellRecently", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [4263513561] = { "+(7-9)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently" }, } },
+ ["SpellBlockIfBlockedSpellsInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+(10-12)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", statOrder = { 10133 }, level = 75, group = "SpellBlockIfBlockedSpellRecently", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [4263513561] = { "+(10-12)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently" }, } },
+ ["WarcryBuffEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(18-21)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 68, group = "WarcryEffect", weightKey = { "shield_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3037553757] = { "(18-21)% increased Warcry Buff Effect" }, } },
+ ["WarcryBuffEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffect", weightKey = { "shield_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3037553757] = { "(22-25)% increased Warcry Buff Effect" }, } },
+ ["MaximumFireResistanceHighInfluence1__"] = { type = "Prefix", affix = "Warlord's", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to maximum Fire Resistance" }, } },
+ ["MaximumFireResistanceHighInfluence2__"] = { type = "Prefix", affix = "Warlord's", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 80, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to maximum Fire Resistance" }, } },
+ ["MaximumFireResistanceHighInfluence3"] = { type = "Prefix", affix = "Warlord's", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 86, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } },
+ ["AreaOfEffectInfluence1"] = { type = "Prefix", affix = "Warlord's", "(7-9)% increased Area of Effect", statOrder = { 1880 }, level = 68, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(7-9)% increased Area of Effect" }, } },
+ ["AreaOfEffectInfluence2"] = { type = "Prefix", affix = "Warlord's", "(10-12)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(10-12)% increased Area of Effect" }, } },
+ ["AreaOfEffectInfluence3"] = { type = "Prefix", affix = "Warlord's", "(13-15)% increased Area of Effect", statOrder = { 1880 }, level = 80, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [280731498] = { "(13-15)% increased Area of Effect" }, } },
+ ["MinimumEnduranceChargeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+1 to Minimum Endurance Charges", statOrder = { 1803 }, level = 68, group = "MinimumEnduranceCharges", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [3706959521] = { "+1 to Minimum Endurance Charges" }, } },
+ ["MinimumEnduranceChargeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+2 to Minimum Endurance Charges", statOrder = { 1803 }, level = 80, group = "MinimumEnduranceCharges", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [3706959521] = { "+2 to Minimum Endurance Charges" }, } },
+ ["RecoverLifePercentOnBlockInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "Recover (3-5)% of Life when you Block", statOrder = { 3060 }, level = 68, group = "RecoverLifePercentOnBlock", weightKey = { "shield_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "block", "resource", "influence_mod", "life" }, tradeHashes = { [2442647190] = { "Recover (3-5)% of Life when you Block" }, } },
+ ["AttackBlockIfBlockedAttacksInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(5-6)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", statOrder = { 5230 }, level = 68, group = "AttackBlockIfBlockedAttackRecently", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [3789765926] = { "+(5-6)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently" }, } },
+ ["AttackBlockIfBlockedAttacksInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(7-8)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", statOrder = { 5230 }, level = 75, group = "AttackBlockIfBlockedAttackRecently", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [3789765926] = { "+(7-8)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently" }, } },
+ ["AdditionalPhysicalDamageReductionHighInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(3-5)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 75, group = "ReducedPhysicalDamageTaken", weightKey = { "shield_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } },
+ ["MaximumColdResistanceHighInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to maximum Cold Resistance" }, } },
+ ["MaximumColdResistanceHighInfluence2"] = { type = "Prefix", affix = "Redeemer's", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 80, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to maximum Cold Resistance" }, } },
+ ["MaximumColdResistanceHighInfluence3__"] = { type = "Prefix", affix = "Redeemer's", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 86, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } },
+ ["EnergyShieldDelayHighInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(16-20)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 68, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(16-20)% faster start of Energy Shield Recharge" }, } },
+ ["EnergyShieldDelayHighInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(21-25)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 75, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(21-25)% faster start of Energy Shield Recharge" }, } },
+ ["EnergyShieldDelayHighInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 80, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(26-30)% faster start of Energy Shield Recharge" }, } },
+ ["WeaponElementalDamageInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 68, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(26-30)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamageInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "(31-35)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 75, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(31-35)% increased Elemental Damage with Attack Skills" }, } },
+ ["WeaponElementalDamageInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "(36-40)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 80, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(36-40)% increased Elemental Damage with Attack Skills" }, } },
+ ["MinimumFrenzyChargeInfluence1"] = { type = "Suffix", affix = "of Redemption", "+1 to Minimum Frenzy Charges", statOrder = { 1808 }, level = 68, group = "MinimumFrenzyCharges", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [658456881] = { "+1 to Minimum Frenzy Charges" }, } },
+ ["MinimumFrenzyChargeInfluence2"] = { type = "Suffix", affix = "of Redemption", "+2 to Minimum Frenzy Charges", statOrder = { 1808 }, level = 80, group = "MinimumFrenzyCharges", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [658456881] = { "+2 to Minimum Frenzy Charges" }, } },
+ ["RecoverManaPercentOnBlockInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Recover (3-5)% of your maximum Mana when you Block", statOrder = { 8186 }, level = 68, group = "RecoverManaPercentOnBlock", weightKey = { "shield_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "block", "resource", "influence_mod", "mana" }, tradeHashes = { [3041288981] = { "Recover (3-5)% of your maximum Mana when you Block" }, } },
+ ["AdditionalChanceToEvadeHighInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(3-5)% chance to Evade Attack Hits", statOrder = { 5673 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "shield_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2021058489] = { "+(3-5)% chance to Evade Attack Hits" }, } },
+ ["AvoidPhysicalDamageInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to Avoid Physical Damage from Hits", statOrder = { 3371 }, level = 68, group = "PhysicalDamageAvoidance", weightKey = { "shield_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [2415497478] = { "(5-7)% chance to Avoid Physical Damage from Hits" }, } },
+ ["AvoidPhysicalDamageInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to Avoid Physical Damage from Hits", statOrder = { 3371 }, level = 80, group = "PhysicalDamageAvoidance", weightKey = { "shield_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [2415497478] = { "(8-10)% chance to Avoid Physical Damage from Hits" }, } },
+ ["CurseEffectivenessInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-11)% increased Effect of your Curses", statOrder = { 2596 }, level = 73, group = "CurseEffectiveness", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2353576063] = { "(8-11)% increased Effect of your Curses" }, } },
+ ["CurseEffectivenessInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Effect of your Curses", statOrder = { 2596 }, level = 80, group = "CurseEffectiveness", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [2353576063] = { "(8-12)% increased Effect of your Curses" }, } },
+ ["AuraEffectInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 73, group = "AuraEffect", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1880071428] = { "(5-7)% increased effect of Non-Curse Auras from your Skills" }, } },
+ ["AuraEffectInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 80, group = "AuraEffect", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1880071428] = { "(8-10)% increased effect of Non-Curse Auras from your Skills" }, } },
+ ["IncreasedAilmentEffectLowInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-20)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "shield_eyrie", "quiver_eyrie", "ring_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "ailment" }, tradeHashes = { [782230869] = { "(15-20)% increased Effect of Non-Damaging Ailments" }, } },
+ ["IncreasedAilmentEffectLowInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "shield_eyrie", "quiver_eyrie", "ring_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "ailment" }, tradeHashes = { [782230869] = { "(21-25)% increased Effect of Non-Damaging Ailments" }, } },
+ ["MaximumResistancesInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 80, group = "MaximumResistances", weightKey = { "shield_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } },
+ ["MaximumResistancesInfluence2"] = { type = "Prefix", affix = "Hunter's", "+2% to all maximum Resistances", statOrder = { 1642 }, level = 85, group = "MaximumResistances", weightKey = { "shield_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resistance" }, tradeHashes = { [569299859] = { "+2% to all maximum Resistances" }, } },
+ ["MaximumChaosResistanceHighInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to maximum Chaos Resistance" }, } },
+ ["MaximumChaosResistanceHighInfluence2"] = { type = "Prefix", affix = "Hunter's", "+2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 80, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to maximum Chaos Resistance" }, } },
+ ["MaximumChaosResistanceHighInfluence3"] = { type = "Prefix", affix = "Hunter's", "+3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 86, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to maximum Chaos Resistance" }, } },
+ ["MaximumLifeInfluence1"] = { type = "Prefix", affix = "Hunter's", "(3-6)% increased maximum Life", statOrder = { 1571 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "shield_basilisk", "belt_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(3-6)% increased maximum Life" }, } },
+ ["MaximumLifeInfluence2"] = { type = "Prefix", affix = "Hunter's", "(7-10)% increased maximum Life", statOrder = { 1571 }, level = 84, group = "MaximumLifeIncreasePercent", weightKey = { "shield_basilisk", "belt_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(7-10)% increased maximum Life" }, } },
+ ["NoExtraDamageFromBleedMovingInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3192 }, level = 75, group = "NoExtraDamageFromBleedMoving", weightKey = { "shield_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [935326447] = { "Moving while Bleeding doesn't cause you to take extra Damage" }, } },
+ ["GainRandomChargeOnBlockInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Gain an Endurance, Frenzy or Power charge when you Block", statOrder = { 6812 }, level = 68, group = "GainRandomChargeOnBlock", weightKey = { "shield_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "block", "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [2199099676] = { "Gain an Endurance, Frenzy or Power charge when you Block" }, } },
+ ["SocketedGemsReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Socketed Gems have 20% increased Reservation Efficiency", statOrder = { 528 }, level = 68, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 20% increased Reservation Efficiency" }, } },
+ ["SocketedGemsReducedReservationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 528 }, level = 80, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 30% increased Reservation Efficiency" }, } },
+ ["DegenDamageTakenInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(4-6)% reduced Damage taken from Damage Over Time", statOrder = { 2245 }, level = 68, group = "DegenDamageTaken", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [1101403182] = { "(4-6)% reduced Damage taken from Damage Over Time" }, } },
+ ["DegenDamageTakenInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-10)% reduced Damage taken from Damage Over Time", statOrder = { 2245 }, level = 80, group = "DegenDamageTaken", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, tradeHashes = { [1101403182] = { "(7-10)% reduced Damage taken from Damage Over Time" }, } },
+ ["LifeRegenerationPercentHighInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.1-1.5)% of Life per second", statOrder = { 1944 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "shield_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.1-1.5)% of Life per second" }, } },
+ ["LifeRegenerationPercentHighInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.6-2)% of Life per second", statOrder = { 1944 }, level = 80, group = "LifeRegenerationRatePercentage", weightKey = { "shield_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.6-2)% of Life per second" }, } },
+ ["PhysicalAddedAsExtraLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (5-10)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "quiver_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (5-10)% of Physical Damage as Extra Lightning Damage" }, } },
+ ["PhysicalAddedAsExtraLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (11-15)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "quiver_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (11-15)% of Physical Damage as Extra Lightning Damage" }, } },
+ ["AdditionalArrowInfluence1"] = { type = "Prefix", affix = "Warlord's", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 80, group = "AdditionalArrows", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } },
+ ["PhysicalAddedAsExtraFireInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Gain (5-10)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "quiver_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (5-10)% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsExtraFireInfluence2_____"] = { type = "Prefix", affix = "Warlord's", "Gain (11-15)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "quiver_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (11-15)% of Physical Damage as Extra Fire Damage" }, } },
+ ["MaimOnHitInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 15% chance to Maim on Hit", statOrder = { 8154 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have 15% chance to Maim on Hit" }, } },
+ ["MaimOnHitInfluence2___"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 20% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have 20% chance to Maim on Hit" }, } },
+ ["ChancetoGainPhasingOnKillInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(5-6)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(5-6)% chance to gain Phasing for 4 seconds on Kill" }, } },
+ ["ChancetoGainPhasingOnKillInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(7-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 70, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(7-8)% chance to gain Phasing for 4 seconds on Kill" }, } },
+ ["ChancetoGainPhasingOnKillInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(9-10)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 73, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(9-10)% chance to gain Phasing for 4 seconds on Kill" }, } },
+ ["BleedOnHitDamageInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 68, group = "BleedOnHitAndDamage", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(15-25)% increased Damage with Bleeding" }, [3204820200] = { "Attacks have 10% chance to cause Bleeding" }, } },
+ ["BleedOnHitDamageInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 75, group = "BleedOnHitAndDamage", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1294118672] = { "(26-30)% increased Damage with Bleeding" }, [3204820200] = { "Attacks have 15% chance to cause Bleeding" }, } },
+ ["PhysicalAddedAsExtraColdInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Gain (5-10)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "quiver_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (5-10)% of Physical Damage as Extra Cold Damage" }, } },
+ ["PhysicalAddedAsExtraColdInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (11-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "quiver_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (11-15)% of Physical Damage as Extra Cold Damage" }, } },
+ ["MovementVelocityExtraInfluence1"] = { type = "Prefix", affix = "Hunter's", "(3-6)% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(3-6)% increased Movement Speed" }, } },
+ ["MovementVelocityExtraInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(7-10)% increased Movement Speed", statOrder = { 1798 }, level = 80, group = "MovementVelocity", weightKey = { "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(7-10)% increased Movement Speed" }, } },
+ ["ManaGainPerTargetInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Gain (3-5) Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 68, group = "ManaGainPerTarget", weightKey = { "gloves_basilisk", "quiver_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [820939409] = { "Gain (3-5) Mana per Enemy Hit with Attacks" }, } },
+ ["ChaosDamageOverTimeMultiplierQuiverInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Chaos Damage over Time Multiplier with Attack Skills", statOrder = { 1261 }, level = 68, group = "ChaosDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3913282911] = { "+(16-20)% to Chaos Damage over Time Multiplier with Attack Skills" }, } },
+ ["ChaosDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Chaos Damage over Time Multiplier with Attack Skills", statOrder = { 1261 }, level = 80, group = "ChaosDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3913282911] = { "+(21-25)% to Chaos Damage over Time Multiplier with Attack Skills" }, } },
+ ["PhysicalDamageOverTimeMultiplierQuiverInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Physical Damage over Time Multiplier with Attack Skills", statOrder = { 1250 }, level = 68, group = "PhysicalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [709768359] = { "+(16-20)% to Physical Damage over Time Multiplier with Attack Skills" }, } },
+ ["PhysicalDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Physical Damage over Time Multiplier with Attack Skills", statOrder = { 1250 }, level = 80, group = "PhysicalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [709768359] = { "+(21-25)% to Physical Damage over Time Multiplier with Attack Skills" }, } },
+ ["FireDamageOverTimeMultiplierQuiverInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Fire Damage over Time Multiplier with Attack Skills", statOrder = { 1253 }, level = 68, group = "FireDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2139660169] = { "+(16-20)% to Fire Damage over Time Multiplier with Attack Skills" }, } },
+ ["FireDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Fire Damage over Time Multiplier with Attack Skills", statOrder = { 1253 }, level = 80, group = "FireDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2139660169] = { "+(21-25)% to Fire Damage over Time Multiplier with Attack Skills" }, } },
+ ["PoisonOnHitDamageInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "15% chance to Poison on Hit", "(15-25)% increased Damage with Poison", statOrder = { 3173, 3181 }, level = 68, group = "PoisonOnHitAndDamage", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(15-25)% increased Damage with Poison" }, [795138349] = { "15% chance to Poison on Hit" }, } },
+ ["PoisonOnHitDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "20% chance to Poison on Hit", "(26-30)% increased Damage with Poison", statOrder = { 3173, 3181 }, level = 75, group = "PoisonOnHitAndDamage", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1290399200] = { "(26-30)% increased Damage with Poison" }, [795138349] = { "20% chance to Poison on Hit" }, } },
+ ["GlobalEnergyShieldPercentInfluence1"] = { type = "Prefix", affix = "Crusader's", "(7-9)% increased maximum Energy Shield", statOrder = { 1561 }, level = 68, group = "GlobalEnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(7-9)% increased maximum Energy Shield" }, } },
+ ["GlobalEnergyShieldPercentInfluence2"] = { type = "Prefix", affix = "Crusader's", "(10-12)% increased maximum Energy Shield", statOrder = { 1561 }, level = 78, group = "GlobalEnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(10-12)% increased maximum Energy Shield" }, } },
+ ["GlobalEnergyShieldPercentInfluence3"] = { type = "Prefix", affix = "Crusader's", "(13-15)% increased maximum Energy Shield", statOrder = { 1561 }, level = 82, group = "GlobalEnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(13-15)% increased maximum Energy Shield" }, } },
+ ["CriticalStrikeChanceShockedEnemiesInfluence1"] = { type = "Prefix", affix = "Crusader's", "(30-34)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5913 }, level = 68, group = "CritChanceShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [276103140] = { "(30-34)% increased Critical Strike Chance against Shocked Enemies" }, } },
+ ["CriticalStrikeChanceShockedEnemiesInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-39)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5913 }, level = 75, group = "CritChanceShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [276103140] = { "(35-39)% increased Critical Strike Chance against Shocked Enemies" }, } },
+ ["CriticalStrikeChanceShockedEnemiesInfluence3__"] = { type = "Prefix", affix = "Crusader's", "(40-45)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5913 }, level = 80, group = "CritChanceShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [276103140] = { "(40-45)% increased Critical Strike Chance against Shocked Enemies" }, } },
+ ["LightningDamageInfluence1__"] = { type = "Prefix", affix = "Crusader's", "(16-20)% increased Lightning Damage", statOrder = { 1377 }, level = 68, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(16-20)% increased Lightning Damage" }, } },
+ ["LightningDamageInfluence2"] = { type = "Prefix", affix = "Crusader's", "(21-25)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(21-25)% increased Lightning Damage" }, } },
+ ["LightningDamageInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(26-30)% increased Lightning Damage", statOrder = { 1377 }, level = 80, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(26-30)% increased Lightning Damage" }, } },
+ ["FortifyOnMeleeStunInfluence1"] = { type = "Prefix", affix = "Crusader's", "Melee Hits which Stun have (8-12)% chance to Fortify", statOrder = { 5678 }, level = 68, group = "FortifyOnMeleeStun", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3206381437] = { "Melee Hits which Stun have (8-12)% chance to Fortify" }, } },
+ ["CooldownRecoveryHighInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } },
+ ["CooldownRecoveryHighInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 84, group = "GlobalCooldownRecovery", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(16-20)% increased Cooldown Recovery Rate" }, } },
+ ["SpellDamageDuringFlaskEffectInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "(20-25)% increased Spell Damage during any Flask Effect", statOrder = { 10148 }, level = 68, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2080171093] = { "(20-25)% increased Spell Damage during any Flask Effect" }, } },
+ ["SpellDamageDuringFlaskEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Spell Damage during any Flask Effect", statOrder = { 10148 }, level = 75, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2080171093] = { "(26-30)% increased Spell Damage during any Flask Effect" }, } },
+ ["SpellDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% increased Spell Damage during any Flask Effect", statOrder = { 10148 }, level = 80, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2080171093] = { "(31-35)% increased Spell Damage during any Flask Effect" }, } },
+ ["EnergyShieldRecoveryRateInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(7-9)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(7-9)% increased Energy Shield Recovery rate" }, } },
+ ["EnergyShieldRecoveryRateInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(10-12)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(10-12)% increased Energy Shield Recovery rate" }, } },
+ ["RemoveShockOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Remove Shock when you use a Flask", statOrder = { 9917 }, level = 75, group = "RemoveShockOnFlaskUse", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [561861132] = { "Remove Shock when you use a Flask" }, } },
+ ["GlobalArmourPercentInfluence1"] = { type = "Prefix", affix = "Warlord's", "(7-9)% increased Armour", statOrder = { 1541 }, level = 68, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [2866361420] = { "(7-9)% increased Armour" }, } },
+ ["GlobalArmourPercentInfluence2___"] = { type = "Prefix", affix = "Warlord's", "(10-12)% increased Armour", statOrder = { 1541 }, level = 78, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [2866361420] = { "(10-12)% increased Armour" }, } },
+ ["GlobalArmourPercentInfluence3"] = { type = "Prefix", affix = "Warlord's", "(13-15)% increased Armour", statOrder = { 1541 }, level = 82, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [2866361420] = { "(13-15)% increased Armour" }, } },
+ ["FireDamageBurningEnemiesInfluence1"] = { type = "Prefix", affix = "Warlord's", "(22-27) to (41-46) added Fire Damage against Burning Enemies", statOrder = { 10321 }, level = 68, group = "AddedFireBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [165402179] = { "(22-27) to (41-46) added Fire Damage against Burning Enemies" }, } },
+ ["FireDamageBurningEnemiesInfluence2"] = { type = "Prefix", affix = "Warlord's", "(28-32) to (47-51) added Fire Damage against Burning Enemies", statOrder = { 10321 }, level = 75, group = "AddedFireBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [165402179] = { "(28-32) to (47-51) added Fire Damage against Burning Enemies" }, } },
+ ["FireDamageBurningEnemiesInfluence3"] = { type = "Prefix", affix = "Warlord's", "(33-39) to (52-55) added Fire Damage against Burning Enemies", statOrder = { 10321 }, level = 80, group = "AddedFireBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [165402179] = { "(33-39) to (52-55) added Fire Damage against Burning Enemies" }, } },
+ ["FireDamageInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(16-20)% increased Fire Damage", statOrder = { 1357 }, level = 68, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(16-20)% increased Fire Damage" }, } },
+ ["FireDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(21-25)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(21-25)% increased Fire Damage" }, } },
+ ["FireDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(26-30)% increased Fire Damage", statOrder = { 1357 }, level = 80, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(26-30)% increased Fire Damage" }, } },
+ ["ReducedCriticalStrikeDamageTakenInfluence1"] = { type = "Prefix", affix = "Warlord's", "You take (15-20)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 68, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (15-20)% reduced Extra Damage from Critical Strikes" }, } },
+ ["ReducedCriticalStrikeDamageTakenInfluence2_"] = { type = "Prefix", affix = "Warlord's", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 75, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3855016469] = { "You take (21-30)% reduced Extra Damage from Critical Strikes" }, } },
+ ["AllDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(11-15)% increased Damage", statOrder = { 1191 }, level = 75, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2154246560] = { "(11-15)% increased Damage" }, } },
+ ["AllDamageInfluence2___"] = { type = "Prefix", affix = "Warlord's", "(16-20)% increased Damage", statOrder = { 1191 }, level = 80, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2154246560] = { "(16-20)% increased Damage" }, } },
+ ["AllDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(21-25)% increased Damage", statOrder = { 1191 }, level = 85, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2154246560] = { "(21-25)% increased Damage" }, } },
+ ["MeleeDamageDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(20-25)% increased Melee Damage during any Flask Effect", statOrder = { 9190 }, level = 68, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [4091369450] = { "(20-25)% increased Melee Damage during any Flask Effect" }, } },
+ ["MeleeDamageDuringFlaskEffectInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(26-30)% increased Melee Damage during any Flask Effect", statOrder = { 9190 }, level = 75, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [4091369450] = { "(26-30)% increased Melee Damage during any Flask Effect" }, } },
+ ["MeleeDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(31-35)% increased Melee Damage during any Flask Effect", statOrder = { 9190 }, level = 80, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [4091369450] = { "(31-35)% increased Melee Damage during any Flask Effect" }, } },
+ ["LifeRecoveryRateInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(7-9)% increased Life Recovery rate", statOrder = { 1578 }, level = 68, group = "LifeRecoveryRate", weightKey = { "belt_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(7-9)% increased Life Recovery rate" }, } },
+ ["LifeRecoveryRateInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(10-12)% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "belt_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(10-12)% increased Life Recovery rate" }, } },
+ ["RemoveIgniteOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Remove Ignite and Burning when you use a Flask", statOrder = { 9907 }, level = 75, group = "RemoveIgniteOnFlaskUse", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1162425204] = { "Remove Ignite and Burning when you use a Flask" }, } },
+ ["GlobalEvasionPercentInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(7-9)% increased Evasion Rating", statOrder = { 1549 }, level = 68, group = "GlobalEvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2106365538] = { "(7-9)% increased Evasion Rating" }, } },
+ ["GlobalEvasionPercentInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(10-12)% increased Evasion Rating", statOrder = { 1549 }, level = 78, group = "GlobalEvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2106365538] = { "(10-12)% increased Evasion Rating" }, } },
+ ["GlobalEvasionPercentInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "(13-15)% increased Evasion Rating", statOrder = { 1549 }, level = 82, group = "GlobalEvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "evasion" }, tradeHashes = { [2106365538] = { "(13-15)% increased Evasion Rating" }, } },
+ ["DamageChilledEnemiesInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Damage with Hits against Chilled Enemies", statOrder = { 6070 }, level = 68, group = "DamageChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2805714016] = { "(26-30)% increased Damage with Hits against Chilled Enemies" }, } },
+ ["DamageChilledEnemiesInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(31-35)% increased Damage with Hits against Chilled Enemies", statOrder = { 6070 }, level = 75, group = "DamageChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2805714016] = { "(31-35)% increased Damage with Hits against Chilled Enemies" }, } },
+ ["DamageChilledEnemiesInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(36-40)% increased Damage with Hits against Chilled Enemies", statOrder = { 6070 }, level = 80, group = "DamageChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2805714016] = { "(36-40)% increased Damage with Hits against Chilled Enemies" }, } },
+ ["FlaskEffectInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Flasks applied to you have (4-7)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, tradeHashes = { [114734841] = { "Flasks applied to you have (4-7)% increased Effect" }, } },
+ ["FlaskEffectInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Flasks applied to you have (8-10)% increased Effect", statOrder = { 2742 }, level = 81, group = "FlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, tradeHashes = { [114734841] = { "Flasks applied to you have (8-10)% increased Effect" }, } },
+ ["ColdDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(16-20)% increased Cold Damage", statOrder = { 1366 }, level = 68, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(16-20)% increased Cold Damage" }, } },
+ ["ColdDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(21-25)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(21-25)% increased Cold Damage" }, } },
+ ["ColdDamageInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Cold Damage", statOrder = { 1366 }, level = 80, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(26-30)% increased Cold Damage" }, } },
+ ["AttackSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "(8-14)% increased Attack Speed during any Flask Effect", statOrder = { 3300 }, level = 68, group = "AttackSpeedDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "flask", "influence_mod", "attack", "speed" }, tradeHashes = { [1365052901] = { "(8-14)% increased Attack Speed during any Flask Effect" }, } },
+ ["ProjectileAttackDamageDuringFlaskEffectInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(20-25)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9728 }, level = 68, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [2771016039] = { "(20-25)% increased Projectile Attack Damage during any Flask Effect" }, } },
+ ["ProjectileAttackDamageDuringFlaskEffectInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(26-30)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9728 }, level = 75, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [2771016039] = { "(26-30)% increased Projectile Attack Damage during any Flask Effect" }, } },
+ ["ProjectileAttackDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of Redemption", "(31-35)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9728 }, level = 80, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, tradeHashes = { [2771016039] = { "(31-35)% increased Projectile Attack Damage during any Flask Effect" }, } },
+ ["ManaRecoveryRateInfluence1"] = { type = "Suffix", affix = "of Redemption", "(7-9)% increased Mana Recovery rate", statOrder = { 1586 }, level = 68, group = "ManaRecoveryRate", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3513180117] = { "(7-9)% increased Mana Recovery rate" }, } },
+ ["ManaRecoveryRateInfluence2__"] = { type = "Suffix", affix = "of Redemption", "(10-12)% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3513180117] = { "(10-12)% increased Mana Recovery rate" }, } },
+ ["RemoveFreezeOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of Redemption", "Remove Chill and Freeze when you use a Flask", statOrder = { 9903 }, level = 75, group = "RemoveFreezeOnFlaskUse", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3296873305] = { "Remove Chill and Freeze when you use a Flask" }, } },
+ ["FlaskChanceToNotConsumeChargesInfluence1"] = { type = "Prefix", affix = "Hunter's", "(6-10)% chance for Flasks you use to not consume Charges", statOrder = { 4230 }, level = 80, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, tradeHashes = { [311641062] = { "(6-10)% chance for Flasks you use to not consume Charges" }, } },
+ ["FlaskChargeOnCritInfluence1"] = { type = "Prefix", affix = "Hunter's", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 3391 }, level = 75, group = "FlaskChargeOnCrit", weightKey = { "belt_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [3738001379] = { "Gain a Flask Charge when you deal a Critical Strike" }, } },
+ ["ChaosDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "(16-20)% increased Chaos Damage", statOrder = { 1385 }, level = 68, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(16-20)% increased Chaos Damage" }, } },
+ ["ChaosDamageInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(21-25)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(21-25)% increased Chaos Damage" }, } },
+ ["ChaosDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "(26-30)% increased Chaos Damage", statOrder = { 1385 }, level = 80, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(26-30)% increased Chaos Damage" }, } },
+ ["PercentageAllAttributesInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-9)% increased Attributes", statOrder = { 1183 }, level = 68, group = "PercentageAllAttributes", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3143208761] = { "(6-9)% increased Attributes" }, } },
+ ["PercentageAllAttributesInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(10-12)% increased Attributes", statOrder = { 1183 }, level = 75, group = "PercentageAllAttributes", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, tradeHashes = { [3143208761] = { "(10-12)% increased Attributes" }, } },
+ ["CastSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(8-14)% increased Cast Speed during any Flask Effect", statOrder = { 5466 }, level = 68, group = "CastSpeedDuringFlaskEffect", weightKey = { "belt_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "flask", "caster", "speed" }, tradeHashes = { [252194507] = { "(8-14)% increased Cast Speed during any Flask Effect" }, } },
+ ["ArmourPenetrationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Hits have (30-39)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 68, group = "ChanceToIgnoreEnemyArmour", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (30-39)% chance to ignore Enemy Physical Damage Reduction" }, } },
+ ["ArmourPenetrationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits have (40-50)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (40-50)% chance to ignore Enemy Physical Damage Reduction" }, } },
+ ["MovementSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-10)% increased Movement Speed during any Flask Effect", statOrder = { 3186 }, level = 81, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "speed" }, tradeHashes = { [304970526] = { "(6-10)% increased Movement Speed during any Flask Effect" }, } },
+ ["PhysicalAttackDamageTakenInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "-(35-25) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 68, group = "PhysicalAttackDamageTaken", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(35-25) Physical Damage taken from Attack Hits" }, } },
+ ["PhysicalAttackDamageTakenInfluence2"] = { type = "Suffix", affix = "of the Hunt", "-(45-36) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 75, group = "PhysicalAttackDamageTaken", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(45-36) Physical Damage taken from Attack Hits" }, } },
+ ["ChanceToShockAddedDamageInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies", statOrder = { 6886 }, level = 68, group = "ChanceToShockAddedDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, tradeHashes = { [90012347] = { "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies" }, [1538773178] = { "" }, } },
+ ["ChanceToShockAddedDamageInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies", statOrder = { 6886 }, level = 75, group = "ChanceToShockAddedDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, tradeHashes = { [90012347] = { "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies" }, [1538773178] = { "" }, } },
+ ["AddedLightningDamagePerPowerChargeInfluence1__"] = { type = "Prefix", affix = "Crusader's", "1 to (6-8) Lightning Damage per Power Charge", statOrder = { 9242 }, level = 75, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [1917107159] = { "1 to (6-8) Lightning Damage per Power Charge" }, } },
+ ["AddedLightningDamagePerPowerChargeInfluence2"] = { type = "Prefix", affix = "Crusader's", "(1-2) to (9-11) Lightning Damage per Power Charge", statOrder = { 9242 }, level = 80, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [1917107159] = { "(1-2) to (9-11) Lightning Damage per Power Charge" }, } },
+ ["SpellDamageRingInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(15-17)% increased Spell Damage", statOrder = { 1223 }, level = 68, group = "SpellDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-17)% increased Spell Damage" }, } },
+ ["SpellDamageRingInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(18-21)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-21)% increased Spell Damage" }, } },
+ ["SpellDamageRingInfluence3__"] = { type = "Prefix", affix = "Crusader's", "(22-25)% increased Spell Damage", statOrder = { 1223 }, level = 80, group = "SpellDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(22-25)% increased Spell Damage" }, } },
+ ["IncreasedLifeLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "(35-40)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 68, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2633745731] = { "(35-40)% increased total Recovery per second from Life Leech" }, } },
+ ["IncreasedLifeLeechRateInfluence2"] = { type = "Prefix", affix = "Crusader's", "(41-45)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 75, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2633745731] = { "(41-45)% increased total Recovery per second from Life Leech" }, } },
+ ["IncreasedLifeLeechRateInfluence3"] = { type = "Prefix", affix = "Crusader's", "(46-50)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 80, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2633745731] = { "(46-50)% increased total Recovery per second from Life Leech" }, } },
+ ["IncreasedLifeLeechRateSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(35-40)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 68, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2633745731] = { "(35-40)% increased total Recovery per second from Life Leech" }, } },
+ ["IncreasedLifeLeechRateSuffixInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-45)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 75, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2633745731] = { "(41-45)% increased total Recovery per second from Life Leech" }, } },
+ ["IncreasedLifeLeechRateSuffixInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(46-50)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 80, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [2633745731] = { "(46-50)% increased total Recovery per second from Life Leech" }, } },
+ ["ReducedCurseEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-29)% reduced Effect of Curses on you", statOrder = { 2170 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3407849389] = { "(25-29)% reduced Effect of Curses on you" }, } },
+ ["ReducedCurseEffectInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(35-40)% reduced Effect of Curses on you", statOrder = { 2170 }, level = 75, group = "ReducedCurseEffect", weightKey = { "ring_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3407849389] = { "(35-40)% reduced Effect of Curses on you" }, } },
+ ["CurseOnHitConductivityInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Conductivity on Hit", statOrder = { 2527 }, level = 75, group = "ConductivityOnHitLevel", weightKey = { "ring_crusader", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [710372469] = { "Curse Enemies with Conductivity on Hit" }, } },
+ ["CurseOnHitConductivityInfluence2___"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Conductivity on Hit", statOrder = { 2527 }, level = 80, group = "ConductivityOnHitLevel", weightKey = { "ring_crusader", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [710372469] = { "Curse Enemies with Conductivity on Hit" }, } },
+ ["LifeGainedOnSpellHitInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (8-12) Life per Enemy Hit with Spells", statOrder = { 1739 }, level = 68, group = "LifeGainedOnSpellHit", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain (8-12) Life per Enemy Hit with Spells" }, } },
+ ["LifeGainedOnSpellHitInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (13-15) Life per Enemy Hit with Spells", statOrder = { 1739 }, level = 75, group = "LifeGainedOnSpellHit", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, tradeHashes = { [2018035324] = { "Gain (13-15) Life per Enemy Hit with Spells" }, } },
+ ["GlobalCriticalStrikeChanceRingInfluence1___"] = { type = "Suffix", affix = "of the Crusade", "(15-17)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 68, group = "CriticalStrikeChance", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(15-17)% increased Global Critical Strike Chance" }, } },
+ ["GlobalCriticalStrikeChanceRingInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(18-21)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 75, group = "CriticalStrikeChance", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(18-21)% increased Global Critical Strike Chance" }, } },
+ ["GlobalCriticalStrikeChanceRingInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 80, group = "CriticalStrikeChance", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(22-25)% increased Global Critical Strike Chance" }, } },
+ ["ChanceToIgniteAddedDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies", statOrder = { 6884 }, level = 68, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "" }, [794830148] = { "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies" }, } },
+ ["ChanceToIgniteAddedDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies", statOrder = { 6884 }, level = 75, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "" }, [794830148] = { "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies" }, } },
+ ["AddedFireDamagePerEnduranceChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "(2-3) to (4-5) Fire Damage per Endurance Charge", statOrder = { 9237 }, level = 75, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [1073447019] = { "(2-3) to (4-5) Fire Damage per Endurance Charge" }, } },
+ ["AddedFireDamagePerEnduranceChargeInfluence2__"] = { type = "Prefix", affix = "Warlord's", "(3-4) to (6-7) Fire Damage per Endurance Charge", statOrder = { 9237 }, level = 80, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [1073447019] = { "(3-4) to (6-7) Fire Damage per Endurance Charge" }, } },
+ ["MeleeDamageRingInfluence1"] = { type = "Prefix", affix = "Warlord's", "(15-17)% increased Melee Damage", statOrder = { 1234 }, level = 68, group = "MeleeDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(15-17)% increased Melee Damage" }, } },
+ ["MeleeDamageRingInfluence2"] = { type = "Prefix", affix = "Warlord's", "(18-21)% increased Melee Damage", statOrder = { 1234 }, level = 75, group = "MeleeDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(18-21)% increased Melee Damage" }, } },
+ ["MeleeDamageRingInfluence3"] = { type = "Prefix", affix = "Warlord's", "(22-25)% increased Melee Damage", statOrder = { 1234 }, level = 80, group = "MeleeDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(22-25)% increased Melee Damage" }, } },
+ ["CurseOnHitFlammabilityInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Flammability on Hit", statOrder = { 2530 }, level = 75, group = "FlammabilityOnHitLevel", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [338121249] = { "Curse Enemies with Flammability on Hit" }, } },
+ ["CurseOnHitFlammabilityInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Flammability on Hit", statOrder = { 2530 }, level = 80, group = "FlammabilityOnHitLevel", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [338121249] = { "Curse Enemies with Flammability on Hit" }, } },
+ ["CurseOnHitVulnerabilityInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Vulnerability on Hit", statOrder = { 2523 }, level = 75, group = "CurseOnHitLevelVulnerabilityMod", weightKey = { "ring_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3967845372] = { "Curse Enemies with Vulnerability on Hit" }, } },
+ ["CurseOnHitVulnerabilityInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Vulnerability on Hit", statOrder = { 2523 }, level = 80, group = "CurseOnHitLevelVulnerabilityMod", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [3967845372] = { "Curse Enemies with Vulnerability on Hit" }, } },
+ ["CriticalStrikeMultiplierRingInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(14-16)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(14-16)% to Global Critical Strike Multiplier" }, } },
+ ["CriticalStrikeMultiplierRingInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(17-19)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(17-19)% to Global Critical Strike Multiplier" }, } },
+ ["CriticalStrikeMultiplierRingInfluence3_"] = { type = "Suffix", affix = "of the Conquest", "+(20-22)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 80, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(20-22)% to Global Critical Strike Multiplier" }, } },
+ ["BleedDamageAndDurationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(8-12)% increased Damage with Bleeding", "(5-6)% increased Bleeding Duration", statOrder = { 3169, 4994 }, level = 68, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(5-6)% increased Bleeding Duration" }, [1294118672] = { "(8-12)% increased Damage with Bleeding" }, } },
+ ["BleedDamageAndDurationInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(13-17)% increased Damage with Bleeding", "(7-8)% increased Bleeding Duration", statOrder = { 3169, 4994 }, level = 75, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(7-8)% increased Bleeding Duration" }, [1294118672] = { "(13-17)% increased Damage with Bleeding" }, } },
+ ["BleedDamageAndDurationInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(18-22)% increased Damage with Bleeding", "(9-10)% increased Bleeding Duration", statOrder = { 3169, 4994 }, level = 80, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(9-10)% increased Bleeding Duration" }, [1294118672] = { "(18-22)% increased Damage with Bleeding" }, } },
+ ["ChanceToFreezeAddedDamageInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6883 }, level = 68, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [2233361223] = { "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies" }, [44571480] = { "" }, } },
+ ["ChanceToFreezeAddedDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6883 }, level = 75, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, tradeHashes = { [2233361223] = { "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies" }, [44571480] = { "" }, } },
+ ["AddedColdDamagePerFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(2-3) to (4-5) Added Cold Damage per Frenzy Charge", statOrder = { 4273 }, level = 75, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "(2-3) to (4-5) Added Cold Damage per Frenzy Charge" }, } },
+ ["AddedColdDamagePerFrenzyChargeInfluence2__"] = { type = "Prefix", affix = "Redeemer's", "(3-4) to (6-7) Added Cold Damage per Frenzy Charge", statOrder = { 4273 }, level = 80, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "(3-4) to (6-7) Added Cold Damage per Frenzy Charge" }, } },
+ ["ProjectileAttackDamageRingInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(15-17)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(15-17)% increased Projectile Attack Damage" }, } },
+ ["ProjectileAttackDamageRingInfluence2___"] = { type = "Prefix", affix = "Redeemer's", "(18-21)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 75, group = "ProjectileAttackDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(18-21)% increased Projectile Attack Damage" }, } },
+ ["ProjectileAttackDamageRingInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(22-25)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 80, group = "ProjectileAttackDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(22-25)% increased Projectile Attack Damage" }, } },
+ ["MinionDamageRingInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (15-17)% increased Damage", statOrder = { 1973 }, level = 68, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (15-17)% increased Damage" }, } },
+ ["MinionDamageRingInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (18-21)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (18-21)% increased Damage" }, } },
+ ["MinionDamageRingInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (22-25)% increased Damage", statOrder = { 1973 }, level = 80, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (22-25)% increased Damage" }, } },
+ ["EnergyShieldRechargeDelayInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(15-20)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 68, group = "EnergyShieldDelay", weightKey = { "ring_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(15-20)% faster start of Energy Shield Recharge" }, } },
+ ["EnergyShieldRechargeDelayInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(20-24)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 75, group = "EnergyShieldDelay", weightKey = { "ring_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(20-24)% faster start of Energy Shield Recharge" }, } },
+ ["CurseOnHitFrostbiteInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Frostbite on Hit", statOrder = { 2531 }, level = 75, group = "FrostbiteOnHitLevel", weightKey = { "ring_eyrie", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [426847518] = { "Curse Enemies with Frostbite on Hit" }, } },
+ ["CurseOnHitFrostbiteInfluence2"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Frostbite on Hit", statOrder = { 2531 }, level = 80, group = "FrostbiteOnHitLevel", weightKey = { "ring_eyrie", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [426847518] = { "Curse Enemies with Frostbite on Hit" }, } },
+ ["AttackSpeedHitRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Attack Speed if you've been Hit Recently", statOrder = { 4895 }, level = 75, group = "AttackSpeedHitRecently", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [4137521191] = { "(8-12)% increased Attack Speed if you've been Hit Recently" }, } },
+ ["IncreasedExperienceGainInfluence1"] = { type = "Prefix", affix = "Hunter's", "(2-3)% increased Experience gain", statOrder = { 1603 }, level = 85, group = "ExperienceIncrease", weightKey = { "ring_basilisk", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHashes = { [3666934677] = { "(2-3)% increased Experience gain" }, } },
+ ["ReflectedPhysicalDamageRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (31-45)% reduced Reflected Physical Damage", statOrder = { 9670 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical" }, tradeHashes = { [129035625] = { "You and your Minions take (31-45)% reduced Reflected Physical Damage" }, } },
+ ["ReflectedPhysicalDamageRingInfluence2_"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (46-55)% reduced Reflected Physical Damage", statOrder = { 9670 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical" }, tradeHashes = { [129035625] = { "You and your Minions take (46-55)% reduced Reflected Physical Damage" }, } },
["PhysicalDamageCannotBeReflectedPercentRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "(40-55)% of Physical Hit Damage from you and your Minions cannot be Reflected", statOrder = { 3 }, level = 68, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1818622832] = { "(40-55)% of Physical Hit Damage from you and your Minions cannot be Reflected" }, } },
["PhysicalDamageCannotBeReflectedPercentRingInfluence2"] = { type = "Prefix", affix = "Hunter's", "(56-75)% of Physical Hit Damage from you and your Minions cannot be Reflected", statOrder = { 3 }, level = 75, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1818622832] = { "(56-75)% of Physical Hit Damage from you and your Minions cannot be Reflected" }, } },
- ["ReflectedElementalDamageRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (31-45)% reduced Reflected Elemental Damage", statOrder = { 6339 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take (31-45)% reduced Reflected Elemental Damage" }, } },
- ["ReflectedElementalDamageRingInfluence2"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (46-55)% reduced Reflected Elemental Damage", statOrder = { 6339 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take (46-55)% reduced Reflected Elemental Damage" }, } },
+ ["ReflectedElementalDamageRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (31-45)% reduced Reflected Elemental Damage", statOrder = { 6334 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take (31-45)% reduced Reflected Elemental Damage" }, } },
+ ["ReflectedElementalDamageRingInfluence2"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (46-55)% reduced Reflected Elemental Damage", statOrder = { 6334 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take (46-55)% reduced Reflected Elemental Damage" }, } },
["ElementalDamageCannotBeReflectedPercentRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "(40-55)% of Elemental Hit Damage from you and your Minions cannot be Reflected", statOrder = { 2 }, level = 68, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3408683611] = { "(40-55)% of Elemental Hit Damage from you and your Minions cannot be Reflected" }, } },
["ElementalDamageCannotBeReflectedPercentRingInfluence2"] = { type = "Prefix", affix = "Hunter's", "(56-75)% of Elemental Hit Damage from you and your Minions cannot be Reflected", statOrder = { 2 }, level = 75, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3408683611] = { "(56-75)% of Elemental Hit Damage from you and your Minions cannot be Reflected" }, } },
- ["EnergyShieldDelayInfluence1"] = { type = "Prefix", affix = "Hunter's", "(15-20)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 68, group = "EnergyShieldDelay", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(15-20)% faster start of Energy Shield Recharge" }, } },
- ["EnergyShieldDelayInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(20-24)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 75, group = "EnergyShieldDelay", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(20-24)% faster start of Energy Shield Recharge" }, } },
- ["LifeGainPerTargetInfluence1"] = { type = "Prefix", affix = "Hunter's", "Gain (10-15) Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 68, group = "LifeGainPerTarget", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (10-15) Life per Enemy Hit with Attacks" }, } },
- ["LifeGainPerTargetInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Gain (16-20) Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 75, group = "LifeGainPerTarget", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (16-20) Life per Enemy Hit with Attacks" }, } },
- ["ExertedAttackDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Exerted Attacks deal (25-27)% increased Damage", statOrder = { 6361 }, level = 68, group = "ExertedAttackDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (25-27)% increased Damage" }, } },
- ["ExertedAttackDamageInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Exerted Attacks deal (28-31)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (28-31)% increased Damage" }, } },
- ["ExertedAttackDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Exerted Attacks deal (32-35)% increased Damage", statOrder = { 6361 }, level = 80, group = "ExertedAttackDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (32-35)% increased Damage" }, } },
- ["CurseOnHitElementalWeaknessInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2530 }, level = 75, group = "CurseOnHitLevelElementalWeaknessMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2028847114] = { "Curse Enemies with Elemental Weakness on Hit" }, } },
- ["CurseOnHitElementalWeaknessInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2530 }, level = 80, group = "CurseOnHitLevelElementalWeaknessMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2028847114] = { "Curse Enemies with Elemental Weakness on Hit" }, } },
- ["CurseOnHitDespairInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Despair on Hit", statOrder = { 2533 }, level = 75, group = "CurseOnHitDespairMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } },
- ["CurseOnHitDespairInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Despair on Hit", statOrder = { 2533 }, level = 80, group = "CurseOnHitDespairMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } },
- ["PoisonDamageAndDurationInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(5-6)% increased Poison Duration", "(8-12)% increased Damage with Poison", statOrder = { 3175, 3186 }, level = 68, group = "PoisonDamageAndDuration", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(5-6)% increased Poison Duration" }, [1290399200] = { "(8-12)% increased Damage with Poison" }, } },
- ["PoisonDamageAndDurationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-8)% increased Poison Duration", "(13-17)% increased Damage with Poison", statOrder = { 3175, 3186 }, level = 75, group = "PoisonDamageAndDuration", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(7-8)% increased Poison Duration" }, [1290399200] = { "(13-17)% increased Damage with Poison" }, } },
- ["PoisonDamageAndDurationInfluence3__"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Poison Duration", "(18-22)% increased Damage with Poison", statOrder = { 3175, 3186 }, level = 80, group = "PoisonDamageAndDuration", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(9-10)% increased Poison Duration" }, [1290399200] = { "(18-22)% increased Damage with Poison" }, } },
- ["LightningDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Crusader's", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1684 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "(0.3-0.5)% of Lightning Damage Leeched as Life" }, } },
- ["LightningDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1684 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "(0.3-0.5)% of Lightning Damage Leeched as Life" }, } },
- ["LightningDamageESLeechInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield", statOrder = { 5022 }, level = 68, group = "LightningDamageESLeech", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "lightning" }, tradeHashes = { [308127151] = { "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield" }, } },
- ["LightningDamageESLeechSufffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield", statOrder = { 5022 }, level = 68, group = "LightningDamageESLeech", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "lightning" }, tradeHashes = { [308127151] = { "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield" }, } },
- ["DamagePer15IntelligenceInfluence1"] = { type = "Prefix", affix = "Crusader's", "1% increased Damage per 15 Intelligence", statOrder = { 6062 }, level = 80, group = "DamagePer15Intelligence", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3801128794] = { "1% increased Damage per 15 Intelligence" }, } },
- ["DamagePerPowerChargeInfluence1"] = { type = "Prefix", affix = "Crusader's", "(3-4)% increased Damage per Power Charge", statOrder = { 6071 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(3-4)% increased Damage per Power Charge" }, } },
- ["DamagePerPowerChargeInfluence2"] = { type = "Prefix", affix = "Crusader's", "(5-6)% increased Damage per Power Charge", statOrder = { 6071 }, level = 80, group = "IncreasedDamagePerPowerCharge", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(5-6)% increased Damage per Power Charge" }, } },
- ["GlobalLightningGemLevelInfluence1_"] = { type = "Prefix", affix = "Crusader's", "+1 to Level of all Lightning Skill Gems", statOrder = { 7470 }, level = 82, group = "GlobalLightningGemLevel", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "gem" }, tradeHashes = { [1147690586] = { "+1 to Level of all Lightning Skill Gems" }, } },
- ["LightningPenetrationInfluence1__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (4-7)% Lightning Resistance", statOrder = { 2989 }, level = 68, group = "LightningResistancePenetration", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (4-7)% Lightning Resistance" }, } },
- ["LightningPenetrationInfluence2__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (8-10)% Lightning Resistance", statOrder = { 2989 }, level = 82, group = "LightningResistancePenetration", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (8-10)% Lightning Resistance" }, } },
- ["MaximumLifeLeechRateHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1736 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [4118987751] = { "(15-25)% increased Maximum total Life Recovery per second from Leech" }, } },
- ["MaximumLifeLeechRateHighSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1736 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [4118987751] = { "(15-25)% increased Maximum total Life Recovery per second from Leech" }, } },
- ["MaximumEnergyShieldLeechRateHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "(15-25)% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1739 }, level = 68, group = "MaximumEnergyShieldLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2013799819] = { "(15-25)% increased Maximum total Energy Shield Recovery per second from Leech" }, } },
- ["MaximumEnergyShieldLeechRateHighSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(15-25)% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1739 }, level = 68, group = "MaximumEnergyShieldLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2013799819] = { "(15-25)% increased Maximum total Energy Shield Recovery per second from Leech" }, } },
- ["MaximumSpellBlockChanceInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Chance to Block Spell Damage", statOrder = { 1994 }, level = 68, group = "MaximumSpellBlockChance", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2388574377] = { "+2% to maximum Chance to Block Spell Damage" }, } },
- ["WrathReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10628 }, level = 75, group = "WrathReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [1761642973] = { "Wrath has (40-50)% increased Mana Reservation Efficiency" }, } },
- ["WrathReservationEfficiencyInfluence1________"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10629 }, level = 75, group = "WrathReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [3444518809] = { "Wrath has (40-50)% increased Mana Reservation Efficiency" }, } },
- ["DisciplineReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Discipline has (50-60)% increased Mana Reservation Efficiency", statOrder = { 6193 }, level = 75, group = "DisciplineReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [1692887998] = { "Discipline has (50-60)% increased Mana Reservation Efficiency" }, } },
- ["DisciplineReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Discipline has (50-60)% increased Mana Reservation Efficiency", statOrder = { 6194 }, level = 75, group = "DisciplineReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [2081344089] = { "Discipline has (50-60)% increased Mana Reservation Efficiency" }, } },
- ["PurityOfLightningReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Purity of Lightning has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9773 }, level = 75, group = "PurityOfLightningReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [1450978702] = { "Purity of Lightning has (50-60)% increased Mana Reservation Efficiency" }, } },
- ["PurityOfLightningReservationEfficiencyInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Purity of Lightning has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9774 }, level = 75, group = "PurityOfLightningReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [3411256933] = { "Purity of Lightning has (50-60)% increased Mana Reservation Efficiency" }, } },
- ["ZealotryReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10721 }, level = 75, group = "ZealotryReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [4216444167] = { "Zealotry has (40-50)% increased Mana Reservation Efficiency" }, } },
- ["ZealotryReservationEfficiencyInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10722 }, level = 75, group = "ZealotryReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [168308685] = { "Zealotry has (40-50)% increased Mana Reservation Efficiency" }, } },
- ["SpellBlockAmuletInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(4-5)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 68, group = "SpellBlockPercentage", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(4-5)% Chance to Block Spell Damage" }, } },
- ["SpellBlockAmuletInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(6-7)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 80, group = "SpellBlockPercentage", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(6-7)% Chance to Block Spell Damage" }, } },
- ["FireDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Warlord's", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(0.3-0.5)% of Fire Damage Leeched as Life" }, } },
- ["FireDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(0.3-0.5)% of Fire Damage Leeched as Life" }, } },
- ["FireDamageESLeechInfluence1"] = { type = "Prefix", affix = "Warlord's", "(0.2-0.4)% of Fire Damage Leeched as Energy Shield", statOrder = { 5021 }, level = 68, group = "FireDamageESLeech", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "fire" }, tradeHashes = { [3885409671] = { "(0.2-0.4)% of Fire Damage Leeched as Energy Shield" }, } },
- ["FireDamageESLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(0.2-0.4)% of Fire Damage Leeched as Energy Shield", statOrder = { 5021 }, level = 68, group = "FireDamageESLeech", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "fire" }, tradeHashes = { [3885409671] = { "(0.2-0.4)% of Fire Damage Leeched as Energy Shield" }, } },
- ["DamagePer15StrengthInfluence1"] = { type = "Prefix", affix = "Warlord's", "1% increased Damage per 15 Strength", statOrder = { 6063 }, level = 80, group = "DamagePer15Strength", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3948776386] = { "1% increased Damage per 15 Strength" }, } },
- ["DamagePerEnduranceChargeInfluence1__"] = { type = "Prefix", affix = "Warlord's", "(3-4)% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 68, group = "DamagePerEnduranceCharge", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3515686789] = { "(3-4)% increased Damage per Endurance Charge" }, } },
- ["DamagePerEnduranceChargeInfluence2"] = { type = "Prefix", affix = "Warlord's", "(5-6)% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 80, group = "DamagePerEnduranceCharge", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3515686789] = { "(5-6)% increased Damage per Endurance Charge" }, } },
- ["GlobalFireGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of all Fire Skill Gems", statOrder = { 6591 }, level = 82, group = "GlobalFireGemLevel", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "gem" }, tradeHashes = { [599749213] = { "+1 to Level of all Fire Skill Gems" }, } },
- ["GlobalPhysicalGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of all Physical Skill Gems", statOrder = { 9670 }, level = 82, group = "GlobalPhysicalGemLevel", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "gem" }, tradeHashes = { [619213329] = { "+1 to Level of all Physical Skill Gems" }, } },
- ["FirePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (4-7)% Fire Resistance", statOrder = { 2986 }, level = 68, group = "FireResistancePenetration", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (4-7)% Fire Resistance" }, } },
- ["FirePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (8-10)% Fire Resistance", statOrder = { 2986 }, level = 82, group = "FireResistancePenetration", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (8-10)% Fire Resistance" }, } },
- ["MaximumAttackBlockChanceInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+2% to maximum Chance to Block Attack Damage", statOrder = { 1993 }, level = 68, group = "MaximumBlockChance", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [4124805414] = { "+2% to maximum Chance to Block Attack Damage" }, } },
- ["AngerReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (40-50)% increased Mana Reservation Efficiency", statOrder = { 4691 }, level = 75, group = "AngerReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [2963485753] = { "Anger has (40-50)% increased Mana Reservation Efficiency" }, } },
- ["AngerReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (40-50)% increased Mana Reservation Efficiency", statOrder = { 4692 }, level = 75, group = "AngerReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [2549369799] = { "Anger has (40-50)% increased Mana Reservation Efficiency" }, } },
- ["DeterminationReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Determination has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6177 }, level = 75, group = "DeterminationReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [2721871046] = { "Determination has (40-50)% increased Mana Reservation Efficiency" }, } },
- ["DeterminationReservationEfficiencyInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Determination has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6178 }, level = 75, group = "DeterminationReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [325889252] = { "Determination has (40-50)% increased Mana Reservation Efficiency" }, } },
- ["PurityOfFireReducedReservationInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Purity of Fire has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9767 }, level = 75, group = "PurityOfFireReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [1135152940] = { "Purity of Fire has (50-60)% increased Mana Reservation Efficiency" }, } },
- ["PurityOfFireReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Purity of Fire has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9768 }, level = 75, group = "PurityOfFireReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [3003688066] = { "Purity of Fire has (50-60)% increased Mana Reservation Efficiency" }, } },
- ["PrideReducedReservationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "Pride has (40-50)% increased Mana Reservation Efficiency", statOrder = { 9713 }, level = 75, group = "PrideReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [3484910620] = { "Pride has (40-50)% increased Mana Reservation Efficiency" }, } },
- ["PrideReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Pride has (40-50)% increased Mana Reservation Efficiency", statOrder = { 9714 }, level = 75, group = "PrideReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [3993865658] = { "Pride has (40-50)% increased Mana Reservation Efficiency" }, } },
- ["ColdDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1680 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "(0.3-0.5)% of Cold Damage Leeched as Life" }, } },
- ["ColdDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of Redemption", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1680 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "(0.3-0.5)% of Cold Damage Leeched as Life" }, } },
- ["ColdDamageESLeechInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(0.2-0.4)% of Cold Damage Leeched as Energy Shield", statOrder = { 5019 }, level = 68, group = "ColdDamageESLeech", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "cold" }, tradeHashes = { [1939452467] = { "(0.2-0.4)% of Cold Damage Leeched as Energy Shield" }, } },
- ["ColdDamageESLeechSuffixInfluence1"] = { type = "Suffix", affix = "of Redemption", "(0.2-0.4)% of Cold Damage Leeched as Energy Shield", statOrder = { 5019 }, level = 68, group = "ColdDamageESLeech", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "cold" }, tradeHashes = { [1939452467] = { "(0.2-0.4)% of Cold Damage Leeched as Energy Shield" }, } },
- ["DamagePer15DexterityInfluence1"] = { type = "Prefix", affix = "Redeemer's", "1% increased Damage per 15 Dexterity", statOrder = { 6061 }, level = 80, group = "DamagePer15Dexterity", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2062174346] = { "1% increased Damage per 15 Dexterity" }, } },
- ["DamagePerFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(3-4)% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 68, group = "DamagePerFrenzyCharge", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [902747843] = { "(3-4)% increased Damage per Frenzy Charge" }, } },
- ["DamagePerFrenzyChargeInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "(5-6)% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 80, group = "DamagePerFrenzyCharge", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [902747843] = { "(5-6)% increased Damage per Frenzy Charge" }, } },
- ["GlobalColdGemLevelInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "+1 to Level of all Cold Skill Gems", statOrder = { 5841 }, level = 82, group = "GlobalColdGemLevel", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "gem" }, tradeHashes = { [1078455967] = { "+1 to Level of all Cold Skill Gems" }, } },
- ["ColdPenetrationInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (4-7)% Cold Resistance", statOrder = { 2988 }, level = 68, group = "ColdResistancePenetration", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (4-7)% Cold Resistance" }, } },
- ["ColdPenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (8-10)% Cold Resistance", statOrder = { 2988 }, level = 82, group = "ColdResistancePenetration", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (8-10)% Cold Resistance" }, } },
- ["MaximumAttackDodgeChanceInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Prevent +2% of Suppressed Spell Damage", statOrder = { 1146 }, level = 68, group = "SpellDamageSuppressed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4116705863] = { "Prevent +2% of Suppressed Spell Damage" }, } },
- ["MaximumSpellDodgeChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "Prevent +2% of Suppressed Spell Damage", statOrder = { 1146 }, level = 68, group = "SpellDamageSuppressed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4116705863] = { "Prevent +2% of Suppressed Spell Damage" }, } },
- ["SpellDamageSuppressedInfluence1"] = { type = "Suffix", affix = "of Redemption", "Prevent +(3-5)% of Suppressed Spell Damage", statOrder = { 1146 }, level = 68, group = "SpellDamageSuppressed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4116705863] = { "Prevent +(3-5)% of Suppressed Spell Damage" }, } },
- ["HatredReducedReservationInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Hatred has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6946 }, level = 75, group = "HatredReservation", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [1920370417] = { "Hatred has (40-50)% increased Mana Reservation Efficiency" }, } },
- ["HatredReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6947 }, level = 75, group = "HatredReservationEfficiency", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [2156140483] = { "Hatred has (40-50)% increased Mana Reservation Efficiency" }, } },
- ["GraceReducedReservationInfluence1"] = { type = "Suffix", affix = "of Redemption", "Grace has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6907 }, level = 75, group = "GraceReservation", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [1803598623] = { "Grace has (40-50)% increased Mana Reservation Efficiency" }, } },
- ["GraceReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of Redemption", "Grace has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6908 }, level = 75, group = "GraceReservationEfficiency", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [900639351] = { "Grace has (40-50)% increased Mana Reservation Efficiency" }, } },
- ["PurityOfIceReducedReservationInfluence1__"] = { type = "Suffix", affix = "of Redemption", "Purity of Ice has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9770 }, level = 75, group = "PurityOfIceReservation", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [2665518524] = { "Purity of Ice has (50-60)% increased Mana Reservation Efficiency" }, } },
- ["PurityOfIceReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of Redemption", "Purity of Ice has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9771 }, level = 75, group = "PurityOfIceReservationEfficiency", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [139925400] = { "Purity of Ice has (50-60)% increased Mana Reservation Efficiency" }, } },
- ["WarcrySpeedInfluence1"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased Warcry Speed", statOrder = { 3282 }, level = 68, group = "WarcrySpeed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [1316278494] = { "(21-25)% increased Warcry Speed" }, } },
- ["WarcrySpeedInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(26-30)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [1316278494] = { "(26-30)% increased Warcry Speed" }, } },
- ["WarcrySpeedInfluence3"] = { type = "Suffix", affix = "of Redemption", "(31-35)% increased Warcry Speed", statOrder = { 3282 }, level = 80, group = "WarcrySpeed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [1316278494] = { "(31-35)% increased Warcry Speed" }, } },
- ["WarcrySpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(15-20)% increased Warcry Speed", statOrder = { 3282 }, level = 42, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(15-20)% increased Warcry Speed" }, } },
- ["WarcrySpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "(21-25)% increased Warcry Speed", statOrder = { 3282 }, level = 58, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(21-25)% increased Warcry Speed" }, } },
- ["WarcrySpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "(26-30)% increased Warcry Speed", statOrder = { 3282 }, level = 74, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(26-30)% increased Warcry Speed" }, } },
- ["WarcrySpeedEssence4_"] = { type = "Suffix", affix = "of the Essence", "(31-35)% increased Warcry Speed", statOrder = { 3282 }, level = 82, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(31-35)% increased Warcry Speed" }, } },
- ["DoubleDamageStunnedRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to deal Double Damage if you have Stunned an Enemy Recently", statOrder = { 5666 }, level = 75, group = "DoubleDamageStunnedRecently", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [4224978303] = { "(5-7)% chance to deal Double Damage if you have Stunned an Enemy Recently" }, } },
- ["DoubleDamageStunnedRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to deal Double Damage if you have Stunned an Enemy Recently", statOrder = { 5666 }, level = 83, group = "DoubleDamageStunnedRecently", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [4224978303] = { "(8-10)% chance to deal Double Damage if you have Stunned an Enemy Recently" }, } },
- ["PhysicalDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Hunter's", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1671 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "(0.3-0.5)% of Physical Damage Leeched as Life" }, } },
- ["PhysicalDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1671 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "(0.3-0.5)% of Physical Damage Leeched as Life" }, } },
- ["ChaosDamageLifeLeechInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(0.3-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1687 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "(0.3-0.5)% of Chaos Damage Leeched as Life" }, } },
- ["ChaosDamageLifeLeechSuffixInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(0.3-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1687 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "(0.3-0.5)% of Chaos Damage Leeched as Life" }, } },
- ["GlobalChaosGemLevelInfluence1__"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Chaos Skill Gems", statOrder = { 5761 }, level = 82, group = "GlobalChaosGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [67169579] = { "+1 to Level of all Chaos Skill Gems" }, } },
- ["GlobalStrengthGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Strength Skill Gems", statOrder = { 10256 }, level = 82, group = "GlobalStrengthGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [2339012908] = { "+1 to Level of all Strength Skill Gems" }, } },
- ["GlobalDexterityGemLevelInfluence1_"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Dexterity Skill Gems", statOrder = { 6182 }, level = 82, group = "GlobalDexterityGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [146924886] = { "+1 to Level of all Dexterity Skill Gems" }, } },
- ["GlobalIntelligenceGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Intelligence Skill Gems", statOrder = { 7297 }, level = 82, group = "GlobalIntelligenceGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [493812998] = { "+1 to Level of all Intelligence Skill Gems" }, } },
- ["ElementalPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (3-4)% Elemental Resistances", statOrder = { 2985 }, level = 68, group = "ElementalPenetration", weightKey = { "amulet_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (3-4)% Elemental Resistances" }, } },
- ["ElementalPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (5-6)% Elemental Resistances", statOrder = { 2985 }, level = 82, group = "ElementalPenetration", weightKey = { "amulet_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (5-6)% Elemental Resistances" }, } },
- ["MalevolenceReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (40-50)% increased Mana Reservation Efficiency", statOrder = { 8166 }, level = 75, group = "MalevolenceReservation", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3266567165] = { "Malevolence has (40-50)% increased Mana Reservation Efficiency" }, } },
- ["MalevolenceReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (40-50)% increased Mana Reservation Efficiency", statOrder = { 8167 }, level = 75, group = "MalevolenceReservationEfficiency", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3383226338] = { "Malevolence has (40-50)% increased Mana Reservation Efficiency" }, } },
- ["RandomChargeOnKillInfluence1___"] = { type = "Suffix", affix = "of the Hunt", "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3617 }, level = 68, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [498214257] = { "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } },
- ["RandomChargeOnKillInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3617 }, level = 75, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [498214257] = { "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } },
- ["ReducedAttributeRequirementsInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrder = { 2557 }, level = 68, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have (5-10)% reduced Attribute Requirements" }, } },
- ["ReducedAttributeRequirementsInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Items and Gems have (11-15)% reduced Attribute Requirements", statOrder = { 2557 }, level = 75, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have (11-15)% reduced Attribute Requirements" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence1"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1237, 1656 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1237, 1656 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence3"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1237, 1656 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1237, 1656 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence5_"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1237, 1656 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence1"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1237, 1418 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [210067635] = { "(3-4)% increased Attack Speed" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence2"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1237, 1418 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [210067635] = { "(3-4)% increased Attack Speed" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence3"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1237, 1418 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [210067635] = { "(3-4)% increased Attack Speed" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1237, 1418 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [210067635] = { "(3-4)% increased Attack Speed" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1237, 1418 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [210067635] = { "(3-4)% increased Attack Speed" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1237, 1469 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [2375316951] = { "(8-10)% increased Critical Strike Chance" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1237, 1469 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [2375316951] = { "(8-10)% increased Critical Strike Chance" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1237, 1469 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [2375316951] = { "(8-10)% increased Critical Strike Chance" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1237, 1469 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [2375316951] = { "(8-10)% increased Critical Strike Chance" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1237, 1469 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [2375316951] = { "(8-10)% increased Critical Strike Chance" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence1"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1237, 1493 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence2"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1237, 1493 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1237, 1493 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1237, 1493 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1237, 1493 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndStunInfluence1__"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1237, 1522 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndStunInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1237, 1522 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndStunInfluence3"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1237, 1522 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 150, 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndStunInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1237, 1522 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndStunInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1237, 1522 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 50, 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1237, 1885 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [280731498] = { "(10-15)% increased Area of Effect" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1237, 1885 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [280731498] = { "(10-15)% increased Area of Effect" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1237, 1885 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 150, 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [280731498] = { "(10-15)% increased Area of Effect" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1237, 1885 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [280731498] = { "(10-15)% increased Area of Effect" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1237, 1885 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 50, 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [280731498] = { "(10-15)% increased Area of Effect" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence1"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1237, 1801 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [3759663284] = { "(20-25)% increased Projectile Speed" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1237, 1801 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [3759663284] = { "(20-25)% increased Projectile Speed" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1237, 1801 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [3759663284] = { "(20-25)% increased Projectile Speed" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1237, 1801 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [3759663284] = { "(20-25)% increased Projectile Speed" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1237, 1801 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [3759663284] = { "(20-25)% increased Projectile Speed" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(25-34)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1237, 1795 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence2"] = { type = "Prefix", affix = "Hunter's", "(35-44)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1237, 1795 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence3"] = { type = "Prefix", affix = "Hunter's", "(45-54)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1237, 1795 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence4_"] = { type = "Prefix", affix = "Hunter's", "(55-64)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1237, 1795 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } },
- ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence5_"] = { type = "Prefix", affix = "Hunter's", "(65-69)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1237, 1795 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } },
- ["LocalAddedFireDamageAndPenetrationInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (8-10) to (15-18) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1367, 3767 }, level = 68, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (8-10) to (15-18) Fire Damage" }, } },
- ["LocalAddedFireDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (12-16) to (24-28) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1367, 3767 }, level = 71, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (12-16) to (24-28) Fire Damage" }, } },
- ["LocalAddedFireDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (17-22) to (33-39) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1367, 3767 }, level = 74, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (17-22) to (33-39) Fire Damage" }, } },
- ["LocalAddedFireDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (21-28) to (42-49) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1367, 3767 }, level = 77, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (21-28) to (42-49) Fire Damage" }, } },
- ["LocalAddedFireDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (26-35) to (53-61) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1367, 3767 }, level = 80, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (26-35) to (53-61) Fire Damage" }, } },
- ["LocalAddedFireDamageAndPenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "Adds (15-19) to (28-34) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1367, 3767 }, level = 68, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (15-19) to (28-34) Fire Damage" }, } },
- ["LocalAddedFireDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (22-30) to (44-52) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1367, 3767 }, level = 71, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (22-30) to (44-52) Fire Damage" }, } },
- ["LocalAddedFireDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (31-41) to (61-72) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1367, 3767 }, level = 74, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (31-41) to (61-72) Fire Damage" }, } },
- ["LocalAddedFireDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (39-52) to (78-90) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1367, 3767 }, level = 77, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (39-52) to (78-90) Fire Damage" }, } },
- ["LocalAddedFireDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (49-65) to (99-114) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1367, 3767 }, level = 80, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (49-65) to (99-114) Fire Damage" }, } },
- ["LocalAddedColdDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (7-9) to (14-16) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1376, 3768 }, level = 68, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (7-9) to (14-16) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } },
- ["LocalAddedColdDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (11-14) to (22-25) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1376, 3768 }, level = 71, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-14) to (22-25) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } },
- ["LocalAddedColdDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (15-20) to (30-35) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1376, 3768 }, level = 74, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (15-20) to (30-35) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } },
- ["LocalAddedColdDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (19-25) to (38-44) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1376, 3768 }, level = 77, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (19-25) to (38-44) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } },
- ["LocalAddedColdDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (23-32) to (48-55) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1376, 3768 }, level = 80, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (23-32) to (48-55) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } },
- ["LocalAddedColdDamageAndPenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (13-16) to (26-30) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1376, 3768 }, level = 68, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (13-16) to (26-30) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } },
- ["LocalAddedColdDamageAndPenetrationTwoHandInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Adds (21-26) to (41-46) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1376, 3768 }, level = 71, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (21-26) to (41-46) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } },
- ["LocalAddedColdDamageAndPenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Adds (28-37) to (56-65) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1376, 3768 }, level = 74, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (28-37) to (56-65) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } },
- ["LocalAddedColdDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (35-46) to (71-81) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1376, 3768 }, level = 77, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (35-46) to (71-81) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } },
- ["LocalAddedColdDamageAndPenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Redeemer's", "Adds (43-59) to (89-102) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1376, 3768 }, level = 80, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (43-59) to (89-102) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } },
- ["LocalAddedLightningDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds 2 to (25-29) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 68, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds 2 to (25-29) Lightning Damage" }, } },
- ["LocalAddedLightningDamageAndPenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (40-45) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 71, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (1-4) to (40-45) Lightning Damage" }, } },
- ["LocalAddedLightningDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (2-5) to (55-63) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 74, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (2-5) to (55-63) Lightning Damage" }, } },
- ["LocalAddedLightningDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (70-79) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 77, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (2-6) to (70-79) Lightning Damage" }, } },
- ["LocalAddedLightningDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (3-8) to (89-99) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 80, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (3-8) to (89-99) Lightning Damage" }, } },
- ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Adds 3 to (46-53) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 68, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds 3 to (46-53) Lightning Damage" }, } },
- ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (2-7) to (74-84) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 71, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (2-7) to (74-84) Lightning Damage" }, } },
- ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (3-9) to (102-117) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 74, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (3-9) to (102-117) Lightning Damage" }, } },
- ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Crusader's", "Adds (3-12) to (130-146) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 77, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (3-12) to (130-146) Lightning Damage" }, } },
- ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (6-15) to (165-183) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 80, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (6-15) to (165-183) Lightning Damage" }, } },
- ["LocalAddedChaosDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (5-7) to (11-13) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1395, 7880 }, level = 68, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (5-7) to (11-13) Chaos Damage" }, } },
- ["LocalAddedChaosDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (9-11) to (17-20) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1395, 7880 }, level = 71, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (9-11) to (17-20) Chaos Damage" }, } },
- ["LocalAddedChaosDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (12-16) to (24-28) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1395, 7880 }, level = 74, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (12-16) to (24-28) Chaos Damage" }, } },
- ["LocalAddedChaosDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Hunter's", "Adds (15-20) to (30-35) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1395, 7880 }, level = 77, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (15-20) to (30-35) Chaos Damage" }, } },
- ["LocalAddedChaosDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Hunter's", "Adds (18-25) to (38-44) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1395, 7880 }, level = 80, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (18-25) to (38-44) Chaos Damage" }, } },
- ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence1__"] = { type = "Prefix", affix = "Hunter's", "Adds (9-13) to (21-24) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1395, 7880 }, level = 68, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (9-13) to (21-24) Chaos Damage" }, } },
- ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (16-21) to (32-37) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1395, 7880 }, level = 71, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (16-21) to (32-37) Chaos Damage" }, } },
- ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (22-29) to (44-52) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1395, 7880 }, level = 74, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (22-29) to (44-52) Chaos Damage" }, } },
- ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Hunter's", "Adds (28-37) to (57-65) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1395, 7880 }, level = 77, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (28-37) to (57-65) Chaos Damage" }, } },
- ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Hunter's", "Adds (35-48) to (72-81) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1395, 7880 }, level = 80, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (35-48) to (72-81) Chaos Damage" }, } },
- ["SpellAddedFireDamagePenetrationInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (6-8) to (12-14) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1409, 2986 }, level = 68, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (6-8) to (12-14) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } },
- ["SpellAddedFireDamagePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (10-13) to (19-22) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1409, 2986 }, level = 71, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-13) to (19-22) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } },
- ["SpellAddedFireDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (13-18) to (27-31) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1409, 2986 }, level = 74, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-18) to (27-31) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } },
- ["SpellAddedFireDamagePenetrationInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (17-22) to (33-39) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1409, 2986 }, level = 77, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (17-22) to (33-39) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } },
- ["SpellAddedFireDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (21-28) to (42-49) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1409, 2986 }, level = 80, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (21-28) to (42-49) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } },
- ["SpellAddedFireDamagePenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (8-11) to (17-19) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1409, 2986 }, level = 68, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (8-11) to (17-19) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } },
- ["SpellAddedFireDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (13-17) to (26-30) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1409, 2986 }, level = 71, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-17) to (26-30) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } },
- ["SpellAddedFireDamagePenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Adds (18-24) to (36-42) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1409, 2986 }, level = 74, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (18-24) to (36-42) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } },
- ["SpellAddedFireDamagePenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (23-30) to (45-53) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1409, 2986 }, level = 77, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (23-30) to (45-53) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } },
- ["SpellAddedFireDamagePenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Warlord's", "Adds (28-38) to (57-66) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1409, 2986 }, level = 80, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (28-38) to (57-66) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } },
- ["SpellAddedColdDamagePenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (5-7) to (10-12) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1410, 2988 }, level = 68, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, [2469416729] = { "Adds (5-7) to (10-12) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamagePenetrationInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Adds (8-10) to (16-18) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1410, 2988 }, level = 71, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, [2469416729] = { "Adds (8-10) to (16-18) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (11-15) to (22-25) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1410, 2988 }, level = 74, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, [2469416729] = { "Adds (11-15) to (22-25) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamagePenetrationInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (14-18) to (27-32) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1410, 2988 }, level = 77, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, [2469416729] = { "Adds (14-18) to (27-32) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (17-23) to (34-40) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1410, 2988 }, level = 80, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, [2469416729] = { "Adds (17-23) to (34-40) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamagePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (8-10) to (15-18) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1410, 2988 }, level = 68, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, [2469416729] = { "Adds (8-10) to (15-18) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (12-16) to (23-27) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1410, 2988 }, level = 71, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, [2469416729] = { "Adds (12-16) to (23-27) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamagePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-22) to (33-38) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1410, 2988 }, level = 74, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, [2469416729] = { "Adds (16-22) to (33-38) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamagePenetrationTwoHandInfluence4_"] = { type = "Prefix", affix = "Redeemer's", "Adds (21-27) to (41-48) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1410, 2988 }, level = 77, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, [2469416729] = { "Adds (21-27) to (41-48) Cold Damage to Spells" }, } },
- ["SpellAddedColdDamagePenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (26-34) to (52-60) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1410, 2988 }, level = 80, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, [2469416729] = { "Adds (26-34) to (52-60) Cold Damage to Spells" }, } },
- ["SpellAddedLightningDamagePenetrationInfluence1___"] = { type = "Prefix", affix = "Crusader's", "Adds (1-2) to (21-22) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1411, 2989 }, level = 68, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (21-22) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } },
- ["SpellAddedLightningDamagePenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Adds (1-3) to (33-35) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1411, 2989 }, level = 71, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-3) to (33-35) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } },
- ["SpellAddedLightningDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (46-49) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1411, 2989 }, level = 74, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (46-49) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } },
- ["SpellAddedLightningDamagePenetrationInfluence4_"] = { type = "Prefix", affix = "Crusader's", "Adds (2-5) to (58-61) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1411, 2989 }, level = 77, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (58-61) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } },
- ["SpellAddedLightningDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (73-77) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1411, 2989 }, level = 80, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (73-77) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } },
- ["SpellAddedLightningDamagePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds (1-3) to (32-34) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1411, 2989 }, level = 68, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-3) to (32-34) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } },
- ["SpellAddedLightningDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (49-52) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1411, 2989 }, level = 71, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (49-52) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } },
- ["SpellAddedLightningDamagePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (69-73) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1411, 2989 }, level = 74, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (69-73) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } },
- ["SpellAddedLightningDamagePenetrationTwoHandInfluence4__"] = { type = "Prefix", affix = "Crusader's", "Adds (2-7) to (87-92) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1411, 2989 }, level = 77, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-7) to (87-92) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } },
- ["SpellAddedLightningDamagePenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Crusader's", "Adds (3-9) to (109-115) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1411, 2989 }, level = 80, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-9) to (109-115) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } },
- ["LocalWeaponFirePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (9-10)% Fire Resistance", statOrder = { 3767 }, level = 68, group = "LocalFirePenetration", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (9-10)% Fire Resistance" }, } },
- ["LocalWeaponFirePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (11-12)% Fire Resistance", statOrder = { 3767 }, level = 73, group = "LocalFirePenetration", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (11-12)% Fire Resistance" }, } },
- ["LocalWeaponFirePenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrder = { 3767 }, level = 78, group = "LocalFirePenetration", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (13-15)% Fire Resistance" }, } },
- ["LocalWeaponColdPenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (9-10)% Cold Resistance", statOrder = { 3768 }, level = 68, group = "LocalColdPenetration", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1740229525] = { "Attacks with this Weapon Penetrate (9-10)% Cold Resistance" }, } },
- ["LocalWeaponColdPenetrationInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (11-12)% Cold Resistance", statOrder = { 3768 }, level = 73, group = "LocalColdPenetration", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1740229525] = { "Attacks with this Weapon Penetrate (11-12)% Cold Resistance" }, } },
- ["LocalWeaponColdPenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrder = { 3768 }, level = 78, group = "LocalColdPenetration", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1740229525] = { "Attacks with this Weapon Penetrate (13-15)% Cold Resistance" }, } },
- ["LocalWeaponLightningPenetrationInfluence1"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (9-10)% Lightning Resistance", statOrder = { 3769 }, level = 68, group = "LocalLightningPenetration", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (9-10)% Lightning Resistance" }, } },
- ["LocalWeaponLightningPenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (11-12)% Lightning Resistance", statOrder = { 3769 }, level = 73, group = "LocalLightningPenetration", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "bow_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (11-12)% Lightning Resistance" }, } },
- ["LocalWeaponLightningPenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrder = { 3769 }, level = 78, group = "LocalLightningPenetration", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "bow_crusader", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance" }, } },
- ["LocalWeaponChaosPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (6-7)% Chaos Resistance", statOrder = { 7880 }, level = 68, group = "LocalChaosPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (6-7)% Chaos Resistance" }, } },
- ["LocalWeaponChaosPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (8-9)% Chaos Resistance", statOrder = { 7880 }, level = 73, group = "LocalChaosPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (8-9)% Chaos Resistance" }, } },
- ["LocalWeaponChaosPenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (10-12)% Chaos Resistance", statOrder = { 7880 }, level = 78, group = "LocalChaosPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (10-12)% Chaos Resistance" }, } },
- ["LocalWeaponElementalPenetrationInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (6-7)% Elemental Resistances", statOrder = { 3766 }, level = 68, group = "LocalElementalPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate (6-7)% Elemental Resistances" }, } },
- ["LocalWeaponElementalPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (8-9)% Elemental Resistances", statOrder = { 3766 }, level = 73, group = "LocalElementalPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate (8-9)% Elemental Resistances" }, } },
- ["LocalWeaponElementalPenetrationInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (10-12)% Elemental Resistances", statOrder = { 3766 }, level = 78, group = "LocalElementalPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate (10-12)% Elemental Resistances" }, } },
- ["FireResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 6% Fire Resistance", statOrder = { 2986 }, level = 68, group = "FireResistancePenetration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } },
- ["FireResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 7% Fire Resistance", statOrder = { 2986 }, level = 73, group = "FireResistancePenetration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } },
- ["FireResistancePenetrationInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 8% Fire Resistance", statOrder = { 2986 }, level = 78, group = "FireResistancePenetration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } },
- ["FireResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (10-11)% Fire Resistance", statOrder = { 2986 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (10-11)% Fire Resistance" }, } },
- ["FireResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (12-13)% Fire Resistance", statOrder = { 2986 }, level = 73, group = "FireResistancePenetration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (12-13)% Fire Resistance" }, } },
- ["FireResistancePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (14-15)% Fire Resistance", statOrder = { 2986 }, level = 78, group = "FireResistancePenetration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (14-15)% Fire Resistance" }, } },
- ["ColdResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 6% Cold Resistance", statOrder = { 2988 }, level = 68, group = "ColdResistancePenetration", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } },
- ["ColdResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 7% Cold Resistance", statOrder = { 2988 }, level = 73, group = "ColdResistancePenetration", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } },
- ["ColdResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 8% Cold Resistance", statOrder = { 2988 }, level = 78, group = "ColdResistancePenetration", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } },
- ["ColdResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (10-11)% Cold Resistance", statOrder = { 2988 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (10-11)% Cold Resistance" }, } },
- ["ColdResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (12-13)% Cold Resistance", statOrder = { 2988 }, level = 73, group = "ColdResistancePenetration", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (12-13)% Cold Resistance" }, } },
- ["ColdResistancePenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (14-15)% Cold Resistance", statOrder = { 2988 }, level = 78, group = "ColdResistancePenetration", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (14-15)% Cold Resistance" }, } },
- ["LightningResistancePenetrationInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2989 }, level = 68, group = "LightningResistancePenetration", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } },
- ["LightningResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2989 }, level = 73, group = "LightningResistancePenetration", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } },
- ["LightningResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2989 }, level = 78, group = "LightningResistancePenetration", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } },
- ["LightningResistancePenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (10-11)% Lightning Resistance", statOrder = { 2989 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (10-11)% Lightning Resistance" }, } },
- ["LightningResistancePenetrationTwoHandInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (12-13)% Lightning Resistance", statOrder = { 2989 }, level = 73, group = "LightningResistancePenetration", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (12-13)% Lightning Resistance" }, } },
- ["LightningResistancePenetrationTwoHandInfluence3__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (14-15)% Lightning Resistance", statOrder = { 2989 }, level = 78, group = "LightningResistancePenetration", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (14-15)% Lightning Resistance" }, } },
- ["ElementalResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2985 }, level = 68, group = "ElementalPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 4% Elemental Resistances" }, } },
- ["ElementalResistancePenetrationInfluence2_"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 5% Elemental Resistances", statOrder = { 2985 }, level = 73, group = "ElementalPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 5% Elemental Resistances" }, } },
- ["ElementalResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 6% Elemental Resistances", statOrder = { 2985 }, level = 78, group = "ElementalPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 6% Elemental Resistances" }, } },
- ["ElementalResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (7-8)% Elemental Resistances", statOrder = { 2985 }, level = 68, group = "ElementalPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (7-8)% Elemental Resistances" }, } },
- ["ElementalResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (9-10)% Elemental Resistances", statOrder = { 2985 }, level = 73, group = "ElementalPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (9-10)% Elemental Resistances" }, } },
- ["ElementalResistancePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (11-12)% Elemental Resistances", statOrder = { 2985 }, level = 78, group = "ElementalPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (11-12)% Elemental Resistances" }, } },
- ["PhysicalAddedAsExtraFireWeaponInfluence1"] = { type = "Prefix", affix = "Warlord's", "Gain (7-12)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (7-12)% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsExtraFireWeaponInfluence2"] = { type = "Prefix", affix = "Warlord's", "Gain (13-17)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 73, group = "PhysicalAddedAsFire", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (13-17)% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsExtraFireWeaponInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Gain (18-20)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 78, group = "PhysicalAddedAsFire", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (18-20)% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence1__"] = { type = "Prefix", affix = "Warlord's", "Gain (16-20)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (16-20)% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence2__"] = { type = "Prefix", affix = "Warlord's", "Gain (21-26)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 73, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (21-26)% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Warlord's", "Gain (27-30)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 78, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (27-30)% of Physical Damage as Extra Fire Damage" }, } },
- ["PhysicalAddedAsExtraColdWeaponInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Gain (7-12)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (7-12)% of Physical Damage as Extra Cold Damage" }, } },
- ["PhysicalAddedAsExtraColdWeaponInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (13-17)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 73, group = "PhysicalAddedAsCold", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (13-17)% of Physical Damage as Extra Cold Damage" }, } },
- ["PhysicalAddedAsExtraColdWeaponInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Gain (18-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 78, group = "PhysicalAddedAsCold", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (18-20)% of Physical Damage as Extra Cold Damage" }, } },
- ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Gain (16-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (16-20)% of Physical Damage as Extra Cold Damage" }, } },
- ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (21-26)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 73, group = "PhysicalAddedAsCold", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (21-26)% of Physical Damage as Extra Cold Damage" }, } },
- ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Gain (27-30)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 78, group = "PhysicalAddedAsCold", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (27-30)% of Physical Damage as Extra Cold Damage" }, } },
- ["PhysicalAddedAsExtraLightningWeaponInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Gain (7-12)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (7-12)% of Physical Damage as Extra Lightning Damage" }, } },
- ["PhysicalAddedAsExtraLightningWeaponInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (13-17)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 73, group = "PhysicalAddedAsLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (13-17)% of Physical Damage as Extra Lightning Damage" }, } },
- ["PhysicalAddedAsExtraLightningWeaponInfluence3_"] = { type = "Prefix", affix = "Crusader's", "Gain (18-20)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 78, group = "PhysicalAddedAsLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (18-20)% of Physical Damage as Extra Lightning Damage" }, } },
- ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Gain (16-20)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (16-20)% of Physical Damage as Extra Lightning Damage" }, } },
- ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (21-26)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 73, group = "PhysicalAddedAsLightning", weightKey = { "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (21-26)% of Physical Damage as Extra Lightning Damage" }, } },
- ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Crusader's", "Gain (27-30)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 78, group = "PhysicalAddedAsLightning", weightKey = { "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (27-30)% of Physical Damage as Extra Lightning Damage" }, } },
- ["AddedFireDamagePerStrengthInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4874 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "sword_basilisk", "axe_basilisk", "mace_basilisk", "sceptre_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1060540099] = { "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength" }, } },
- ["AddedFireDamagePerStrengthTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4874 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1060540099] = { "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength" }, } },
- ["AddedColdDamagePerDexterityInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4929 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [149574107] = { "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity" }, } },
- ["AddedColdDamagePerDexterityTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4929 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [149574107] = { "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity" }, } },
- ["AddedLightningDamagePerIntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4877 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } },
- ["AddedLightningDamagePerIntelligenceTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4877 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } },
- ["SpellDamagePer16StrengthInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Strength", statOrder = { 10155 }, level = 68, group = "SpellDamagePer16Strength", weightKey = { "sceptre_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4249521944] = { "1% increased Spell Damage per 16 Strength" }, } },
- ["SpellDamagePer16DexterityInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Dexterity", statOrder = { 10153 }, level = 68, group = "SpellDamagePer16Dexterity", weightKey = { "rune_dagger_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2612056840] = { "1% increased Spell Damage per 16 Dexterity" }, } },
- ["SpellDamagePer16IntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Intelligence", statOrder = { 10154 }, level = 68, group = "SpellDamagePer16Intelligence", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3961014595] = { "1% increased Spell Damage per 16 Intelligence" }, } },
- ["SpellDamagePer10StrengthInfluence1_"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 10 Strength", statOrder = { 10152 }, level = 68, group = "SpellDamagePer10Strength", weightKey = { "staff_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1073314277] = { "1% increased Spell Damage per 10 Strength" }, } },
- ["SpellDamagePer10IntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2743 }, level = 68, group = "SpellDamagePer10Intelligence", weightKey = { "staff_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2818518881] = { "1% increased Spell Damage per 10 Intelligence" }, } },
- ["BurningDamagePrefixInfluence1___"] = { type = "Prefix", affix = "Warlord's", "(60-69)% increased Burning Damage", statOrder = { 1882 }, level = 68, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(60-69)% increased Burning Damage" }, } },
- ["BurningDamagePrefixInfluence2"] = { type = "Prefix", affix = "Warlord's", "(70-79)% increased Burning Damage", statOrder = { 1882 }, level = 71, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(70-79)% increased Burning Damage" }, } },
- ["BurningDamagePrefixInfluence3"] = { type = "Prefix", affix = "Warlord's", "(80-89)% increased Burning Damage", statOrder = { 1882 }, level = 75, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 200, 200, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(80-89)% increased Burning Damage" }, } },
- ["BurningDamagePrefixInfluence4"] = { type = "Prefix", affix = "Warlord's", "(90-94)% increased Burning Damage", statOrder = { 1882 }, level = 78, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 100, 100, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(90-94)% increased Burning Damage" }, } },
- ["BurningDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "(100-109)% increased Burning Damage", statOrder = { 1882 }, level = 68, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(100-109)% increased Burning Damage" }, } },
- ["BurningDamagePrefixTwoHandInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(110-119)% increased Burning Damage", statOrder = { 1882 }, level = 71, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(110-119)% increased Burning Damage" }, } },
- ["BurningDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "(120-129)% increased Burning Damage", statOrder = { 1882 }, level = 75, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 200, 200, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(120-129)% increased Burning Damage" }, } },
- ["BurningDamagePrefixTwoHandInfluence4_"] = { type = "Prefix", affix = "Warlord's", "(130-134)% increased Burning Damage", statOrder = { 1882 }, level = 78, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 100, 100, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(130-134)% increased Burning Damage" }, } },
- ["BleedingDamagePrefixInfluence1"] = { type = "Prefix", affix = "Warlord's", "(60-69)% increased Physical Damage over Time", statOrder = { 1216 }, level = 68, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(60-69)% increased Physical Damage over Time" }, } },
- ["BleedingDamagePrefixInfluence2"] = { type = "Prefix", affix = "Warlord's", "(70-79)% increased Physical Damage over Time", statOrder = { 1216 }, level = 71, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(70-79)% increased Physical Damage over Time" }, } },
- ["BleedingDamagePrefixInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(80-89)% increased Physical Damage over Time", statOrder = { 1216 }, level = 75, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(80-89)% increased Physical Damage over Time" }, } },
- ["BleedingDamagePrefixInfluence4"] = { type = "Prefix", affix = "Warlord's", "(90-94)% increased Physical Damage over Time", statOrder = { 1216 }, level = 78, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(90-94)% increased Physical Damage over Time" }, } },
- ["BleedingDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "(100-109)% increased Physical Damage over Time", statOrder = { 1216 }, level = 68, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(100-109)% increased Physical Damage over Time" }, } },
- ["BleedingDamagePrefixTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "(110-119)% increased Physical Damage over Time", statOrder = { 1216 }, level = 71, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(110-119)% increased Physical Damage over Time" }, } },
- ["BleedingDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "(120-129)% increased Physical Damage over Time", statOrder = { 1216 }, level = 75, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(120-129)% increased Physical Damage over Time" }, } },
- ["BleedingDamagePrefixTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "(130-134)% increased Physical Damage over Time", statOrder = { 1216 }, level = 78, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(130-134)% increased Physical Damage over Time" }, } },
- ["PoisonDamagePrefixInfluence1__"] = { type = "Prefix", affix = "Hunter's", "(60-69)% increased Chaos Damage over Time", statOrder = { 1219 }, level = 68, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(60-69)% increased Chaos Damage over Time" }, } },
- ["PoisonDamagePrefixInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(70-79)% increased Chaos Damage over Time", statOrder = { 1219 }, level = 71, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(70-79)% increased Chaos Damage over Time" }, } },
- ["PoisonDamagePrefixInfluence3"] = { type = "Prefix", affix = "Hunter's", "(80-89)% increased Chaos Damage over Time", statOrder = { 1219 }, level = 75, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(80-89)% increased Chaos Damage over Time" }, } },
- ["PoisonDamagePrefixInfluence4"] = { type = "Prefix", affix = "Hunter's", "(90-94)% increased Chaos Damage over Time", statOrder = { 1219 }, level = 78, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(90-94)% increased Chaos Damage over Time" }, } },
- ["PoisonDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "(100-109)% increased Chaos Damage over Time", statOrder = { 1219 }, level = 68, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(100-109)% increased Chaos Damage over Time" }, } },
- ["PoisonDamagePrefixTwoHandInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(110-119)% increased Chaos Damage over Time", statOrder = { 1219 }, level = 71, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 300, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(110-119)% increased Chaos Damage over Time" }, } },
- ["PoisonDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "(120-129)% increased Chaos Damage over Time", statOrder = { 1219 }, level = 75, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(120-129)% increased Chaos Damage over Time" }, } },
- ["PoisonDamagePrefixTwoHandInfluence4_"] = { type = "Prefix", affix = "Hunter's", "(130-134)% increased Chaos Damage over Time", statOrder = { 1219 }, level = 78, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(130-134)% increased Chaos Damage over Time" }, } },
- ["FasterIgniteDamageInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (8-12)% faster", statOrder = { 2569 }, level = 68, group = "FasterIgniteDamage", weightKey = { "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (8-12)% faster" }, } },
- ["FasterIgniteDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (13-15)% faster", statOrder = { 2569 }, level = 73, group = "FasterIgniteDamage", weightKey = { "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (13-15)% faster" }, } },
- ["FasterIgniteDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (18-21)% faster", statOrder = { 2569 }, level = 68, group = "FasterIgniteDamage", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (18-21)% faster" }, } },
- ["FasterIgniteDamageTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (22-25)% faster", statOrder = { 2569 }, level = 73, group = "FasterIgniteDamage", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (22-25)% faster" }, } },
- ["FasterBleedDamageInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (8-12)% faster", statOrder = { 6549 }, level = 68, group = "FasterBleedDamage", weightKey = { "sword_basilisk", "axe_basilisk", "mace_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (8-12)% faster" }, } },
- ["FasterBleedDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (13-15)% faster", statOrder = { 6549 }, level = 73, group = "FasterBleedDamage", weightKey = { "sword_basilisk", "axe_basilisk", "mace_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (13-15)% faster" }, } },
- ["FasterBleedDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (18-21)% faster", statOrder = { 6549 }, level = 68, group = "FasterBleedDamage", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (18-21)% faster" }, } },
- ["FasterBleedDamageTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (22-25)% faster", statOrder = { 6549 }, level = 73, group = "FasterBleedDamage", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (22-25)% faster" }, } },
- ["FasterPoisonDamageInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (8-12)% faster", statOrder = { 6550 }, level = 68, group = "FasterPoisonDamage", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (8-12)% faster" }, } },
- ["FasterPoisonDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (13-15)% faster", statOrder = { 6550 }, level = 73, group = "FasterPoisonDamage", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (13-15)% faster" }, } },
- ["FasterPoisonDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (18-21)% faster", statOrder = { 6550 }, level = 68, group = "FasterPoisonDamage", weightKey = { "2h_sword_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (18-21)% faster" }, } },
- ["FasterPoisonDamageTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (22-25)% faster", statOrder = { 6550 }, level = 73, group = "FasterPoisonDamage", weightKey = { "2h_sword_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (22-25)% faster" }, } },
- ["ImpaleEffectWeaponInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "(12-16)% increased Impale Effect", statOrder = { 7247 }, level = 68, group = "ImpaleEffect", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [298173317] = { "(12-16)% increased Impale Effect" }, } },
- ["ImpaleEffectWeaponInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(17-21)% increased Impale Effect", statOrder = { 7247 }, level = 71, group = "ImpaleEffect", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [298173317] = { "(17-21)% increased Impale Effect" }, } },
- ["ImpaleEffectWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Impale Effect", statOrder = { 7247 }, level = 75, group = "ImpaleEffect", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [298173317] = { "(22-25)% increased Impale Effect" }, } },
- ["ImpaleEffectTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-29)% increased Impale Effect", statOrder = { 7247 }, level = 68, group = "ImpaleEffect", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [298173317] = { "(25-29)% increased Impale Effect" }, } },
- ["ImpaleEffectTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(30-34)% increased Impale Effect", statOrder = { 7247 }, level = 71, group = "ImpaleEffect", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [298173317] = { "(30-34)% increased Impale Effect" }, } },
- ["ImpaleEffectTwoHandWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(35-38)% increased Impale Effect", statOrder = { 7247 }, level = 75, group = "ImpaleEffect", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [298173317] = { "(35-38)% increased Impale Effect" }, } },
- ["ConvertPhysicalToFireInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 68, group = "ConvertPhysicalToFire", weightKey = { "sword_crusader", "axe_crusader", "mace_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(23-26)% of Physical Damage Converted to Fire Damage" }, } },
- ["ConvertPhysicalToFireInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 71, group = "ConvertPhysicalToFire", weightKey = { "sword_crusader", "axe_crusader", "mace_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(27-30)% of Physical Damage Converted to Fire Damage" }, } },
- ["ConvertPhysicalToColdInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 68, group = "ConvertPhysicalToCold", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(23-26)% of Physical Damage Converted to Cold Damage" }, } },
- ["ConvertPhysicalToColdInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 71, group = "ConvertPhysicalToCold", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(27-30)% of Physical Damage Converted to Cold Damage" }, } },
- ["ConvertPhysicalToLightningInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 68, group = "ConvertPhysicalToLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(23-26)% of Physical Damage Converted to Lightning Damage" }, } },
- ["ConvertPhysicalToLightningInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 71, group = "ConvertPhysicalToLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(27-30)% of Physical Damage Converted to Lightning Damage" }, } },
- ["ConvertPhysicalToChaosInfluenceWeapon1"] = { type = "Suffix", affix = "of the Hunt", "(16-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 68, group = "PhysicalDamageConvertedToChaos", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(16-20)% of Physical Damage Converted to Chaos Damage" }, } },
- ["ConvertPhysicalToChaosInfluenceWeapon2"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 71, group = "PhysicalDamageConvertedToChaos", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(21-25)% of Physical Damage Converted to Chaos Damage" }, } },
- ["ArmourPenetrationWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (50-65)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7944 }, level = 68, group = "LocalArmourPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon have (50-65)% chance to ignore Enemy Physical Damage Reduction" }, } },
- ["ArmourPenetrationWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (66-80)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7944 }, level = 71, group = "LocalArmourPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon have (66-80)% chance to ignore Enemy Physical Damage Reduction" }, } },
- ["ArmourPenetrationTwoHandWeaponInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (50-65)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7944 }, level = 68, group = "LocalArmourPenetration", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon have (50-65)% chance to ignore Enemy Physical Damage Reduction" }, } },
- ["ArmourPenetrationTwoHandWeaponInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (66-80)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7944 }, level = 71, group = "LocalArmourPenetration", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon have (66-80)% chance to ignore Enemy Physical Damage Reduction" }, } },
- ["ArmourPenetrationSpellWeaponInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "Hits have (25-29)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 68, group = "ChanceToIgnoreEnemyArmour", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (25-29)% chance to ignore Enemy Physical Damage Reduction" }, } },
- ["ArmourPenetrationSpellWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits have (30-35)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 71, group = "ChanceToIgnoreEnemyArmour", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (30-35)% chance to ignore Enemy Physical Damage Reduction" }, } },
- ["ArmourPenetrationSpellTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Hits have (50-59)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 68, group = "ChanceToIgnoreEnemyArmour", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (50-59)% chance to ignore Enemy Physical Damage Reduction" }, } },
- ["ArmourPenetrationSpellTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits have (60-70)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 71, group = "ChanceToIgnoreEnemyArmour", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (60-70)% chance to ignore Enemy Physical Damage Reduction" }, } },
- ["FireExposureOnHitWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(11-15)% chance to inflict Fire Exposure on Hit", statOrder = { 5032 }, level = 75, group = "FireExposureOnHit", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "staff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3602667353] = { "(11-15)% chance to inflict Fire Exposure on Hit" }, } },
- ["FireExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(16-20)% chance to inflict Fire Exposure on Hit", statOrder = { 5032 }, level = 80, group = "FireExposureOnHit", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "staff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3602667353] = { "(16-20)% chance to inflict Fire Exposure on Hit" }, } },
- ["ColdExposureOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(11-15)% chance to inflict Cold Exposure on Hit", statOrder = { 5031 }, level = 75, group = "ColdExposureOnHit", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "staff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2630708439] = { "(11-15)% chance to inflict Cold Exposure on Hit" }, } },
- ["ColdExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(16-20)% chance to inflict Cold Exposure on Hit", statOrder = { 5031 }, level = 80, group = "ColdExposureOnHit", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "staff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2630708439] = { "(16-20)% chance to inflict Cold Exposure on Hit" }, } },
- ["LightningExposureOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% chance to inflict Lightning Exposure on Hit", statOrder = { 5033 }, level = 75, group = "LightningExposureOnHit", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "staff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4265906483] = { "(11-15)% chance to inflict Lightning Exposure on Hit" }, } },
- ["LightningExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% chance to inflict Lightning Exposure on Hit", statOrder = { 5033 }, level = 80, group = "LightningExposureOnHit", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "staff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4265906483] = { "(16-20)% chance to inflict Lightning Exposure on Hit" }, } },
- ["ChanceToUnnerveOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(7-11)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 78, group = "ChanceToUnnerveOnHit", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "staff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [763611529] = { "(7-11)% chance to Unnerve Enemies for 4 seconds on Hit" }, } },
- ["ChanceToUnnerveOnHitWeaponInfluence2__"] = { type = "Suffix", affix = "of the Hunt", "(12-15)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 81, group = "ChanceToUnnerveOnHit", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "staff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [763611529] = { "(12-15)% chance to Unnerve Enemies for 4 seconds on Hit" }, } },
- ["ChanceToIntimidateOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(7-11)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7879 }, level = 78, group = "LocalChanceToIntimidateOnHit", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attack" }, tradeHashes = { [2089652545] = { "(7-11)% chance to Intimidate Enemies for 4 seconds on Hit" }, } },
- ["ChanceToIntimidateOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(12-15)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7879 }, level = 81, group = "LocalChanceToIntimidateOnHit", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attack" }, tradeHashes = { [2089652545] = { "(12-15)% chance to Intimidate Enemies for 4 seconds on Hit" }, } },
- ["DamageFromAurasWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3463 }, level = 82, group = "IncreasedDamageFromAuras", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "influence_mod", "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 2% increased Damage to you and Allies" }, } },
- ["DamageFromAurasTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3463 }, level = 82, group = "IncreasedDamageFromAuras", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 0 }, modTags = { "influence_mod", "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 4% increased Damage to you and Allies" }, } },
- ["LocalChanceToMaimPhysicalDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(10-13)% increased Physical Damage", "10% chance to Maim on Hit", statOrder = { 1237, 7993 }, level = 68, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(10-13)% increased Physical Damage" }, [2763429652] = { "10% chance to Maim on Hit" }, } },
- ["LocalChanceToMaimPhysicalDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(14-16)% increased Physical Damage", "15% chance to Maim on Hit", statOrder = { 1237, 7993 }, level = 70, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(14-16)% increased Physical Damage" }, [2763429652] = { "15% chance to Maim on Hit" }, } },
- ["LocalChanceToMaimPhysicalDamageInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(17-20)% increased Physical Damage", "20% chance to Maim on Hit", statOrder = { 1237, 7993 }, level = 73, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(17-20)% increased Physical Damage" }, [2763429652] = { "20% chance to Maim on Hit" }, } },
- ["BlindOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-18)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4920 }, level = 68, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(15-18)% chance to Blind Enemies on Hit with Attacks" }, } },
- ["BlindOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(19-22)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4920 }, level = 70, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(19-22)% chance to Blind Enemies on Hit with Attacks" }, } },
- ["BlindOnHitWeaponInfluence3"] = { type = "Suffix", affix = "of Redemption", "(23-25)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4920 }, level = 73, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(23-25)% chance to Blind Enemies on Hit with Attacks" }, } },
- ["OnslaugtOnKillWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-18)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3385 }, level = 68, group = "OnslaugtOnKillPercentChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [665823128] = { "(15-18)% chance to gain Onslaught for 4 seconds on Kill" }, } },
- ["OnslaugtOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(19-22)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3385 }, level = 70, group = "OnslaugtOnKillPercentChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [665823128] = { "(19-22)% chance to gain Onslaught for 4 seconds on Kill" }, } },
- ["OnslaugtOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of Redemption", "(23-25)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3385 }, level = 73, group = "OnslaugtOnKillPercentChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [665823128] = { "(23-25)% chance to gain Onslaught for 4 seconds on Kill" }, } },
- ["PhasingOnKillWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(15-18)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(15-18)% chance to gain Phasing for 4 seconds on Kill" }, } },
- ["PhasingOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(19-22)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 70, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(19-22)% chance to gain Phasing for 4 seconds on Kill" }, } },
- ["PhasingOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(23-25)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 73, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(23-25)% chance to gain Phasing for 4 seconds on Kill" }, } },
- ["UnholyMightOnKillWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(15-18)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3382 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3562211447] = { "(15-18)% chance to gain Unholy Might for 3 seconds on Kill" }, } },
- ["UnholyMightOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(19-22)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3382 }, level = 70, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3562211447] = { "(19-22)% chance to gain Unholy Might for 3 seconds on Kill" }, } },
- ["UnholyMightOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(23-25)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3382 }, level = 73, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3562211447] = { "(23-25)% chance to gain Unholy Might for 3 seconds on Kill" }, } },
- ["BlockWhileDualWieldingInfluence1__"] = { type = "Suffix", affix = "of Redemption", "+(2-4)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1167 }, level = 68, group = "BlockWhileDualWielding", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2166444903] = { "+(2-4)% Chance to Block Attack Damage while Dual Wielding" }, } },
- ["BlockWhileDualWieldingInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(5-7)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1167 }, level = 70, group = "BlockWhileDualWielding", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2166444903] = { "+(5-7)% Chance to Block Attack Damage while Dual Wielding" }, } },
- ["BlockWhileDualWieldingInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(8-9)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1167 }, level = 73, group = "BlockWhileDualWielding", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2166444903] = { "+(8-9)% Chance to Block Attack Damage while Dual Wielding" }, } },
- ["PhysicalDamageWhileDualWieldingInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(23-27)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1284 }, level = 68, group = "DualWieldingPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "(23-27)% increased Physical Attack Damage while Dual Wielding" }, } },
- ["PhysicalDamageWhileDualWieldingInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(28-32)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1284 }, level = 70, group = "DualWieldingPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "(28-32)% increased Physical Attack Damage while Dual Wielding" }, } },
- ["PhysicalDamageWhileDualWieldingInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(33-37)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1284 }, level = 73, group = "DualWieldingPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "(33-37)% increased Physical Attack Damage while Dual Wielding" }, } },
- ["LocalMeleeWeaponRangeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+0.2 metres to Weapon Range", statOrder = { 2750 }, level = 68, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } },
- ["LocalMeleeWeaponRangeInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+0.3 metres to Weapon Range", statOrder = { 2750 }, level = 73, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [350598685] = { "+0.3 metres to Weapon Range" }, } },
- ["MovementVelocityWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(3-6)% increased Movement Speed", statOrder = { 1803 }, level = 68, group = "MovementVelocity", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(3-6)% increased Movement Speed" }, } },
- ["MovementVelocityWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(7-10)% increased Movement Speed", statOrder = { 1803 }, level = 73, group = "MovementVelocity", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(7-10)% increased Movement Speed" }, } },
- ["SpellsDoubleDamageChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "Spells have a (4-5)% chance to deal Double Damage", statOrder = { 10135 }, level = 75, group = "SpellsDoubleDamageChance", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2813626504] = { "Spells have a (4-5)% chance to deal Double Damage" }, } },
- ["SpellsDoubleDamageChanceInfluence2"] = { type = "Suffix", affix = "of Redemption", "Spells have a (6-7)% chance to deal Double Damage", statOrder = { 10135 }, level = 80, group = "SpellsDoubleDamageChance", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2813626504] = { "Spells have a (6-7)% chance to deal Double Damage" }, } },
- ["SpellsDoubleDamageChanceTwoHandInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Spells have a (10-11)% chance to deal Double Damage", statOrder = { 10135 }, level = 75, group = "SpellsDoubleDamageChance", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2813626504] = { "Spells have a (10-11)% chance to deal Double Damage" }, } },
- ["SpellsDoubleDamageChanceTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "Spells have a (12-14)% chance to deal Double Damage", statOrder = { 10135 }, level = 80, group = "SpellsDoubleDamageChance", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2813626504] = { "Spells have a (12-14)% chance to deal Double Damage" }, } },
- ["DamagePerEnduranceChargeWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 68, group = "DamagePerEnduranceCharge", weightKey = { "sceptre_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3515686789] = { "(5-7)% increased Damage per Endurance Charge" }, } },
- ["DamagePerEnduranceChargeWeaponInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 73, group = "DamagePerEnduranceCharge", weightKey = { "sceptre_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3515686789] = { "(8-10)% increased Damage per Endurance Charge" }, } },
- ["DamagePerFrenzyChargeWeaponInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 68, group = "DamagePerFrenzyCharge", weightKey = { "rune_dagger_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [902747843] = { "(5-7)% increased Damage per Frenzy Charge" }, } },
- ["DamagePerFrenzyChargeWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 73, group = "DamagePerFrenzyCharge", weightKey = { "rune_dagger_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [902747843] = { "(8-10)% increased Damage per Frenzy Charge" }, } },
- ["DamagePerPowerChargeWeaponInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(5-7)% increased Damage per Power Charge", statOrder = { 6071 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(5-7)% increased Damage per Power Charge" }, } },
- ["DamagePerPowerChargeWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(8-10)% increased Damage per Power Charge", statOrder = { 6071 }, level = 73, group = "IncreasedDamagePerPowerCharge", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(8-10)% increased Damage per Power Charge" }, } },
- ["DamagePerEnduranceChargeTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(10-13)% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 68, group = "DamagePerEnduranceCharge", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3515686789] = { "(10-13)% increased Damage per Endurance Charge" }, } },
- ["DamagePerEnduranceChargeTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(14-17)% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 73, group = "DamagePerEnduranceCharge", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3515686789] = { "(14-17)% increased Damage per Endurance Charge" }, } },
- ["DamagePerPowerChargeTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-13)% increased Damage per Power Charge", statOrder = { 6071 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(10-13)% increased Damage per Power Charge" }, } },
- ["DamagePerPowerChargeTwoHandWeaponInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(14-17)% increased Damage per Power Charge", statOrder = { 6071 }, level = 73, group = "IncreasedDamagePerPowerCharge", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(14-17)% increased Damage per Power Charge" }, } },
- ["BaseManaRegenerationInfluence1_____"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.3% of Mana per second", statOrder = { 1586 }, level = 68, group = "BaseManaRegeneration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.3% of Mana per second" }, } },
- ["BaseManaRegenerationInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.4% of Mana per second", statOrder = { 1586 }, level = 73, group = "BaseManaRegeneration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.4% of Mana per second" }, } },
- ["BaseManaRegenerationTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.7% of Mana per second", statOrder = { 1586 }, level = 68, group = "BaseManaRegeneration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.7% of Mana per second" }, } },
- ["BaseManaRegenerationTwoHandInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.8% of Mana per second", statOrder = { 1586 }, level = 73, group = "BaseManaRegeneration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.8% of Mana per second" }, } },
- ["AngerAuraEffectInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (28-33)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffect", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1592278124] = { "Anger has (28-33)% increased Aura Effect" }, } },
- ["AngerAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Anger has (34-40)% increased Aura Effect", statOrder = { 3361 }, level = 80, group = "AngerAuraEffect", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1592278124] = { "Anger has (34-40)% increased Aura Effect" }, } },
- ["AngerAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (48-54)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffect", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1592278124] = { "Anger has (48-54)% increased Aura Effect" }, } },
- ["AngerAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "Anger has (55-60)% increased Aura Effect", statOrder = { 3361 }, level = 80, group = "AngerAuraEffect", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1592278124] = { "Anger has (55-60)% increased Aura Effect" }, } },
- ["HatredAuraEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (28-33)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffect", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [3742945352] = { "Hatred has (28-33)% increased Aura Effect" }, } },
- ["HatredAuraEffectInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Hatred has (34-40)% increased Aura Effect", statOrder = { 3371 }, level = 80, group = "HatredAuraEffect", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [3742945352] = { "Hatred has (34-40)% increased Aura Effect" }, } },
- ["HatredAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (48-54)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffect", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [3742945352] = { "Hatred has (48-54)% increased Aura Effect" }, } },
- ["HatredAuraEffectTwoHandInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Hatred has (55-60)% increased Aura Effect", statOrder = { 3371 }, level = 80, group = "HatredAuraEffect", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [3742945352] = { "Hatred has (55-60)% increased Aura Effect" }, } },
- ["WrathAuraEffectInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (28-33)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [2181791238] = { "Wrath has (28-33)% increased Aura Effect" }, } },
- ["WrathAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (34-40)% increased Aura Effect", statOrder = { 3366 }, level = 80, group = "WrathAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [2181791238] = { "Wrath has (34-40)% increased Aura Effect" }, } },
- ["WrathAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (48-54)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [2181791238] = { "Wrath has (48-54)% increased Aura Effect" }, } },
- ["WrathAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (55-60)% increased Aura Effect", statOrder = { 3366 }, level = 80, group = "WrathAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [2181791238] = { "Wrath has (55-60)% increased Aura Effect" }, } },
- ["MalevolenceAuraEffectInfluence1____"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (28-33)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (28-33)% increased Aura Effect" }, } },
- ["MalevolenceAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (34-40)% increased Aura Effect", statOrder = { 6166 }, level = 80, group = "MalevolenceAuraEffect", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (34-40)% increased Aura Effect" }, } },
- ["MalevolenceAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (48-54)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (48-54)% increased Aura Effect" }, } },
- ["MalevolenceAuraEffectTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (55-60)% increased Aura Effect", statOrder = { 6166 }, level = 80, group = "MalevolenceAuraEffect", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (55-60)% increased Aura Effect" }, } },
- ["ZealotryAuraEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (28-33)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (28-33)% increased Aura Effect" }, } },
- ["ZealotryAuraEffectInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (34-40)% increased Aura Effect", statOrder = { 10720 }, level = 80, group = "ZealotryAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (34-40)% increased Aura Effect" }, } },
- ["ZealotryAuraEffectTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (48-54)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (48-54)% increased Aura Effect" }, } },
- ["ZealotryAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (55-60)% increased Aura Effect", statOrder = { 10720 }, level = 80, group = "ZealotryAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (55-60)% increased Aura Effect" }, } },
- ["DamageWhileLeechingWeaponInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(18-22)% increased Damage while Leeching", statOrder = { 3068 }, level = 68, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [310246444] = { "(18-22)% increased Damage while Leeching" }, } },
- ["DamageWhileLeechingWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% increased Damage while Leeching", statOrder = { 3068 }, level = 70, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [310246444] = { "(23-26)% increased Damage while Leeching" }, } },
- ["DamageWhileLeechingWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% increased Damage while Leeching", statOrder = { 3068 }, level = 73, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [310246444] = { "(27-30)% increased Damage while Leeching" }, } },
- ["DamageWhileLeechingWeaponTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(32-36)% increased Damage while Leeching", statOrder = { 3068 }, level = 68, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [310246444] = { "(32-36)% increased Damage while Leeching" }, } },
- ["DamageWhileLeechingWeaponTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(37-41)% increased Damage while Leeching", statOrder = { 3068 }, level = 70, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [310246444] = { "(37-41)% increased Damage while Leeching" }, } },
- ["DamageWhileLeechingWeaponTwoHandInfluence3_"] = { type = "Suffix", affix = "of the Crusade", "(42-45)% increased Damage while Leeching", statOrder = { 3068 }, level = 73, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [310246444] = { "(42-45)% increased Damage while Leeching" }, } },
- ["AttackSpeedWithFortifyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-12)% increased Attack Speed while Fortified", statOrder = { 3220 }, level = 68, group = "AttackSpeedWithFortify", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [122450405] = { "(10-12)% increased Attack Speed while Fortified" }, } },
- ["AttackSpeedWithFortifyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(13-15)% increased Attack Speed while Fortified", statOrder = { 3220 }, level = 73, group = "AttackSpeedWithFortify", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [122450405] = { "(13-15)% increased Attack Speed while Fortified" }, } },
- ["AttackSpeedWithFortifyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(20-22)% increased Attack Speed while Fortified", statOrder = { 3220 }, level = 68, group = "AttackSpeedWithFortify", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [122450405] = { "(20-22)% increased Attack Speed while Fortified" }, } },
- ["AttackSpeedWithFortifyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(23-25)% increased Attack Speed while Fortified", statOrder = { 3220 }, level = 73, group = "AttackSpeedWithFortify", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [122450405] = { "(23-25)% increased Attack Speed while Fortified" }, } },
- ["MeleeWeaponRangeIfKilledRecentlyInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "+0.2 metres to Melee Strike Range if you have Killed Recently", statOrder = { 9216 }, level = 68, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "sword_adjudicator", "2h_sword_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3255961830] = { "+0.2 metres to Melee Strike Range if you have Killed Recently" }, } },
- ["MeleeWeaponRangeIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+0.3 metres to Melee Strike Range if you have Killed Recently", statOrder = { 9216 }, level = 73, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "sword_adjudicator", "2h_sword_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3255961830] = { "+0.3 metres to Melee Strike Range if you have Killed Recently" }, } },
- ["TauntOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(5-6)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4921 }, level = 68, group = "AttacksTauntOnHitChance", weightKey = { "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [280213220] = { "(5-6)% chance to Taunt Enemies on Hit with Attacks" }, } },
- ["TauntOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(7-8)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4921 }, level = 70, group = "AttacksTauntOnHitChance", weightKey = { "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [280213220] = { "(7-8)% chance to Taunt Enemies on Hit with Attacks" }, } },
- ["TauntOnHitWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(9-10)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4921 }, level = 73, group = "AttacksTauntOnHitChance", weightKey = { "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [280213220] = { "(9-10)% chance to Taunt Enemies on Hit with Attacks" }, } },
- ["AttackSpeedIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(13-16)% increased Attack Speed if you've Killed Recently", statOrder = { 4899 }, level = 68, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [1507059769] = { "(13-16)% increased Attack Speed if you've Killed Recently" }, } },
- ["AttackSpeedIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(17-20)% increased Attack Speed if you've Killed Recently", statOrder = { 4899 }, level = 73, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [1507059769] = { "(17-20)% increased Attack Speed if you've Killed Recently" }, } },
- ["AttackSpeedIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(23-26)% increased Attack Speed if you've Killed Recently", statOrder = { 4899 }, level = 68, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "2h_axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [1507059769] = { "(23-26)% increased Attack Speed if you've Killed Recently" }, } },
- ["AttackSpeedIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(27-30)% increased Attack Speed if you've Killed Recently", statOrder = { 4899 }, level = 73, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "2h_axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [1507059769] = { "(27-30)% increased Attack Speed if you've Killed Recently" }, } },
- ["CastSpeedIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(13-16)% increased Cast Speed if you've Killed Recently", statOrder = { 5472 }, level = 68, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [2072625596] = { "(13-16)% increased Cast Speed if you've Killed Recently" }, } },
- ["CastSpeedIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(17-20)% increased Cast Speed if you've Killed Recently", statOrder = { 5472 }, level = 73, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [2072625596] = { "(17-20)% increased Cast Speed if you've Killed Recently" }, } },
- ["CastSpeedIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(23-26)% increased Cast Speed if you've Killed Recently", statOrder = { 5472 }, level = 68, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [2072625596] = { "(23-26)% increased Cast Speed if you've Killed Recently" }, } },
- ["CastSpeedIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "(27-30)% increased Cast Speed if you've Killed Recently", statOrder = { 5472 }, level = 73, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [2072625596] = { "(27-30)% increased Cast Speed if you've Killed Recently" }, } },
- ["WarcryCooldownSpeedInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(17-21)% increased Warcry Cooldown Recovery Rate", statOrder = { 3334 }, level = 68, group = "WarcryCooldownSpeed", weightKey = { "axe_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(17-21)% increased Warcry Cooldown Recovery Rate" }, } },
- ["WarcryCooldownSpeedInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(22-25)% increased Warcry Cooldown Recovery Rate", statOrder = { 3334 }, level = 73, group = "WarcryCooldownSpeed", weightKey = { "axe_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(22-25)% increased Warcry Cooldown Recovery Rate" }, } },
- ["WarcryCooldownSpeedTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(35-40)% increased Warcry Cooldown Recovery Rate", statOrder = { 3334 }, level = 68, group = "WarcryCooldownSpeed", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "shield_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(35-40)% increased Warcry Cooldown Recovery Rate" }, } },
- ["WarcryCooldownSpeedTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(41-45)% increased Warcry Cooldown Recovery Rate", statOrder = { 3334 }, level = 73, group = "WarcryCooldownSpeed", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "shield_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(41-45)% increased Warcry Cooldown Recovery Rate" }, } },
- ["CriticalStrikeChanceIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-40)% increased Critical Strike Chance if you have Killed Recently", statOrder = { 5930 }, level = 68, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [3914638685] = { "(31-40)% increased Critical Strike Chance if you have Killed Recently" }, } },
- ["CriticalStrikeChanceIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% increased Critical Strike Chance if you have Killed Recently", statOrder = { 5930 }, level = 73, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [3914638685] = { "(41-50)% increased Critical Strike Chance if you have Killed Recently" }, } },
- ["CriticalStrikeMultiplierIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(26-30)% to Critical Strike Multiplier if you've Killed Recently", statOrder = { 5962 }, level = 68, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [2937483991] = { "+(26-30)% to Critical Strike Multiplier if you've Killed Recently" }, } },
- ["CriticalStrikeMultiplierIfKilledRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(31-35)% to Critical Strike Multiplier if you've Killed Recently", statOrder = { 5962 }, level = 73, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [2937483991] = { "+(31-35)% to Critical Strike Multiplier if you've Killed Recently" }, } },
- ["CriticalStrikeMultiplierAgainstFullLifeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(41-50)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrder = { 3438 }, level = 68, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [2355615476] = { "+(41-50)% to Critical Strike Multiplier against Enemies that are on Full Life" }, } },
- ["CriticalStrikeMultiplierAgainstFullLifeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(51-60)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrder = { 3438 }, level = 73, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [2355615476] = { "+(51-60)% to Critical Strike Multiplier against Enemies that are on Full Life" }, } },
- ["GainRareMonsterModsOnKillChanceInfluence1"] = { type = "Suffix", affix = "of the Conquest", "When you Kill a Rare Monster, (21-30)% chance to gain one of its Modifiers for 10 seconds", statOrder = { 6701 }, level = 68, group = "GainRareMonsterModsOnKillChance", weightKey = { "claw_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2736829661] = { "When you Kill a Rare Monster, (21-30)% chance to gain one of its Modifiers for 10 seconds" }, } },
- ["GainRareMonsterModsOnKillChanceInfluence2"] = { type = "Suffix", affix = "of the Conquest", "When you Kill a Rare Monster, (31-40)% chance to gain one of its Modifiers for 10 seconds", statOrder = { 6701 }, level = 73, group = "GainRareMonsterModsOnKillChance", weightKey = { "claw_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2736829661] = { "When you Kill a Rare Monster, (31-40)% chance to gain one of its Modifiers for 10 seconds" }, } },
- ["StunDurationAndThresholdInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% reduced Enemy Stun Threshold", "(11-15)% increased Stun Duration on Enemies", statOrder = { 1522, 1868 }, level = 68, group = "StunDurationAndThresholdUber", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2517001139] = { "(11-15)% increased Stun Duration on Enemies" }, [1443060084] = { "(11-15)% reduced Enemy Stun Threshold" }, } },
- ["StunDurationAndThresholdInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% reduced Enemy Stun Threshold", "(16-20)% increased Stun Duration on Enemies", statOrder = { 1522, 1868 }, level = 73, group = "StunDurationAndThresholdUber", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2517001139] = { "(16-20)% increased Stun Duration on Enemies" }, [1443060084] = { "(16-20)% reduced Enemy Stun Threshold" }, } },
- ["StunDurationAndThresholdTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% reduced Enemy Stun Threshold", "(21-25)% increased Stun Duration on Enemies", statOrder = { 1522, 1868 }, level = 68, group = "StunDurationAndThresholdUber", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2517001139] = { "(21-25)% increased Stun Duration on Enemies" }, [1443060084] = { "(21-25)% reduced Enemy Stun Threshold" }, } },
- ["StunDurationAndThresholdTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% reduced Enemy Stun Threshold", "(26-30)% increased Stun Duration on Enemies", statOrder = { 1522, 1868 }, level = 73, group = "StunDurationAndThresholdUber", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2517001139] = { "(26-30)% increased Stun Duration on Enemies" }, [1443060084] = { "(26-30)% reduced Enemy Stun Threshold" }, } },
- ["AreaOfEffectIfStunnedRecentlyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4733 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [430248187] = { "(26-30)% increased Area of Effect if you have Stunned an Enemy Recently" }, } },
- ["AreaOfEffectIfStunnedRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4733 }, level = 73, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [430248187] = { "(31-35)% increased Area of Effect if you have Stunned an Enemy Recently" }, } },
- ["AreaOfEffectIfStunnedRecentlyTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4733 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [430248187] = { "(36-40)% increased Area of Effect if you have Stunned an Enemy Recently" }, } },
- ["AreaOfEffectIfStunnedRecentlyTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(41-45)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4733 }, level = 73, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [430248187] = { "(41-45)% increased Area of Effect if you have Stunned an Enemy Recently" }, } },
- ["EnemiesExplodeOnDeathDealingFireInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage", statOrder = { 2711 }, level = 78, group = "EnemiesExplodeOnDeath", weightKey = { "mace_eyrie", "2h_mace_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3457687358] = { "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage" }, } },
- ["ChanceForDoubleStunDurationInfluence1"] = { type = "Suffix", affix = "of Redemption", "(7-11)% chance to double Stun Duration", statOrder = { 3569 }, level = 68, group = "ChanceForDoubleStunDuration", weightKey = { "mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2622251413] = { "(7-11)% chance to double Stun Duration" }, } },
- ["ChanceForDoubleStunDurationInfluence2"] = { type = "Suffix", affix = "of Redemption", "(12-15)% chance to double Stun Duration", statOrder = { 3569 }, level = 73, group = "ChanceForDoubleStunDuration", weightKey = { "mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2622251413] = { "(12-15)% chance to double Stun Duration" }, } },
- ["ChanceForDoubleStunDurationTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(17-21)% chance to double Stun Duration", statOrder = { 3569 }, level = 68, group = "ChanceForDoubleStunDuration", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2622251413] = { "(17-21)% chance to double Stun Duration" }, } },
- ["ChanceForDoubleStunDurationTwoHandInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(22-25)% chance to double Stun Duration", statOrder = { 3569 }, level = 73, group = "ChanceForDoubleStunDuration", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2622251413] = { "(22-25)% chance to double Stun Duration" }, } },
- ["MovementSpeedIfHitRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9417 }, level = 68, group = "MovementSpeedIfHitRecently", weightKey = { "mace_eyrie", "sceptre_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [3178542354] = { "(5-7)% increased Movement Speed if you've Hit an Enemy Recently" }, } },
- ["MovementSpeedIfHitRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9417 }, level = 73, group = "MovementSpeedIfHitRecently", weightKey = { "mace_eyrie", "sceptre_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [3178542354] = { "(8-10)% increased Movement Speed if you've Hit an Enemy Recently" }, } },
- ["MovementSpeedIfHitRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(10-12)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9417 }, level = 68, group = "MovementSpeedIfHitRecently", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [3178542354] = { "(10-12)% increased Movement Speed if you've Hit an Enemy Recently" }, } },
- ["MovementSpeedIfHitRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "(13-15)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9417 }, level = 73, group = "MovementSpeedIfHitRecently", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [3178542354] = { "(13-15)% increased Movement Speed if you've Hit an Enemy Recently" }, } },
- ["AreaOfEffectIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(17-21)% increased Area of Effect if you've Killed Recently", statOrder = { 4224 }, level = 68, group = "AreaOfEffectIfKilledRecently", weightKey = { "mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3481736410] = { "(17-21)% increased Area of Effect if you've Killed Recently" }, } },
- ["AreaOfEffectIfKilledRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(22-25)% increased Area of Effect if you've Killed Recently", statOrder = { 4224 }, level = 73, group = "AreaOfEffectIfKilledRecently", weightKey = { "mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3481736410] = { "(22-25)% increased Area of Effect if you've Killed Recently" }, } },
- ["AreaOfEffectIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(27-31)% increased Area of Effect if you've Killed Recently", statOrder = { 4224 }, level = 68, group = "AreaOfEffectIfKilledRecently", weightKey = { "2h_mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3481736410] = { "(27-31)% increased Area of Effect if you've Killed Recently" }, } },
- ["AreaOfEffectIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(32-35)% increased Area of Effect if you've Killed Recently", statOrder = { 4224 }, level = 73, group = "AreaOfEffectIfKilledRecently", weightKey = { "2h_mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3481736410] = { "(32-35)% increased Area of Effect if you've Killed Recently" }, } },
- ["ChanceToBlockIfDamagedRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "+(10-12)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrder = { 3221 }, level = 68, group = "ChanceToBlockIfDamagedRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [852195286] = { "+(10-12)% Chance to Block Attack Damage if you were Damaged by a Hit Recently" }, } },
- ["ChanceToBlockIfDamagedRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrder = { 3221 }, level = 73, group = "ChanceToBlockIfDamagedRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [852195286] = { "+(13-15)% Chance to Block Attack Damage if you were Damaged by a Hit Recently" }, } },
- ["SpellBlockChanceIfHitRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "+(10-12)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5656 }, level = 68, group = "SpellBlockChanceIfHitRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [1101206134] = { "+(10-12)% Chance to Block Spell Damage if you were Damaged by a Hit Recently" }, } },
- ["SpellBlockChanceIfHitRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5656 }, level = 73, group = "SpellBlockChanceIfHitRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [1101206134] = { "+(13-15)% Chance to Block Spell Damage if you were Damaged by a Hit Recently" }, } },
- ["AdditionalProjectileWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Skills fire an additional Projectile", statOrder = { 1797 }, level = 82, group = "AdditionalProjectiles", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, modTags = { "influence_mod" }, tradeHashes = { [74338099] = { "Skills fire an additional Projectile" }, } },
- ["SocketedSkillsChainInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Socketed Gems Chain 1 additional times", statOrder = { 545 }, level = 85, group = "DisplaySocketedSkillsChain", weightKey = { "bow_crusader", "default", }, weightVal = { 100, 0 }, modTags = { "skill", "influence_mod", "gem" }, tradeHashes = { [2788729902] = { "Socketed Gems Chain 1 additional times" }, } },
- ["SocketedSkillsForkInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Projectiles from Socketed Gems Fork", statOrder = { 569 }, level = 85, group = "DisplaySocketedSkillsFork", weightKey = { "bow_crusader", "default", }, weightVal = { 100, 0 }, modTags = { "skill", "influence_mod", "gem" }, tradeHashes = { [1519665289] = { "Projectiles from Socketed Gems Fork" }, } },
- ["ProjectileDamagePerEnemyPiercedInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (15-20)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9733 }, level = 68, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (15-20)% increased Damage with Hits and Ailments for each Enemy Pierced" }, } },
- ["ProjectileDamagePerEnemyPiercedInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (21-25)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9733 }, level = 70, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (21-25)% increased Damage with Hits and Ailments for each Enemy Pierced" }, } },
- ["ProjectileDamagePerEnemyPiercedInfluence3"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (26-30)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9733 }, level = 73, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (26-30)% increased Damage with Hits and Ailments for each Enemy Pierced" }, } },
- ["PhysicalDamageAddedAsRandomElementInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Gain (7-8)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2941 }, level = 68, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "bow_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (7-8)% of Physical Damage as Extra Damage of a random Element" }, } },
- ["PhysicalDamageAddedAsRandomElementInfluence2"] = { type = "Suffix", affix = "of the Crusade", "Gain (9-11)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2941 }, level = 73, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "bow_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (9-11)% of Physical Damage as Extra Damage of a random Element" }, } },
- ["PhysicalDamageAddedAsRandomElementInfluence3"] = { type = "Suffix", affix = "of the Crusade", "Gain (12-15)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2941 }, level = 78, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "bow_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (12-15)% of Physical Damage as Extra Damage of a random Element" }, } },
- ["ArcaneSurgeOnCritInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(11-20)% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 6730 }, level = 75, group = "GainArcaneSurgeOnCrit", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [446027070] = { "(11-20)% chance to Gain Arcane Surge when you deal a Critical Strike" }, } },
- ["ArcaneSurgeOnCritInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(21-30)% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 6730 }, level = 80, group = "GainArcaneSurgeOnCrit", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [446027070] = { "(21-30)% chance to Gain Arcane Surge when you deal a Critical Strike" }, } },
- ["CurseOnHitFlammabilityWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Flammability on Hit", statOrder = { 2535 }, level = 78, group = "FlammabilityOnHitLevel", weightKey = { "wand_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [338121249] = { "Curse Enemies with Flammability on Hit" }, } },
- ["CurseOnHitFrostbiteWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Frostbite on Hit", statOrder = { 2536 }, level = 78, group = "FrostbiteOnHitLevel", weightKey = { "wand_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [426847518] = { "Curse Enemies with Frostbite on Hit" }, } },
- ["CurseOnHitConductivityWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Conductivity on Hit", statOrder = { 2532 }, level = 78, group = "ConductivityOnHitLevel", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [710372469] = { "Curse Enemies with Conductivity on Hit" }, } },
- ["CurseOnHitDespairWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Despair on Hit", statOrder = { 2533 }, level = 78, group = "CurseOnHitDespair", weightKey = { "wand_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } },
- ["ImpaleEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "(12-16)% increased Impale Effect", statOrder = { 7247 }, level = 58, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(12-16)% increased Impale Effect" }, } },
- ["ImpaleEffectEssence2__"] = { type = "Suffix", affix = "of the Essence", "(17-21)% increased Impale Effect", statOrder = { 7247 }, level = 74, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(17-21)% increased Impale Effect" }, } },
- ["ImpaleEffectEssence3"] = { type = "Suffix", affix = "of the Essence", "(22-25)% increased Impale Effect", statOrder = { 7247 }, level = 82, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(22-25)% increased Impale Effect" }, } },
- ["ImpaleEffectTwoHandEssence1"] = { type = "Suffix", affix = "of the Essence", "(25-29)% increased Impale Effect", statOrder = { 7247 }, level = 58, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(25-29)% increased Impale Effect" }, } },
- ["ImpaleEffectTwoHandEssence2_"] = { type = "Suffix", affix = "of the Essence", "(30-34)% increased Impale Effect", statOrder = { 7247 }, level = 74, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(30-34)% increased Impale Effect" }, } },
- ["ImpaleEffectTwoHandEssence3_"] = { type = "Suffix", affix = "of the Essence", "(35-38)% increased Impale Effect", statOrder = { 7247 }, level = 82, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(35-38)% increased Impale Effect" }, } },
- ["BreachBodyChaosDamageAsPortionOfFireDamage1_"] = { type = "Prefix", affix = "Chayula's", "Gain 10% of Fire Damage as Extra Chaos Damage", statOrder = { 1946 }, level = 1, group = "ChaosDamageAsPortionOfFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain 10% of Fire Damage as Extra Chaos Damage" }, } },
- ["BreachBodyChaosDamageAsPortionOfColdDamage1"] = { type = "Prefix", affix = "Chayula's", "Gain 10% of Cold Damage as Extra Chaos Damage", statOrder = { 1945 }, level = 1, group = "ChaosDamageAsPortionOfColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain 10% of Cold Damage as Extra Chaos Damage" }, } },
- ["BreachBodyChaosDamageAsPortionOfLightningDamage1"] = { type = "Prefix", affix = "Chayula's", "Gain 10% of Lightning Damage as Extra Chaos Damage", statOrder = { 1943 }, level = 1, group = "ChaosDamageAsPortionOfLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain 10% of Lightning Damage as Extra Chaos Damage" }, } },
- ["BreachBodyAllDefences1"] = { type = "Prefix", affix = "Chayula's", "50% increased Global Defences", statOrder = { 2838 }, level = 1, group = "AllDefences", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "50% increased Global Defences" }, } },
- ["BreachBodyLifeGainedOnHittingIgnitedEnemies1"] = { type = "Suffix", affix = "of Xoph", "Gain (20-30) Life for each Ignited Enemy hit with Attacks", statOrder = { 1748 }, level = 1, group = "LifeGainOnHitVsIgnitedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [120895749] = { "Gain (20-30) Life for each Ignited Enemy hit with Attacks" }, } },
- ["BreachBodyNoExtraBleedDamageWhileMoving1_"] = { type = "Suffix", affix = "of Uul-Netol", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3197 }, level = 1, group = "NoExtraBleedDamageWhileMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [935326447] = { "Moving while Bleeding doesn't cause you to take extra Damage" }, } },
- ["BreachBodyAddedColdDamagePerPowerCharge1"] = { type = "Prefix", affix = "Tul's", "Adds 10 to 15 Cold Damage to Spells per Power Charge", statOrder = { 1830 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3408048164] = { "Adds 10 to 15 Cold Damage to Spells per Power Charge" }, } },
- ["BreachBodyGainPowerChargeOnKillingFrozenEnemy1"] = { type = "Suffix", affix = "of Tul", "25% chance to gain a Power Charge on Killing a Frozen Enemy", statOrder = { 1829 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge" }, tradeHashes = { [3607154250] = { "25% chance to gain a Power Charge on Killing a Frozen Enemy" }, } },
- ["BreachBodyIncreasedAttackSpeedPerDexterity1"] = { type = "Suffix", affix = "of Esh", "1% increased Attack Speed per 25 Dexterity", statOrder = { 4907 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2241560081] = { "1% increased Attack Speed per 25 Dexterity" }, } },
- ["BreachBodyPhysicalDamageReductionWhileNotMoving1"] = { type = "Suffix", affix = "of Uul-Netol", "6% additional Physical Damage Reduction while stationary", statOrder = { 4318 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [2181129193] = { "6% additional Physical Damage Reduction while stationary" }, } },
- ["BreachBodyAddedLightningDamagePerShockedEnemyKilled1"] = { type = "Prefix", affix = "Esh's", "Adds 1 to 5 Lightning Damage for each Shocked Enemy you've Killed Recently", statOrder = { 9247 }, level = 1, group = "AddedLightningDamagePerShockedEnemyKilled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4222857095] = { "Adds 1 to 5 Lightning Damage for each Shocked Enemy you've Killed Recently" }, } },
- ["BreachBodyReflectsShocks1"] = { type = "Suffix", affix = "of Esh", "Shock Reflection", statOrder = { 9883 }, level = 1, group = "ReflectsShocks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3291999509] = { "Shock Reflection" }, } },
- ["BreachBodyChaosDamageDoesNotBypassESNotLowLifeOrMana1_"] = { type = "Prefix", affix = "Esh's", "Chaos Damage taken does not bypass Energy Shield while not on Low Life", statOrder = { 5734 }, level = 1, group = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [887556907] = { "Chaos Damage taken does not bypass Energy Shield while not on Low Life" }, } },
- ["BreachBodyOnHitBlindChilledEnemies1"] = { type = "Suffix", affix = "of Tul", "Blind Chilled Enemies on Hit", statOrder = { 5221 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3450276548] = { "Blind Chilled Enemies on Hit" }, } },
- ["BreachBodyVulnerabilityOnHit1"] = { type = "Suffix", affix = "of Uul-Netol", "25% chance to Curse Enemies with Vulnerability on Hit", statOrder = { 2529 }, level = 1, group = "CurseLevel10VulnerabilityOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2213584313] = { "25% chance to Curse Enemies with Vulnerability on Hit" }, } },
- ["BreachBodyGrantsEnvy1"] = { type = "Prefix", affix = "Chayula's", "Grants Level 15 Envy Skill", statOrder = { 660 }, level = 1, group = "GrantsEnvy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [52953650] = { "Grants Level 15 Envy Skill" }, } },
- ["BreachBodyEnemiesBlockedAreIntimidated1"] = { type = "Prefix", affix = "Uul-Netol's", "Permanently Intimidate Enemies on Block", statOrder = { 9609 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [2930706364] = { "Permanently Intimidate Enemies on Block" }, } },
- ["BreachBodyMinionsPoisonEnemiesOnHit1_"] = { type = "Suffix", affix = "of Chayula", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 3179 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "minion", "ailment" }, tradeHashes = { [1974445926] = { "Minions have 60% chance to Poison Enemies on Hit" }, } },
- ["BreachBodyArmourIncreasedByUncappedFireResistance1____"] = { type = "Prefix", affix = "Xoph's", "Armour is increased by Overcapped Fire Resistance", statOrder = { 4768 }, level = 1, group = "ArmourIncreasedByUncappedFireResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2129352930] = { "Armour is increased by Overcapped Fire Resistance" }, } },
- ["BreachBodyEvasionIncreasedByUncappedColdResistance1"] = { type = "Prefix", affix = "Tul's", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 6491 }, level = 1, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2358015838] = { "Evasion Rating is increased by Overcapped Cold Resistance" }, } },
- ["BreachBodyCriticalChanceIncreasedByUncappedLightningResistance1"] = { type = "Suffix", affix = "of Esh", "Critical Strike Chance is increased by Overcapped Lightning Resistance", statOrder = { 5924 }, level = 1, group = "CriticalChanceIncreasedByUncappedLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [2478752719] = { "Critical Strike Chance is increased by Overcapped Lightning Resistance" }, } },
- ["BreachBodyCoverInAshWhenHit1__"] = { type = "Prefix", affix = "Xoph's", "Cover Enemies in Ash when they Hit you", statOrder = { 4700 }, level = 1, group = "CoverInAshWhenHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3748879662] = { "Cover Enemies in Ash when they Hit you" }, } },
- ["BreachBodyChillEnemiesWhenHit1"] = { type = "Suffix", affix = "of Tul", "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%", statOrder = { 3145 }, level = 1, group = "ChillEnemiesWhenHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2459809121] = { "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%" }, } },
- ["BreachBodyArcticArmourReservationCost1"] = { type = "Suffix", affix = "of Tul", "Arctic Armour has 100% increased Mana Reservation Efficiency", statOrder = { 4719 }, level = 1, group = "ArcticArmourReservationCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2605040931] = { "Arctic Armour has 100% increased Mana Reservation Efficiency" }, } },
- ["BreachBodyArcticArmourReservationEfficiency1"] = { type = "Suffix", affix = "of Tul", "Arctic Armour has 100% increased Mana Reservation Efficiency", statOrder = { 4720 }, level = 1, group = "ArcticArmourReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2351239732] = { "Arctic Armour has 100% increased Mana Reservation Efficiency" }, } },
- ["BreachBodyMaximumLifeConvertedToEnergyShield1___"] = { type = "Prefix", affix = "Chayula's", "10% of Maximum Life Converted to Energy Shield", statOrder = { 9165 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [2458962764] = { "10% of Maximum Life Converted to Energy Shield" }, } },
- ["LocalIncreaseSocketedActiveGemLevelUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "+1 to Level of Socketed Skill Gems", "+(5-10)% to Quality of Socketed Skill Gems", statOrder = { 195, 211 }, level = 90, group = "LocalIncreaseSocketedActiveSkillGemLevelMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, [1325783255] = { "+(5-10)% to Quality of Socketed Skill Gems" }, } },
- ["LocalIncreaseSocketedSupportGemLevelUberMaven___"] = { type = "Prefix", affix = "Elevated Elder's", "+1 to Level of Socketed Support Gems", "+(5-10)% to Quality of Socketed Support Gems", statOrder = { 194, 210 }, level = 90, group = "LocalIncreaseSocketedSupportGemLevelMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [1328548975] = { "+(5-10)% to Quality of Socketed Support Gems" }, [4154259475] = { "+1 to Level of Socketed Support Gems" }, } },
- ["PhysicalDamageTakenAsFirePercentUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(16-18)% of Physical Damage from Hits taken as Fire Damage", "(7-10)% of Fire Damage taken Recouped as Life", statOrder = { 2452, 6576 }, level = 94, group = "PhysicalDamageTakenAsFireUberMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(16-18)% of Physical Damage from Hits taken as Fire Damage" }, [1742651309] = { "(7-10)% of Fire Damage taken Recouped as Life" }, } },
- ["PhysicalDamageTakenAsColdPercentUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "(16-18)% of Physical Damage from Hits taken as Cold Damage", "(7-10)% of Cold Damage taken Recouped as Life", statOrder = { 2453, 5823 }, level = 93, group = "PhysicalDamageTakenAsColdUberMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(7-10)% of Cold Damage taken Recouped as Life" }, [1871056256] = { "(16-18)% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["PhysicalDamageTakenAsLightningPercentUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "(16-18)% of Physical Damage from Hits taken as Lightning Damage", "(7-10)% of Lightning Damage taken Recouped as Life", statOrder = { 2454, 7456 }, level = 92, group = "PhysicalDamageTakenAsLightningUberMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(16-18)% of Physical Damage from Hits taken as Lightning Damage" }, [2970621759] = { "(7-10)% of Lightning Damage taken Recouped as Life" }, } },
- ["ReducedElementalReflectTakenUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "(3-5)% reduced Elemental Damage taken", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 3298, 6339 }, level = 85, group = "ReducedElementalReflectTakenMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take 100% reduced Reflected Elemental Damage" }, [2734809852] = { "(3-5)% reduced Elemental Damage taken" }, } },
- ["ReducedPhysicalReflectTakenUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(3-5)% reduced Physical Damage taken", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 2246, 9669 }, level = 85, group = "ReducedPhysicalReflectTakenMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [3853018505] = { "(3-5)% reduced Physical Damage taken" }, [129035625] = { "You and your Minions take 100% reduced Reflected Physical Damage" }, } },
- ["ElementalDamageCannotBeReflectedPercentUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "100% of Elemental Hit Damage from you and your Minions cannot be Reflected", "(3-5)% reduced Elemental Damage taken", statOrder = { 2, 3298 }, level = 85, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercentMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2734809852] = { "(3-5)% reduced Elemental Damage taken" }, [3408683611] = { "100% of Elemental Hit Damage from you and your Minions cannot be Reflected" }, } },
- ["PhysicalDamageCannotBeReflectedPercentUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "100% of Physical Hit Damage from you and your Minions cannot be Reflected", "(3-5)% reduced Physical Damage taken", statOrder = { 3, 2246 }, level = 85, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercentMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [1818622832] = { "100% of Physical Hit Damage from you and your Minions cannot be Reflected" }, [3853018505] = { "(3-5)% reduced Physical Damage taken" }, } },
- ["MaximumLifeUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(13-15)% increased maximum Life", statOrder = { 1576 }, level = 95, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(13-15)% increased maximum Life" }, } },
- ["MaximumManaBodyUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "(16-18)% increased maximum Mana", statOrder = { 1585 }, level = 85, group = "MaximumManaIncreaseShaper", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(16-18)% increased maximum Mana" }, } },
- ["DamageTakenFromManaBeforeLifeUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "(11-15)% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 90, group = "DamageRemovedFromManaBeforeLife", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(11-15)% of Damage is taken from Mana before Life" }, } },
- ["MaximumLifeOnKillPercentUberMaven__"] = { type = "Suffix", affix = "of the Elevated Elder", "Recover (5-6)% of Life on Kill", "(5-10)% increased Life Recovery Rate if you haven't Killed Recently", statOrder = { 1754, 7398 }, level = 85, group = "MaximumLifeOnKillPercentMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3353368340] = { "(5-10)% increased Life Recovery Rate if you haven't Killed Recently" }, [2023107756] = { "Recover (5-6)% of Life on Kill" }, } },
- ["MaximumManaOnKillPercentUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Recover (5-6)% of Mana on Kill", "(5-10)% increased Mana Recovery Rate if you haven't Killed Recently", statOrder = { 1756, 8196 }, level = 85, group = "MaximumManaOnKillPercentMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1030153674] = { "Recover (5-6)% of Mana on Kill" }, [630994130] = { "(5-10)% increased Mana Recovery Rate if you haven't Killed Recently" }, } },
- ["MaximumEnergyShieldOnKillPercentUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Recover (5-6)% of Energy Shield on Kill", "(5-10)% increased Energy Shield Recovery Rate if you haven't Killed Recently", statOrder = { 1755, 6455 }, level = 85, group = "MaximumEnergyShieldOnKillPercentMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (5-6)% of Energy Shield on Kill" }, [2698606393] = { "(5-10)% increased Energy Shield Recovery Rate if you haven't Killed Recently" }, } },
- ["PercentageStrengthUberMaven__"] = { type = "Suffix", affix = "of the Elevated Elder", "+1 to Level of Socketed Strength Gems", "(9-12)% increased Strength", statOrder = { 163, 1189 }, level = 93, group = "PercentageStrengthMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, tradeHashes = { [734614379] = { "(9-12)% increased Strength" }, [916797432] = { "+1 to Level of Socketed Strength Gems" }, } },
- ["PercentageDexterityUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+1 to Level of Socketed Dexterity Gems", "(9-12)% increased Dexterity", statOrder = { 165, 1190 }, level = 93, group = "PercentageDexterityMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, tradeHashes = { [4139681126] = { "(9-12)% increased Dexterity" }, [2718698372] = { "+1 to Level of Socketed Dexterity Gems" }, } },
- ["PercentageIntelligenceUberMaven__"] = { type = "Suffix", affix = "of Elevated Shaping", "+1 to Level of Socketed Intelligence Gems", "(9-12)% increased Intelligence", statOrder = { 166, 1191 }, level = 93, group = "PercentageIntelligenceMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, tradeHashes = { [656461285] = { "(9-12)% increased Intelligence" }, [1719423857] = { "+1 to Level of Socketed Intelligence Gems" }, } },
- ["LifeRegenerationRatePercentUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Regenerate (2.1-3)% of Life per second", statOrder = { 1949 }, level = 85, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (2.1-3)% of Life per second" }, } },
- ["SupportedByItemRarityUberMaven__"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 20 Item Rarity", "(19-25)% increased Rarity of Items found from Slain Unique Enemies", statOrder = { 326, 10503 }, level = 95, group = "SupportedByItemRarityUnique", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem", "drop" }, tradeHashes = { [121185030] = { "(19-25)% increased Rarity of Items found from Slain Unique Enemies" }, [3587013273] = { "Socketed Gems are Supported by Level 20 Item Rarity" }, } },
- ["AdditionalCriticalStrikeChanceWithAttacksUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Attacks have +(1.6-2)% to Critical Strike Chance", statOrder = { 4797 }, level = 94, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(1.6-2)% to Critical Strike Chance" }, } },
- ["AdditionalCriticalStrikeChanceWithSpellsUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(1.6-2)% to Spell Critical Strike Chance", statOrder = { 10124 }, level = 94, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "critical" }, tradeHashes = { [791835907] = { "+(1.6-2)% to Spell Critical Strike Chance" }, } },
- ["MaximumManaInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(16-18)% increased maximum Mana", statOrder = { 1585 }, level = 90, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(16-18)% increased maximum Mana" }, } },
- ["PhysTakenAsLightningInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(16-18)% of Physical Damage from Hits taken as Lightning Damage", "(7-10)% of Lightning Damage taken Recouped as Life", statOrder = { 2454, 7456 }, level = 93, group = "PhysicalDamageTakenAsLightningUberMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(16-18)% of Physical Damage from Hits taken as Lightning Damage" }, [2970621759] = { "(7-10)% of Lightning Damage taken Recouped as Life" }, } },
- ["ConsecratedGroundStationaryInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "You have Consecrated Ground around you while stationary", "Effects of Consecrated Ground you create Linger for 1 second", statOrder = { 5861, 10688 }, level = 85, group = "ConsecratedGroundStationaryMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4113372195] = { "Effects of Consecrated Ground you create Linger for 1 second" }, [880970200] = { "You have Consecrated Ground around you while stationary" }, } },
- ["HolyPhysicalExplosionInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Crusader's", "(8-12)% increased Area of Effect", "Enemies you Kill Explode, dealing 5% of their Life as Physical Damage", statOrder = { 1885, 6377 }, level = 95, group = "EnemiesExplodeOnDeathPhysicalMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1220361974] = { "Enemies you Kill Explode, dealing 5% of their Life as Physical Damage" }, [280731498] = { "(8-12)% increased Area of Effect" }, } },
- ["HolyPhysicalExplosionChanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(8-12)% increased Area of Effect", "Enemies you Kill have a (31-35)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 1885, 3309 }, level = 95, group = "EnemiesExplodeOnDeathPhysicalChanceMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [280731498] = { "(8-12)% increased Area of Effect" }, [3295179224] = { "Enemies you Kill have a (31-35)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage" }, } },
- ["PercentageIntelligenceBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "+1 to Level of Socketed Intelligence Gems", "(9-12)% increased Intelligence", statOrder = { 166, 1191 }, level = 85, group = "PercentageIntelligenceMaven", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, tradeHashes = { [656461285] = { "(9-12)% increased Intelligence" }, [1719423857] = { "+1 to Level of Socketed Intelligence Gems" }, } },
- ["AddPowerChargeOnCritInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "15% chance to gain a Power Charge on Critical Strike", "3% increased Damage per Power Charge", statOrder = { 1835, 6071 }, level = 90, group = "PowerChargeOnCriticalStrikeChanceMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge", "influence_mod", "critical" }, tradeHashes = { [3814876985] = { "15% chance to gain a Power Charge on Critical Strike" }, [2034658008] = { "3% increased Damage per Power Charge" }, } },
- ["EnergyShieldOnKillPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "Recover (5-6)% of Energy Shield on Kill", "(5-10)% increased Energy Shield Recovery Rate if you haven't Killed Recently", statOrder = { 1755, 6455 }, level = 90, group = "MaximumEnergyShieldOnKillPercentMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (5-6)% of Energy Shield on Kill" }, [2698606393] = { "(5-10)% increased Energy Shield Recovery Rate if you haven't Killed Recently" }, } },
- ["EnergyShieldRecoveryRateBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(12-15)% increased Energy Shield Recovery rate", "Regenerate (50-100) Energy Shield per second", statOrder = { 1573, 2650 }, level = 90, group = "EnergyShieldRecoveryRateMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(12-15)% increased Energy Shield Recovery rate" }, [1330109706] = { "Regenerate (50-100) Energy Shield per second" }, } },
- ["PhysTakenAsFireInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(16-18)% of Physical Damage from Hits taken as Fire Damage", "(7-10)% of Fire Damage taken Recouped as Life", statOrder = { 2452, 6576 }, level = 93, group = "PhysicalDamageTakenAsFireUberMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(16-18)% of Physical Damage from Hits taken as Fire Damage" }, [1742651309] = { "(7-10)% of Fire Damage taken Recouped as Life" }, } },
- ["SocketedActiveGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Level of Socketed Skill Gems", "+(5-10)% to Quality of Socketed Skill Gems", statOrder = { 195, 211 }, level = 80, group = "LocalIncreaseSocketedActiveSkillGemLevelMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, [1325783255] = { "+(5-10)% to Quality of Socketed Skill Gems" }, } },
- ["ReflectedPhysicalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(3-5)% reduced Physical Damage taken", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 2246, 9669 }, level = 85, group = "ReducedPhysicalReflectTakenMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [3853018505] = { "(3-5)% reduced Physical Damage taken" }, [129035625] = { "You and your Minions take 100% reduced Reflected Physical Damage" }, } },
- ["PhysicalDamageCannotBeReflectedPercentInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "100% of Physical Hit Damage from you and your Minions cannot be Reflected", "(3-5)% reduced Physical Damage taken", statOrder = { 3, 2246 }, level = 85, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercentMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [1818622832] = { "100% of Physical Hit Damage from you and your Minions cannot be Reflected" }, [3853018505] = { "(3-5)% reduced Physical Damage taken" }, } },
- ["AllResistancesInfluenceMaven____"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(19-22)% to all Elemental Resistances", "+1% to all maximum Elemental Resistances", statOrder = { 1624, 1648 }, level = 85, group = "AllResistancesMaven", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(19-22)% to all Elemental Resistances" }, [1978899297] = { "+1% to all maximum Elemental Resistances" }, } },
- ["PercentageStrengthBodyInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Conquest", "+1 to Level of Socketed Strength Gems", "(9-12)% increased Strength", statOrder = { 163, 1189 }, level = 85, group = "PercentageStrengthMaven", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, tradeHashes = { [734614379] = { "(9-12)% increased Strength" }, [916797432] = { "+1 to Level of Socketed Strength Gems" }, } },
- ["EnduranceChargeIfHitRecentlyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "3% increased Area of Effect per Endurance Charge", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 4738, 6751 }, level = 90, group = "EnduranceChargeIfHitRecentlyMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [2894476716] = { "Gain 1 Endurance Charge every second if you've been Hit Recently" }, [2448279015] = { "3% increased Area of Effect per Endurance Charge" }, } },
- ["LifeOnKillPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Recover (5-6)% of Life on Kill", "(5-10)% increased Life Recovery Rate if you haven't Killed Recently", statOrder = { 1754, 7398 }, level = 90, group = "MaximumLifeOnKillPercentMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3353368340] = { "(5-10)% increased Life Recovery Rate if you haven't Killed Recently" }, [2023107756] = { "Recover (5-6)% of Life on Kill" }, } },
- ["LifeRecoveryRateBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(12-15)% increased Life Recovery rate", "Life Flasks gain 1 Charge every 3 seconds", statOrder = { 1583, 7352 }, level = 90, group = "LifeRecoveryRateMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(12-15)% increased Life Recovery rate" }, [2592686757] = { "Life Flasks gain 1 Charge every 3 seconds" }, } },
- ["SocketedAttacksManaCostInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Ignore Stuns while using Socketed Attack Skills", "Socketed Attacks have -20 to Total Mana Cost", statOrder = { 550, 554 }, level = 95, group = "SocketedAttacksManaCostMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "resource", "influence_mod", "mana", "attack", "gem" }, tradeHashes = { [1439818705] = { "Ignore Stuns while using Socketed Attack Skills" }, [2264586521] = { "Socketed Attacks have -20 to Total Mana Cost" }, } },
- ["PhysTakenAsColdInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(16-18)% of Physical Damage from Hits taken as Cold Damage", "(7-10)% of Cold Damage taken Recouped as Life", statOrder = { 2453, 5823 }, level = 93, group = "PhysicalDamageTakenAsColdUberMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(7-10)% of Cold Damage taken Recouped as Life" }, [1871056256] = { "(16-18)% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["SocketedSupportGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "+1 to Level of Socketed Support Gems", "+(5-10)% to Quality of Socketed Support Gems", statOrder = { 194, 210 }, level = 90, group = "LocalIncreaseSocketedSupportGemLevelMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [1328548975] = { "+(5-10)% to Quality of Socketed Support Gems" }, [4154259475] = { "+1 to Level of Socketed Support Gems" }, } },
- ["ReflectedElementalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(3-5)% reduced Elemental Damage taken", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 3298, 6339 }, level = 85, group = "ReducedElementalReflectTakenMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take 100% reduced Reflected Elemental Damage" }, [2734809852] = { "(3-5)% reduced Elemental Damage taken" }, } },
- ["ElementalDamageCannotBeReflectedPercentInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "100% of Elemental Hit Damage from you and your Minions cannot be Reflected", "(3-5)% reduced Elemental Damage taken", statOrder = { 2, 3298 }, level = 85, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercentMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2734809852] = { "(3-5)% reduced Elemental Damage taken" }, [3408683611] = { "100% of Elemental Hit Damage from you and your Minions cannot be Reflected" }, } },
- ["NearbyEnemiesAreBlindedInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Cannot be Blinded", "Nearby Enemies are Blinded", statOrder = { 2979, 3401 }, level = 85, group = "NearbyEnemiesAreBlindedMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, [2826979740] = { "Nearby Enemies are Blinded" }, } },
- ["PercentageDexterityBodyInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "+1 to Level of Socketed Dexterity Gems", "(9-12)% increased Dexterity", statOrder = { 165, 1190 }, level = 85, group = "PercentageDexterityMaven", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, tradeHashes = { [4139681126] = { "(9-12)% increased Dexterity" }, [2718698372] = { "+1 to Level of Socketed Dexterity Gems" }, } },
- ["FrenzyChargeOnHitChanceInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "1% increased Movement Speed per Frenzy Charge", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1807, 1838 }, level = 90, group = "FrenzyChargeOnHitChanceMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge", "influence_mod", "speed" }, tradeHashes = { [2323242761] = { "10% chance to gain a Frenzy Charge on Hit" }, [1541516339] = { "1% increased Movement Speed per Frenzy Charge" }, } },
- ["ManaOnKillPercentInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "Recover (5-6)% of Mana on Kill", "(5-10)% increased Mana Recovery Rate if you haven't Killed Recently", statOrder = { 1756, 8196 }, level = 90, group = "MaximumManaOnKillPercentMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1030153674] = { "Recover (5-6)% of Mana on Kill" }, [630994130] = { "(5-10)% increased Mana Recovery Rate if you haven't Killed Recently" }, } },
- ["ManaRecoveryRateBodyInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(12-15)% increased Mana Recovery rate", "(20-35)% increased Mana Recovery from Flasks", statOrder = { 1591, 2065 }, level = 90, group = "ManaRecoveryRateMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "mana" }, tradeHashes = { [2222186378] = { "(20-35)% increased Mana Recovery from Flasks" }, [3513180117] = { "(12-15)% increased Mana Recovery rate" }, } },
- ["AuraEffectBodyInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(26-30)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 90, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1880071428] = { "(26-30)% increased effect of Non-Curse Auras from your Skills" }, } },
- ["MaximumLifeBodyInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Hunter's", "(13-15)% increased maximum Life", statOrder = { 1576 }, level = 95, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(13-15)% increased maximum Life" }, } },
- ["PhysTakenAsChaosInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Hunter's", "+1% to maximum Chaos Resistance", "(16-18)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1645, 2456 }, level = 93, group = "PhysicalDamageTakenAsChaosUberMaven", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "chaos", "resistance" }, tradeHashes = { [4129825612] = { "(16-18)% of Physical Damage from Hits taken as Chaos Damage" }, [1301765461] = { "+1% to maximum Chaos Resistance" }, } },
- ["AdditionalCurseOnEnemiesInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "You can apply an additional Curse", "20% increased Mana Reservation Efficiency of Curse Aura Skills", statOrder = { 2173, 5999 }, level = 92, group = "OLDAdditionalCurseOnEnemiesMaven", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "caster", "aura", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, [714566414] = { "20% increased Mana Reservation Efficiency of Curse Aura Skills" }, } },
- ["AdditionalCurseOnEnemiesInfluenceMavenV2___"] = { type = "Prefix", affix = "Elevated Hunter's", "You can apply an additional Curse", "20% increased Mana Reservation Efficiency of Curse Aura Skills", statOrder = { 2173, 6000 }, level = 92, group = "AdditionalCurseOnEnemiesMaven", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "caster", "aura", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, [443165947] = { "20% increased Mana Reservation Efficiency of Curse Aura Skills" }, } },
- ["RegenerateLifeOverMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Every 4 seconds, Regenerate 25% of Life over one second", statOrder = { 3791 }, level = 90, group = "RegenerateLifeOver1Second", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1242155304] = { "Every 4 seconds, Regenerate 25% of Life over one second" }, } },
- ["OfferingEffectInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(26-35)% increased effect of Offerings", statOrder = { 4068 }, level = 90, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(26-35)% increased effect of Offerings" }, } },
- ["AdditionalCritWithAttacksInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Attacks have +(1.6-2)% to Critical Strike Chance", statOrder = { 4797 }, level = 94, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(1.6-2)% to Critical Strike Chance" }, } },
- ["AdditionalCritWithSpellsInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(1.6-2)% to Spell Critical Strike Chance", statOrder = { 10124 }, level = 94, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [791835907] = { "+(1.6-2)% to Spell Critical Strike Chance" }, } },
- ["LifeRegenerationPercentBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Regenerate (2.1-3)% of Life per second", statOrder = { 1949 }, level = 85, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (2.1-3)% of Life per second" }, } },
- ["AreaDamageSupportedUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Concentrated Effect", "(23-25)% increased Area Damage", statOrder = { 458, 2040 }, level = 92, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(23-25)% increased Area Damage" }, [2388360415] = { "Socketed Gems are Supported by Level 25 Concentrated Effect" }, } },
- ["AreaOfEffectSupportedUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 25 Increased Area of Effect", "(13-15)% increased Area of Effect", statOrder = { 229, 1885 }, level = 93, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 25 Increased Area of Effect" }, [280731498] = { "(13-15)% increased Area of Effect" }, } },
- ["MaximumManaUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(12-15)% increased maximum Mana", "Transfiguration of Mind", statOrder = { 1585, 4608 }, level = 85, group = "MaximumManaIncreasePercentMaven", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "damage" }, tradeHashes = { [2571899044] = { "Transfiguration of Mind" }, [2748665614] = { "(12-15)% increased maximum Mana" }, } },
- ["MinionDamageSupportedUberMaven___"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Minion Damage", "Minions deal (23-25)% increased Damage", statOrder = { 511, 1978 }, level = 93, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, tradeHashes = { [808939569] = { "Socketed Gems are Supported by Level 25 Minion Damage" }, [1589917703] = { "Minions deal (23-25)% increased Damage" }, } },
- ["MinionLifeSupportedUberMaven_"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Minion Life", "Minions have (23-25)% increased maximum Life", statOrder = { 509, 1771 }, level = 90, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 25 Minion Life" }, [770672621] = { "Minions have (23-25)% increased maximum Life" }, } },
- ["AdditionalMinesPlacedSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Blastchain Mine", "Throw an additional Mine", statOrder = { 502, 3554 }, level = 95, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1710508327] = { "Socketed Gems are Supported by Level 25 Blastchain Mine" }, [2395088636] = { "Throw an additional Mine" }, } },
- ["MineDamageUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Blastchain Mine", "(31-35)% increased Mine Damage", statOrder = { 502, 1201 }, level = 90, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(31-35)% increased Mine Damage" }, [1710508327] = { "Socketed Gems are Supported by Level 25 Blastchain Mine" }, } },
- ["MineDamageTrapUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap And Mine Damage", "(31-35)% increased Mine Damage", statOrder = { 462, 1201 }, level = 90, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(31-35)% increased Mine Damage" }, [3814066599] = { "Socketed Gems are Supported by Level 25 Trap And Mine Damage" }, } },
- ["IncreasedChillEffectSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Hypothermia", "(17-20)% increased Effect of Cold Ailments", statOrder = { 516, 5803 }, level = 90, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, tradeHashes = { [1793818220] = { "(17-20)% increased Effect of Cold Ailments" }, [13669281] = { "Socketed Gems are Supported by Level 25 Hypothermia" }, } },
- ["IncreasedShockEffectSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Innervate", "(17-20)% increased Effect of Lightning Ailments", statOrder = { 526, 7438 }, level = 90, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, tradeHashes = { [3081816887] = { "(17-20)% increased Effect of Lightning Ailments" }, [1106668565] = { "Socketed Gems are Supported by Level 25 Innervate" }, } },
- ["IgniteDurationSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Immolate", "(17-20)% increased Ignite Duration on Enemies", statOrder = { 314, 1864 }, level = 90, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, tradeHashes = { [1086147743] = { "(17-20)% increased Ignite Duration on Enemies" }, [2420410470] = { "Socketed Gems are Supported by Level 25 Immolate" }, } },
- ["IncreasedBurningDamageSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Burning Damage", "(31-35)% increased Burning Damage", statOrder = { 317, 1882 }, level = 92, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1175385867] = { "(31-35)% increased Burning Damage" }, [2680613507] = { "Socketed Gems are Supported by Level 25 Burning Damage" }, } },
- ["ChanceToGainPowerChargeOnKillUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "50% increased Power Charge Duration", "(11-15)% chance to gain a Power Charge on Kill", statOrder = { 2147, 2638 }, level = 94, group = "PowerChargeOnKillChanceMaven", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(11-15)% chance to gain a Power Charge on Kill" }, [3872306017] = { "50% increased Power Charge Duration" }, } },
- ["SupportedByLessDurationUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Less Duration", statOrder = { 370 }, level = 78, group = "SupportedByLessDuration", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2487643588] = { "Socketed Gems are Supported by Level 25 Less Duration" }, } },
- ["SpellAddedFireDamageUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Adds (35-49) to (60-73) Fire Damage to Spells", statOrder = { 1409 }, level = 92, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (35-49) to (60-73) Fire Damage to Spells" }, } },
- ["SpellAddedColdDamageUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Adds (29-39) to (49-61) Cold Damage to Spells", statOrder = { 1410 }, level = 93, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (29-39) to (49-61) Cold Damage to Spells" }, } },
- ["SpellAddedLightningDamageUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Adds (2-8) to (101-121) Lightning Damage to Spells", statOrder = { 1411 }, level = 94, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-8) to (101-121) Lightning Damage to Spells" }, } },
- ["SpellAddedPhysicalDamageUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Adds (35-49) to (60-73) Physical Damage to Spells", statOrder = { 1408 }, level = 95, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (35-49) to (60-73) Physical Damage to Spells" }, } },
- ["SpellAddedChaosDamageUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Adds (29-39) to (49-61) Chaos Damage to Spells", statOrder = { 1412 }, level = 95, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (29-39) to (49-61) Chaos Damage to Spells" }, } },
- ["ManaRegenerationUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "(56-70)% increased Mana Regeneration Rate", "20% increased Mana Regeneration Rate while stationary", statOrder = { 1589, 4321 }, level = 85, group = "ManaRegenerationMaven", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3308030688] = { "20% increased Mana Regeneration Rate while stationary" }, [789117908] = { "(56-70)% increased Mana Regeneration Rate" }, } },
- ["AddedManaRegenerationUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Regenerate (6-8) Mana per second", "Mana Flasks gain 1 Charge every 3 seconds", statOrder = { 1587, 8180 }, level = 90, group = "AddedManaRegenerationMaven", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (6-8) Mana per second" }, [1193925814] = { "Mana Flasks gain 1 Charge every 3 seconds" }, } },
- ["AdditionalSpellBlockChanceUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(5-6)% Chance to Block Spell Damage", "+1% to maximum Chance to Block Spell Damage", statOrder = { 1165, 1994 }, level = 90, group = "SpellBlockPercentageMaven", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(5-6)% Chance to Block Spell Damage" }, [2388574377] = { "+1% to maximum Chance to Block Spell Damage" }, } },
- ["SocketedSpellCriticalStrikeChanceUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Spells have +4% to Critical Strike Chance", statOrder = { 571 }, level = 94, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, tradeHashes = { [135378852] = { "Socketed Spells have +4% to Critical Strike Chance" }, } },
- ["SocketedAttackCriticalStrikeChanceUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Attacks have +4% to Critical Strike Chance", statOrder = { 552 }, level = 93, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, tradeHashes = { [2867348718] = { "Socketed Attacks have +4% to Critical Strike Chance" }, } },
- ["EnemyPhysicalDamageTakenAuraUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Nearby Enemies take 12% increased Physical Damage", statOrder = { 7923 }, level = 95, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [3853018505] = { "12% increased Physical Damage taken" }, [415837237] = { "Nearby Enemies take 12% increased Physical Damage" }, } },
- ["EnemyElementalDamageTakenAuraUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Nearby Enemies take 9% increased Elemental Damage", statOrder = { 7918 }, level = 95, group = "NearbyEnemyElementalDamageTaken", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [639595152] = { "Nearby Enemies take 9% increased Elemental Damage" }, [2734809852] = { "9% increased Elemental Damage taken" }, } },
- ["LifeRegenerationPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Regenerate (1.6-2)% of Life per second", statOrder = { 1949 }, level = 83, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.6-2)% of Life per second" }, } },
- ["MaximumLightningResistanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 95, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } },
- ["MaximumLightningResistanceInfluenceMavenNew"] = { type = "Suffix", affix = "of the Elevated Crusade", "+3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 95, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } },
- ["PhysTakenAsLightningHelmInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(11-13)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 93, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(11-13)% of Physical Damage from Hits taken as Lightning Damage" }, } },
- ["EnemyLightningResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "Nearby Enemies have -12% to Lightning Resistance", statOrder = { 7921 }, level = 95, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-12% to Lightning Resistance" }, [1849749435] = { "Nearby Enemies have -12% to Lightning Resistance" }, } },
- ["SpellBlockPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(5-6)% Chance to Block Spell Damage", "+1% to maximum Chance to Block Spell Damage", statOrder = { 1165, 1994 }, level = 90, group = "SpellBlockPercentageMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(5-6)% Chance to Block Spell Damage" }, [2388574377] = { "+1% to maximum Chance to Block Spell Damage" }, } },
- ["FortifyEffectInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Crusade", "+500 to Armour while Fortified", "+(4.2-5) to maximum Fortification", statOrder = { 4772, 9121 }, level = 90, group = "FortifyEffectMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [153004860] = { "+500 to Armour while Fortified" }, [335507772] = { "+(4.2-5) to maximum Fortification" }, } },
- ["EnergyShieldRegenInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Crusade", "(15-25)% increased Energy Shield Recharge Rate", "Regenerate (1-1.5)% of Energy Shield per second", statOrder = { 1570, 2651 }, level = 85, group = "EnergyShieldRegenerationPerMinuteMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(15-25)% increased Energy Shield Recharge Rate" }, [3594640492] = { "Regenerate (1-1.5)% of Energy Shield per second" }, } },
- ["ReducedIgniteDurationInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(51-60)% reduced Ignite Duration on you", "(36-50)% increased Damage if you've been Ignited Recently", statOrder = { 1880, 6050 }, level = 85, group = "ReducedBurnDurationMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [430821956] = { "(36-50)% increased Damage if you've been Ignited Recently" }, [986397080] = { "(51-60)% reduced Ignite Duration on you" }, } },
- ["ReducedFreezeDurationInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Crusade", "(51-60)% reduced Freeze Duration on you", "(4-7)% reduced Damage taken if you've been Frozen Recently", statOrder = { 1879, 6122 }, level = 85, group = "ReducedFreezeDurationMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-60)% reduced Freeze Duration on you" }, [3616645755] = { "(4-7)% reduced Damage taken if you've been Frozen Recently" }, } },
- ["ReducedShockEffectInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(45-75)% increased Critical Strike Chance if you've been Shocked Recently", "(51-60)% reduced Effect of Shock on you", statOrder = { 5931, 10018 }, level = 85, group = "ReducedShockEffectOnSelfMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "critical", "ailment" }, tradeHashes = { [3801067695] = { "(51-60)% reduced Effect of Shock on you" }, [1434381067] = { "(45-75)% increased Critical Strike Chance if you've been Shocked Recently" }, } },
- ["MaximumPowerChargeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Maximum Power Charges", "10% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 1819, 6780, 6780.1 }, level = 85, group = "IncreasedMaximumPowerChargesMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [1232004574] = { "10% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges" }, [227523295] = { "+1 to Maximum Power Charges" }, } },
- ["PhysTakenAsFireHelmetInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(11-13)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 93, group = "PhysicalDamageTakenAsFireUber", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(11-13)% of Physical Damage from Hits taken as Fire Damage" }, } },
- ["ElementalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(19-22)% increased Elemental Damage", "Damage Penetrates (2-3)% of Enemy Elemental Resistances", statOrder = { 1985, 3564 }, level = 85, group = "ElementalDamagePercentMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [697807915] = { "Damage Penetrates (2-3)% of Enemy Elemental Resistances" }, [3141070085] = { "(19-22)% increased Elemental Damage" }, } },
- ["WarcryAreaOfEffectInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "15% increased Warcry Buff Effect", "Warcry Skills have (26-30)% increased Area of Effect", statOrder = { 10565, 10573 }, level = 85, group = "WarcryAreaOfEffectMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2567751411] = { "Warcry Skills have (26-30)% increased Area of Effect" }, [3037553757] = { "15% increased Warcry Buff Effect" }, } },
- ["EnemyFireResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Nearby Enemies have -12% to Fire Resistance", statOrder = { 7919 }, level = 95, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [3914021960] = { "Nearby Enemies have -12% to Fire Resistance" }, [3372524247] = { "-12% to Fire Resistance" }, } },
- ["CriticalStrikeMultiplierInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(21-24)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 85, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(21-24)% to Global Critical Strike Multiplier" }, } },
- ["ManaRegenerationInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(56-70)% increased Mana Regeneration Rate", "20% increased Mana Regeneration Rate while stationary", statOrder = { 1589, 4321 }, level = 85, group = "ManaRegenerationMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3308030688] = { "20% increased Mana Regeneration Rate while stationary" }, [789117908] = { "(56-70)% increased Mana Regeneration Rate" }, } },
- ["GainAccuracyEqualToStrengthInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "1% increased Critical Strike Chance per 10 Strength", "Gain Accuracy Rating equal to your Strength", statOrder = { 5935, 6717 }, level = 85, group = "GainAccuracyEqualToStrengthMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [2511370818] = { "1% increased Critical Strike Chance per 10 Strength" }, [1575519214] = { "Gain Accuracy Rating equal to your Strength" }, } },
- ["MinionLifeInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Minions have (36-40)% increased maximum Life", "Minions Regenerate (1-1.5)% of Life per second", statOrder = { 1771, 2916 }, level = 85, group = "MinionLifeMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate (1-1.5)% of Life per second" }, [770672621] = { "Minions have (36-40)% increased maximum Life" }, } },
- ["PowerChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Power Charge Duration", "(11-15)% chance to gain a Power Charge on Kill", statOrder = { 2147, 2638 }, level = 90, group = "PowerChargeOnKillChanceMaven", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(11-15)% chance to gain a Power Charge on Kill" }, [3872306017] = { "50% increased Power Charge Duration" }, } },
- ["PhysTakenAsColdHelmetInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(11-13)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 93, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(11-13)% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["SpellsAdditionalUnleashSealInfluenceMaven___"] = { type = "Prefix", affix = "Elevated Redeemer's", "(50-75)% increased Critical Strike Chance with Spells which remove the maximum number of Seals", "Skills supported by Unleash have +1 to maximum number of Seals", statOrder = { 10136, 10719 }, level = 90, group = "SpellsAdditionalUnleashSealMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "critical" }, tradeHashes = { [2897207025] = { "(50-75)% increased Critical Strike Chance with Spells which remove the maximum number of Seals" }, [3155029005] = { "Skills supported by Unleash have +1 to maximum number of Seals" }, } },
- ["EnemyColdResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "Nearby Enemies have -12% to Cold Resistance", statOrder = { 7917 }, level = 95, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-12% to Cold Resistance" }, [2674336304] = { "Nearby Enemies have -12% to Cold Resistance" }, } },
- ["ReducedManaReservationInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(12-14)% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 85, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1269219558] = { "(12-14)% increased Mana Reservation Efficiency of Skills" }, } },
- ["ManaReservationEfficiencyInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(11-14)% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 85, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4237190083] = { "(11-14)% increased Mana Reservation Efficiency of Skills" }, } },
- ["IgniteChanceAndDamageInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Ignite", "Ignites you inflict deal Damage (10-15)% faster", statOrder = { 2031, 2569 }, level = 85, group = "IgniteChanceAndDamageMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(10-15)% chance to Ignite" }, [2443492284] = { "Ignites you inflict deal Damage (10-15)% faster" }, } },
- ["FreezeChanceAndDurationInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Freeze", "Freeze Enemies as though dealing (30-50)% more Damage", statOrder = { 2034, 7107 }, level = 85, group = "FreezeChanceAndDurationMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1302208736] = { "Freeze Enemies as though dealing (30-50)% more Damage" }, [44571480] = { "(10-15)% chance to Freeze" }, } },
- ["ShockChanceAndEffectInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Shock", "Shock Enemies as though dealing (30-50)% more Damage", statOrder = { 2038, 7108 }, level = 85, group = "ShockChanceAndEffectMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2206792089] = { "Shock Enemies as though dealing (30-50)% more Damage" }, [1538773178] = { "(10-15)% chance to Shock" }, } },
- ["AddedManaRegenerationInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "Regenerate (6-8) Mana per second", "Mana Flasks gain 1 Charge every 3 seconds", statOrder = { 1587, 8180 }, level = 85, group = "AddedManaRegenerationMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (6-8) Mana per second" }, [1193925814] = { "Mana Flasks gain 1 Charge every 3 seconds" }, } },
- ["SpellAddedFireDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (35-49) to (60-73) Fire Damage to Spells", statOrder = { 1409 }, level = 85, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (35-49) to (60-73) Fire Damage to Spells" }, } },
- ["SpellAddedColdDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (29-39) to (49-61) Cold Damage to Spells", statOrder = { 1410 }, level = 85, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (29-39) to (49-61) Cold Damage to Spells" }, } },
- ["SpellAddedLightningDamageInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (2-8) to (101-121) Lightning Damage to Spells", statOrder = { 1411 }, level = 85, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-8) to (101-121) Lightning Damage to Spells" }, } },
- ["SpellAddedPhysicalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (35-49) to (60-73) Physical Damage to Spells", statOrder = { 1408 }, level = 85, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (35-49) to (60-73) Physical Damage to Spells" }, } },
- ["SpellAddedChaosDamageInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (29-39) to (49-61) Chaos Damage to Spells", statOrder = { 1412 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (29-39) to (49-61) Chaos Damage to Spells" }, } },
- ["EnemyChaosResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Nearby Enemies have -12% to Chaos Resistance", statOrder = { 7916 }, level = 95, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [1902595112] = { "Nearby Enemies have -12% to Chaos Resistance" }, [2923486259] = { "-12% to Chaos Resistance" }, } },
- ["PercentageIntelligenceInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(11-12)% increased Intelligence", statOrder = { 1191 }, level = 85, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(11-12)% increased Intelligence" }, } },
- ["IgnitingConfluxInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(20-30)% increased Ignite Duration on Enemies", "You have Igniting Conflux for 3 seconds every 8 seconds", statOrder = { 1864, 6826 }, level = 90, group = "IgnitingConfluxMaven", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1190121450] = { "You have Igniting Conflux for 3 seconds every 8 seconds" }, [1086147743] = { "(20-30)% increased Ignite Duration on Enemies" }, } },
- ["ChillingConfluxInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(20-30)% increased Chill Duration on Enemies", "You have Chilling Conflux for 3 seconds every 8 seconds", statOrder = { 1861, 6826 }, level = 90, group = "ChillingConfluxMaven", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1190121450] = { "You have Chilling Conflux for 3 seconds every 8 seconds" }, [3485067555] = { "(20-30)% increased Chill Duration on Enemies" }, } },
- ["ShockingConfluxInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(20-30)% increased Shock Duration on Enemies", "You have Shocking Conflux for 3 seconds every 8 seconds", statOrder = { 1862, 6826 }, level = 90, group = "ShockingConfluxMaven", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1190121450] = { "You have Shocking Conflux for 3 seconds every 8 seconds" }, [3668351662] = { "(20-30)% increased Shock Duration on Enemies" }, } },
- ["IncreasedAttackSpeedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Faster Attacks", "(13-14)% increased Attack Speed", statOrder = { 474, 1415 }, level = 92, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [681332047] = { "(13-14)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 25 Faster Attacks" }, } },
- ["IncreasedCastSpeedUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Faster Casting", "(13-14)% increased Cast Speed", statOrder = { 505, 1451 }, level = 94, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 25 Faster Casting" }, [2891184298] = { "(13-14)% increased Cast Speed" }, } },
- ["IncreasedAttackAndCastSpeedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(13-14)% increased Attack and Cast Speed", "(5-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2051, 2998 }, level = 95, group = "IncreasedAttackAndCastSpeedSupportedMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(13-14)% increased Attack and Cast Speed" }, [2988593550] = { "(5-10)% chance to gain Onslaught for 4 seconds on Kill" }, } },
- ["SupportedByManaLeechUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 20 Mana Leech", "(20-30)% increased Maximum total Mana Recovery per second from Leech", statOrder = { 519, 1738 }, level = 78, group = "DisplaySupportedByManaLeechMaven", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "resource", "influence_mod", "mana", "gem" }, tradeHashes = { [96977651] = { "(20-30)% increased Maximum total Mana Recovery per second from Leech" }, [2608615082] = { "Socketed Gems are Supported by Level 20 Mana Leech" }, } },
- ["ProjectileSpeedUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are supported by Level 25 Faster Projectiles", "(26-30)% increased Projectile Speed", statOrder = { 487, 1801 }, level = 92, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 25 Faster Projectiles" }, [3759663284] = { "(26-30)% increased Projectile Speed" }, } },
- ["ProjectileDamageUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 25 Slower Projectiles", "(23-25)% increased Projectile Damage", statOrder = { 382, 2001 }, level = 93, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1390285657] = { "Socketed Gems are Supported by Level 25 Slower Projectiles" }, [1839076647] = { "(23-25)% increased Projectile Damage" }, } },
- ["ChanceToAvoidInterruptionWhileCastingUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "(31-60)% chance to Ignore Stuns while Casting", statOrder = { 1903 }, level = 90, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(31-60)% chance to Ignore Stuns while Casting" }, } },
- ["IncreasedMeleeWeaponRangeUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+(0.3-0.4) metres to Melee Strike Range", statOrder = { 2539 }, level = 95, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [2264295449] = { "+(0.3-0.4) metres to Melee Strike Range" }, } },
- ["IncreasedMeleeWeaponRangeAndMeleeDamageUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "(13-16)% increased Melee Damage", "+(0.3-0.4) metres to Melee Strike Range", statOrder = { 1239, 2539 }, level = 95, group = "MeleeDamageAndMeleeRange", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2264295449] = { "+(0.3-0.4) metres to Melee Strike Range" }, [1002362373] = { "(13-16)% increased Melee Damage" }, } },
- ["AdditionalTrapsThrownSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 459, 9527 }, level = 94, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1220800126] = { "Skills which Throw Traps throw up to 1 additional Trap" }, [1122134690] = { "Socketed Gems are Supported by Level 25 Trap" }, } },
- ["TrapDamageUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap", "(31-35)% increased Trap Damage", statOrder = { 459, 1199 }, level = 90, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 25 Trap" }, [2941585404] = { "(31-35)% increased Trap Damage" }, } },
- ["TrapDamageCooldownUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Advanced Traps", "(31-35)% increased Trap Damage", statOrder = { 395, 1199 }, level = 90, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3839163699] = { "Socketed Gems are Supported by Level 25 Advanced Traps" }, [2941585404] = { "(31-35)% increased Trap Damage" }, } },
- ["TrapSpeedCooldownUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Advanced Traps", "(17-20)% increased Trap Throwing Speed", statOrder = { 395, 1932 }, level = 90, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [118398748] = { "(17-20)% increased Trap Throwing Speed" }, [3839163699] = { "Socketed Gems are Supported by Level 25 Advanced Traps" }, } },
- ["TrapDamageMineUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap And Mine Damage", "(31-35)% increased Trap Damage", statOrder = { 462, 1199 }, level = 90, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3814066599] = { "Socketed Gems are Supported by Level 25 Trap And Mine Damage" }, [2941585404] = { "(31-35)% increased Trap Damage" }, } },
- ["PoisonDamageSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Chance to Poison", "(31-35)% increased Damage with Poison", statOrder = { 528, 3186 }, level = 90, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 25 Chance to Poison" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } },
- ["PoisonDurationSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Chance to Poison", "(17-20)% increased Poison Duration", statOrder = { 528, 3175 }, level = 90, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, tradeHashes = { [2011656677] = { "(17-20)% increased Poison Duration" }, [228165595] = { "Socketed Gems are Supported by Level 25 Chance to Poison" }, } },
- ["BleedingDamageUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Chance To Bleed", "(31-35)% increased Damage with Bleeding", statOrder = { 249, 3174 }, level = 90, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, tradeHashes = { [4197676934] = { "Socketed Gems are Supported by Level 25 Chance To Bleed" }, [1294118672] = { "(31-35)% increased Damage with Bleeding" }, } },
- ["ChanceToGainFrenzyChargeOnKillUberElderMaven"] = { type = "Prefix", affix = "Elevated Elder's", "50% increased Frenzy Charge Duration", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2132, 2636 }, level = 94, group = "FrenzyChargeOnKillChanceMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [3338298622] = { "50% increased Frenzy Charge Duration" }, [1826802197] = { "(7-10)% chance to gain a Frenzy Charge on Kill" }, } },
- ["IncreasedAccuracySupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are supported by Level 25 Additional Accuracy", "(16-20)% increased Global Accuracy Rating", statOrder = { 485, 1439 }, level = 93, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, tradeHashes = { [1567462963] = { "Socketed Gems are supported by Level 25 Additional Accuracy" }, [624954515] = { "(16-20)% increased Global Accuracy Rating" }, } },
- ["AdditionalBlockChanceUberMaven___"] = { type = "Suffix", affix = "of the Elevated Elder", "(4-5)% Chance to Block Attack Damage", "+1% to maximum Chance to Block Attack Damage", statOrder = { 1143, 1993 }, level = 90, group = "BlockPercentMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [4124805414] = { "+1% to maximum Chance to Block Attack Damage" }, [2530372417] = { "(4-5)% Chance to Block Attack Damage" }, } },
- ["BlindOnHitSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are supported by Level 25 Blind", "(9-10)% Global chance to Blind Enemies on hit", statOrder = { 475, 2963 }, level = 90, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 25 Blind" }, [2221570601] = { "(9-10)% Global chance to Blind Enemies on hit" }, } },
- ["SocketedSpellCriticalMultiplierUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Spells have +90% to Critical Strike Multiplier", statOrder = { 572 }, level = 93, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, tradeHashes = { [2828710986] = { "Socketed Spells have +90% to Critical Strike Multiplier" }, } },
- ["SocketedAttackCriticalMultiplierUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Attacks have +90% to Critical Strike Multiplier", statOrder = { 553 }, level = 94, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, tradeHashes = { [356456977] = { "Socketed Attacks have +90% to Critical Strike Multiplier" }, } },
- ["ChaosNonAilmentDamageOverTimeMultiplierUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+(17-24)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 90, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "influence_mod", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(17-24)% to Chaos Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplierUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(17-24)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 90, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(17-24)% to Cold Damage over Time Multiplier" }, } },
- ["FireDamageOverTimeMultiplierUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(17-24)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 90, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(17-24)% to Fire Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "+(17-24)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 90, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(17-24)% to Physical Damage over Time Multiplier" }, } },
- ["AvoidStunInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Conquest", "(36-50)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 85, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(36-50)% chance to Avoid being Stunned" }, } },
- ["MaximumColdResistanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+3% to maximum Cold Resistance", statOrder = { 1634 }, level = 95, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } },
- ["MaximumColdResistanceInfluenceMavenNew"] = { type = "Suffix", affix = "of the Elevated Crusade", "+3% to maximum Cold Resistance", statOrder = { 1634 }, level = 95, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } },
- ["ConvertPhysicalToFireInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (3-5)% of Physical Damage as Extra Fire Damage", "(22-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1937, 1960 }, level = 81, group = "ConvertPhysicalToFireMaven", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(22-25)% of Physical Damage Converted to Fire Damage" }, [369494213] = { "Gain (3-5)% of Physical Damage as Extra Fire Damage" }, } },
- ["ConvertPhysicalToColdInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (3-5)% of Physical Damage as Extra Cold Damage", "(22-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1938, 1962 }, level = 81, group = "ConvertPhysicalToColdMaven", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(22-25)% of Physical Damage Converted to Cold Damage" }, [979246511] = { "Gain (3-5)% of Physical Damage as Extra Cold Damage" }, } },
- ["ConvertPhysicalToLightningInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (3-5)% of Physical Damage as Extra Lightning Damage", "(22-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1939, 1964 }, level = 81, group = "ConvertPhysicalToLightningMaven", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (3-5)% of Physical Damage as Extra Lightning Damage" }, [3240769289] = { "(22-25)% of Physical Damage Converted to Lightning Damage" }, } },
- ["MaximumLifeLeechRateInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "20% increased Maximum total Life Recovery per second from Leech", statOrder = { 1736 }, level = 85, group = "MaximumLifeLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [4118987751] = { "20% increased Maximum total Life Recovery per second from Leech" }, } },
- ["MaximumEnergyShieldLeechRateInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Crusader's", "30% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1739 }, level = 85, group = "MaximumEnergyShieldLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2013799819] = { "30% increased Maximum total Energy Shield Recovery per second from Leech" }, } },
- ["AvoidInterruptionWhileCastingInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(31-60)% chance to Ignore Stuns while Casting", statOrder = { 1903 }, level = 85, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(31-60)% chance to Ignore Stuns while Casting" }, } },
- ["GlobalCriticalStrikeChanceInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(31-60)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 85, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(31-60)% increased Global Critical Strike Chance" }, } },
- ["MaximumFrenzyChargeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Maximum Frenzy Charges", "10% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", statOrder = { 1814, 6778 }, level = 85, group = "MaximumFrenzyChargesMaven", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, [2119664154] = { "10% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges" }, } },
- ["MeleeDamageInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Melee Damage", statOrder = { 1239 }, level = 83, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(31-38)% increased Melee Damage" }, } },
- ["ProjectileAttackDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Projectile Attack Damage", statOrder = { 2002 }, level = 83, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(31-38)% increased Projectile Attack Damage" }, } },
- ["SpellDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Spell Damage", statOrder = { 1228 }, level = 83, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(31-38)% increased Spell Damage" }, } },
- ["DamageOverTimeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Damage over Time", statOrder = { 1215 }, level = 83, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [967627487] = { "(31-38)% increased Damage over Time" }, } },
- ["MeleeWeaponRangeInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(0.3-0.4) metres to Melee Strike Range", statOrder = { 2539 }, level = 92, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [2264295449] = { "+(0.3-0.4) metres to Melee Strike Range" }, } },
- ["BlockPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(4-5)% Chance to Block Attack Damage", "+1% to maximum Chance to Block Attack Damage", statOrder = { 1143, 1993 }, level = 90, group = "BlockPercentMaven", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [4124805414] = { "+1% to maximum Chance to Block Attack Damage" }, [2530372417] = { "(4-5)% Chance to Block Attack Damage" }, } },
- ["CullingStrikeInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Conquest", "Culling Strike", "(15-25)% increased Area of Effect if you've dealt a Culling Strike Recently", statOrder = { 2044, 4730 }, level = 83, group = "CullingStrikeMaven", weightKey = { "gloves_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1785568076] = { "(15-25)% increased Area of Effect if you've dealt a Culling Strike Recently" }, [2524254339] = { "Culling Strike" }, } },
- ["FrenzyChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Frenzy Charge Duration", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2132, 2636 }, level = 90, group = "FrenzyChargeOnKillChanceMaven", weightKey = { "gloves_eyrie", "quiver_eyrie", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [3338298622] = { "50% increased Frenzy Charge Duration" }, [1826802197] = { "(7-10)% chance to gain a Frenzy Charge on Kill" }, } },
- ["AddedPhysicalDamageCritRecentlyInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds (9-12) to (13-16) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9251 }, level = 83, group = "AddedPhysicalDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [2723101291] = { "Adds (9-12) to (13-16) Physical Damage if you've dealt a Critical Strike Recently" }, } },
- ["AddedFireDamageCritRecentlyInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds (26-30) to (36-45) Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9239 }, level = 83, group = "AddedFireDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3144358296] = { "Adds (26-30) to (36-45) Fire Damage if you've dealt a Critical Strike Recently" }, } },
- ["AddedColdDamageCritRecentlyInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds (26-30) to (36-45) Cold Damage if you've dealt a Critical Strike Recently", statOrder = { 9234 }, level = 83, group = "AddedColdDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3370223014] = { "Adds (26-30) to (36-45) Cold Damage if you've dealt a Critical Strike Recently" }, } },
- ["AddedLightningDamageCritRecentlyInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds 1 to (61-90) Lightning Damage if you've dealt a Critical Strike Recently", statOrder = { 9245 }, level = 83, group = "AddedLightningDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [935623115] = { "Adds 1 to (61-90) Lightning Damage if you've dealt a Critical Strike Recently" }, } },
- ["MinionDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Minions deal (31-45)% increased Damage", statOrder = { 1978 }, level = 83, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (31-45)% increased Damage" }, } },
- ["IncreasedAccuracyPercentInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "(21-30)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 90, group = "IncreasedAccuracyPercent", weightKey = { "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [624954515] = { "(21-30)% increased Global Accuracy Rating" }, } },
- ["GlobalChanceToBlindOnHitInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(20-30)% increased Damage with Hits and Ailments against Blinded Enemies", "(12-15)% Global chance to Blind Enemies on hit", statOrder = { 2816, 2963 }, level = 90, group = "GlobalChanceToBlindOnHitMaven", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3503466234] = { "(20-30)% increased Damage with Hits and Ailments against Blinded Enemies" }, [2221570601] = { "(12-15)% Global chance to Blind Enemies on hit" }, } },
- ["AdditionalChanceToEvadeInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(7-12)% increased Attack and Cast Speed if you haven't been Hit Recently", "+(2-4)% chance to Evade Attack Hits", statOrder = { 4821, 5678 }, level = 85, group = "AdditionalChanceToEvadeMaven", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion", "attack", "caster", "speed" }, tradeHashes = { [223937937] = { "(7-12)% increased Attack and Cast Speed if you haven't been Hit Recently" }, [2021058489] = { "+(2-4)% chance to Evade Attack Hits" }, } },
- ["ChanceToIntimidateOnHitInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 95, group = "ChanceToIntimidateOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [78985352] = { "Intimidate Enemies for 4 seconds on Hit" }, } },
- ["ChanceToUnnerveOnHitInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 95, group = "ChanceToUnnerveOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [763611529] = { "Unnerve Enemies for 4 seconds on Hit" }, } },
- ["StrikeSkillsAdditionalTargetInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9188 }, level = 90, group = "StrikeSkillsAdditionalTarget", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } },
- ["ChanceToImpaleInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "(21-25)% chance to Impale Enemies on Hit with Attacks", "Adds (1-2) to (3-5) Physical Damage for each Impale on Enemy", statOrder = { 4923, 9253 }, level = 90, group = "AttackImpaleChanceMaven", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [1455766505] = { "Adds (1-2) to (3-5) Physical Damage for each Impale on Enemy" }, [3739863694] = { "(21-25)% chance to Impale Enemies on Hit with Attacks" }, } },
- ["AilmentDurationInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "(13-15)% increased Duration of Ailments on Enemies", "(13-15)% increased Effect of Non-Damaging Ailments", statOrder = { 1865, 9498 }, level = 90, group = "IncreasedAilmentDurationMaven", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(13-15)% increased Effect of Non-Damaging Ailments" }, [2419712247] = { "(13-15)% increased Duration of Ailments on Enemies" }, } },
- ["PercentageDexterityInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(11-12)% increased Dexterity", statOrder = { 1190 }, level = 85, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(11-12)% increased Dexterity" }, } },
- ["FireDamageOverTimeMultiplierInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 90, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(21-25)% to Fire Damage over Time Multiplier" }, } },
- ["ColdDamageOverTimeMultiplierInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 90, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(21-25)% to Cold Damage over Time Multiplier" }, } },
- ["ChaosDamageOverTimeMultiplierInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 90, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(21-25)% to Chaos Damage over Time Multiplier" }, } },
- ["PhysicalDamageOverTimeMultiplierInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 90, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(21-25)% to Physical Damage over Time Multiplier" }, } },
- ["ManaGainPerTargetInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Gain (3-5) Mana per Enemy Hit with Attacks", "(10-20)% increased Attack Speed while not on Low Mana", statOrder = { 1749, 4911 }, level = 78, group = "ManaGainPerTargetMaven", weightKey = { "gloves_basilisk", "quiver_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack", "speed" }, tradeHashes = { [820939409] = { "Gain (3-5) Mana per Enemy Hit with Attacks" }, [779663446] = { "(10-20)% increased Attack Speed while not on Low Mana" }, } },
- ["IncreasedDurationBootsUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 20 More Duration", "(10-15)% increased Skill Effect Duration", statOrder = { 319, 1900 }, level = 78, group = "SkillEffectDurationSupported", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [407317553] = { "Socketed Gems are Supported by Level 20 More Duration" }, [3377888098] = { "(10-15)% increased Skill Effect Duration" }, } },
- ["IncreasedCooldownRecoveryBootsUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 90, group = "GlobalCooldownRecovery", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(16-20)% increased Cooldown Recovery Rate" }, } },
- ["SupportedByFortifyUberMaven_"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Fortify", statOrder = { 501 }, level = 78, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 25 Fortify" }, } },
- ["ImmuneToChilledGroundUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Unaffected by Chill", statOrder = { 10457 }, level = 78, group = "ChilledGroundEffectEffectivenessMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [937372143] = { "Unaffected by Chill" }, } },
- ["ImmuneToBurningGroundUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "Unaffected by Ignite", statOrder = { 10472 }, level = 78, group = "BurningGroundEffectEffectivenessMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [2635869389] = { "Unaffected by Ignite" }, } },
- ["ImmuneToShockedGroundUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Unaffected by Shock", statOrder = { 10476 }, level = 78, group = "ShockedGroundEffectEffectivenessMaven", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } },
- ["ImmuneToDesecratedGroundUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Unaffected by Poison", statOrder = { 5060 }, level = 78, group = "DesecratedGroundEffectEffectivenessMaven", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "influence_mod", "chaos", "ailment" }, tradeHashes = { [1953432004] = { "Unaffected by Poison" }, } },
- ["ChanceToDodgeUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 94, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(16-18)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } },
- ["ChanceToDodgeSpellsUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 93, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(16-18)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } },
- ["ChanceToAvoidStunUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(36-50)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 92, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(36-50)% chance to Avoid being Stunned" }, } },
- ["ChanceToAvoidElementalAilmentsUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "(36-45)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 91, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(36-45)% chance to Avoid Elemental Ailments" }, } },
- ["ChanceToAvoidProjectilesUberMaven___"] = { type = "Suffix", affix = "of Elevated Shaping", "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently", "(10-12)% chance to avoid Projectiles", statOrder = { 4955, 4998 }, level = 94, group = "ChanceToAvoidProjectilesMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3452269808] = { "(10-12)% chance to avoid Projectiles" }, [3114696875] = { "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently" }, } },
- ["ChanceToGainEnduranceChargeOnKillUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "50% increased Endurance Charge Duration", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2130, 2634 }, level = 93, group = "EnduranceChargeOnKillChanceMaven", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "warstaff_elder", "boots_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1170174456] = { "50% increased Endurance Charge Duration" }, [1054322244] = { "(7-10)% chance to gain an Endurance Charge on Kill" }, } },
- ["TotemDamageSpellUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Spell Totem", "(31-35)% increased Totem Damage", statOrder = { 469, 1198 }, level = 90, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2962840349] = { "Socketed Gems are Supported by Level 25 Spell Totem" }, [3851254963] = { "(31-35)% increased Totem Damage" }, } },
- ["TotemSpeedSpellUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Spell Totem", "(17-20)% increased Totem Placement speed", statOrder = { 469, 2583 }, level = 90, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(17-20)% increased Totem Placement speed" }, [2962840349] = { "Socketed Gems are Supported by Level 25 Spell Totem" }, } },
- ["TotemDamageAttackUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Ballista Totem", "(31-35)% increased Totem Damage", statOrder = { 367, 1198 }, level = 90, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3030692053] = { "Socketed Gems are Supported by Level 25 Ballista Totem" }, [3851254963] = { "(31-35)% increased Totem Damage" }, } },
- ["TotemSpeedAttackUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Ballista Totem", "(17-20)% increased Totem Placement speed", statOrder = { 367, 2583 }, level = 90, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(17-20)% increased Totem Placement speed" }, [3030692053] = { "Socketed Gems are Supported by Level 25 Ballista Totem" }, } },
- ["SupportedByLifeLeechUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are supported by Level 20 Life Leech", statOrder = { 488 }, level = 78, group = "SupportedByLifeLeech", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [891277550] = { "Socketed Gems are supported by Level 20 Life Leech" }, } },
- ["GrantsDecoyTotemSkillUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Grants Level 25 Decoy Totem Skill", statOrder = { 705 }, level = 78, group = "DecoyTotemSkill", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [3566242751] = { "Grants Level 25 Decoy Totem Skill" }, } },
- ["GlobalRaiseSpectreGemLevelUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+2 to Level of all Raise Spectre Gems", statOrder = { 1621 }, level = 85, group = "MinionGlobalSkillLevel", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "minion", "gem" }, tradeHashes = { [2739830820] = { "" }, [2120904498] = { "" }, [3235814433] = { "+2 to Level of all Raise Spectre Gems" }, } },
- ["UnaffectedByShockedGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Unaffected by Shock", statOrder = { 10476 }, level = 78, group = "ShockedGroundEffectEffectivenessMaven", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } },
- ["SocketedLightningGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+2 to Level of Socketed Lightning Gems", "+(3-7)% to Quality of Socketed Lightning Gems", statOrder = { 174, 221 }, level = 78, group = "LocalIncreaseSocketedLightningGemLevelMaven", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "gem" }, tradeHashes = { [1065580342] = { "+(3-7)% to Quality of Socketed Lightning Gems" }, [4043416969] = { "+2 to Level of Socketed Lightning Gems" }, } },
- ["MaximumFireResistanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+3% to maximum Fire Resistance", statOrder = { 1628 }, level = 95, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } },
- ["MaximumFireResistanceInfluenceMavenNew"] = { type = "Suffix", affix = "of the Elevated Crusade", "+3% to maximum Fire Resistance", statOrder = { 1628 }, level = 95, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } },
- ["PhysicalAddedAsExtraLightningBootsInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (9-11)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 85, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (9-11)% of Physical Damage as Extra Lightning Damage" }, } },
- ["CooldownRecoveryInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Crusade", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 90, group = "GlobalCooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(16-20)% increased Cooldown Recovery Rate" }, } },
- ["AvoidIgniteInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(71-80)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 85, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(71-80)% chance to Avoid being Ignited" }, } },
- ["AvoidFreezeInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(71-80)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 85, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(71-80)% chance to Avoid being Frozen" }, } },
- ["AvoidShockInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(71-80)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 85, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(71-80)% chance to Avoid being Shocked" }, } },
- ["AvoidProjectilesInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently", "(10-12)% chance to avoid Projectiles", statOrder = { 4955, 4998 }, level = 83, group = "ChanceToAvoidProjectilesMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3452269808] = { "(10-12)% chance to avoid Projectiles" }, [3114696875] = { "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently" }, } },
- ["UnaffectedByBurningGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "Unaffected by Ignite", statOrder = { 10472 }, level = 78, group = "BurningGroundEffectEffectivenessMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [2635869389] = { "Unaffected by Ignite" }, } },
- ["SocketedFireGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+2 to Level of Socketed Fire Gems", "+(3-7)% to Quality of Socketed Fire Gems", statOrder = { 172, 219 }, level = 78, group = "LocalIncreaseSocketedFireGemLevelMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, [3422008440] = { "+(3-7)% to Quality of Socketed Fire Gems" }, } },
- ["MaximumEnduranceChargeInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Maximum Endurance Charges", "10% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", statOrder = { 1809, 4244 }, level = 85, group = "MaximumEnduranceChargesMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [2713233613] = { "10% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges" }, [1515657623] = { "+1 to Maximum Endurance Charges" }, } },
- ["PhysicalAddedAsExtraFireBootsInfluenceMaven___"] = { type = "Prefix", affix = "Elevated Warlord's", "Gain (9-11)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 85, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (9-11)% of Physical Damage as Extra Fire Damage" }, } },
- ["AvoidFireDamageInfluenceMaven_____"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(20-30)% to Fire Resistance", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 1630, 3378 }, level = 90, group = "FireDamageAvoidanceMaven", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, [42242677] = { "(8-10)% chance to Avoid Fire Damage from Hits" }, } },
- ["AvoidColdDamageInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(20-30)% to Cold Resistance", "(8-10)% chance to Avoid Cold Damage from Hits", statOrder = { 1636, 3379 }, level = 90, group = "ColdDamageAvoidanceMaven", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, [3743375737] = { "(8-10)% chance to Avoid Cold Damage from Hits" }, } },
- ["AvoidLightningDamageInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(20-30)% to Lightning Resistance", "(8-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 1641, 3380 }, level = 90, group = "LightningDamageAvoidanceMaven", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, [2889664727] = { "(8-10)% chance to Avoid Lightning Damage from Hits" }, } },
- ["AdditionalPhysicalDamageReductionInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(15-20)% increased Armour", "(2-4)% additional Physical Damage Reduction", statOrder = { 1546, 2278 }, level = 85, group = "ReducedPhysicalDamageTakenMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "armour", "physical" }, tradeHashes = { [3771516363] = { "(2-4)% additional Physical Damage Reduction" }, [2866361420] = { "(15-20)% increased Armour" }, } },
- ["UnaffectedByChilledGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Unaffected by Chill", statOrder = { 10457 }, level = 78, group = "ChilledGroundEffectEffectivenessMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [937372143] = { "Unaffected by Chill" }, } },
- ["SocketedColdGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "+2 to Level of Socketed Cold Gems", "+(3-7)% to Quality of Socketed Cold Gems", statOrder = { 173, 216 }, level = 78, group = "LocalIncreaseSocketedColdGemLevelMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "gem" }, tradeHashes = { [1164882313] = { "+(3-7)% to Quality of Socketed Cold Gems" }, [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } },
- ["EnduranceChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Endurance Charge Duration", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2130, 2634 }, level = 90, group = "EnduranceChargeOnKillChanceMaven", weightKey = { "boots_eyrie", "sword_eyrie", "axe_eyrie", "mace_eyrie", "sceptre_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1170174456] = { "50% increased Endurance Charge Duration" }, [1054322244] = { "(7-10)% chance to gain an Endurance Charge on Kill" }, } },
- ["PhysicalAddedAsExtraColdBootsInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Gain (9-11)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 85, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (9-11)% of Physical Damage as Extra Cold Damage" }, } },
- ["ElusiveOnCriticalStrikeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(11-20)% chance to gain Elusive on Critical Strike", "(5-10)% increased Elusive Effect", statOrder = { 4286, 6354 }, level = 85, group = "ElusiveOnCriticalStrikeMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [240857668] = { "(5-10)% increased Elusive Effect" }, [2896192589] = { "(11-20)% chance to gain Elusive on Critical Strike" }, } },
- ["ChanceToDodgeAttacksInfluenceMaven__"] = { type = "Suffix", affix = "of Elevated Redemption", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 90, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(16-18)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } },
- ["ChanceToDodgeSpellsInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 90, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(16-18)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } },
- ["IncreasedAilmentEffectOnEnemiesInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(41-60)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 83, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "ailment" }, tradeHashes = { [782230869] = { "(41-60)% increased Effect of Non-Damaging Ailments" }, } },
- ["OnslaughtOnKillInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(8-10)% chance to gain Onslaught for 4 seconds on Kill", "(3-10)% increased Attack, Cast and Movement Speed while you have Onslaught", statOrder = { 2998, 4844 }, level = 90, group = "ChanceToGainOnslaughtOnKillMaven", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, tradeHashes = { [879520319] = { "(3-10)% increased Attack, Cast and Movement Speed while you have Onslaught" }, [2988593550] = { "(8-10)% chance to gain Onslaught for 4 seconds on Kill" }, } },
- ["UnaffectedByDesecratedGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Unaffected by Poison", statOrder = { 5060 }, level = 78, group = "DesecratedGroundEffectEffectivenessMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1953432004] = { "Unaffected by Poison" }, } },
- ["SocketedChaosGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "+2 to Level of Socketed Chaos Gems", "+(3-7)% to Quality of Socketed Chaos Gems", statOrder = { 175, 215 }, level = 78, group = "LocalIncreaseSocketedChaosGemLevelMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2062835769] = { "+(3-7)% to Quality of Socketed Chaos Gems" }, [2675603254] = { "+2 to Level of Socketed Chaos Gems" }, } },
- ["AdditionalPierceInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Hunter's", "Projectiles Pierce (3-5) additional Targets", statOrder = { 1795 }, level = 90, group = "AdditionalPierce", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce (3-5) additional Targets" }, } },
- ["PercentageStrengthInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(11-12)% increased Strength", statOrder = { 1189 }, level = 85, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(11-12)% increased Strength" }, } },
- ["AvoidBleedAndPoisonInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(61-70)% chance to Avoid being Poisoned", "(61-70)% chance to Avoid Bleeding", statOrder = { 1854, 4221 }, level = 85, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(61-70)% chance to Avoid Bleeding" }, [4053951709] = { "(61-70)% chance to Avoid being Poisoned" }, } },
- ["TailwindOnCriticalStrikeInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-25)% increased Effect of Tailwind on you", "You have Tailwind if you have dealt a Critical Strike Recently", statOrder = { 10345, 10347 }, level = 85, group = "TailwindOnCriticalStrikeMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2172944497] = { "(10-25)% increased Effect of Tailwind on you" }, [1085545682] = { "You have Tailwind if you have dealt a Critical Strike Recently" }, } },
- ["FasterIgniteInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-20)% increased Ignite Duration on Enemies", "Ignites you inflict deal Damage (11-15)% faster", statOrder = { 1864, 2569 }, level = 83, group = "FasterIgniteDamageMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(10-20)% increased Ignite Duration on Enemies" }, [2443492284] = { "Ignites you inflict deal Damage (11-15)% faster" }, } },
- ["FasterBleedInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-20)% increased Bleeding Duration", "Bleeding you inflict deals Damage (11-15)% faster", statOrder = { 4999, 6549 }, level = 83, group = "FasterBleedDamageMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (11-15)% faster" }, [1459321413] = { "(10-20)% increased Bleeding Duration" }, } },
- ["FasterPoisonInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-20)% increased Poison Duration", "Poisons you inflict deal Damage (11-15)% faster", statOrder = { 3175, 6550 }, level = 83, group = "FasterPoisonDamageMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (11-15)% faster" }, [2011656677] = { "(10-20)% increased Poison Duration" }, } },
- ["LocalIncreasedWard1"] = { type = "Prefix", affix = "Farrier's", "+(5-9) to Ward", statOrder = { 1533 }, level = 3, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(5-9) to Ward" }, } },
- ["LocalIncreasedWard2"] = { type = "Prefix", affix = "Brownsmith's", "+(10-15) to Ward", statOrder = { 1533 }, level = 11, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(10-15) to Ward" }, } },
- ["LocalIncreasedWard3_"] = { type = "Prefix", affix = "Coppersmith's", "+(16-23) to Ward", statOrder = { 1533 }, level = 17, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(16-23) to Ward" }, } },
- ["LocalIncreasedWard4"] = { type = "Prefix", affix = "Blacksmith's", "+(24-35) to Ward", statOrder = { 1533 }, level = 23, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(24-35) to Ward" }, } },
- ["LocalIncreasedWard5___"] = { type = "Prefix", affix = "Silversmith's", "+(36-52) to Ward", statOrder = { 1533 }, level = 29, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(36-52) to Ward" }, } },
- ["LocalIncreasedWard6_"] = { type = "Prefix", affix = "Goldsmith's", "+(52-69) to Ward", statOrder = { 1533 }, level = 35, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(52-69) to Ward" }, } },
- ["LocalIncreasedWard7"] = { type = "Prefix", affix = "Whitesmith's", "+(70-84) to Ward", statOrder = { 1533 }, level = 43, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(70-84) to Ward" }, } },
- ["LocalIncreasedWard8__"] = { type = "Prefix", affix = "Engraver's", "+(85-99) to Ward", statOrder = { 1533 }, level = 51, group = "LocalWard", weightKey = { "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(85-99) to Ward" }, } },
- ["LocalIncreasedWard9"] = { type = "Prefix", affix = "Runesmith's", "+(100-119) to Ward", statOrder = { 1533 }, level = 60, group = "LocalWard", weightKey = { "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(100-119) to Ward" }, } },
- ["LocalIncreasedWard10____"] = { type = "Prefix", affix = "Runemaster's", "+(120-139) to Ward", statOrder = { 1533 }, level = 69, group = "LocalWard", weightKey = { "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(120-139) to Ward" }, } },
- ["LocalIncreasedWard11"] = { type = "Prefix", affix = "Artificer's", "+(140-159) to Ward", statOrder = { 1533 }, level = 75, group = "LocalWard", weightKey = { "shield", "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(140-159) to Ward" }, } },
- ["LocalIncreasedWardPercent1"] = { type = "Prefix", affix = "Chiseled", "(11-28)% increased Ward", statOrder = { 1535 }, level = 3, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(11-28)% increased Ward" }, } },
- ["LocalIncreasedWardPercent2"] = { type = "Prefix", affix = "Etched", "(27-42)% increased Ward", statOrder = { 1535 }, level = 18, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(27-42)% increased Ward" }, } },
- ["LocalIncreasedWardPercent3"] = { type = "Prefix", affix = "Engraved", "(43-55)% increased Ward", statOrder = { 1535 }, level = 30, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(43-55)% increased Ward" }, } },
- ["LocalIncreasedWardPercent4"] = { type = "Prefix", affix = "Embedded", "(56-67)% increased Ward", statOrder = { 1535 }, level = 44, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(56-67)% increased Ward" }, } },
- ["LocalIncreasedWardPercent5"] = { type = "Prefix", affix = "Inscribed", "(68-79)% increased Ward", statOrder = { 1535 }, level = 60, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(68-79)% increased Ward" }, } },
- ["LocalIncreasedWardPercent6"] = { type = "Prefix", affix = "Lettered", "(80-91)% increased Ward", statOrder = { 1535 }, level = 72, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(80-91)% increased Ward" }, } },
- ["LocalIncreasedWardPercent7"] = { type = "Prefix", affix = "Runed", "(92-100)% increased Ward", statOrder = { 1535 }, level = 84, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(92-100)% increased Ward" }, } },
- ["LocalIncreasedWardPercent8"] = { type = "Prefix", affix = "Calligraphic", "(101-110)% increased Ward", statOrder = { 1535 }, level = 86, group = "LocalWardPercent", weightKey = { "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(101-110)% increased Ward" }, } },
- ["LocalIncreasedWardPercentAndStunRecovery1______"] = { type = "Prefix", affix = "Improved", "(6-13)% increased Ward", "(6-7)% increased Stun and Block Recovery", statOrder = { 1535, 1907 }, level = 3, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, [830161081] = { "(6-13)% increased Ward" }, } },
- ["LocalIncreasedWardPercentAndStunRecovery2_"] = { type = "Prefix", affix = "Enhanced", "(14-20)% increased Ward", "(8-9)% increased Stun and Block Recovery", statOrder = { 1535, 1907 }, level = 18, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, [830161081] = { "(14-20)% increased Ward" }, } },
- ["LocalIncreasedWardPercentAndStunRecovery3"] = { type = "Prefix", affix = "Bolstered", "(21-26)% increased Ward", "(10-11)% increased Stun and Block Recovery", statOrder = { 1535, 1907 }, level = 30, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, [830161081] = { "(21-26)% increased Ward" }, } },
- ["LocalIncreasedWardPercentAndStunRecovery4"] = { type = "Prefix", affix = "Elegant", "(27-32)% increased Ward", "(12-13)% increased Stun and Block Recovery", statOrder = { 1535, 1907 }, level = 44, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, [830161081] = { "(27-32)% increased Ward" }, } },
- ["LocalIncreasedWardPercentAndStunRecovery5"] = { type = "Prefix", affix = "Exquisite", "(33-38)% increased Ward", "(14-15)% increased Stun and Block Recovery", statOrder = { 1535, 1907 }, level = 60, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, [830161081] = { "(33-38)% increased Ward" }, } },
- ["LocalIncreasedWardPercentAndStunRecovery6_"] = { type = "Prefix", affix = "Masterwork", "(39-42)% increased Ward", "(16-17)% increased Stun and Block Recovery", statOrder = { 1535, 1907 }, level = 78, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, [830161081] = { "(39-42)% increased Ward" }, } },
- ["LocalBaseWardAndLife1__"] = { type = "Prefix", affix = "Annest's", "+(15-20) to Ward", "+(18-23) to maximum Life", statOrder = { 1533, 1574 }, level = 30, group = "LocalBaseWardAndLife", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "defences" }, tradeHashes = { [774059442] = { "+(15-20) to Ward" }, [3299347043] = { "+(18-23) to maximum Life" }, } },
- ["LocalBaseWardAndLife2"] = { type = "Prefix", affix = "Owen's", "+(21-30) to Ward", "+(24-28) to maximum Life", statOrder = { 1533, 1574 }, level = 46, group = "LocalBaseWardAndLife", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "defences" }, tradeHashes = { [774059442] = { "+(21-30) to Ward" }, [3299347043] = { "+(24-28) to maximum Life" }, } },
- ["LocalBaseWardAndLife3_"] = { type = "Prefix", affix = "Gwayne's", "+(31-40) to Ward", "+(29-33) to maximum Life", statOrder = { 1533, 1574 }, level = 62, group = "LocalBaseWardAndLife", weightKey = { "boots", "gloves", "ward_armour", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "resource", "life", "defences" }, tradeHashes = { [774059442] = { "+(31-40) to Ward" }, [3299347043] = { "+(29-33) to maximum Life" }, } },
- ["LocalBaseWardAndLife4_"] = { type = "Prefix", affix = "Cadigan's", "+(41-50) to Ward", "+(34-38) to maximum Life", statOrder = { 1533, 1574 }, level = 78, group = "LocalBaseWardAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "ward_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { "resource", "life", "defences" }, tradeHashes = { [774059442] = { "+(41-50) to Ward" }, [3299347043] = { "+(34-38) to maximum Life" }, } },
- ["FasterStartOfWardRecharge1"] = { type = "Suffix", affix = "of Artifice", "(33-37)% faster Restoration of Ward", statOrder = { 1536 }, level = 46, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(33-37)% faster Restoration of Ward" }, } },
- ["FasterStartOfWardRecharge2"] = { type = "Suffix", affix = "of Etching", "(38-42)% faster Restoration of Ward", statOrder = { 1536 }, level = 57, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(38-42)% faster Restoration of Ward" }, } },
- ["FasterStartOfWardRecharge3"] = { type = "Suffix", affix = "of Engraving", "(43-47)% faster Restoration of Ward", statOrder = { 1536 }, level = 68, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(43-47)% faster Restoration of Ward" }, } },
- ["FasterStartOfWardRecharge4"] = { type = "Suffix", affix = "of Inscription", "(48-52)% faster Restoration of Ward", statOrder = { 1536 }, level = 76, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(48-52)% faster Restoration of Ward" }, } },
- ["FasterStartOfWardRecharge5"] = { type = "Suffix", affix = "of Runes", "(53-58)% faster Restoration of Ward", statOrder = { 1536 }, level = 85, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(53-58)% faster Restoration of Ward" }, } },
- ["RecombinatorSpecialMaximumEnduranceCharge"] = { type = "Prefix", affix = "Sentinel's", "+1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 68, group = "MaximumEnduranceCharges", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } },
- ["RecombinatorSpecialMaximumFrenzyCharge"] = { type = "Prefix", affix = "Sentinel's", "+1 to Maximum Frenzy Charges", statOrder = { 1814 }, level = 68, group = "MaximumFrenzyCharges", weightKey = { "default", }, weightVal = { 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } },
- ["RecombinatorSpecialMaximumPowerCharge"] = { type = "Prefix", affix = "Sentinel's", "+1 to Maximum Power Charges", statOrder = { 1819 }, level = 68, group = "IncreasedMaximumPowerCharges", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } },
- ["RecombinatorSpecialKeystoneMinionInstability"] = { type = "Suffix", affix = "of the Sentinel", "Minion Instability", statOrder = { 10797 }, level = 68, group = "MinionInstability", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [433293234] = { "Minion Instability" }, } },
- ["RecombinatorSpecialKeystoneResoluteTechnique"] = { type = "Suffix", affix = "of the Sentinel", "Resolute Technique", statOrder = { 10827 }, level = 68, group = "ResoluteTechnique", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } },
- ["RecombinatorSpecialKeystoneBloodMagic"] = { type = "Suffix", affix = "of the Sentinel", "Blood Magic", statOrder = { 10771 }, level = 68, group = "BloodMagic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } },
- ["RecombinatorSpecialKeystonePainAttunement"] = { type = "Suffix", affix = "of the Sentinel", "Pain Attunement", statOrder = { 10799 }, level = 68, group = "PainAttunement", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } },
- ["RecombinatorSpecialKeystoneElementalEquilibrium"] = { type = "Suffix", affix = "of the Sentinel", "Elemental Equilibrium", statOrder = { 10780 }, level = 68, group = "ElementalEquilibrium", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1263158408] = { "Elemental Equilibrium" }, } },
- ["RecombinatorSpecialKeystoneIronGrip"] = { type = "Suffix", affix = "of the Sentinel", "Iron Grip", statOrder = { 10815 }, level = 68, group = "IronGrip", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [573347393] = { "Iron Grip" }, } },
- ["RecombinatorSpecialKeystonePointBlank"] = { type = "Suffix", affix = "of the Sentinel", "Point Blank", statOrder = { 10800 }, level = 68, group = "PointBlank", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2896346114] = { "Point Blank" }, } },
- ["RecombinatorSpecialKeystoneAcrobatics"] = { type = "Suffix", affix = "of the Sentinel", "Acrobatics", statOrder = { 10766 }, level = 68, group = "Acrobatics", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [223497523] = { "" }, [383557755] = { "Acrobatics" }, } },
- ["RecombinatorSpecialKeystoneGhostReaver"] = { type = "Suffix", affix = "of the Sentinel", "Ghost Reaver", statOrder = { 10786 }, level = 68, group = "KeystoneGhostReaver", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [4272248216] = { "Ghost Reaver" }, } },
- ["RecombinatorSpecialKeystoneVaalPact"] = { type = "Suffix", affix = "of the Sentinel", "Vaal Pact", statOrder = { 10820 }, level = 68, group = "VaalPact", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2257118425] = { "Vaal Pact" }, } },
- ["RecombinatorSpecialKeystoneElementalOverload"] = { type = "Suffix", affix = "of the Sentinel", "Elemental Overload", statOrder = { 10781 }, level = 68, group = "ElementalOverload", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [3574189159] = { "Elemental Overload" }, } },
- ["RecombinatorSpecialKeystoneAvatarOfFire"] = { type = "Suffix", affix = "of the Sentinel", "Avatar of Fire", statOrder = { 10769 }, level = 68, group = "AvatarOfFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [346029096] = { "Avatar of Fire" }, } },
- ["RecombinatorSpecialKeystoneEldritchBattery"] = { type = "Suffix", affix = "of the Sentinel", "Eldritch Battery", statOrder = { 10779 }, level = 68, group = "EldritchBattery", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } },
- ["RecombinatorSpecialKeystoneAncestralBond"] = { type = "Suffix", affix = "of the Sentinel", "Ancestral Bond", statOrder = { 10768 }, level = 68, group = "AncestralBond", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2648570028] = { "Ancestral Bond" }, } },
- ["RecombinatorSpecialKeystoneCrimsonDance"] = { type = "Suffix", affix = "of the Sentinel", "Crimson Dance", statOrder = { 10776 }, level = 68, group = "CrimsonDance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [300702212] = { "Crimson Dance" }, } },
- ["RecombinatorSpecialKeystonePerfectAgony"] = { type = "Suffix", affix = "of the Sentinel", "Perfect Agony", statOrder = { 10767 }, level = 68, group = "PerfectAgony", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [3884934810] = { "Perfect Agony" }, } },
- ["RecombinatorSpecialKeystoneRunebinder"] = { type = "Suffix", affix = "of the Sentinel", "Runebinder", statOrder = { 10807 }, level = 68, group = "Runebinder", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, tradeHashes = { [4080245957] = { "Runebinder" }, } },
- ["RecombinatorSpecialKeystoneMortalConviction"] = { type = "Suffix", affix = "of the Sentinel", "Blood Magic", statOrder = { 10771 }, level = 68, group = "BloodMagic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } },
- ["RecombinatorSpecialKeystoneCallToArms"] = { type = "Suffix", affix = "of the Sentinel", "Call to Arms", statOrder = { 10772 }, level = 68, group = "CallToArms", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3292262540] = { "Call to Arms" }, } },
- ["RecombinatorSpecialKeystoneTheAgnostic"] = { type = "Suffix", affix = "of the Sentinel", "The Agnostic", statOrder = { 10798 }, level = 68, group = "TheAgnostic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [462691314] = { "The Agnostic" }, } },
- ["RecombinatorSpecialKeystoneSupremeEgo"] = { type = "Suffix", affix = "of the Sentinel", "Supreme Ego", statOrder = { 10816 }, level = 68, group = "SupremeEgo", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1421267186] = { "Supreme Ego" }, } },
- ["RecombinatorSpecialKeystoneTheImpaler"] = { type = "Suffix", affix = "of the Sentinel", "The Impaler", statOrder = { 10791 }, level = 68, group = "Impaler", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1441799693] = { "The Impaler" }, } },
- ["RecombinatorSpecialKeystoneDoomsday"] = { type = "Suffix", affix = "of the Sentinel", "Hex Master", statOrder = { 10789 }, level = 68, group = "HexMaster", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, tradeHashes = { [3849554033] = { "Hex Master" }, } },
- ["RecombinatorSpecialKeystoneLetheShade1"] = { type = "Suffix", affix = "of the Sentinel", "Lethe Shade", statOrder = { 10793 }, level = 68, group = "LetheShade", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [1678358883] = { "Lethe Shade" }, } },
- ["RecombinatorSpecialKeystoneGhostDance"] = { type = "Suffix", affix = "of the Sentinel", "Ghost Dance", statOrder = { 10785 }, level = 68, group = "GhostDance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [3590128077] = { "Ghost Dance" }, } },
- ["RecombinatorSpecialKeystoneVersatileCombatant"] = { type = "Suffix", affix = "of the Sentinel", "Versatile Combatant", statOrder = { 10821 }, level = 68, group = "VersatileCombatant", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [593845252] = { "Versatile Combatant" }, } },
- ["RecombinatorSpecialKeystoneMagebane"] = { type = "Suffix", affix = "of the Sentinel", "Magebane", statOrder = { 10794 }, level = 68, group = "Magebane", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4180925106] = { "Magebane" }, } },
- ["RecombinatorSpecialKeystoneSolipsism"] = { type = "Suffix", affix = "of the Sentinel", "Solipsism", statOrder = { 10813 }, level = 68, group = "Solipsism", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [112130960] = { "Solipsism" }, } },
- ["RecombinatorSpecialKeystoneDivineShield"] = { type = "Suffix", affix = "of the Sentinel", "Divine Shield", statOrder = { 10778 }, level = 68, group = "DivineShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2048995720] = { "Divine Shield" }, } },
- ["RecombinatorSpecialKeystoneIronWill"] = { type = "Suffix", affix = "of the Sentinel", "Iron Will", statOrder = { 10828 }, level = 68, group = "IronWill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, tradeHashes = { [4092697134] = { "Iron Will" }, } },
- ["RecombinatorSpecialMagicUtilityFlaskEffect"] = { type = "Prefix", affix = "Sentinel's", "Magic Utility Flasks applied to you have (20-25)% increased Effect", statOrder = { 2748 }, level = 68, group = "MagicUtilityFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2564857472] = { "Magic Utility Flasks applied to you have (20-25)% increased Effect" }, } },
- ["RecombinatorSpecialAuraEffect"] = { type = "Suffix", affix = "of the Sentinel", "(15-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 68, group = "AuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(15-20)% increased effect of Non-Curse Auras from your Skills" }, } },
- ["RecombinatorSpecialFireDamageToAttacksPerStrength"] = { type = "Prefix", affix = "Sentinel's", "Adds 2 to 4 Fire Damage to Attacks per 10 Strength", statOrder = { 9243 }, level = 68, group = "FireDamageToAttacksPerStrength", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [68673913] = { "Adds 2 to 4 Fire Damage to Attacks per 10 Strength" }, } },
- ["RecombinatorSpecialColdDamageToAttacksPerDexterity"] = { type = "Prefix", affix = "Sentinel's", "Adds 2 to 4 Cold Damage to Attacks per 10 Dexterity", statOrder = { 9235 }, level = 68, group = "ColdDamageToAttacksPerDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [769783486] = { "Adds 2 to 4 Cold Damage to Attacks per 10 Dexterity" }, } },
- ["RecombinatorSpecialLightningDamageToAttacksPerIntelligence"] = { type = "Prefix", affix = "Sentinel's", "Adds 1 to 5 Lightning Damage to Attacks per 10 Intelligence", statOrder = { 9248 }, level = 68, group = "LightningDamageToAttacksPerIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [3168149399] = { "Adds 1 to 5 Lightning Damage to Attacks per 10 Intelligence" }, } },
- ["RecombinatorSpecialAllFireDamageCanShock"] = { type = "Suffix", affix = "of the Sentinel", "Your Fire Damage can Shock", statOrder = { 2881 }, level = 68, group = "AllFireDamageCanShock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "lightning", "ailment" }, tradeHashes = { [932096321] = { "Your Fire Damage can Shock" }, } },
- ["RecombinatorSpecialAllColdDamageCanIgnite"] = { type = "Suffix", affix = "of the Sentinel", "Your Cold Damage can Ignite", statOrder = { 2876 }, level = 68, group = "AllColdDamageCanIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHashes = { [1888494262] = { "Your Cold Damage can Ignite" }, } },
- ["RecombinatorSpecialAllLightningDamageCanFreeze"] = { type = "Suffix", affix = "of the Sentinel", "Your Lightning Damage can Freeze", statOrder = { 2888 }, level = 68, group = "AllLightningDamageCanFreeze", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHashes = { [380759151] = { "Your Lightning Damage can Freeze" }, } },
- ["RecombinatorSpecialMarkEffect"] = { type = "Suffix", affix = "of the Sentinel", "(30-40)% increased Effect of your Marks", statOrder = { 2603 }, level = 68, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(30-40)% increased Effect of your Marks" }, } },
- ["RecombinatorSpecialArcaneSurgeEffect1H"] = { type = "Suffix", affix = "of the Sentinel", "(30-40)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 68, group = "ArcaneSurgeEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(30-40)% increased Effect of Arcane Surge on you" }, } },
- ["RecombinatorSpecialArcaneSurgeEffect2H"] = { type = "Suffix", affix = "of the Sentinel", "(50-70)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 68, group = "ArcaneSurgeEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(50-70)% increased Effect of Arcane Surge on you" }, } },
- ["RecombinatorSpecialOnslaughtEffect1H"] = { type = "Suffix", affix = "of the Sentinel", "(30-40)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 68, group = "OnslaughtEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(30-40)% increased Effect of Onslaught on you" }, } },
- ["RecombinatorSpecialOnslaughtEffect2H"] = { type = "Suffix", affix = "of the Sentinel", "(50-70)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 68, group = "OnslaughtEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(50-70)% increased Effect of Onslaught on you" }, } },
- ["RecombinatorSpecialIncreasedDamageVsWarcryTauntedEnemies1H"] = { type = "Suffix", affix = "of the Sentinel", "Enemies Taunted by your Warcries take (10-15)% increased Damage", statOrder = { 10355 }, level = 68, group = "WarcryTauntedEnemiesTakeIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3610197448] = { "Enemies Taunted by your Warcries take (10-15)% increased Damage" }, } },
- ["RecombinatorSpecialIncreasedDamageVsWarcryTauntedEnemies2H"] = { type = "Suffix", affix = "of the Sentinel", "Enemies Taunted by your Warcries take (20-25)% increased Damage", statOrder = { 10355 }, level = 68, group = "WarcryTauntedEnemiesTakeIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3610197448] = { "Enemies Taunted by your Warcries take (20-25)% increased Damage" }, } },
- ["RecombinatorSpecialSupportedByLevelFourEnlighten"] = { type = "Prefix", affix = "Sentinel's", "Socketed Gems are Supported by Level 4 Enlighten", statOrder = { 277 }, level = 68, group = "SupportedByEnlighten", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "gem" }, tradeHashes = { [2065361612] = { "Socketed Gems are Supported by Level 4 Enlighten" }, } },
- ["RecombinatorSpecialSupportedByLevelFourEnhance"] = { type = "Prefix", affix = "Sentinel's", "Socketed Gems are Supported by Level 4 Enhance", statOrder = { 276 }, level = 68, group = "SupportedByEnhance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "gem" }, tradeHashes = { [2556436882] = { "Socketed Gems are Supported by Level 4 Enhance" }, } },
- ["RecombinatorSpecialSupportedByLevelFourEmpower"] = { type = "Prefix", affix = "Sentinel's", "Socketed Gems are Supported by Level 4 Empower", statOrder = { 274 }, level = 68, group = "SupportedByEmpower", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "gem" }, tradeHashes = { [3581578643] = { "Socketed Gems are Supported by Level 4 Empower" }, } },
- ["RecombinatorSpecialTriggerSkillsDoubleDamage"] = { type = "Prefix", affix = "Sentinel's", "Socketed Triggered Skills deal Double Damage", statOrder = { 414 }, level = 68, group = "SocketedTriggeredSkillsDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "damage", "gem" }, tradeHashes = { [4021083819] = { "Socketed Triggered Skills deal Double Damage" }, } },
- ["LifeRegeneration1Inverted"] = { type = "Suffix", affix = "of the Newt", "Lose (1-2) Life per second", statOrder = { 1580 }, level = 1, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (1-2) Life per second" }, } },
- ["LifeRegeneration2Inverted"] = { type = "Suffix", affix = "of the Lizard", "Lose (2.1-8) Life per second", statOrder = { 1580 }, level = 7, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (2.1-8) Life per second" }, } },
- ["LifeRegeneration3Inverted"] = { type = "Suffix", affix = "of the Flatworm", "Lose (8.1-16) Life per second", statOrder = { 1580 }, level = 19, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (8.1-16) Life per second" }, } },
- ["LifeRegeneration4Inverted"] = { type = "Suffix", affix = "of the Starfish", "Lose (16.1-24) Life per second", statOrder = { 1580 }, level = 31, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (16.1-24) Life per second" }, } },
- ["LifeRegeneration5Inverted"] = { type = "Suffix", affix = "of the Hydra", "Lose (24.1-32) Life per second", statOrder = { 1580 }, level = 44, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (24.1-32) Life per second" }, } },
- ["LifeRegeneration6Inverted"] = { type = "Suffix", affix = "of the Troll", "Lose (32.1-48) Life per second", statOrder = { 1580 }, level = 55, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (32.1-48) Life per second" }, } },
- ["LifeRegeneration7Inverted"] = { type = "Suffix", affix = "of Ryslatha", "Lose (48.1-64) Life per second", statOrder = { 1580 }, level = 68, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (48.1-64) Life per second" }, } },
- ["LifeRegeneration8Inverted"] = { type = "Suffix", affix = "of the Phoenix", "Lose (64.1-96) Life per second", statOrder = { 1580 }, level = 74, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (64.1-96) Life per second" }, } },
- ["AddedPhysicalDamage1Inverted"] = { type = "Prefix", affix = "Glinting", "Adds 1 to 2 Physical Damage to Attacks against you", statOrder = { 1272 }, level = 5, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds 1 to 2 Physical Damage to Attacks against you" }, } },
- ["AddedPhysicalDamage2Inverted"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-5) Physical Damage to Attacks against you", statOrder = { 1272 }, level = 13, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (2-3) to (4-5) Physical Damage to Attacks against you" }, } },
- ["AddedPhysicalDamage3Inverted"] = { type = "Prefix", affix = "Polished", "Adds (3-4) to (6-7) Physical Damage to Attacks against you", statOrder = { 1272 }, level = 19, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (3-4) to (6-7) Physical Damage to Attacks against you" }, } },
- ["AddedPhysicalDamage4Inverted"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (9-10) Physical Damage to Attacks against you", statOrder = { 1272 }, level = 28, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (4-6) to (9-10) Physical Damage to Attacks against you" }, } },
- ["AddedPhysicalDamage5Inverted"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (11-12) Physical Damage to Attacks against you", statOrder = { 1272 }, level = 35, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (5-7) to (11-12) Physical Damage to Attacks against you" }, } },
- ["AddedPhysicalDamage6Inverted"] = { type = "Prefix", affix = "Annealed", "Adds (6-9) to (13-15) Physical Damage to Attacks against you", statOrder = { 1272 }, level = 44, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (6-9) to (13-15) Physical Damage to Attacks against you" }, } },
- ["AddedPhysicalDamage7Inverted"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-10) to (15-18) Physical Damage to Attacks against you", statOrder = { 1272 }, level = 52, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (7-10) to (15-18) Physical Damage to Attacks against you" }, } },
- ["AddedPhysicalDamage8Inverted"] = { type = "Prefix", affix = "Tempered", "Adds (9-12) to (19-22) Physical Damage to Attacks against you", statOrder = { 1272 }, level = 64, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (9-12) to (19-22) Physical Damage to Attacks against you" }, } },
- ["AddedPhysicalDamage9Inverted"] = { type = "Prefix", affix = "Flaring", "Adds (11-15) to (22-26) Physical Damage to Attacks against you", statOrder = { 1272 }, level = 76, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (11-15) to (22-26) Physical Damage to Attacks against you" }, } },
- ["AddedFireDamage1Inverted"] = { type = "Prefix", affix = "Heated", "Adds 1 to 2 Fire Damage to Attacks against you", statOrder = { 1366 }, level = 1, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds 1 to 2 Fire Damage to Attacks against you" }, } },
- ["AddedFireDamage2Inverted"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (7-8) Fire Damage to Attacks against you", statOrder = { 1366 }, level = 12, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (3-5) to (7-8) Fire Damage to Attacks against you" }, } },
- ["AddedFireDamage3Inverted"] = { type = "Prefix", affix = "Smoking", "Adds (5-7) to (11-13) Fire Damage to Attacks against you", statOrder = { 1366 }, level = 20, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (5-7) to (11-13) Fire Damage to Attacks against you" }, } },
- ["AddedFireDamage4Inverted"] = { type = "Prefix", affix = "Burning", "Adds (7-10) to (15-18) Fire Damage to Attacks against you", statOrder = { 1366 }, level = 28, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (7-10) to (15-18) Fire Damage to Attacks against you" }, } },
- ["AddedFireDamage5Inverted"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Attacks against you", statOrder = { 1366 }, level = 35, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (9-12) to (19-22) Fire Damage to Attacks against you" }, } },
- ["AddedFireDamage6Inverted"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Attacks against you", statOrder = { 1366 }, level = 44, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (11-15) to (23-27) Fire Damage to Attacks against you" }, } },
- ["AddedFireDamage7Inverted"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Attacks against you", statOrder = { 1366 }, level = 52, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (13-18) to (27-31) Fire Damage to Attacks against you" }, } },
- ["AddedFireDamage8Inverted"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Attacks against you", statOrder = { 1366 }, level = 64, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (16-22) to (32-38) Fire Damage to Attacks against you" }, } },
- ["AddedFireDamage9Inverted"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Attacks against you", statOrder = { 1366 }, level = 76, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (19-25) to (39-45) Fire Damage to Attacks against you" }, } },
- ["AddedColdDamage1Inverted"] = { type = "Prefix", affix = "Frosted", "Adds 1 to 2 Cold Damage to Attacks against you", statOrder = { 1375 }, level = 2, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds 1 to 2 Cold Damage to Attacks against you" }, } },
- ["AddedColdDamage2Inverted"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (7-8) Cold Damage to Attacks against you", statOrder = { 1375 }, level = 13, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (3-4) to (7-8) Cold Damage to Attacks against you" }, } },
- ["AddedColdDamage3Inverted"] = { type = "Prefix", affix = "Icy", "Adds (5-7) to (10-12) Cold Damage to Attacks against you", statOrder = { 1375 }, level = 21, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (5-7) to (10-12) Cold Damage to Attacks against you" }, } },
- ["AddedColdDamage4Inverted"] = { type = "Prefix", affix = "Frigid", "Adds (6-9) to (13-16) Cold Damage to Attacks against you", statOrder = { 1375 }, level = 29, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (6-9) to (13-16) Cold Damage to Attacks against you" }, } },
- ["AddedColdDamage5Inverted"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Attacks against you", statOrder = { 1375 }, level = 36, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (8-11) to (16-19) Cold Damage to Attacks against you" }, } },
- ["AddedColdDamage6Inverted"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Attacks against you", statOrder = { 1375 }, level = 45, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (10-13) to (20-24) Cold Damage to Attacks against you" }, } },
- ["AddedColdDamage7Inverted"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Attacks against you", statOrder = { 1375 }, level = 53, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (12-16) to (24-28) Cold Damage to Attacks against you" }, } },
- ["AddedColdDamage8Inverted"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Attacks against you", statOrder = { 1375 }, level = 65, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (14-19) to (29-34) Cold Damage to Attacks against you" }, } },
- ["AddedColdDamage9Inverted"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Attacks against you", statOrder = { 1375 }, level = 77, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (17-22) to (34-40) Cold Damage to Attacks against you" }, } },
- ["AddedLightningDamage1Inverted"] = { type = "Prefix", affix = "Humming", "Adds 1 to 5 Lightning Damage to Attacks against you", statOrder = { 1386 }, level = 3, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds 1 to 5 Lightning Damage to Attacks against you" }, } },
- ["AddedLightningDamage2Inverted"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (14-15) Lightning Damage to Attacks against you", statOrder = { 1386 }, level = 13, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds 1 to (14-15) Lightning Damage to Attacks against you" }, } },
- ["AddedLightningDamage3Inverted"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (22-23) Lightning Damage to Attacks against you", statOrder = { 1386 }, level = 22, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (1-2) to (22-23) Lightning Damage to Attacks against you" }, } },
- ["AddedLightningDamage4Inverted"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (27-28) Lightning Damage to Attacks against you", statOrder = { 1386 }, level = 28, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (1-2) to (27-28) Lightning Damage to Attacks against you" }, } },
- ["AddedLightningDamage5Inverted"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Attacks against you", statOrder = { 1386 }, level = 35, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (1-3) to (33-34) Lightning Damage to Attacks against you" }, } },
- ["AddedLightningDamage6Inverted"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Attacks against you", statOrder = { 1386 }, level = 44, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (1-4) to (40-43) Lightning Damage to Attacks against you" }, } },
- ["AddedLightningDamage7Inverted"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Attacks against you", statOrder = { 1386 }, level = 52, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (2-5) to (47-50) Lightning Damage to Attacks against you" }, } },
- ["AddedLightningDamage8Inverted"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Attacks against you", statOrder = { 1386 }, level = 64, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (3-6) to (57-61) Lightning Damage to Attacks against you" }, } },
- ["AddedLightningDamage9Inverted"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Attacks against you", statOrder = { 1386 }, level = 76, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (3-7) to (68-72) Lightning Damage to Attacks against you" }, } },
- ["LifeLeechPermyriad1Inverted"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1653 }, level = 50, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2693705594] = { "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Life" }, } },
- ["LifeLeechPermyriad2Inverted"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1653 }, level = 60, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2693705594] = { "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Life" }, } },
- ["LifeLeechPermyriad3Inverted"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1653 }, level = 70, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2693705594] = { "(1-1.2)% of Physical Attack Damage Leeched by Enemy as Life" }, } },
- ["LifeLeechPermyriadSuffix1Inverted"] = { type = "Suffix", affix = "of the Remora", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1653 }, level = 50, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2693705594] = { "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Life" }, } },
- ["LifeLeechPermyriadSuffix2Inverted"] = { type = "Suffix", affix = "of the Lamprey", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1653 }, level = 60, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2693705594] = { "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Life" }, } },
- ["LifeLeechPermyriadSuffix3Inverted"] = { type = "Suffix", affix = "of the Vampire", "(1-1.2)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1653 }, level = 70, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2693705594] = { "(1-1.2)% of Physical Attack Damage Leeched by Enemy as Life" }, } },
- ["ManaLeechPermyriad1Inverted"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1703 }, level = 50, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [407390981] = { "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Mana" }, } },
- ["ManaLeechPermyriad2Inverted"] = { type = "Prefix", affix = "Parched", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1703 }, level = 70, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [407390981] = { "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Mana" }, } },
- ["ManaLeechPermyriadSuffix1Inverted"] = { type = "Suffix", affix = "of Thirst", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1703 }, level = 50, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [407390981] = { "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Mana" }, } },
- ["ManaLeechPermyriadSuffix2Inverted"] = { type = "Suffix", affix = "of Parching", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1703 }, level = 70, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [407390981] = { "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Mana" }, } },
- ["LifeRegenerationEnhancedLevel50ModInverted"] = { type = "Suffix", affix = "of Guatelitzi", "Lose (32-40) Life per second", "Lose 0.4% of Life per second", statOrder = { 1580, 1948 }, level = 50, group = "LifeDegenerationAndPercentGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [1661347488] = { "Lose 0.4% of Life per second" }, [771127912] = { "Lose (32-40) Life per second" }, } },
- ["IncreasedEnergyShieldEnhancedLevel50ModRegenInverted"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Lose 0.4% of Energy Shield per second", statOrder = { 1563, 2652 }, level = 50, group = "EnergyShieldAndDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [761102773] = { "Lose 0.4% of Energy Shield per second" }, [3489782002] = { "+(44-47) to maximum Energy Shield" }, } },
- ["FireResistEnhancedLevel50ModLeechInverted"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched by Enemy as Life", statOrder = { 1630, 1676 }, level = 50, group = "FireResistanceEnemyLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, tradeHashes = { [45548764] = { "0.4% of Fire Damage Leeched by Enemy as Life" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } },
- ["ColdResistEnhancedLevel50ModLeechInverted"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched by Enemy as Life", statOrder = { 1636, 1681 }, level = 50, group = "ColdResistanceEnemyLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [3271464175] = { "0.4% of Cold Damage Leeched by Enemy as Life" }, } },
- ["LightningResistEnhancedLevel50ModLeechInverted"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched by Enemy as Life", statOrder = { 1641, 1685 }, level = 50, group = "LightningResistanceEnemyLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning", "resistance" }, tradeHashes = { [3925004212] = { "0.4% of Lightning Damage Leeched by Enemy as Life" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } },
- ["IncreasedManaEnhancedLevel50ModRegenInverted"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Lose (5-7) Mana per second", statOrder = { 1584, 1588 }, level = 50, group = "IncreasedManaAndDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [838272676] = { "Lose (5-7) Mana per second" }, } },
- ["IncreasedManaEnhancedLevel50ModCostNewInverted"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Non-Channelling Skills Cost -(8-6) Mana", statOrder = { 1584, 10062 }, level = 50, group = "IncreasedManaAndBaseCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [407482587] = { "Non-Channelling Skills Cost -(8-6) Mana" }, } },
- ["AddedPhysicalDamageEssenceAmulet7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (16-18) to (27-30) Physical Damage to Attacks against you", statOrder = { 1272 }, level = 82, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (16-18) to (27-30) Physical Damage to Attacks against you" }, } },
- ["AddedPhysicalDamageEssenceRing5Inverted"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-13) Physical Damage to Attacks against you", statOrder = { 1272 }, level = 58, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (6-8) to (12-13) Physical Damage to Attacks against you" }, } },
- ["AddedPhysicalDamageEssenceRing6Inverted"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-15) Physical Damage to Attacks against you", statOrder = { 1272 }, level = 74, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (7-9) to (13-15) Physical Damage to Attacks against you" }, } },
- ["AddedPhysicalDamageEssenceRing7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (10-11) to (16-17) Physical Damage to Attacks against you", statOrder = { 1272 }, level = 82, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (10-11) to (16-17) Physical Damage to Attacks against you" }, } },
- ["AddedFireDamageEssence7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (23-27) to (43-48) Fire Damage to Attacks against you", statOrder = { 1366 }, level = 82, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (23-27) to (43-48) Fire Damage to Attacks against you" }, } },
- ["AddedColdDamageEssence7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (20-24) to (38-44) Cold Damage to Attacks against you", statOrder = { 1375 }, level = 82, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (20-24) to (38-44) Cold Damage to Attacks against you" }, } },
- ["AddedLightningDamageEssence7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (4-8) to (71-76) Lightning Damage to Attacks against you", statOrder = { 1386 }, level = 82, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (4-8) to (71-76) Lightning Damage to Attacks against you" }, } },
- ["FireDamageAsPortionOfPhysicalDamageEssence1Inverted"] = { type = "Prefix", affix = "Essences", "Hits against you gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1936 }, level = 63, group = "SelfPhysAsExtraFireTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [248982637] = { "Hits against you gain 10% of Physical Damage as Extra Fire Damage" }, } },
- ["AddedColdDamagePerFrenzyChargeEssence1Inverted"] = { type = "Prefix", affix = "Essences", "Adds 4 to 7 Cold Damage to Hits against you per Frenzy Charge", statOrder = { 4277 }, level = 63, group = "SelfColdDamageTakenPerFrenzy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [178386603] = { "Adds 4 to 7 Cold Damage to Hits against you per Frenzy Charge" }, } },
- ["ChanceToRecoverManaOnSkillUseEssence1Inverted"] = { type = "Suffix", affix = "of the Essence", "10% chance to lose 10% of Mana when you use a Skill", statOrder = { 3479 }, level = 63, group = "ChanceToLoseManaOnSkillUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2858930612] = { "10% chance to lose 10% of Mana when you use a Skill" }, } },
- ["DamageCannotBeReflectedPercentEssence1Inverted"] = { type = "Suffix", affix = "of the Essence", "You and your Minions take 60% increased Reflected Damage", statOrder = { 9881 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3577248251] = { "You and your Minions take 60% increased Reflected Damage" }, } },
- ["PhysicalDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Physical Damage Leeched by Enemy as Life", statOrder = { 1672 }, level = 60, group = "EnemyPhysicalDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3423022686] = { "0.4% of Physical Damage Leeched by Enemy as Life" }, } },
- ["FireDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Fire Damage Leeched by Enemy as Life", statOrder = { 1676 }, level = 60, group = "EnemyFireDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [45548764] = { "0.4% of Fire Damage Leeched by Enemy as Life" }, } },
- ["ColdDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Cold Damage Leeched by Enemy as Life", statOrder = { 1681 }, level = 60, group = "EnemyColdDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3271464175] = { "0.4% of Cold Damage Leeched by Enemy as Life" }, } },
- ["LightningDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Lightning Damage Leeched by Enemy as Life", statOrder = { 1685 }, level = 60, group = "EnemyLightningDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3925004212] = { "0.4% of Lightning Damage Leeched by Enemy as Life" }, } },
- ["ChaosDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Chaos Damage Leeched by Enemy as Life", statOrder = { 1688 }, level = 60, group = "EnemyChaosDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [334180828] = { "0.4% of Chaos Damage Leeched by Enemy as Life" }, } },
- ["AddedManaRegenerationDelveInverted"] = { type = "Suffix", affix = "of the Underground", "Lose (3-5) Mana per second", statOrder = { 1588 }, level = 60, group = "ManaDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [838272676] = { "Lose (3-5) Mana per second" }, } },
- ["WeaponSpellDamageTriggerSkillOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost", "(70-74)% increased Spell Damage", statOrder = { 837, 837.1, 1228 }, level = 50, group = "WeaponSpellDamageTriggerSkill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(70-74)% increased Spell Damage" }, [1582781759] = { "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost" }, } },
- ["WeaponSpellDamageTriggerSkillOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost", "(105-110)% increased Spell Damage", statOrder = { 837, 837.1, 1228 }, level = 50, group = "WeaponSpellDamageTriggerSkill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(105-110)% increased Spell Damage" }, [1582781759] = { "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost" }, } },
- ["MercenaryModLightningSkillManaCostWhileShocked"] = { type = "Suffix", affix = "of Infamy", "40% less Mana cost of Lightning Skills while Shocked", statOrder = { 7471 }, level = 68, group = "LightningSkillManaCostWhileShocked", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "elemental", "lightning" }, tradeHashes = { [3964669425] = { "40% less Mana cost of Lightning Skills while Shocked" }, } },
- ["MercenaryModTravelSkillCrit"] = { type = "Prefix", affix = "Infamous", "Your Travel Skills Critically Strike once every 3 uses", statOrder = { 10423 }, level = 68, group = "TravelSkillCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [335741860] = { "Your Travel Skills Critically Strike once every 3 uses" }, } },
- ["MercenaryModRecoupWhileFrozen"] = { type = "Suffix", affix = "of Infamy", "(50-90)% of Damage taken while Frozen Recouped as Life", statOrder = { 6129 }, level = 68, group = "RecoupWhileFrozen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2585984986] = { "(50-90)% of Damage taken while Frozen Recouped as Life" }, } },
- ["MercenaryModSkipSacrifice"] = { type = "Suffix", affix = "of Infamy", "(20-40)% chance on Skill use to not Sacrifice Life but", "still gain benefits as though you had", statOrder = { 10070, 10070.1 }, level = 68, group = "SkipSacrifice", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [1761297940] = { "(20-40)% chance on Skill use to not Sacrifice Life but", "still gain benefits as though you had" }, } },
- ["MercenaryModMinionFireConvertToChaos"] = { type = "Prefix", affix = "Infamous", "Minions convert 100% of Fire Damage to Chaos Damage", statOrder = { 9281 }, level = 68, group = "MinionFireConvertToChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "chaos", "minion" }, tradeHashes = { [2727256287] = { "Minions convert 100% of Fire Damage to Chaos Damage" }, } },
- ["MercenaryModRecentMinionCrit"] = { type = "Suffix", affix = "of Infamy", "Minions created Recently have (60-100)% increased Critical Hit Chance", statOrder = { 9342 }, level = 68, group = "RecentMinionCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "critical" }, tradeHashes = { [3913090641] = { "Minions created Recently have (60-100)% increased Critical Hit Chance" }, } },
- ["MercenaryModTrapMineChain"] = { type = "Suffix", affix = "of Infamy", "Skills used by your Traps and Mines Chain 2 additional times", statOrder = { 10415 }, level = 68, group = "TrapMineChain", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2999750998] = { "Skills used by your Traps and Mines Chain 2 additional times" }, } },
- ["MercenaryModMineLifeReserve"] = { type = "Prefix", affix = "Infamous", "Your Skills that throw Mines reserve Life instead of Mana", statOrder = { 10069 }, level = 68, group = "MineLifeReserve", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [1192252020] = { "Your Skills that throw Mines reserve Life instead of Mana" }, } },
- ["MercenaryModProjSpeedVariance"] = { type = "Suffix", affix = "of Infamy", "Each Projectile created by Attacks you make with a Melee Weapon has", "between 50% more and 50% less Projectile Speed at random", statOrder = { 9744, 9744.1 }, level = 68, group = "MeleeProjSpeedVariance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1563068812] = { "Each Projectile created by Attacks you make with a Melee Weapon has", "between 50% more and 50% less Projectile Speed at random" }, } },
- ["MercenaryModMaxBlades"] = { type = "Prefix", affix = "Infamous", "Skills that leave Lingering Blades have +(5-10) to Maximum Lingering Blades", statOrder = { 9178 }, level = 68, group = "MaxBlades", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3954265754] = { "Skills that leave Lingering Blades have +(5-10) to Maximum Lingering Blades" }, } },
- ["MercenaryModDebilitate"] = { type = "Prefix", affix = "Infamous", "Debuffs on you expire (80-100)% faster", "You are Debilitated", statOrder = { 6156, 9973 }, level = 68, group = "SelfDebilitate", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (80-100)% faster" }, [1989416016] = { "You are Debilitated" }, } },
- ["MercenaryModAshWarcries"] = { type = "Suffix", affix = "of Infamy", "Your Warcries cover Enemies in Ash for 5 seconds", statOrder = { 10558 }, level = 68, group = "CoverInAshWarcry", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3946593978] = { "Your Warcries cover Enemies in Ash for 5 seconds" }, } },
- ["MercenaryModRageDecaySpeed"] = { type = "Prefix", affix = "Infamous", "Inherent loss of Rage is 20% slower", statOrder = { 9792 }, level = 68, group = "RageDecaySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3645269560] = { "Inherent loss of Rage is 20% slower" }, } },
- ["MercenaryModAddCritPerExert"] = { type = "Suffix", affix = "of Infamy", "Skills have +(2-3)% to Critical Strike Chance for each Warcry Exerting them", statOrder = { 4556 }, level = 68, group = "AddCritPerExert", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [3528761893] = { "Skills have +(2-3)% to Critical Strike Chance for each Warcry Exerting them" }, } },
- ["MercenaryModLGOHIgnitedEnemies"] = { type = "Suffix", affix = "of Infamy", "Gain (5-10) Life for each Ignited Enemy hit with Attacks", statOrder = { 1748 }, level = 68, group = "LifeGainOnHitVsIgnitedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [120895749] = { "Gain (5-10) Life for each Ignited Enemy hit with Attacks" }, } },
- ["MercenaryModFortificationDamageAura"] = { type = "Suffix", affix = "of Infamy", "Nearby Enemies take 1% increased Physical Damage per two Fortification on you", statOrder = { 9462 }, level = 68, group = "FortificationDamageAura", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [4187518631] = { "Nearby Enemies take 1% increased Physical Damage per two Fortification on you" }, } },
- ["MercenaryModLifeCostOnLowLife"] = { type = "Suffix", affix = "of Infamy", "30% less Life cost of Skills while on Low Life", statOrder = { 10057 }, level = 68, group = "LifeCostOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3452986510] = { "30% less Life cost of Skills while on Low Life" }, } },
- ["MercenaryModMinionCDR"] = { type = "Suffix", affix = "of Infamy", "Minions have 20% increased Cooldown Recovery Rate", statOrder = { 9291 }, level = 68, group = "MinionCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1691403182] = { "Minions have 20% increased Cooldown Recovery Rate" }, } },
- ["MercenaryModConsecratedChaosRes"] = { type = "Suffix", affix = "of Infamy", "Consecrated Ground you create grants +(1-3)% maximum Chaos Resistance to you and Allies", statOrder = { 10687 }, level = 68, group = "ConsecratedChaosRes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [1235229114] = { "Consecrated Ground you create grants +(1-3)% maximum Chaos Resistance to you and Allies" }, } },
- ["MercenaryModImpaleEffectFromDistance"] = { type = "Suffix", affix = "of Infamy", "Projectiles gain Impale effect as they travel farther, causing Impales they inflict to have up to 40% increased effect", statOrder = { 7254 }, level = 68, group = "ImpaleEffectFromDistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [2521866096] = { "Projectiles gain Impale effect as they travel farther, causing Impales they inflict to have up to 40% increased effect" }, } },
- ["MercenaryModClonesInheritGloves"] = { type = "Prefix", affix = "Infamous", "Your Blink and Mirror arrow clones use your Gloves", statOrder = { 5228 }, level = 68, group = "ClonesInheritGloves", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [3148879215] = { "Your Blink and Mirror arrow clones use your Gloves" }, } },
- ["MercenaryModSingleProjAOE"] = { type = "Suffix", affix = "of Infamy", "30% more Area of Effect with Bow Attacks that fire a single Projectile", statOrder = { 4728 }, level = 68, group = "SingleProjAOE", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2379109976] = { "30% more Area of Effect with Bow Attacks that fire a single Projectile" }, } },
- ["MercenaryModSpellslingerReservation"] = { type = "Suffix", affix = "of Infamy", "20% increased Mana Reservation Efficiency of Skills Supported by Spellslinger", statOrder = { 10198 }, level = 68, group = "EnchantmentSpellslingerManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack", "caster" }, tradeHashes = { [3305838454] = { "20% increased Mana Reservation Efficiency of Skills Supported by Spellslinger" }, } },
- ["MercenaryModMaimDOT"] = { type = "Suffix", affix = "of Infamy", "Enemies Maimed by you take 10% increased Damage Over Time", statOrder = { 6419 }, level = 68, group = "EnchantmentMaim", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2745149002] = { "Enemies Maimed by you take 10% increased Damage Over Time" }, } },
- ["MercenaryModUnaffectedShock"] = { type = "Suffix", affix = "of Infamy", "Unaffected by Shock while Channelling", statOrder = { 10478 }, level = 68, group = "UnaffectedByShockWhileChannel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2967697688] = { "Unaffected by Shock while Channelling" }, } },
- ["MercenaryModCurseEffect"] = { type = "Prefix", affix = "Infamous", "20% reduced Curse Duration", "15% increased Effect of your Curses", statOrder = { 1786, 2601 }, level = 68, group = "CurseEffectReduceCurseDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "15% increased Effect of your Curses" }, [3824372849] = { "20% reduced Curse Duration" }, } },
- ["MercenaryModCurseChillingAreas"] = { type = "Prefix", affix = "Infamous", "Curses on Enemies in your Chilling Areas have 15% increased Effect", statOrder = { 5782 }, level = 68, group = "CurseEffectChillingAreas", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, tradeHashes = { [608898129] = { "Curses on Enemies in your Chilling Areas have 15% increased Effect" }, } },
- ["MagicSearchingJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(75-100)% increased Effect of Socketed Magic Searching Eye Jewels", statOrder = { 8027 }, level = 50, group = "MagicSearchingJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1938324031] = { "(75-100)% increased Effect of Socketed Magic Searching Eye Jewels" }, } },
- ["MagicMurderousJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(75-100)% increased Effect of Socketed Magic Murderous Eye Jewels", statOrder = { 8026 }, level = 50, group = "MagicMurderousJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3949536301] = { "(75-100)% increased Effect of Socketed Magic Murderous Eye Jewels" }, } },
- ["MagicHypnoticJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(75-100)% increased Effect of Socketed Magic Hypnotic Eye Jewels", statOrder = { 8025 }, level = 50, group = "MagicHypnoticJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [654501336] = { "(75-100)% increased Effect of Socketed Magic Hypnotic Eye Jewels" }, } },
- ["MagicGhastlyJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(75-100)% increased Effect of Socketed Magic Ghastly Eye Jewels", statOrder = { 8024 }, level = 50, group = "MagicGhastlyJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2526952837] = { "(75-100)% increased Effect of Socketed Magic Ghastly Eye Jewels" }, } },
- ["RareSearchingJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(50-75)% increased Effect of Socketed Rare Searching Eye Jewels", statOrder = { 8031 }, level = 50, group = "RareSearchingJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3524275808] = { "(50-75)% increased Effect of Socketed Rare Searching Eye Jewels" }, } },
- ["RareMurderousJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(50-75)% increased Effect of Socketed Rare Murderous Eye Jewels", statOrder = { 8030 }, level = 50, group = "RareMurderousJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1217940944] = { "(50-75)% increased Effect of Socketed Rare Murderous Eye Jewels" }, } },
- ["RareHypnoticJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(50-75)% increased Effect of Socketed Rare Hypnotic Eye Jewels", statOrder = { 8029 }, level = 50, group = "RareHypnoticJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1337730278] = { "(50-75)% increased Effect of Socketed Rare Hypnotic Eye Jewels" }, } },
- ["RareGhastlyJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(50-75)% increased Effect of Socketed Rare Ghastly Eye Jewels", statOrder = { 8028 }, level = 50, group = "RareGhastlyJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1974290842] = { "(50-75)% increased Effect of Socketed Rare Ghastly Eye Jewels" }, } },
+ ["EnergyShieldDelayInfluence1"] = { type = "Prefix", affix = "Hunter's", "(15-20)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 68, group = "EnergyShieldDelay", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(15-20)% faster start of Energy Shield Recharge" }, } },
+ ["EnergyShieldDelayInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(20-24)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 75, group = "EnergyShieldDelay", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(20-24)% faster start of Energy Shield Recharge" }, } },
+ ["LifeGainPerTargetInfluence1"] = { type = "Prefix", affix = "Hunter's", "Gain (10-15) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 68, group = "LifeGainPerTarget", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (10-15) Life per Enemy Hit with Attacks" }, } },
+ ["LifeGainPerTargetInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Gain (16-20) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 75, group = "LifeGainPerTarget", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain (16-20) Life per Enemy Hit with Attacks" }, } },
+ ["ExertedAttackDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Exerted Attacks deal (25-27)% increased Damage", statOrder = { 6356 }, level = 68, group = "ExertedAttackDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (25-27)% increased Damage" }, } },
+ ["ExertedAttackDamageInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Exerted Attacks deal (28-31)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (28-31)% increased Damage" }, } },
+ ["ExertedAttackDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Exerted Attacks deal (32-35)% increased Damage", statOrder = { 6356 }, level = 80, group = "ExertedAttackDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Exerted Attacks deal (32-35)% increased Damage" }, } },
+ ["CurseOnHitElementalWeaknessInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2525 }, level = 75, group = "CurseOnHitLevelElementalWeaknessMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2028847114] = { "Curse Enemies with Elemental Weakness on Hit" }, } },
+ ["CurseOnHitElementalWeaknessInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2525 }, level = 80, group = "CurseOnHitLevelElementalWeaknessMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2028847114] = { "Curse Enemies with Elemental Weakness on Hit" }, } },
+ ["CurseOnHitDespairInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 75, group = "CurseOnHitDespairMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } },
+ ["CurseOnHitDespairInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 80, group = "CurseOnHitDespairMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } },
+ ["PoisonDamageAndDurationInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(5-6)% increased Poison Duration", "(8-12)% increased Damage with Poison", statOrder = { 3170, 3181 }, level = 68, group = "PoisonDamageAndDuration", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(5-6)% increased Poison Duration" }, [1290399200] = { "(8-12)% increased Damage with Poison" }, } },
+ ["PoisonDamageAndDurationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-8)% increased Poison Duration", "(13-17)% increased Damage with Poison", statOrder = { 3170, 3181 }, level = 75, group = "PoisonDamageAndDuration", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(7-8)% increased Poison Duration" }, [1290399200] = { "(13-17)% increased Damage with Poison" }, } },
+ ["PoisonDamageAndDurationInfluence3__"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Poison Duration", "(18-22)% increased Damage with Poison", statOrder = { 3170, 3181 }, level = 80, group = "PoisonDamageAndDuration", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(9-10)% increased Poison Duration" }, [1290399200] = { "(18-22)% increased Damage with Poison" }, } },
+ ["LightningDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Crusader's", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "(0.3-0.5)% of Lightning Damage Leeched as Life" }, } },
+ ["LightningDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, tradeHashes = { [80079005] = { "(0.3-0.5)% of Lightning Damage Leeched as Life" }, } },
+ ["LightningDamageESLeechInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield", statOrder = { 5017 }, level = 68, group = "LightningDamageESLeech", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "lightning" }, tradeHashes = { [308127151] = { "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield" }, } },
+ ["LightningDamageESLeechSufffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield", statOrder = { 5017 }, level = 68, group = "LightningDamageESLeech", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "lightning" }, tradeHashes = { [308127151] = { "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield" }, } },
+ ["DamagePer15IntelligenceInfluence1"] = { type = "Prefix", affix = "Crusader's", "1% increased Damage per 15 Intelligence", statOrder = { 6057 }, level = 80, group = "DamagePer15Intelligence", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3801128794] = { "1% increased Damage per 15 Intelligence" }, } },
+ ["DamagePerPowerChargeInfluence1"] = { type = "Prefix", affix = "Crusader's", "(3-4)% increased Damage per Power Charge", statOrder = { 6066 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(3-4)% increased Damage per Power Charge" }, } },
+ ["DamagePerPowerChargeInfluence2"] = { type = "Prefix", affix = "Crusader's", "(5-6)% increased Damage per Power Charge", statOrder = { 6066 }, level = 80, group = "IncreasedDamagePerPowerCharge", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(5-6)% increased Damage per Power Charge" }, } },
+ ["GlobalLightningGemLevelInfluence1_"] = { type = "Prefix", affix = "Crusader's", "+1 to Level of all Lightning Skill Gems", statOrder = { 7465 }, level = 82, group = "GlobalLightningGemLevel", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "gem" }, tradeHashes = { [1147690586] = { "+1 to Level of all Lightning Skill Gems" }, } },
+ ["LightningPenetrationInfluence1__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (4-7)% Lightning Resistance", statOrder = { 2984 }, level = 68, group = "LightningResistancePenetration", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (4-7)% Lightning Resistance" }, } },
+ ["LightningPenetrationInfluence2__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (8-10)% Lightning Resistance", statOrder = { 2984 }, level = 82, group = "LightningResistancePenetration", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (8-10)% Lightning Resistance" }, } },
+ ["MaximumLifeLeechRateHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [4118987751] = { "(15-25)% increased Maximum total Life Recovery per second from Leech" }, } },
+ ["MaximumLifeLeechRateHighSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [4118987751] = { "(15-25)% increased Maximum total Life Recovery per second from Leech" }, } },
+ ["MaximumEnergyShieldLeechRateHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "(15-25)% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1734 }, level = 68, group = "MaximumEnergyShieldLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2013799819] = { "(15-25)% increased Maximum total Energy Shield Recovery per second from Leech" }, } },
+ ["MaximumEnergyShieldLeechRateHighSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(15-25)% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1734 }, level = 68, group = "MaximumEnergyShieldLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2013799819] = { "(15-25)% increased Maximum total Energy Shield Recovery per second from Leech" }, } },
+ ["MaximumSpellBlockChanceInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Chance to Block Spell Damage", statOrder = { 1989 }, level = 68, group = "MaximumSpellBlockChance", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2388574377] = { "+2% to maximum Chance to Block Spell Damage" }, } },
+ ["WrathReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10629 }, level = 75, group = "WrathReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [1761642973] = { "Wrath has (40-50)% increased Mana Reservation Efficiency" }, } },
+ ["WrathReservationEfficiencyInfluence1________"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10630 }, level = 75, group = "WrathReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [3444518809] = { "Wrath has (40-50)% increased Mana Reservation Efficiency" }, } },
+ ["DisciplineReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Discipline has (50-60)% increased Mana Reservation Efficiency", statOrder = { 6188 }, level = 75, group = "DisciplineReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [1692887998] = { "Discipline has (50-60)% increased Mana Reservation Efficiency" }, } },
+ ["DisciplineReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Discipline has (50-60)% increased Mana Reservation Efficiency", statOrder = { 6189 }, level = 75, group = "DisciplineReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [2081344089] = { "Discipline has (50-60)% increased Mana Reservation Efficiency" }, } },
+ ["PurityOfLightningReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Purity of Lightning has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9774 }, level = 75, group = "PurityOfLightningReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [1450978702] = { "Purity of Lightning has (50-60)% increased Mana Reservation Efficiency" }, } },
+ ["PurityOfLightningReservationEfficiencyInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Purity of Lightning has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9775 }, level = 75, group = "PurityOfLightningReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [3411256933] = { "Purity of Lightning has (50-60)% increased Mana Reservation Efficiency" }, } },
+ ["ZealotryReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10722 }, level = 75, group = "ZealotryReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [4216444167] = { "Zealotry has (40-50)% increased Mana Reservation Efficiency" }, } },
+ ["ZealotryReservationEfficiencyInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10723 }, level = 75, group = "ZealotryReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [168308685] = { "Zealotry has (40-50)% increased Mana Reservation Efficiency" }, } },
+ ["SpellBlockAmuletInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(4-5)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 68, group = "SpellBlockPercentage", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(4-5)% Chance to Block Spell Damage" }, } },
+ ["SpellBlockAmuletInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(6-7)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 80, group = "SpellBlockPercentage", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(6-7)% Chance to Block Spell Damage" }, } },
+ ["FireDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Warlord's", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(0.3-0.5)% of Fire Damage Leeched as Life" }, } },
+ ["FireDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(0.3-0.5)% of Fire Damage Leeched as Life" }, } },
+ ["FireDamageESLeechInfluence1"] = { type = "Prefix", affix = "Warlord's", "(0.2-0.4)% of Fire Damage Leeched as Energy Shield", statOrder = { 5016 }, level = 68, group = "FireDamageESLeech", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "fire" }, tradeHashes = { [3885409671] = { "(0.2-0.4)% of Fire Damage Leeched as Energy Shield" }, } },
+ ["FireDamageESLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(0.2-0.4)% of Fire Damage Leeched as Energy Shield", statOrder = { 5016 }, level = 68, group = "FireDamageESLeech", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "fire" }, tradeHashes = { [3885409671] = { "(0.2-0.4)% of Fire Damage Leeched as Energy Shield" }, } },
+ ["DamagePer15StrengthInfluence1"] = { type = "Prefix", affix = "Warlord's", "1% increased Damage per 15 Strength", statOrder = { 6058 }, level = 80, group = "DamagePer15Strength", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3948776386] = { "1% increased Damage per 15 Strength" }, } },
+ ["DamagePerEnduranceChargeInfluence1__"] = { type = "Prefix", affix = "Warlord's", "(3-4)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 68, group = "DamagePerEnduranceCharge", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3515686789] = { "(3-4)% increased Damage per Endurance Charge" }, } },
+ ["DamagePerEnduranceChargeInfluence2"] = { type = "Prefix", affix = "Warlord's", "(5-6)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 80, group = "DamagePerEnduranceCharge", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3515686789] = { "(5-6)% increased Damage per Endurance Charge" }, } },
+ ["GlobalFireGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of all Fire Skill Gems", statOrder = { 6586 }, level = 82, group = "GlobalFireGemLevel", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "gem" }, tradeHashes = { [599749213] = { "+1 to Level of all Fire Skill Gems" }, } },
+ ["GlobalPhysicalGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of all Physical Skill Gems", statOrder = { 9671 }, level = 82, group = "GlobalPhysicalGemLevel", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "gem" }, tradeHashes = { [619213329] = { "+1 to Level of all Physical Skill Gems" }, } },
+ ["FirePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (4-7)% Fire Resistance", statOrder = { 2981 }, level = 68, group = "FireResistancePenetration", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (4-7)% Fire Resistance" }, } },
+ ["FirePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (8-10)% Fire Resistance", statOrder = { 2981 }, level = 82, group = "FireResistancePenetration", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (8-10)% Fire Resistance" }, } },
+ ["MaximumAttackBlockChanceInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+2% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 68, group = "MaximumBlockChance", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [4124805414] = { "+2% to maximum Chance to Block Attack Damage" }, } },
+ ["AngerReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (40-50)% increased Mana Reservation Efficiency", statOrder = { 4686 }, level = 75, group = "AngerReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [2963485753] = { "Anger has (40-50)% increased Mana Reservation Efficiency" }, } },
+ ["AngerReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (40-50)% increased Mana Reservation Efficiency", statOrder = { 4687 }, level = 75, group = "AngerReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [2549369799] = { "Anger has (40-50)% increased Mana Reservation Efficiency" }, } },
+ ["DeterminationReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Determination has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6172 }, level = 75, group = "DeterminationReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [2721871046] = { "Determination has (40-50)% increased Mana Reservation Efficiency" }, } },
+ ["DeterminationReservationEfficiencyInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Determination has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6173 }, level = 75, group = "DeterminationReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [325889252] = { "Determination has (40-50)% increased Mana Reservation Efficiency" }, } },
+ ["PurityOfFireReducedReservationInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Purity of Fire has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9768 }, level = 75, group = "PurityOfFireReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [1135152940] = { "Purity of Fire has (50-60)% increased Mana Reservation Efficiency" }, } },
+ ["PurityOfFireReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Purity of Fire has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9769 }, level = 75, group = "PurityOfFireReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [3003688066] = { "Purity of Fire has (50-60)% increased Mana Reservation Efficiency" }, } },
+ ["PrideReducedReservationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "Pride has (40-50)% increased Mana Reservation Efficiency", statOrder = { 9714 }, level = 75, group = "PrideReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [3484910620] = { "Pride has (40-50)% increased Mana Reservation Efficiency" }, } },
+ ["PrideReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Pride has (40-50)% increased Mana Reservation Efficiency", statOrder = { 9715 }, level = 75, group = "PrideReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [3993865658] = { "Pride has (40-50)% increased Mana Reservation Efficiency" }, } },
+ ["ColdDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "(0.3-0.5)% of Cold Damage Leeched as Life" }, } },
+ ["ColdDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of Redemption", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, tradeHashes = { [3999401129] = { "(0.3-0.5)% of Cold Damage Leeched as Life" }, } },
+ ["ColdDamageESLeechInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(0.2-0.4)% of Cold Damage Leeched as Energy Shield", statOrder = { 5014 }, level = 68, group = "ColdDamageESLeech", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "cold" }, tradeHashes = { [1939452467] = { "(0.2-0.4)% of Cold Damage Leeched as Energy Shield" }, } },
+ ["ColdDamageESLeechSuffixInfluence1"] = { type = "Suffix", affix = "of Redemption", "(0.2-0.4)% of Cold Damage Leeched as Energy Shield", statOrder = { 5014 }, level = 68, group = "ColdDamageESLeech", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "cold" }, tradeHashes = { [1939452467] = { "(0.2-0.4)% of Cold Damage Leeched as Energy Shield" }, } },
+ ["DamagePer15DexterityInfluence1"] = { type = "Prefix", affix = "Redeemer's", "1% increased Damage per 15 Dexterity", statOrder = { 6056 }, level = 80, group = "DamagePer15Dexterity", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2062174346] = { "1% increased Damage per 15 Dexterity" }, } },
+ ["DamagePerFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(3-4)% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 68, group = "DamagePerFrenzyCharge", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [902747843] = { "(3-4)% increased Damage per Frenzy Charge" }, } },
+ ["DamagePerFrenzyChargeInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "(5-6)% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 80, group = "DamagePerFrenzyCharge", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [902747843] = { "(5-6)% increased Damage per Frenzy Charge" }, } },
+ ["GlobalColdGemLevelInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "+1 to Level of all Cold Skill Gems", statOrder = { 5836 }, level = 82, group = "GlobalColdGemLevel", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "gem" }, tradeHashes = { [1078455967] = { "+1 to Level of all Cold Skill Gems" }, } },
+ ["ColdPenetrationInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (4-7)% Cold Resistance", statOrder = { 2983 }, level = 68, group = "ColdResistancePenetration", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (4-7)% Cold Resistance" }, } },
+ ["ColdPenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (8-10)% Cold Resistance", statOrder = { 2983 }, level = 82, group = "ColdResistancePenetration", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (8-10)% Cold Resistance" }, } },
+ ["MaximumAttackDodgeChanceInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Prevent +2% of Suppressed Spell Damage", statOrder = { 1141 }, level = 68, group = "SpellDamageSuppressed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4116705863] = { "Prevent +2% of Suppressed Spell Damage" }, } },
+ ["MaximumSpellDodgeChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "Prevent +2% of Suppressed Spell Damage", statOrder = { 1141 }, level = 68, group = "SpellDamageSuppressed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4116705863] = { "Prevent +2% of Suppressed Spell Damage" }, } },
+ ["SpellDamageSuppressedInfluence1"] = { type = "Suffix", affix = "of Redemption", "Prevent +(3-5)% of Suppressed Spell Damage", statOrder = { 1141 }, level = 68, group = "SpellDamageSuppressed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4116705863] = { "Prevent +(3-5)% of Suppressed Spell Damage" }, } },
+ ["HatredReducedReservationInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Hatred has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6941 }, level = 75, group = "HatredReservation", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [1920370417] = { "Hatred has (40-50)% increased Mana Reservation Efficiency" }, } },
+ ["HatredReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6942 }, level = 75, group = "HatredReservationEfficiency", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [2156140483] = { "Hatred has (40-50)% increased Mana Reservation Efficiency" }, } },
+ ["GraceReducedReservationInfluence1"] = { type = "Suffix", affix = "of Redemption", "Grace has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6902 }, level = 75, group = "GraceReservation", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [1803598623] = { "Grace has (40-50)% increased Mana Reservation Efficiency" }, } },
+ ["GraceReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of Redemption", "Grace has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6903 }, level = 75, group = "GraceReservationEfficiency", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [900639351] = { "Grace has (40-50)% increased Mana Reservation Efficiency" }, } },
+ ["PurityOfIceReducedReservationInfluence1__"] = { type = "Suffix", affix = "of Redemption", "Purity of Ice has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9771 }, level = 75, group = "PurityOfIceReservation", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [2665518524] = { "Purity of Ice has (50-60)% increased Mana Reservation Efficiency" }, } },
+ ["PurityOfIceReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of Redemption", "Purity of Ice has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9772 }, level = 75, group = "PurityOfIceReservationEfficiency", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, tradeHashes = { [139925400] = { "Purity of Ice has (50-60)% increased Mana Reservation Efficiency" }, } },
+ ["WarcrySpeedInfluence1"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased Warcry Speed", statOrder = { 3277 }, level = 68, group = "WarcrySpeed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [1316278494] = { "(21-25)% increased Warcry Speed" }, } },
+ ["WarcrySpeedInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(26-30)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [1316278494] = { "(26-30)% increased Warcry Speed" }, } },
+ ["WarcrySpeedInfluence3"] = { type = "Suffix", affix = "of Redemption", "(31-35)% increased Warcry Speed", statOrder = { 3277 }, level = 80, group = "WarcrySpeed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [1316278494] = { "(31-35)% increased Warcry Speed" }, } },
+ ["WarcrySpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(15-20)% increased Warcry Speed", statOrder = { 3277 }, level = 42, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(15-20)% increased Warcry Speed" }, } },
+ ["WarcrySpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "(21-25)% increased Warcry Speed", statOrder = { 3277 }, level = 58, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(21-25)% increased Warcry Speed" }, } },
+ ["WarcrySpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "(26-30)% increased Warcry Speed", statOrder = { 3277 }, level = 74, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(26-30)% increased Warcry Speed" }, } },
+ ["WarcrySpeedEssence4_"] = { type = "Suffix", affix = "of the Essence", "(31-35)% increased Warcry Speed", statOrder = { 3277 }, level = 82, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(31-35)% increased Warcry Speed" }, } },
+ ["DoubleDamageStunnedRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to deal Double Damage if you have Stunned an Enemy Recently", statOrder = { 5661 }, level = 75, group = "DoubleDamageStunnedRecently", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [4224978303] = { "(5-7)% chance to deal Double Damage if you have Stunned an Enemy Recently" }, } },
+ ["DoubleDamageStunnedRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to deal Double Damage if you have Stunned an Enemy Recently", statOrder = { 5661 }, level = 83, group = "DoubleDamageStunnedRecently", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [4224978303] = { "(8-10)% chance to deal Double Damage if you have Stunned an Enemy Recently" }, } },
+ ["PhysicalDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Hunter's", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "(0.3-0.5)% of Physical Damage Leeched as Life" }, } },
+ ["PhysicalDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "physical" }, tradeHashes = { [3764265320] = { "(0.3-0.5)% of Physical Damage Leeched as Life" }, } },
+ ["ChaosDamageLifeLeechInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(0.3-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "(0.3-0.5)% of Chaos Damage Leeched as Life" }, } },
+ ["ChaosDamageLifeLeechSuffixInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(0.3-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "chaos" }, tradeHashes = { [744082851] = { "(0.3-0.5)% of Chaos Damage Leeched as Life" }, } },
+ ["GlobalChaosGemLevelInfluence1__"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Chaos Skill Gems", statOrder = { 5756 }, level = 82, group = "GlobalChaosGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [67169579] = { "+1 to Level of all Chaos Skill Gems" }, } },
+ ["GlobalStrengthGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Strength Skill Gems", statOrder = { 10257 }, level = 82, group = "GlobalStrengthGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [2339012908] = { "+1 to Level of all Strength Skill Gems" }, } },
+ ["GlobalDexterityGemLevelInfluence1_"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Dexterity Skill Gems", statOrder = { 6177 }, level = 82, group = "GlobalDexterityGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [146924886] = { "+1 to Level of all Dexterity Skill Gems" }, } },
+ ["GlobalIntelligenceGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Intelligence Skill Gems", statOrder = { 7292 }, level = 82, group = "GlobalIntelligenceGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute", "gem" }, tradeHashes = { [493812998] = { "+1 to Level of all Intelligence Skill Gems" }, } },
+ ["ElementalPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (3-4)% Elemental Resistances", statOrder = { 2980 }, level = 68, group = "ElementalPenetration", weightKey = { "amulet_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (3-4)% Elemental Resistances" }, } },
+ ["ElementalPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (5-6)% Elemental Resistances", statOrder = { 2980 }, level = 82, group = "ElementalPenetration", weightKey = { "amulet_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (5-6)% Elemental Resistances" }, } },
+ ["MalevolenceReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (40-50)% increased Mana Reservation Efficiency", statOrder = { 8161 }, level = 75, group = "MalevolenceReservation", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3266567165] = { "Malevolence has (40-50)% increased Mana Reservation Efficiency" }, } },
+ ["MalevolenceReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (40-50)% increased Mana Reservation Efficiency", statOrder = { 8162 }, level = 75, group = "MalevolenceReservationEfficiency", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3383226338] = { "Malevolence has (40-50)% increased Mana Reservation Efficiency" }, } },
+ ["RandomChargeOnKillInfluence1___"] = { type = "Suffix", affix = "of the Hunt", "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3612 }, level = 68, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [498214257] = { "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } },
+ ["RandomChargeOnKillInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3612 }, level = 75, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [498214257] = { "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill" }, } },
+ ["ReducedAttributeRequirementsInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrder = { 2552 }, level = 68, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have (5-10)% reduced Attribute Requirements" }, } },
+ ["ReducedAttributeRequirementsInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Items and Gems have (11-15)% reduced Attribute Requirements", statOrder = { 2552 }, level = 75, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [752930724] = { "Items and Gems have (11-15)% reduced Attribute Requirements" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence1"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1232, 1651 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1232, 1651 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence3"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1232, 1651 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1232, 1651 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence5_"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1232, 1651 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [55876295] = { "0.6% of Physical Attack Damage Leeched as Life" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence1"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1232, 1413 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [210067635] = { "(3-4)% increased Attack Speed" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence2"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1232, 1413 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [210067635] = { "(3-4)% increased Attack Speed" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence3"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1232, 1413 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [210067635] = { "(3-4)% increased Attack Speed" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1232, 1413 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [210067635] = { "(3-4)% increased Attack Speed" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1232, 1413 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [210067635] = { "(3-4)% increased Attack Speed" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1232, 1464 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [2375316951] = { "(8-10)% increased Critical Strike Chance" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1232, 1464 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [2375316951] = { "(8-10)% increased Critical Strike Chance" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1232, 1464 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [2375316951] = { "(8-10)% increased Critical Strike Chance" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1232, 1464 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [2375316951] = { "(8-10)% increased Critical Strike Chance" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1232, 1464 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [2375316951] = { "(8-10)% increased Critical Strike Chance" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence1"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1232, 1488 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence2"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1232, 1488 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1232, 1488 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1232, 1488 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1232, 1488 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [3556824919] = { "+(10-15)% to Global Critical Strike Multiplier" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndStunInfluence1__"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1232, 1517 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndStunInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1232, 1517 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndStunInfluence3"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1232, 1517 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 150, 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndStunInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1232, 1517 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndStunInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1232, 1517 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 50, 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [1443060084] = { "(6-8)% reduced Enemy Stun Threshold" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1232, 1880 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [280731498] = { "(10-15)% increased Area of Effect" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1232, 1880 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [280731498] = { "(10-15)% increased Area of Effect" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1232, 1880 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 150, 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [280731498] = { "(10-15)% increased Area of Effect" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1232, 1880 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [280731498] = { "(10-15)% increased Area of Effect" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1232, 1880 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 50, 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [280731498] = { "(10-15)% increased Area of Effect" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence1"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1232, 1796 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [3759663284] = { "(20-25)% increased Projectile Speed" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1232, 1796 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [3759663284] = { "(20-25)% increased Projectile Speed" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1232, 1796 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [3759663284] = { "(20-25)% increased Projectile Speed" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1232, 1796 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [3759663284] = { "(20-25)% increased Projectile Speed" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1232, 1796 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [3759663284] = { "(20-25)% increased Projectile Speed" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(25-34)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1232, 1790 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence2"] = { type = "Prefix", affix = "Hunter's", "(35-44)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1232, 1790 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence3"] = { type = "Prefix", affix = "Hunter's", "(45-54)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1232, 1790 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence4_"] = { type = "Prefix", affix = "Hunter's", "(55-64)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1232, 1790 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } },
+ ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence5_"] = { type = "Prefix", affix = "Hunter's", "(65-69)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1232, 1790 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-69)% increased Physical Damage" }, [2067062068] = { "Projectiles Pierce an additional Target" }, } },
+ ["LocalAddedFireDamageAndPenetrationInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (8-10) to (15-18) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 68, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (8-10) to (15-18) Fire Damage" }, } },
+ ["LocalAddedFireDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (12-16) to (24-28) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 71, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (12-16) to (24-28) Fire Damage" }, } },
+ ["LocalAddedFireDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (17-22) to (33-39) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 74, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (17-22) to (33-39) Fire Damage" }, } },
+ ["LocalAddedFireDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (21-28) to (42-49) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 77, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (21-28) to (42-49) Fire Damage" }, } },
+ ["LocalAddedFireDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (26-35) to (53-61) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 80, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (26-35) to (53-61) Fire Damage" }, } },
+ ["LocalAddedFireDamageAndPenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "Adds (15-19) to (28-34) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 68, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (15-19) to (28-34) Fire Damage" }, } },
+ ["LocalAddedFireDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (22-30) to (44-52) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 71, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (22-30) to (44-52) Fire Damage" }, } },
+ ["LocalAddedFireDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (31-41) to (61-72) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 74, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (31-41) to (61-72) Fire Damage" }, } },
+ ["LocalAddedFireDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (39-52) to (78-90) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 77, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (39-52) to (78-90) Fire Damage" }, } },
+ ["LocalAddedFireDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (49-65) to (99-114) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 80, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (5-7)% Fire Resistance" }, [709508406] = { "Adds (49-65) to (99-114) Fire Damage" }, } },
+ ["LocalAddedColdDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (7-9) to (14-16) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 68, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (7-9) to (14-16) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } },
+ ["LocalAddedColdDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (11-14) to (22-25) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 71, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-14) to (22-25) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } },
+ ["LocalAddedColdDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (15-20) to (30-35) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 74, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (15-20) to (30-35) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } },
+ ["LocalAddedColdDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (19-25) to (38-44) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 77, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (19-25) to (38-44) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } },
+ ["LocalAddedColdDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (23-32) to (48-55) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 80, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (23-32) to (48-55) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } },
+ ["LocalAddedColdDamageAndPenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (13-16) to (26-30) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 68, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (13-16) to (26-30) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } },
+ ["LocalAddedColdDamageAndPenetrationTwoHandInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Adds (21-26) to (41-46) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 71, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (21-26) to (41-46) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } },
+ ["LocalAddedColdDamageAndPenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Adds (28-37) to (56-65) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 74, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (28-37) to (56-65) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } },
+ ["LocalAddedColdDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (35-46) to (71-81) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 77, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (35-46) to (71-81) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } },
+ ["LocalAddedColdDamageAndPenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Redeemer's", "Adds (43-59) to (89-102) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 80, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (43-59) to (89-102) Cold Damage" }, [1740229525] = { "Attacks with this Weapon Penetrate (5-7)% Cold Resistance" }, } },
+ ["LocalAddedLightningDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds 2 to (25-29) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 68, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds 2 to (25-29) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageAndPenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (40-45) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 71, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (1-4) to (40-45) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (2-5) to (55-63) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 74, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (2-5) to (55-63) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (70-79) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 77, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (2-6) to (70-79) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (3-8) to (89-99) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 80, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (3-8) to (89-99) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Adds 3 to (46-53) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 68, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds 3 to (46-53) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (2-7) to (74-84) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 71, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (2-7) to (74-84) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (3-9) to (102-117) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 74, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (3-9) to (102-117) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Crusader's", "Adds (3-12) to (130-146) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 77, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (3-12) to (130-146) Lightning Damage" }, } },
+ ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (6-15) to (165-183) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 80, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance" }, [3336890334] = { "Adds (6-15) to (165-183) Lightning Damage" }, } },
+ ["LocalAddedChaosDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (5-7) to (11-13) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7875 }, level = 68, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (5-7) to (11-13) Chaos Damage" }, } },
+ ["LocalAddedChaosDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (9-11) to (17-20) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7875 }, level = 71, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (9-11) to (17-20) Chaos Damage" }, } },
+ ["LocalAddedChaosDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (12-16) to (24-28) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7875 }, level = 74, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (12-16) to (24-28) Chaos Damage" }, } },
+ ["LocalAddedChaosDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Hunter's", "Adds (15-20) to (30-35) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7875 }, level = 77, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (15-20) to (30-35) Chaos Damage" }, } },
+ ["LocalAddedChaosDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Hunter's", "Adds (18-25) to (38-44) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7875 }, level = 80, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (18-25) to (38-44) Chaos Damage" }, } },
+ ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence1__"] = { type = "Prefix", affix = "Hunter's", "Adds (9-13) to (21-24) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7875 }, level = 68, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (9-13) to (21-24) Chaos Damage" }, } },
+ ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (16-21) to (32-37) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7875 }, level = 71, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (16-21) to (32-37) Chaos Damage" }, } },
+ ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (22-29) to (44-52) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7875 }, level = 74, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (22-29) to (44-52) Chaos Damage" }, } },
+ ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Hunter's", "Adds (28-37) to (57-65) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7875 }, level = 77, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (28-37) to (57-65) Chaos Damage" }, } },
+ ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Hunter's", "Adds (35-48) to (72-81) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7875 }, level = 80, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance" }, [2223678961] = { "Adds (35-48) to (72-81) Chaos Damage" }, } },
+ ["SpellAddedFireDamagePenetrationInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (6-8) to (12-14) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1404, 2981 }, level = 68, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (6-8) to (12-14) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } },
+ ["SpellAddedFireDamagePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (10-13) to (19-22) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1404, 2981 }, level = 71, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-13) to (19-22) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } },
+ ["SpellAddedFireDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (13-18) to (27-31) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1404, 2981 }, level = 74, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-18) to (27-31) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } },
+ ["SpellAddedFireDamagePenetrationInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (17-22) to (33-39) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1404, 2981 }, level = 77, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (17-22) to (33-39) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } },
+ ["SpellAddedFireDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (21-28) to (42-49) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1404, 2981 }, level = 80, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (21-28) to (42-49) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } },
+ ["SpellAddedFireDamagePenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (8-11) to (17-19) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1404, 2981 }, level = 68, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (8-11) to (17-19) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } },
+ ["SpellAddedFireDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (13-17) to (26-30) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1404, 2981 }, level = 71, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-17) to (26-30) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } },
+ ["SpellAddedFireDamagePenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Adds (18-24) to (36-42) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1404, 2981 }, level = 74, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (18-24) to (36-42) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } },
+ ["SpellAddedFireDamagePenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (23-30) to (45-53) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1404, 2981 }, level = 77, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (23-30) to (45-53) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } },
+ ["SpellAddedFireDamagePenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Warlord's", "Adds (28-38) to (57-66) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1404, 2981 }, level = 80, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (28-38) to (57-66) Fire Damage to Spells" }, [2653955271] = { "Damage Penetrates (5-7)% Fire Resistance" }, } },
+ ["SpellAddedColdDamagePenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (5-7) to (10-12) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1405, 2983 }, level = 68, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, [2469416729] = { "Adds (5-7) to (10-12) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamagePenetrationInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Adds (8-10) to (16-18) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1405, 2983 }, level = 71, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, [2469416729] = { "Adds (8-10) to (16-18) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (11-15) to (22-25) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1405, 2983 }, level = 74, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, [2469416729] = { "Adds (11-15) to (22-25) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamagePenetrationInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (14-18) to (27-32) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1405, 2983 }, level = 77, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, [2469416729] = { "Adds (14-18) to (27-32) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (17-23) to (34-40) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1405, 2983 }, level = 80, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, [2469416729] = { "Adds (17-23) to (34-40) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamagePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (8-10) to (15-18) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1405, 2983 }, level = 68, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, [2469416729] = { "Adds (8-10) to (15-18) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (12-16) to (23-27) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1405, 2983 }, level = 71, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, [2469416729] = { "Adds (12-16) to (23-27) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamagePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-22) to (33-38) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1405, 2983 }, level = 74, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, [2469416729] = { "Adds (16-22) to (33-38) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamagePenetrationTwoHandInfluence4_"] = { type = "Prefix", affix = "Redeemer's", "Adds (21-27) to (41-48) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1405, 2983 }, level = 77, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, [2469416729] = { "Adds (21-27) to (41-48) Cold Damage to Spells" }, } },
+ ["SpellAddedColdDamagePenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (26-34) to (52-60) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1405, 2983 }, level = 80, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-7)% Cold Resistance" }, [2469416729] = { "Adds (26-34) to (52-60) Cold Damage to Spells" }, } },
+ ["SpellAddedLightningDamagePenetrationInfluence1___"] = { type = "Prefix", affix = "Crusader's", "Adds (1-2) to (21-22) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1406, 2984 }, level = 68, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (21-22) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } },
+ ["SpellAddedLightningDamagePenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Adds (1-3) to (33-35) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1406, 2984 }, level = 71, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-3) to (33-35) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } },
+ ["SpellAddedLightningDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (46-49) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1406, 2984 }, level = 74, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (46-49) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } },
+ ["SpellAddedLightningDamagePenetrationInfluence4_"] = { type = "Prefix", affix = "Crusader's", "Adds (2-5) to (58-61) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1406, 2984 }, level = 77, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (58-61) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } },
+ ["SpellAddedLightningDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (73-77) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1406, 2984 }, level = 80, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (73-77) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates 4% Lightning Resistance" }, } },
+ ["SpellAddedLightningDamagePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds (1-3) to (32-34) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1406, 2984 }, level = 68, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-3) to (32-34) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } },
+ ["SpellAddedLightningDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (49-52) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1406, 2984 }, level = 71, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (49-52) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } },
+ ["SpellAddedLightningDamagePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (69-73) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1406, 2984 }, level = 74, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-6) to (69-73) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } },
+ ["SpellAddedLightningDamagePenetrationTwoHandInfluence4__"] = { type = "Prefix", affix = "Crusader's", "Adds (2-7) to (87-92) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1406, 2984 }, level = 77, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-7) to (87-92) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } },
+ ["SpellAddedLightningDamagePenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Crusader's", "Adds (3-9) to (109-115) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1406, 2984 }, level = 80, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-9) to (109-115) Lightning Damage to Spells" }, [818778753] = { "Damage Penetrates (5-7)% Lightning Resistance" }, } },
+ ["LocalWeaponFirePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (9-10)% Fire Resistance", statOrder = { 3762 }, level = 68, group = "LocalFirePenetration", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (9-10)% Fire Resistance" }, } },
+ ["LocalWeaponFirePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (11-12)% Fire Resistance", statOrder = { 3762 }, level = 73, group = "LocalFirePenetration", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (11-12)% Fire Resistance" }, } },
+ ["LocalWeaponFirePenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrder = { 3762 }, level = 78, group = "LocalFirePenetration", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (13-15)% Fire Resistance" }, } },
+ ["LocalWeaponColdPenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (9-10)% Cold Resistance", statOrder = { 3763 }, level = 68, group = "LocalColdPenetration", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1740229525] = { "Attacks with this Weapon Penetrate (9-10)% Cold Resistance" }, } },
+ ["LocalWeaponColdPenetrationInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (11-12)% Cold Resistance", statOrder = { 3763 }, level = 73, group = "LocalColdPenetration", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1740229525] = { "Attacks with this Weapon Penetrate (11-12)% Cold Resistance" }, } },
+ ["LocalWeaponColdPenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrder = { 3763 }, level = 78, group = "LocalColdPenetration", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1740229525] = { "Attacks with this Weapon Penetrate (13-15)% Cold Resistance" }, } },
+ ["LocalWeaponLightningPenetrationInfluence1"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (9-10)% Lightning Resistance", statOrder = { 3764 }, level = 68, group = "LocalLightningPenetration", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (9-10)% Lightning Resistance" }, } },
+ ["LocalWeaponLightningPenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (11-12)% Lightning Resistance", statOrder = { 3764 }, level = 73, group = "LocalLightningPenetration", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "bow_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (11-12)% Lightning Resistance" }, } },
+ ["LocalWeaponLightningPenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrder = { 3764 }, level = 78, group = "LocalLightningPenetration", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "bow_crusader", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance" }, } },
+ ["LocalWeaponChaosPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (6-7)% Chaos Resistance", statOrder = { 7875 }, level = 68, group = "LocalChaosPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (6-7)% Chaos Resistance" }, } },
+ ["LocalWeaponChaosPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (8-9)% Chaos Resistance", statOrder = { 7875 }, level = 73, group = "LocalChaosPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (8-9)% Chaos Resistance" }, } },
+ ["LocalWeaponChaosPenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (10-12)% Chaos Resistance", statOrder = { 7875 }, level = 78, group = "LocalChaosPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (10-12)% Chaos Resistance" }, } },
+ ["LocalWeaponElementalPenetrationInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (6-7)% Elemental Resistances", statOrder = { 3761 }, level = 68, group = "LocalElementalPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate (6-7)% Elemental Resistances" }, } },
+ ["LocalWeaponElementalPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (8-9)% Elemental Resistances", statOrder = { 3761 }, level = 73, group = "LocalElementalPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate (8-9)% Elemental Resistances" }, } },
+ ["LocalWeaponElementalPenetrationInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (10-12)% Elemental Resistances", statOrder = { 3761 }, level = 78, group = "LocalElementalPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate (10-12)% Elemental Resistances" }, } },
+ ["FireResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 68, group = "FireResistancePenetration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } },
+ ["FireResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 7% Fire Resistance", statOrder = { 2981 }, level = 73, group = "FireResistancePenetration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } },
+ ["FireResistancePenetrationInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 78, group = "FireResistancePenetration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } },
+ ["FireResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (10-11)% Fire Resistance", statOrder = { 2981 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (10-11)% Fire Resistance" }, } },
+ ["FireResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (12-13)% Fire Resistance", statOrder = { 2981 }, level = 73, group = "FireResistancePenetration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (12-13)% Fire Resistance" }, } },
+ ["FireResistancePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (14-15)% Fire Resistance", statOrder = { 2981 }, level = 78, group = "FireResistancePenetration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (14-15)% Fire Resistance" }, } },
+ ["ColdResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 68, group = "ColdResistancePenetration", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } },
+ ["ColdResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 7% Cold Resistance", statOrder = { 2983 }, level = 73, group = "ColdResistancePenetration", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } },
+ ["ColdResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 78, group = "ColdResistancePenetration", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } },
+ ["ColdResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (10-11)% Cold Resistance", statOrder = { 2983 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (10-11)% Cold Resistance" }, } },
+ ["ColdResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (12-13)% Cold Resistance", statOrder = { 2983 }, level = 73, group = "ColdResistancePenetration", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (12-13)% Cold Resistance" }, } },
+ ["ColdResistancePenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (14-15)% Cold Resistance", statOrder = { 2983 }, level = 78, group = "ColdResistancePenetration", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (14-15)% Cold Resistance" }, } },
+ ["LightningResistancePenetrationInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 68, group = "LightningResistancePenetration", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2984 }, level = 73, group = "LightningResistancePenetration", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 78, group = "LightningResistancePenetration", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (10-11)% Lightning Resistance", statOrder = { 2984 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (10-11)% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationTwoHandInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (12-13)% Lightning Resistance", statOrder = { 2984 }, level = 73, group = "LightningResistancePenetration", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (12-13)% Lightning Resistance" }, } },
+ ["LightningResistancePenetrationTwoHandInfluence3__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (14-15)% Lightning Resistance", statOrder = { 2984 }, level = 78, group = "LightningResistancePenetration", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (14-15)% Lightning Resistance" }, } },
+ ["ElementalResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2980 }, level = 68, group = "ElementalPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 4% Elemental Resistances" }, } },
+ ["ElementalResistancePenetrationInfluence2_"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 5% Elemental Resistances", statOrder = { 2980 }, level = 73, group = "ElementalPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 5% Elemental Resistances" }, } },
+ ["ElementalResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 6% Elemental Resistances", statOrder = { 2980 }, level = 78, group = "ElementalPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 6% Elemental Resistances" }, } },
+ ["ElementalResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (7-8)% Elemental Resistances", statOrder = { 2980 }, level = 68, group = "ElementalPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (7-8)% Elemental Resistances" }, } },
+ ["ElementalResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (9-10)% Elemental Resistances", statOrder = { 2980 }, level = 73, group = "ElementalPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (9-10)% Elemental Resistances" }, } },
+ ["ElementalResistancePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (11-12)% Elemental Resistances", statOrder = { 2980 }, level = 78, group = "ElementalPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (11-12)% Elemental Resistances" }, } },
+ ["PhysicalAddedAsExtraFireWeaponInfluence1"] = { type = "Prefix", affix = "Warlord's", "Gain (7-12)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (7-12)% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsExtraFireWeaponInfluence2"] = { type = "Prefix", affix = "Warlord's", "Gain (13-17)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 73, group = "PhysicalAddedAsFire", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (13-17)% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsExtraFireWeaponInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Gain (18-20)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 78, group = "PhysicalAddedAsFire", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (18-20)% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence1__"] = { type = "Prefix", affix = "Warlord's", "Gain (16-20)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (16-20)% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence2__"] = { type = "Prefix", affix = "Warlord's", "Gain (21-26)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 73, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (21-26)% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Warlord's", "Gain (27-30)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 78, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (27-30)% of Physical Damage as Extra Fire Damage" }, } },
+ ["PhysicalAddedAsExtraColdWeaponInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Gain (7-12)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (7-12)% of Physical Damage as Extra Cold Damage" }, } },
+ ["PhysicalAddedAsExtraColdWeaponInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (13-17)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 73, group = "PhysicalAddedAsCold", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (13-17)% of Physical Damage as Extra Cold Damage" }, } },
+ ["PhysicalAddedAsExtraColdWeaponInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Gain (18-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 78, group = "PhysicalAddedAsCold", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (18-20)% of Physical Damage as Extra Cold Damage" }, } },
+ ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Gain (16-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (16-20)% of Physical Damage as Extra Cold Damage" }, } },
+ ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (21-26)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 73, group = "PhysicalAddedAsCold", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (21-26)% of Physical Damage as Extra Cold Damage" }, } },
+ ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Gain (27-30)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 78, group = "PhysicalAddedAsCold", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (27-30)% of Physical Damage as Extra Cold Damage" }, } },
+ ["PhysicalAddedAsExtraLightningWeaponInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Gain (7-12)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (7-12)% of Physical Damage as Extra Lightning Damage" }, } },
+ ["PhysicalAddedAsExtraLightningWeaponInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (13-17)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 73, group = "PhysicalAddedAsLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (13-17)% of Physical Damage as Extra Lightning Damage" }, } },
+ ["PhysicalAddedAsExtraLightningWeaponInfluence3_"] = { type = "Prefix", affix = "Crusader's", "Gain (18-20)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 78, group = "PhysicalAddedAsLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (18-20)% of Physical Damage as Extra Lightning Damage" }, } },
+ ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Gain (16-20)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (16-20)% of Physical Damage as Extra Lightning Damage" }, } },
+ ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (21-26)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 73, group = "PhysicalAddedAsLightning", weightKey = { "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (21-26)% of Physical Damage as Extra Lightning Damage" }, } },
+ ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Crusader's", "Gain (27-30)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 78, group = "PhysicalAddedAsLightning", weightKey = { "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (27-30)% of Physical Damage as Extra Lightning Damage" }, } },
+ ["AddedFireDamagePerStrengthInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4869 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "sword_basilisk", "axe_basilisk", "mace_basilisk", "sceptre_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1060540099] = { "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength" }, } },
+ ["AddedFireDamagePerStrengthTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4869 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1060540099] = { "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength" }, } },
+ ["AddedColdDamagePerDexterityInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4924 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [149574107] = { "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity" }, } },
+ ["AddedColdDamagePerDexterityTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4924 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [149574107] = { "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity" }, } },
+ ["AddedLightningDamagePerIntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } },
+ ["AddedLightningDamagePerIntelligenceTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } },
+ ["SpellDamagePer16StrengthInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Strength", statOrder = { 10156 }, level = 68, group = "SpellDamagePer16Strength", weightKey = { "sceptre_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [4249521944] = { "1% increased Spell Damage per 16 Strength" }, } },
+ ["SpellDamagePer16DexterityInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Dexterity", statOrder = { 10154 }, level = 68, group = "SpellDamagePer16Dexterity", weightKey = { "rune_dagger_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2612056840] = { "1% increased Spell Damage per 16 Dexterity" }, } },
+ ["SpellDamagePer16IntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Intelligence", statOrder = { 10155 }, level = 68, group = "SpellDamagePer16Intelligence", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3961014595] = { "1% increased Spell Damage per 16 Intelligence" }, } },
+ ["SpellDamagePer10StrengthInfluence1_"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 10 Strength", statOrder = { 10153 }, level = 68, group = "SpellDamagePer10Strength", weightKey = { "staff_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1073314277] = { "1% increased Spell Damage per 10 Strength" }, } },
+ ["SpellDamagePer10IntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2738 }, level = 68, group = "SpellDamagePer10Intelligence", weightKey = { "staff_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2818518881] = { "1% increased Spell Damage per 10 Intelligence" }, } },
+ ["BurningDamagePrefixInfluence1___"] = { type = "Prefix", affix = "Warlord's", "(60-69)% increased Burning Damage", statOrder = { 1877 }, level = 68, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(60-69)% increased Burning Damage" }, } },
+ ["BurningDamagePrefixInfluence2"] = { type = "Prefix", affix = "Warlord's", "(70-79)% increased Burning Damage", statOrder = { 1877 }, level = 71, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(70-79)% increased Burning Damage" }, } },
+ ["BurningDamagePrefixInfluence3"] = { type = "Prefix", affix = "Warlord's", "(80-89)% increased Burning Damage", statOrder = { 1877 }, level = 75, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 200, 200, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(80-89)% increased Burning Damage" }, } },
+ ["BurningDamagePrefixInfluence4"] = { type = "Prefix", affix = "Warlord's", "(90-94)% increased Burning Damage", statOrder = { 1877 }, level = 78, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 100, 100, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(90-94)% increased Burning Damage" }, } },
+ ["BurningDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "(100-109)% increased Burning Damage", statOrder = { 1877 }, level = 68, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(100-109)% increased Burning Damage" }, } },
+ ["BurningDamagePrefixTwoHandInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(110-119)% increased Burning Damage", statOrder = { 1877 }, level = 71, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(110-119)% increased Burning Damage" }, } },
+ ["BurningDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "(120-129)% increased Burning Damage", statOrder = { 1877 }, level = 75, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 200, 200, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(120-129)% increased Burning Damage" }, } },
+ ["BurningDamagePrefixTwoHandInfluence4_"] = { type = "Prefix", affix = "Warlord's", "(130-134)% increased Burning Damage", statOrder = { 1877 }, level = 78, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 100, 100, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(130-134)% increased Burning Damage" }, } },
+ ["BleedingDamagePrefixInfluence1"] = { type = "Prefix", affix = "Warlord's", "(60-69)% increased Physical Damage over Time", statOrder = { 1211 }, level = 68, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(60-69)% increased Physical Damage over Time" }, } },
+ ["BleedingDamagePrefixInfluence2"] = { type = "Prefix", affix = "Warlord's", "(70-79)% increased Physical Damage over Time", statOrder = { 1211 }, level = 71, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(70-79)% increased Physical Damage over Time" }, } },
+ ["BleedingDamagePrefixInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(80-89)% increased Physical Damage over Time", statOrder = { 1211 }, level = 75, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(80-89)% increased Physical Damage over Time" }, } },
+ ["BleedingDamagePrefixInfluence4"] = { type = "Prefix", affix = "Warlord's", "(90-94)% increased Physical Damage over Time", statOrder = { 1211 }, level = 78, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(90-94)% increased Physical Damage over Time" }, } },
+ ["BleedingDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "(100-109)% increased Physical Damage over Time", statOrder = { 1211 }, level = 68, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(100-109)% increased Physical Damage over Time" }, } },
+ ["BleedingDamagePrefixTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "(110-119)% increased Physical Damage over Time", statOrder = { 1211 }, level = 71, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(110-119)% increased Physical Damage over Time" }, } },
+ ["BleedingDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "(120-129)% increased Physical Damage over Time", statOrder = { 1211 }, level = 75, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(120-129)% increased Physical Damage over Time" }, } },
+ ["BleedingDamagePrefixTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "(130-134)% increased Physical Damage over Time", statOrder = { 1211 }, level = 78, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, tradeHashes = { [1692565595] = { "(130-134)% increased Physical Damage over Time" }, } },
+ ["PoisonDamagePrefixInfluence1__"] = { type = "Prefix", affix = "Hunter's", "(60-69)% increased Chaos Damage over Time", statOrder = { 1214 }, level = 68, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(60-69)% increased Chaos Damage over Time" }, } },
+ ["PoisonDamagePrefixInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(70-79)% increased Chaos Damage over Time", statOrder = { 1214 }, level = 71, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(70-79)% increased Chaos Damage over Time" }, } },
+ ["PoisonDamagePrefixInfluence3"] = { type = "Prefix", affix = "Hunter's", "(80-89)% increased Chaos Damage over Time", statOrder = { 1214 }, level = 75, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(80-89)% increased Chaos Damage over Time" }, } },
+ ["PoisonDamagePrefixInfluence4"] = { type = "Prefix", affix = "Hunter's", "(90-94)% increased Chaos Damage over Time", statOrder = { 1214 }, level = 78, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(90-94)% increased Chaos Damage over Time" }, } },
+ ["PoisonDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "(100-109)% increased Chaos Damage over Time", statOrder = { 1214 }, level = 68, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(100-109)% increased Chaos Damage over Time" }, } },
+ ["PoisonDamagePrefixTwoHandInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(110-119)% increased Chaos Damage over Time", statOrder = { 1214 }, level = 71, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 300, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(110-119)% increased Chaos Damage over Time" }, } },
+ ["PoisonDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "(120-129)% increased Chaos Damage over Time", statOrder = { 1214 }, level = 75, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(120-129)% increased Chaos Damage over Time" }, } },
+ ["PoisonDamagePrefixTwoHandInfluence4_"] = { type = "Prefix", affix = "Hunter's", "(130-134)% increased Chaos Damage over Time", statOrder = { 1214 }, level = 78, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [601272515] = { "(130-134)% increased Chaos Damage over Time" }, } },
+ ["FasterIgniteDamageInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (8-12)% faster", statOrder = { 2564 }, level = 68, group = "FasterIgniteDamage", weightKey = { "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (8-12)% faster" }, } },
+ ["FasterIgniteDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (13-15)% faster", statOrder = { 2564 }, level = 73, group = "FasterIgniteDamage", weightKey = { "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (13-15)% faster" }, } },
+ ["FasterIgniteDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (18-21)% faster", statOrder = { 2564 }, level = 68, group = "FasterIgniteDamage", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (18-21)% faster" }, } },
+ ["FasterIgniteDamageTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (22-25)% faster", statOrder = { 2564 }, level = 73, group = "FasterIgniteDamage", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (22-25)% faster" }, } },
+ ["FasterBleedDamageInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (8-12)% faster", statOrder = { 6544 }, level = 68, group = "FasterBleedDamage", weightKey = { "sword_basilisk", "axe_basilisk", "mace_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (8-12)% faster" }, } },
+ ["FasterBleedDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (13-15)% faster", statOrder = { 6544 }, level = 73, group = "FasterBleedDamage", weightKey = { "sword_basilisk", "axe_basilisk", "mace_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (13-15)% faster" }, } },
+ ["FasterBleedDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (18-21)% faster", statOrder = { 6544 }, level = 68, group = "FasterBleedDamage", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (18-21)% faster" }, } },
+ ["FasterBleedDamageTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (22-25)% faster", statOrder = { 6544 }, level = 73, group = "FasterBleedDamage", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (22-25)% faster" }, } },
+ ["FasterPoisonDamageInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (8-12)% faster", statOrder = { 6545 }, level = 68, group = "FasterPoisonDamage", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (8-12)% faster" }, } },
+ ["FasterPoisonDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (13-15)% faster", statOrder = { 6545 }, level = 73, group = "FasterPoisonDamage", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (13-15)% faster" }, } },
+ ["FasterPoisonDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (18-21)% faster", statOrder = { 6545 }, level = 68, group = "FasterPoisonDamage", weightKey = { "2h_sword_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (18-21)% faster" }, } },
+ ["FasterPoisonDamageTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (22-25)% faster", statOrder = { 6545 }, level = 73, group = "FasterPoisonDamage", weightKey = { "2h_sword_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (22-25)% faster" }, } },
+ ["ImpaleEffectWeaponInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "(12-16)% increased Impale Effect", statOrder = { 7242 }, level = 68, group = "ImpaleEffect", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [298173317] = { "(12-16)% increased Impale Effect" }, } },
+ ["ImpaleEffectWeaponInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(17-21)% increased Impale Effect", statOrder = { 7242 }, level = 71, group = "ImpaleEffect", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [298173317] = { "(17-21)% increased Impale Effect" }, } },
+ ["ImpaleEffectWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Impale Effect", statOrder = { 7242 }, level = 75, group = "ImpaleEffect", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [298173317] = { "(22-25)% increased Impale Effect" }, } },
+ ["ImpaleEffectTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-29)% increased Impale Effect", statOrder = { 7242 }, level = 68, group = "ImpaleEffect", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [298173317] = { "(25-29)% increased Impale Effect" }, } },
+ ["ImpaleEffectTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(30-34)% increased Impale Effect", statOrder = { 7242 }, level = 71, group = "ImpaleEffect", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [298173317] = { "(30-34)% increased Impale Effect" }, } },
+ ["ImpaleEffectTwoHandWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(35-38)% increased Impale Effect", statOrder = { 7242 }, level = 75, group = "ImpaleEffect", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [298173317] = { "(35-38)% increased Impale Effect" }, } },
+ ["ConvertPhysicalToFireInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 68, group = "ConvertPhysicalToFire", weightKey = { "sword_crusader", "axe_crusader", "mace_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(23-26)% of Physical Damage Converted to Fire Damage" }, } },
+ ["ConvertPhysicalToFireInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 71, group = "ConvertPhysicalToFire", weightKey = { "sword_crusader", "axe_crusader", "mace_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(27-30)% of Physical Damage Converted to Fire Damage" }, } },
+ ["ConvertPhysicalToColdInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 68, group = "ConvertPhysicalToCold", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(23-26)% of Physical Damage Converted to Cold Damage" }, } },
+ ["ConvertPhysicalToColdInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 71, group = "ConvertPhysicalToCold", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(27-30)% of Physical Damage Converted to Cold Damage" }, } },
+ ["ConvertPhysicalToLightningInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 68, group = "ConvertPhysicalToLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(23-26)% of Physical Damage Converted to Lightning Damage" }, } },
+ ["ConvertPhysicalToLightningInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 71, group = "ConvertPhysicalToLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [3240769289] = { "(27-30)% of Physical Damage Converted to Lightning Damage" }, } },
+ ["ConvertPhysicalToChaosInfluenceWeapon1"] = { type = "Suffix", affix = "of the Hunt", "(16-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 68, group = "PhysicalDamageConvertedToChaos", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(16-20)% of Physical Damage Converted to Chaos Damage" }, } },
+ ["ConvertPhysicalToChaosInfluenceWeapon2"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 71, group = "PhysicalDamageConvertedToChaos", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [490098963] = { "(21-25)% of Physical Damage Converted to Chaos Damage" }, } },
+ ["ArmourPenetrationWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (50-65)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7939 }, level = 68, group = "LocalArmourPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon have (50-65)% chance to ignore Enemy Physical Damage Reduction" }, } },
+ ["ArmourPenetrationWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (66-80)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7939 }, level = 71, group = "LocalArmourPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon have (66-80)% chance to ignore Enemy Physical Damage Reduction" }, } },
+ ["ArmourPenetrationTwoHandWeaponInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (50-65)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7939 }, level = 68, group = "LocalArmourPenetration", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon have (50-65)% chance to ignore Enemy Physical Damage Reduction" }, } },
+ ["ArmourPenetrationTwoHandWeaponInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (66-80)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7939 }, level = 71, group = "LocalArmourPenetration", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1907260000] = { "Hits with this Weapon have (66-80)% chance to ignore Enemy Physical Damage Reduction" }, } },
+ ["ArmourPenetrationSpellWeaponInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "Hits have (25-29)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 68, group = "ChanceToIgnoreEnemyArmour", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (25-29)% chance to ignore Enemy Physical Damage Reduction" }, } },
+ ["ArmourPenetrationSpellWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits have (30-35)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 71, group = "ChanceToIgnoreEnemyArmour", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (30-35)% chance to ignore Enemy Physical Damage Reduction" }, } },
+ ["ArmourPenetrationSpellTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Hits have (50-59)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 68, group = "ChanceToIgnoreEnemyArmour", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (50-59)% chance to ignore Enemy Physical Damage Reduction" }, } },
+ ["ArmourPenetrationSpellTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits have (60-70)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 71, group = "ChanceToIgnoreEnemyArmour", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, tradeHashes = { [2839577586] = { "Hits have (60-70)% chance to ignore Enemy Physical Damage Reduction" }, } },
+ ["FireExposureOnHitWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(11-15)% chance to inflict Fire Exposure on Hit", statOrder = { 5027 }, level = 75, group = "FireExposureOnHit", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "staff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3602667353] = { "(11-15)% chance to inflict Fire Exposure on Hit" }, } },
+ ["FireExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(16-20)% chance to inflict Fire Exposure on Hit", statOrder = { 5027 }, level = 80, group = "FireExposureOnHit", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "staff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3602667353] = { "(16-20)% chance to inflict Fire Exposure on Hit" }, } },
+ ["ColdExposureOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(11-15)% chance to inflict Cold Exposure on Hit", statOrder = { 5026 }, level = 75, group = "ColdExposureOnHit", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "staff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2630708439] = { "(11-15)% chance to inflict Cold Exposure on Hit" }, } },
+ ["ColdExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(16-20)% chance to inflict Cold Exposure on Hit", statOrder = { 5026 }, level = 80, group = "ColdExposureOnHit", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "staff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2630708439] = { "(16-20)% chance to inflict Cold Exposure on Hit" }, } },
+ ["LightningExposureOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% chance to inflict Lightning Exposure on Hit", statOrder = { 5028 }, level = 75, group = "LightningExposureOnHit", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "staff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4265906483] = { "(11-15)% chance to inflict Lightning Exposure on Hit" }, } },
+ ["LightningExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% chance to inflict Lightning Exposure on Hit", statOrder = { 5028 }, level = 80, group = "LightningExposureOnHit", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "staff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4265906483] = { "(16-20)% chance to inflict Lightning Exposure on Hit" }, } },
+ ["ChanceToUnnerveOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(7-11)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 78, group = "ChanceToUnnerveOnHit", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "staff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [763611529] = { "(7-11)% chance to Unnerve Enemies for 4 seconds on Hit" }, } },
+ ["ChanceToUnnerveOnHitWeaponInfluence2__"] = { type = "Suffix", affix = "of the Hunt", "(12-15)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 81, group = "ChanceToUnnerveOnHit", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "staff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [763611529] = { "(12-15)% chance to Unnerve Enemies for 4 seconds on Hit" }, } },
+ ["ChanceToIntimidateOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(7-11)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7874 }, level = 78, group = "LocalChanceToIntimidateOnHit", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attack" }, tradeHashes = { [2089652545] = { "(7-11)% chance to Intimidate Enemies for 4 seconds on Hit" }, } },
+ ["ChanceToIntimidateOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(12-15)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7874 }, level = 81, group = "LocalChanceToIntimidateOnHit", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attack" }, tradeHashes = { [2089652545] = { "(12-15)% chance to Intimidate Enemies for 4 seconds on Hit" }, } },
+ ["DamageFromAurasWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3458 }, level = 82, group = "IncreasedDamageFromAuras", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "influence_mod", "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 2% increased Damage to you and Allies" }, } },
+ ["DamageFromAurasTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3458 }, level = 82, group = "IncreasedDamageFromAuras", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 0 }, modTags = { "influence_mod", "damage", "aura" }, tradeHashes = { [3729445224] = { "Auras from your Skills grant 4% increased Damage to you and Allies" }, } },
+ ["LocalChanceToMaimPhysicalDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(10-13)% increased Physical Damage", "10% chance to Maim on Hit", statOrder = { 1232, 7988 }, level = 68, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(10-13)% increased Physical Damage" }, [2763429652] = { "10% chance to Maim on Hit" }, } },
+ ["LocalChanceToMaimPhysicalDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(14-16)% increased Physical Damage", "15% chance to Maim on Hit", statOrder = { 1232, 7988 }, level = 70, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(14-16)% increased Physical Damage" }, [2763429652] = { "15% chance to Maim on Hit" }, } },
+ ["LocalChanceToMaimPhysicalDamageInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(17-20)% increased Physical Damage", "20% chance to Maim on Hit", statOrder = { 1232, 7988 }, level = 73, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(17-20)% increased Physical Damage" }, [2763429652] = { "20% chance to Maim on Hit" }, } },
+ ["BlindOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-18)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 68, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(15-18)% chance to Blind Enemies on Hit with Attacks" }, } },
+ ["BlindOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(19-22)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 70, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(19-22)% chance to Blind Enemies on Hit with Attacks" }, } },
+ ["BlindOnHitWeaponInfluence3"] = { type = "Suffix", affix = "of Redemption", "(23-25)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 73, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [318953428] = { "(23-25)% chance to Blind Enemies on Hit with Attacks" }, } },
+ ["OnslaugtOnKillWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-18)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3380 }, level = 68, group = "OnslaugtOnKillPercentChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [665823128] = { "(15-18)% chance to gain Onslaught for 4 seconds on Kill" }, } },
+ ["OnslaugtOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(19-22)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3380 }, level = 70, group = "OnslaugtOnKillPercentChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [665823128] = { "(19-22)% chance to gain Onslaught for 4 seconds on Kill" }, } },
+ ["OnslaugtOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of Redemption", "(23-25)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3380 }, level = 73, group = "OnslaugtOnKillPercentChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [665823128] = { "(23-25)% chance to gain Onslaught for 4 seconds on Kill" }, } },
+ ["PhasingOnKillWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(15-18)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(15-18)% chance to gain Phasing for 4 seconds on Kill" }, } },
+ ["PhasingOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(19-22)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 70, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(19-22)% chance to gain Phasing for 4 seconds on Kill" }, } },
+ ["PhasingOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(23-25)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 73, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2918708827] = { "(23-25)% chance to gain Phasing for 4 seconds on Kill" }, } },
+ ["UnholyMightOnKillWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(15-18)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3562211447] = { "(15-18)% chance to gain Unholy Might for 3 seconds on Kill" }, } },
+ ["UnholyMightOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(19-22)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 70, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3562211447] = { "(19-22)% chance to gain Unholy Might for 3 seconds on Kill" }, } },
+ ["UnholyMightOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(23-25)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 73, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3562211447] = { "(23-25)% chance to gain Unholy Might for 3 seconds on Kill" }, } },
+ ["BlockWhileDualWieldingInfluence1__"] = { type = "Suffix", affix = "of Redemption", "+(2-4)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 68, group = "BlockWhileDualWielding", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2166444903] = { "+(2-4)% Chance to Block Attack Damage while Dual Wielding" }, } },
+ ["BlockWhileDualWieldingInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(5-7)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 70, group = "BlockWhileDualWielding", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2166444903] = { "+(5-7)% Chance to Block Attack Damage while Dual Wielding" }, } },
+ ["BlockWhileDualWieldingInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(8-9)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 73, group = "BlockWhileDualWielding", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [2166444903] = { "+(8-9)% Chance to Block Attack Damage while Dual Wielding" }, } },
+ ["PhysicalDamageWhileDualWieldingInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(23-27)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1279 }, level = 68, group = "DualWieldingPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "(23-27)% increased Physical Attack Damage while Dual Wielding" }, } },
+ ["PhysicalDamageWhileDualWieldingInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(28-32)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1279 }, level = 70, group = "DualWieldingPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "(28-32)% increased Physical Attack Damage while Dual Wielding" }, } },
+ ["PhysicalDamageWhileDualWieldingInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(33-37)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1279 }, level = 73, group = "DualWieldingPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "(33-37)% increased Physical Attack Damage while Dual Wielding" }, } },
+ ["LocalMeleeWeaponRangeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 68, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [350598685] = { "+0.2 metres to Weapon Range" }, } },
+ ["LocalMeleeWeaponRangeInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+0.3 metres to Weapon Range", statOrder = { 2745 }, level = 73, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, tradeHashes = { [350598685] = { "+0.3 metres to Weapon Range" }, } },
+ ["MovementVelocityWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(3-6)% increased Movement Speed", statOrder = { 1798 }, level = 68, group = "MovementVelocity", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(3-6)% increased Movement Speed" }, } },
+ ["MovementVelocityWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(7-10)% increased Movement Speed", statOrder = { 1798 }, level = 73, group = "MovementVelocity", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [2250533757] = { "(7-10)% increased Movement Speed" }, } },
+ ["SpellsDoubleDamageChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "Spells have a (4-5)% chance to deal Double Damage", statOrder = { 10136 }, level = 75, group = "SpellsDoubleDamageChance", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2813626504] = { "Spells have a (4-5)% chance to deal Double Damage" }, } },
+ ["SpellsDoubleDamageChanceInfluence2"] = { type = "Suffix", affix = "of Redemption", "Spells have a (6-7)% chance to deal Double Damage", statOrder = { 10136 }, level = 80, group = "SpellsDoubleDamageChance", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2813626504] = { "Spells have a (6-7)% chance to deal Double Damage" }, } },
+ ["SpellsDoubleDamageChanceTwoHandInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Spells have a (10-11)% chance to deal Double Damage", statOrder = { 10136 }, level = 75, group = "SpellsDoubleDamageChance", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2813626504] = { "Spells have a (10-11)% chance to deal Double Damage" }, } },
+ ["SpellsDoubleDamageChanceTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "Spells have a (12-14)% chance to deal Double Damage", statOrder = { 10136 }, level = 80, group = "SpellsDoubleDamageChance", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2813626504] = { "Spells have a (12-14)% chance to deal Double Damage" }, } },
+ ["DamagePerEnduranceChargeWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 68, group = "DamagePerEnduranceCharge", weightKey = { "sceptre_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3515686789] = { "(5-7)% increased Damage per Endurance Charge" }, } },
+ ["DamagePerEnduranceChargeWeaponInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 73, group = "DamagePerEnduranceCharge", weightKey = { "sceptre_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3515686789] = { "(8-10)% increased Damage per Endurance Charge" }, } },
+ ["DamagePerFrenzyChargeWeaponInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 68, group = "DamagePerFrenzyCharge", weightKey = { "rune_dagger_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [902747843] = { "(5-7)% increased Damage per Frenzy Charge" }, } },
+ ["DamagePerFrenzyChargeWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 73, group = "DamagePerFrenzyCharge", weightKey = { "rune_dagger_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [902747843] = { "(8-10)% increased Damage per Frenzy Charge" }, } },
+ ["DamagePerPowerChargeWeaponInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(5-7)% increased Damage per Power Charge", statOrder = { 6066 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(5-7)% increased Damage per Power Charge" }, } },
+ ["DamagePerPowerChargeWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(8-10)% increased Damage per Power Charge", statOrder = { 6066 }, level = 73, group = "IncreasedDamagePerPowerCharge", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(8-10)% increased Damage per Power Charge" }, } },
+ ["DamagePerEnduranceChargeTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(10-13)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 68, group = "DamagePerEnduranceCharge", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3515686789] = { "(10-13)% increased Damage per Endurance Charge" }, } },
+ ["DamagePerEnduranceChargeTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(14-17)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 73, group = "DamagePerEnduranceCharge", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3515686789] = { "(14-17)% increased Damage per Endurance Charge" }, } },
+ ["DamagePerPowerChargeTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-13)% increased Damage per Power Charge", statOrder = { 6066 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(10-13)% increased Damage per Power Charge" }, } },
+ ["DamagePerPowerChargeTwoHandWeaponInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(14-17)% increased Damage per Power Charge", statOrder = { 6066 }, level = 73, group = "IncreasedDamagePerPowerCharge", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [2034658008] = { "(14-17)% increased Damage per Power Charge" }, } },
+ ["BaseManaRegenerationInfluence1_____"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.3% of Mana per second", statOrder = { 1581 }, level = 68, group = "BaseManaRegeneration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.3% of Mana per second" }, } },
+ ["BaseManaRegenerationInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.4% of Mana per second", statOrder = { 1581 }, level = 73, group = "BaseManaRegeneration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.4% of Mana per second" }, } },
+ ["BaseManaRegenerationTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.7% of Mana per second", statOrder = { 1581 }, level = 68, group = "BaseManaRegeneration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.7% of Mana per second" }, } },
+ ["BaseManaRegenerationTwoHandInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.8% of Mana per second", statOrder = { 1581 }, level = 73, group = "BaseManaRegeneration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3188455409] = { "Regenerate 0.8% of Mana per second" }, } },
+ ["AngerAuraEffectInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (28-33)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1592278124] = { "Anger has (28-33)% increased Aura Effect" }, } },
+ ["AngerAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Anger has (34-40)% increased Aura Effect", statOrder = { 3356 }, level = 80, group = "AngerAuraEffect", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1592278124] = { "Anger has (34-40)% increased Aura Effect" }, } },
+ ["AngerAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (48-54)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1592278124] = { "Anger has (48-54)% increased Aura Effect" }, } },
+ ["AngerAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "Anger has (55-60)% increased Aura Effect", statOrder = { 3356 }, level = 80, group = "AngerAuraEffect", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1592278124] = { "Anger has (55-60)% increased Aura Effect" }, } },
+ ["HatredAuraEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (28-33)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [3742945352] = { "Hatred has (28-33)% increased Aura Effect" }, } },
+ ["HatredAuraEffectInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Hatred has (34-40)% increased Aura Effect", statOrder = { 3366 }, level = 80, group = "HatredAuraEffect", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [3742945352] = { "Hatred has (34-40)% increased Aura Effect" }, } },
+ ["HatredAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (48-54)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [3742945352] = { "Hatred has (48-54)% increased Aura Effect" }, } },
+ ["HatredAuraEffectTwoHandInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Hatred has (55-60)% increased Aura Effect", statOrder = { 3366 }, level = 80, group = "HatredAuraEffect", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [3742945352] = { "Hatred has (55-60)% increased Aura Effect" }, } },
+ ["WrathAuraEffectInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (28-33)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [2181791238] = { "Wrath has (28-33)% increased Aura Effect" }, } },
+ ["WrathAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (34-40)% increased Aura Effect", statOrder = { 3361 }, level = 80, group = "WrathAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [2181791238] = { "Wrath has (34-40)% increased Aura Effect" }, } },
+ ["WrathAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (48-54)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [2181791238] = { "Wrath has (48-54)% increased Aura Effect" }, } },
+ ["WrathAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (55-60)% increased Aura Effect", statOrder = { 3361 }, level = 80, group = "WrathAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [2181791238] = { "Wrath has (55-60)% increased Aura Effect" }, } },
+ ["MalevolenceAuraEffectInfluence1____"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (28-33)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (28-33)% increased Aura Effect" }, } },
+ ["MalevolenceAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (34-40)% increased Aura Effect", statOrder = { 6161 }, level = 80, group = "MalevolenceAuraEffect", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (34-40)% increased Aura Effect" }, } },
+ ["MalevolenceAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (48-54)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (48-54)% increased Aura Effect" }, } },
+ ["MalevolenceAuraEffectTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (55-60)% increased Aura Effect", statOrder = { 6161 }, level = 80, group = "MalevolenceAuraEffect", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, tradeHashes = { [4175197580] = { "Malevolence has (55-60)% increased Aura Effect" }, } },
+ ["ZealotryAuraEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (28-33)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (28-33)% increased Aura Effect" }, } },
+ ["ZealotryAuraEffectInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (34-40)% increased Aura Effect", statOrder = { 10721 }, level = 80, group = "ZealotryAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (34-40)% increased Aura Effect" }, } },
+ ["ZealotryAuraEffectTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (48-54)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (48-54)% increased Aura Effect" }, } },
+ ["ZealotryAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (55-60)% increased Aura Effect", statOrder = { 10721 }, level = 80, group = "ZealotryAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [4096052153] = { "Zealotry has (55-60)% increased Aura Effect" }, } },
+ ["DamageWhileLeechingWeaponInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(18-22)% increased Damage while Leeching", statOrder = { 3063 }, level = 68, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [310246444] = { "(18-22)% increased Damage while Leeching" }, } },
+ ["DamageWhileLeechingWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% increased Damage while Leeching", statOrder = { 3063 }, level = 70, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [310246444] = { "(23-26)% increased Damage while Leeching" }, } },
+ ["DamageWhileLeechingWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% increased Damage while Leeching", statOrder = { 3063 }, level = 73, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [310246444] = { "(27-30)% increased Damage while Leeching" }, } },
+ ["DamageWhileLeechingWeaponTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(32-36)% increased Damage while Leeching", statOrder = { 3063 }, level = 68, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [310246444] = { "(32-36)% increased Damage while Leeching" }, } },
+ ["DamageWhileLeechingWeaponTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(37-41)% increased Damage while Leeching", statOrder = { 3063 }, level = 70, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [310246444] = { "(37-41)% increased Damage while Leeching" }, } },
+ ["DamageWhileLeechingWeaponTwoHandInfluence3_"] = { type = "Suffix", affix = "of the Crusade", "(42-45)% increased Damage while Leeching", statOrder = { 3063 }, level = 73, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [310246444] = { "(42-45)% increased Damage while Leeching" }, } },
+ ["AttackSpeedWithFortifyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-12)% increased Attack Speed while Fortified", statOrder = { 3215 }, level = 68, group = "AttackSpeedWithFortify", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [122450405] = { "(10-12)% increased Attack Speed while Fortified" }, } },
+ ["AttackSpeedWithFortifyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(13-15)% increased Attack Speed while Fortified", statOrder = { 3215 }, level = 73, group = "AttackSpeedWithFortify", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [122450405] = { "(13-15)% increased Attack Speed while Fortified" }, } },
+ ["AttackSpeedWithFortifyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(20-22)% increased Attack Speed while Fortified", statOrder = { 3215 }, level = 68, group = "AttackSpeedWithFortify", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [122450405] = { "(20-22)% increased Attack Speed while Fortified" }, } },
+ ["AttackSpeedWithFortifyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(23-25)% increased Attack Speed while Fortified", statOrder = { 3215 }, level = 73, group = "AttackSpeedWithFortify", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [122450405] = { "(23-25)% increased Attack Speed while Fortified" }, } },
+ ["MeleeWeaponRangeIfKilledRecentlyInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "+0.2 metres to Melee Strike Range if you have Killed Recently", statOrder = { 9212 }, level = 68, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "sword_adjudicator", "2h_sword_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3255961830] = { "+0.2 metres to Melee Strike Range if you have Killed Recently" }, } },
+ ["MeleeWeaponRangeIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+0.3 metres to Melee Strike Range if you have Killed Recently", statOrder = { 9212 }, level = 73, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "sword_adjudicator", "2h_sword_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [3255961830] = { "+0.3 metres to Melee Strike Range if you have Killed Recently" }, } },
+ ["TauntOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(5-6)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4916 }, level = 68, group = "AttacksTauntOnHitChance", weightKey = { "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [280213220] = { "(5-6)% chance to Taunt Enemies on Hit with Attacks" }, } },
+ ["TauntOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(7-8)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4916 }, level = 70, group = "AttacksTauntOnHitChance", weightKey = { "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [280213220] = { "(7-8)% chance to Taunt Enemies on Hit with Attacks" }, } },
+ ["TauntOnHitWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(9-10)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4916 }, level = 73, group = "AttacksTauntOnHitChance", weightKey = { "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [280213220] = { "(9-10)% chance to Taunt Enemies on Hit with Attacks" }, } },
+ ["AttackSpeedIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(13-16)% increased Attack Speed if you've Killed Recently", statOrder = { 4894 }, level = 68, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [1507059769] = { "(13-16)% increased Attack Speed if you've Killed Recently" }, } },
+ ["AttackSpeedIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(17-20)% increased Attack Speed if you've Killed Recently", statOrder = { 4894 }, level = 73, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [1507059769] = { "(17-20)% increased Attack Speed if you've Killed Recently" }, } },
+ ["AttackSpeedIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(23-26)% increased Attack Speed if you've Killed Recently", statOrder = { 4894 }, level = 68, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "2h_axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [1507059769] = { "(23-26)% increased Attack Speed if you've Killed Recently" }, } },
+ ["AttackSpeedIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(27-30)% increased Attack Speed if you've Killed Recently", statOrder = { 4894 }, level = 73, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "2h_axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, tradeHashes = { [1507059769] = { "(27-30)% increased Attack Speed if you've Killed Recently" }, } },
+ ["CastSpeedIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(13-16)% increased Cast Speed if you've Killed Recently", statOrder = { 5467 }, level = 68, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [2072625596] = { "(13-16)% increased Cast Speed if you've Killed Recently" }, } },
+ ["CastSpeedIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(17-20)% increased Cast Speed if you've Killed Recently", statOrder = { 5467 }, level = 73, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [2072625596] = { "(17-20)% increased Cast Speed if you've Killed Recently" }, } },
+ ["CastSpeedIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(23-26)% increased Cast Speed if you've Killed Recently", statOrder = { 5467 }, level = 68, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [2072625596] = { "(23-26)% increased Cast Speed if you've Killed Recently" }, } },
+ ["CastSpeedIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "(27-30)% increased Cast Speed if you've Killed Recently", statOrder = { 5467 }, level = 73, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, tradeHashes = { [2072625596] = { "(27-30)% increased Cast Speed if you've Killed Recently" }, } },
+ ["WarcryCooldownSpeedInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(17-21)% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 68, group = "WarcryCooldownSpeed", weightKey = { "axe_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(17-21)% increased Warcry Cooldown Recovery Rate" }, } },
+ ["WarcryCooldownSpeedInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(22-25)% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 73, group = "WarcryCooldownSpeed", weightKey = { "axe_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(22-25)% increased Warcry Cooldown Recovery Rate" }, } },
+ ["WarcryCooldownSpeedTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(35-40)% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 68, group = "WarcryCooldownSpeed", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "shield_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(35-40)% increased Warcry Cooldown Recovery Rate" }, } },
+ ["WarcryCooldownSpeedTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(41-45)% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 73, group = "WarcryCooldownSpeed", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "shield_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(41-45)% increased Warcry Cooldown Recovery Rate" }, } },
+ ["CriticalStrikeChanceIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-40)% increased Critical Strike Chance if you have Killed Recently", statOrder = { 5925 }, level = 68, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [3914638685] = { "(31-40)% increased Critical Strike Chance if you have Killed Recently" }, } },
+ ["CriticalStrikeChanceIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% increased Critical Strike Chance if you have Killed Recently", statOrder = { 5925 }, level = 73, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [3914638685] = { "(41-50)% increased Critical Strike Chance if you have Killed Recently" }, } },
+ ["CriticalStrikeMultiplierIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(26-30)% to Critical Strike Multiplier if you've Killed Recently", statOrder = { 5957 }, level = 68, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [2937483991] = { "+(26-30)% to Critical Strike Multiplier if you've Killed Recently" }, } },
+ ["CriticalStrikeMultiplierIfKilledRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(31-35)% to Critical Strike Multiplier if you've Killed Recently", statOrder = { 5957 }, level = 73, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [2937483991] = { "+(31-35)% to Critical Strike Multiplier if you've Killed Recently" }, } },
+ ["CriticalStrikeMultiplierAgainstFullLifeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(41-50)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrder = { 3433 }, level = 68, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [2355615476] = { "+(41-50)% to Critical Strike Multiplier against Enemies that are on Full Life" }, } },
+ ["CriticalStrikeMultiplierAgainstFullLifeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(51-60)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrder = { 3433 }, level = 73, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [2355615476] = { "+(51-60)% to Critical Strike Multiplier against Enemies that are on Full Life" }, } },
+ ["GainRareMonsterModsOnKillChanceInfluence1"] = { type = "Suffix", affix = "of the Conquest", "When you Kill a Rare Monster, (21-30)% chance to gain one of its Modifiers for 10 seconds", statOrder = { 6696 }, level = 68, group = "GainRareMonsterModsOnKillChance", weightKey = { "claw_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2736829661] = { "When you Kill a Rare Monster, (21-30)% chance to gain one of its Modifiers for 10 seconds" }, } },
+ ["GainRareMonsterModsOnKillChanceInfluence2"] = { type = "Suffix", affix = "of the Conquest", "When you Kill a Rare Monster, (31-40)% chance to gain one of its Modifiers for 10 seconds", statOrder = { 6696 }, level = 73, group = "GainRareMonsterModsOnKillChance", weightKey = { "claw_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2736829661] = { "When you Kill a Rare Monster, (31-40)% chance to gain one of its Modifiers for 10 seconds" }, } },
+ ["StunDurationAndThresholdInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% reduced Enemy Stun Threshold", "(11-15)% increased Stun Duration on Enemies", statOrder = { 1517, 1863 }, level = 68, group = "StunDurationAndThresholdUber", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2517001139] = { "(11-15)% increased Stun Duration on Enemies" }, [1443060084] = { "(11-15)% reduced Enemy Stun Threshold" }, } },
+ ["StunDurationAndThresholdInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% reduced Enemy Stun Threshold", "(16-20)% increased Stun Duration on Enemies", statOrder = { 1517, 1863 }, level = 73, group = "StunDurationAndThresholdUber", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2517001139] = { "(16-20)% increased Stun Duration on Enemies" }, [1443060084] = { "(16-20)% reduced Enemy Stun Threshold" }, } },
+ ["StunDurationAndThresholdTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% reduced Enemy Stun Threshold", "(21-25)% increased Stun Duration on Enemies", statOrder = { 1517, 1863 }, level = 68, group = "StunDurationAndThresholdUber", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2517001139] = { "(21-25)% increased Stun Duration on Enemies" }, [1443060084] = { "(21-25)% reduced Enemy Stun Threshold" }, } },
+ ["StunDurationAndThresholdTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% reduced Enemy Stun Threshold", "(26-30)% increased Stun Duration on Enemies", statOrder = { 1517, 1863 }, level = 73, group = "StunDurationAndThresholdUber", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2517001139] = { "(26-30)% increased Stun Duration on Enemies" }, [1443060084] = { "(26-30)% reduced Enemy Stun Threshold" }, } },
+ ["AreaOfEffectIfStunnedRecentlyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4728 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [430248187] = { "(26-30)% increased Area of Effect if you have Stunned an Enemy Recently" }, } },
+ ["AreaOfEffectIfStunnedRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4728 }, level = 73, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [430248187] = { "(31-35)% increased Area of Effect if you have Stunned an Enemy Recently" }, } },
+ ["AreaOfEffectIfStunnedRecentlyTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4728 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [430248187] = { "(36-40)% increased Area of Effect if you have Stunned an Enemy Recently" }, } },
+ ["AreaOfEffectIfStunnedRecentlyTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(41-45)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4728 }, level = 73, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [430248187] = { "(41-45)% increased Area of Effect if you have Stunned an Enemy Recently" }, } },
+ ["EnemiesExplodeOnDeathDealingFireInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage", statOrder = { 2706 }, level = 78, group = "EnemiesExplodeOnDeath", weightKey = { "mace_eyrie", "2h_mace_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3457687358] = { "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage" }, } },
+ ["ChanceForDoubleStunDurationInfluence1"] = { type = "Suffix", affix = "of Redemption", "(7-11)% chance to double Stun Duration", statOrder = { 3564 }, level = 68, group = "ChanceForDoubleStunDuration", weightKey = { "mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2622251413] = { "(7-11)% chance to double Stun Duration" }, } },
+ ["ChanceForDoubleStunDurationInfluence2"] = { type = "Suffix", affix = "of Redemption", "(12-15)% chance to double Stun Duration", statOrder = { 3564 }, level = 73, group = "ChanceForDoubleStunDuration", weightKey = { "mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2622251413] = { "(12-15)% chance to double Stun Duration" }, } },
+ ["ChanceForDoubleStunDurationTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(17-21)% chance to double Stun Duration", statOrder = { 3564 }, level = 68, group = "ChanceForDoubleStunDuration", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2622251413] = { "(17-21)% chance to double Stun Duration" }, } },
+ ["ChanceForDoubleStunDurationTwoHandInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(22-25)% chance to double Stun Duration", statOrder = { 3564 }, level = 73, group = "ChanceForDoubleStunDuration", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2622251413] = { "(22-25)% chance to double Stun Duration" }, } },
+ ["MovementSpeedIfHitRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9418 }, level = 68, group = "MovementSpeedIfHitRecently", weightKey = { "mace_eyrie", "sceptre_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [3178542354] = { "(5-7)% increased Movement Speed if you've Hit an Enemy Recently" }, } },
+ ["MovementSpeedIfHitRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9418 }, level = 73, group = "MovementSpeedIfHitRecently", weightKey = { "mace_eyrie", "sceptre_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [3178542354] = { "(8-10)% increased Movement Speed if you've Hit an Enemy Recently" }, } },
+ ["MovementSpeedIfHitRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(10-12)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9418 }, level = 68, group = "MovementSpeedIfHitRecently", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [3178542354] = { "(10-12)% increased Movement Speed if you've Hit an Enemy Recently" }, } },
+ ["MovementSpeedIfHitRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "(13-15)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9418 }, level = 73, group = "MovementSpeedIfHitRecently", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, tradeHashes = { [3178542354] = { "(13-15)% increased Movement Speed if you've Hit an Enemy Recently" }, } },
+ ["AreaOfEffectIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(17-21)% increased Area of Effect if you've Killed Recently", statOrder = { 4219 }, level = 68, group = "AreaOfEffectIfKilledRecently", weightKey = { "mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3481736410] = { "(17-21)% increased Area of Effect if you've Killed Recently" }, } },
+ ["AreaOfEffectIfKilledRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(22-25)% increased Area of Effect if you've Killed Recently", statOrder = { 4219 }, level = 73, group = "AreaOfEffectIfKilledRecently", weightKey = { "mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3481736410] = { "(22-25)% increased Area of Effect if you've Killed Recently" }, } },
+ ["AreaOfEffectIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(27-31)% increased Area of Effect if you've Killed Recently", statOrder = { 4219 }, level = 68, group = "AreaOfEffectIfKilledRecently", weightKey = { "2h_mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3481736410] = { "(27-31)% increased Area of Effect if you've Killed Recently" }, } },
+ ["AreaOfEffectIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(32-35)% increased Area of Effect if you've Killed Recently", statOrder = { 4219 }, level = 73, group = "AreaOfEffectIfKilledRecently", weightKey = { "2h_mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3481736410] = { "(32-35)% increased Area of Effect if you've Killed Recently" }, } },
+ ["ChanceToBlockIfDamagedRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "+(10-12)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrder = { 3216 }, level = 68, group = "ChanceToBlockIfDamagedRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [852195286] = { "+(10-12)% Chance to Block Attack Damage if you were Damaged by a Hit Recently" }, } },
+ ["ChanceToBlockIfDamagedRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrder = { 3216 }, level = 73, group = "ChanceToBlockIfDamagedRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [852195286] = { "+(13-15)% Chance to Block Attack Damage if you were Damaged by a Hit Recently" }, } },
+ ["SpellBlockChanceIfHitRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "+(10-12)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5651 }, level = 68, group = "SpellBlockChanceIfHitRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [1101206134] = { "+(10-12)% Chance to Block Spell Damage if you were Damaged by a Hit Recently" }, } },
+ ["SpellBlockChanceIfHitRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5651 }, level = 73, group = "SpellBlockChanceIfHitRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [1101206134] = { "+(13-15)% Chance to Block Spell Damage if you were Damaged by a Hit Recently" }, } },
+ ["AdditionalProjectileWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Skills fire an additional Projectile", statOrder = { 1792 }, level = 82, group = "AdditionalProjectiles", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, modTags = { "influence_mod" }, tradeHashes = { [74338099] = { "Skills fire an additional Projectile" }, } },
+ ["SocketedSkillsChainInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Socketed Gems Chain 1 additional times", statOrder = { 540 }, level = 85, group = "DisplaySocketedSkillsChain", weightKey = { "bow_crusader", "default", }, weightVal = { 100, 0 }, modTags = { "skill", "influence_mod", "gem" }, tradeHashes = { [2788729902] = { "Socketed Gems Chain 1 additional times" }, } },
+ ["SocketedSkillsForkInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Projectiles from Socketed Gems Fork", statOrder = { 564 }, level = 85, group = "DisplaySocketedSkillsFork", weightKey = { "bow_crusader", "default", }, weightVal = { 100, 0 }, modTags = { "skill", "influence_mod", "gem" }, tradeHashes = { [1519665289] = { "Projectiles from Socketed Gems Fork" }, } },
+ ["ProjectileDamagePerEnemyPiercedInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (15-20)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9734 }, level = 68, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (15-20)% increased Damage with Hits and Ailments for each Enemy Pierced" }, } },
+ ["ProjectileDamagePerEnemyPiercedInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (21-25)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9734 }, level = 70, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (21-25)% increased Damage with Hits and Ailments for each Enemy Pierced" }, } },
+ ["ProjectileDamagePerEnemyPiercedInfluence3"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (26-30)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9734 }, level = 73, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (26-30)% increased Damage with Hits and Ailments for each Enemy Pierced" }, } },
+ ["PhysicalDamageAddedAsRandomElementInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Gain (7-8)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 68, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "bow_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (7-8)% of Physical Damage as Extra Damage of a random Element" }, } },
+ ["PhysicalDamageAddedAsRandomElementInfluence2"] = { type = "Suffix", affix = "of the Crusade", "Gain (9-11)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 73, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "bow_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (9-11)% of Physical Damage as Extra Damage of a random Element" }, } },
+ ["PhysicalDamageAddedAsRandomElementInfluence3"] = { type = "Suffix", affix = "of the Crusade", "Gain (12-15)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 78, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "bow_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, tradeHashes = { [3753703249] = { "Gain (12-15)% of Physical Damage as Extra Damage of a random Element" }, } },
+ ["ArcaneSurgeOnCritInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(11-20)% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 6725 }, level = 75, group = "GainArcaneSurgeOnCrit", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [446027070] = { "(11-20)% chance to Gain Arcane Surge when you deal a Critical Strike" }, } },
+ ["ArcaneSurgeOnCritInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(21-30)% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 6725 }, level = 80, group = "GainArcaneSurgeOnCrit", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [446027070] = { "(21-30)% chance to Gain Arcane Surge when you deal a Critical Strike" }, } },
+ ["CurseOnHitFlammabilityWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Flammability on Hit", statOrder = { 2530 }, level = 78, group = "FlammabilityOnHitLevel", weightKey = { "wand_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [338121249] = { "Curse Enemies with Flammability on Hit" }, } },
+ ["CurseOnHitFrostbiteWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Frostbite on Hit", statOrder = { 2531 }, level = 78, group = "FrostbiteOnHitLevel", weightKey = { "wand_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [426847518] = { "Curse Enemies with Frostbite on Hit" }, } },
+ ["CurseOnHitConductivityWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Conductivity on Hit", statOrder = { 2527 }, level = 78, group = "ConductivityOnHitLevel", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, tradeHashes = { [710372469] = { "Curse Enemies with Conductivity on Hit" }, } },
+ ["CurseOnHitDespairWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 78, group = "CurseOnHitDespair", weightKey = { "wand_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2764915899] = { "Curse Enemies with Despair on Hit" }, } },
+ ["ImpaleEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "(12-16)% increased Impale Effect", statOrder = { 7242 }, level = 58, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(12-16)% increased Impale Effect" }, } },
+ ["ImpaleEffectEssence2__"] = { type = "Suffix", affix = "of the Essence", "(17-21)% increased Impale Effect", statOrder = { 7242 }, level = 74, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(17-21)% increased Impale Effect" }, } },
+ ["ImpaleEffectEssence3"] = { type = "Suffix", affix = "of the Essence", "(22-25)% increased Impale Effect", statOrder = { 7242 }, level = 82, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(22-25)% increased Impale Effect" }, } },
+ ["ImpaleEffectTwoHandEssence1"] = { type = "Suffix", affix = "of the Essence", "(25-29)% increased Impale Effect", statOrder = { 7242 }, level = 58, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(25-29)% increased Impale Effect" }, } },
+ ["ImpaleEffectTwoHandEssence2_"] = { type = "Suffix", affix = "of the Essence", "(30-34)% increased Impale Effect", statOrder = { 7242 }, level = 74, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(30-34)% increased Impale Effect" }, } },
+ ["ImpaleEffectTwoHandEssence3_"] = { type = "Suffix", affix = "of the Essence", "(35-38)% increased Impale Effect", statOrder = { 7242 }, level = 82, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [298173317] = { "(35-38)% increased Impale Effect" }, } },
+ ["BreachBodyChaosDamageAsPortionOfFireDamage1_"] = { type = "Prefix", affix = "Chayula's", "Gain 10% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 1, group = "ChaosDamageAsPortionOfFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [1599775597] = { "Gain 10% of Fire Damage as Extra Chaos Damage" }, } },
+ ["BreachBodyChaosDamageAsPortionOfColdDamage1"] = { type = "Prefix", affix = "Chayula's", "Gain 10% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 1, group = "ChaosDamageAsPortionOfColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2915373966] = { "Gain 10% of Cold Damage as Extra Chaos Damage" }, } },
+ ["BreachBodyChaosDamageAsPortionOfLightningDamage1"] = { type = "Prefix", affix = "Chayula's", "Gain 10% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 1, group = "ChaosDamageAsPortionOfLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2402136583] = { "Gain 10% of Lightning Damage as Extra Chaos Damage" }, } },
+ ["BreachBodyAllDefences1"] = { type = "Prefix", affix = "Chayula's", "50% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "50% increased Global Defences" }, } },
+ ["BreachBodyLifeGainedOnHittingIgnitedEnemies1"] = { type = "Suffix", affix = "of Xoph", "Gain (20-30) Life for each Ignited Enemy hit with Attacks", statOrder = { 1743 }, level = 1, group = "LifeGainOnHitVsIgnitedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [120895749] = { "Gain (20-30) Life for each Ignited Enemy hit with Attacks" }, } },
+ ["BreachBodyNoExtraBleedDamageWhileMoving1_"] = { type = "Suffix", affix = "of Uul-Netol", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3192 }, level = 1, group = "NoExtraBleedDamageWhileMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [935326447] = { "Moving while Bleeding doesn't cause you to take extra Damage" }, } },
+ ["BreachBodyAddedColdDamagePerPowerCharge1"] = { type = "Prefix", affix = "Tul's", "Adds 10 to 15 Cold Damage to Spells per Power Charge", statOrder = { 1825 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3408048164] = { "Adds 10 to 15 Cold Damage to Spells per Power Charge" }, } },
+ ["BreachBodyGainPowerChargeOnKillingFrozenEnemy1"] = { type = "Suffix", affix = "of Tul", "25% chance to gain a Power Charge on Killing a Frozen Enemy", statOrder = { 1824 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge" }, tradeHashes = { [3607154250] = { "25% chance to gain a Power Charge on Killing a Frozen Enemy" }, } },
+ ["BreachBodyIncreasedAttackSpeedPerDexterity1"] = { type = "Suffix", affix = "of Esh", "1% increased Attack Speed per 25 Dexterity", statOrder = { 4902 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2241560081] = { "1% increased Attack Speed per 25 Dexterity" }, } },
+ ["BreachBodyPhysicalDamageReductionWhileNotMoving1"] = { type = "Suffix", affix = "of Uul-Netol", "6% additional Physical Damage Reduction while stationary", statOrder = { 4313 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [2181129193] = { "6% additional Physical Damage Reduction while stationary" }, } },
+ ["BreachBodyAddedLightningDamagePerShockedEnemyKilled1"] = { type = "Prefix", affix = "Esh's", "Adds 1 to 5 Lightning Damage for each Shocked Enemy you've Killed Recently", statOrder = { 9243 }, level = 1, group = "AddedLightningDamagePerShockedEnemyKilled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4222857095] = { "Adds 1 to 5 Lightning Damage for each Shocked Enemy you've Killed Recently" }, } },
+ ["BreachBodyReflectsShocks1"] = { type = "Suffix", affix = "of Esh", "Shock Reflection", statOrder = { 9884 }, level = 1, group = "ReflectsShocks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3291999509] = { "Shock Reflection" }, } },
+ ["BreachBodyChaosDamageDoesNotBypassESNotLowLifeOrMana1_"] = { type = "Prefix", affix = "Esh's", "Chaos Damage taken does not bypass Energy Shield while not on Low Life", statOrder = { 5729 }, level = 1, group = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [887556907] = { "Chaos Damage taken does not bypass Energy Shield while not on Low Life" }, } },
+ ["BreachBodyOnHitBlindChilledEnemies1"] = { type = "Suffix", affix = "of Tul", "Blind Chilled Enemies on Hit", statOrder = { 5216 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3450276548] = { "Blind Chilled Enemies on Hit" }, } },
+ ["BreachBodyVulnerabilityOnHit1"] = { type = "Suffix", affix = "of Uul-Netol", "25% chance to Curse Enemies with Vulnerability on Hit", statOrder = { 2524 }, level = 1, group = "CurseLevel10VulnerabilityOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2213584313] = { "25% chance to Curse Enemies with Vulnerability on Hit" }, } },
+ ["BreachBodyGrantsEnvy1"] = { type = "Prefix", affix = "Chayula's", "Grants Level 15 Envy Skill", statOrder = { 655 }, level = 1, group = "GrantsEnvy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [52953650] = { "Grants Level 15 Envy Skill" }, } },
+ ["BreachBodyEnemiesBlockedAreIntimidated1"] = { type = "Prefix", affix = "Uul-Netol's", "Permanently Intimidate Enemies on Block", statOrder = { 9610 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [2930706364] = { "Permanently Intimidate Enemies on Block" }, } },
+ ["BreachBodyMinionsPoisonEnemiesOnHit1_"] = { type = "Suffix", affix = "of Chayula", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 3174 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "minion", "ailment" }, tradeHashes = { [1974445926] = { "Minions have 60% chance to Poison Enemies on Hit" }, } },
+ ["BreachBodyArmourIncreasedByUncappedFireResistance1____"] = { type = "Prefix", affix = "Xoph's", "Armour is increased by Overcapped Fire Resistance", statOrder = { 4763 }, level = 1, group = "ArmourIncreasedByUncappedFireResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2129352930] = { "Armour is increased by Overcapped Fire Resistance" }, } },
+ ["BreachBodyEvasionIncreasedByUncappedColdResistance1"] = { type = "Prefix", affix = "Tul's", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 6486 }, level = 1, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2358015838] = { "Evasion Rating is increased by Overcapped Cold Resistance" }, } },
+ ["BreachBodyCriticalChanceIncreasedByUncappedLightningResistance1"] = { type = "Suffix", affix = "of Esh", "Critical Strike Chance is increased by Overcapped Lightning Resistance", statOrder = { 5919 }, level = 1, group = "CriticalChanceIncreasedByUncappedLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [2478752719] = { "Critical Strike Chance is increased by Overcapped Lightning Resistance" }, } },
+ ["BreachBodyCoverInAshWhenHit1__"] = { type = "Prefix", affix = "Xoph's", "Cover Enemies in Ash when they Hit you", statOrder = { 4695 }, level = 1, group = "CoverInAshWhenHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3748879662] = { "Cover Enemies in Ash when they Hit you" }, } },
+ ["BreachBodyChillEnemiesWhenHit1"] = { type = "Suffix", affix = "of Tul", "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%", statOrder = { 3140 }, level = 1, group = "ChillEnemiesWhenHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2459809121] = { "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%" }, } },
+ ["BreachBodyArcticArmourReservationCost1"] = { type = "Suffix", affix = "of Tul", "Arctic Armour has 100% increased Mana Reservation Efficiency", statOrder = { 4714 }, level = 1, group = "ArcticArmourReservationCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2605040931] = { "Arctic Armour has 100% increased Mana Reservation Efficiency" }, } },
+ ["BreachBodyArcticArmourReservationEfficiency1"] = { type = "Suffix", affix = "of Tul", "Arctic Armour has 100% increased Mana Reservation Efficiency", statOrder = { 4715 }, level = 1, group = "ArcticArmourReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2351239732] = { "Arctic Armour has 100% increased Mana Reservation Efficiency" }, } },
+ ["BreachBodyMaximumLifeConvertedToEnergyShield1___"] = { type = "Prefix", affix = "Chayula's", "10% of Maximum Life Converted to Energy Shield", statOrder = { 9161 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [2458962764] = { "10% of Maximum Life Converted to Energy Shield" }, } },
+ ["LocalIncreaseSocketedActiveGemLevelUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "+1 to Level of Socketed Skill Gems", "+(5-10)% to Quality of Socketed Skill Gems", statOrder = { 190, 206 }, level = 90, group = "LocalIncreaseSocketedActiveSkillGemLevelMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, [1325783255] = { "+(5-10)% to Quality of Socketed Skill Gems" }, } },
+ ["LocalIncreaseSocketedSupportGemLevelUberMaven___"] = { type = "Prefix", affix = "Elevated Elder's", "+1 to Level of Socketed Support Gems", "+(5-10)% to Quality of Socketed Support Gems", statOrder = { 189, 205 }, level = 90, group = "LocalIncreaseSocketedSupportGemLevelMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [1328548975] = { "+(5-10)% to Quality of Socketed Support Gems" }, [4154259475] = { "+1 to Level of Socketed Support Gems" }, } },
+ ["PhysicalDamageTakenAsFirePercentUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(16-18)% of Physical Damage from Hits taken as Fire Damage", "(7-10)% of Fire Damage taken Recouped as Life", statOrder = { 2447, 6571 }, level = 94, group = "PhysicalDamageTakenAsFireUberMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(16-18)% of Physical Damage from Hits taken as Fire Damage" }, [1742651309] = { "(7-10)% of Fire Damage taken Recouped as Life" }, } },
+ ["PhysicalDamageTakenAsColdPercentUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "(16-18)% of Physical Damage from Hits taken as Cold Damage", "(7-10)% of Cold Damage taken Recouped as Life", statOrder = { 2448, 5818 }, level = 93, group = "PhysicalDamageTakenAsColdUberMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(7-10)% of Cold Damage taken Recouped as Life" }, [1871056256] = { "(16-18)% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["PhysicalDamageTakenAsLightningPercentUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "(16-18)% of Physical Damage from Hits taken as Lightning Damage", "(7-10)% of Lightning Damage taken Recouped as Life", statOrder = { 2449, 7451 }, level = 92, group = "PhysicalDamageTakenAsLightningUberMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(16-18)% of Physical Damage from Hits taken as Lightning Damage" }, [2970621759] = { "(7-10)% of Lightning Damage taken Recouped as Life" }, } },
+ ["ReducedElementalReflectTakenUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "(3-5)% reduced Elemental Damage taken", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 3293, 6334 }, level = 85, group = "ReducedElementalReflectTakenMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take 100% reduced Reflected Elemental Damage" }, [2734809852] = { "(3-5)% reduced Elemental Damage taken" }, } },
+ ["ReducedPhysicalReflectTakenUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(3-5)% reduced Physical Damage taken", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 2241, 9670 }, level = 85, group = "ReducedPhysicalReflectTakenMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [3853018505] = { "(3-5)% reduced Physical Damage taken" }, [129035625] = { "You and your Minions take 100% reduced Reflected Physical Damage" }, } },
+ ["ElementalDamageCannotBeReflectedPercentUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "100% of Elemental Hit Damage from you and your Minions cannot be Reflected", "(3-5)% reduced Elemental Damage taken", statOrder = { 2, 3293 }, level = 85, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercentMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2734809852] = { "(3-5)% reduced Elemental Damage taken" }, [3408683611] = { "100% of Elemental Hit Damage from you and your Minions cannot be Reflected" }, } },
+ ["PhysicalDamageCannotBeReflectedPercentUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "100% of Physical Hit Damage from you and your Minions cannot be Reflected", "(3-5)% reduced Physical Damage taken", statOrder = { 3, 2241 }, level = 85, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercentMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [1818622832] = { "100% of Physical Hit Damage from you and your Minions cannot be Reflected" }, [3853018505] = { "(3-5)% reduced Physical Damage taken" }, } },
+ ["MaximumLifeUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(13-15)% increased maximum Life", statOrder = { 1571 }, level = 95, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [983749596] = { "(13-15)% increased maximum Life" }, } },
+ ["MaximumManaBodyUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "(16-18)% increased maximum Mana", statOrder = { 1580 }, level = 85, group = "MaximumManaIncreaseShaper", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(16-18)% increased maximum Mana" }, } },
+ ["DamageTakenFromManaBeforeLifeUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "(11-15)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 90, group = "DamageRemovedFromManaBeforeLife", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(11-15)% of Damage is taken from Mana before Life" }, } },
+ ["MaximumLifeOnKillPercentUberMaven__"] = { type = "Suffix", affix = "of the Elevated Elder", "Recover (5-6)% of Life on Kill", "(5-10)% increased Life Recovery Rate if you haven't Killed Recently", statOrder = { 1749, 7393 }, level = 85, group = "MaximumLifeOnKillPercentMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3353368340] = { "(5-10)% increased Life Recovery Rate if you haven't Killed Recently" }, [2023107756] = { "Recover (5-6)% of Life on Kill" }, } },
+ ["MaximumManaOnKillPercentUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Recover (5-6)% of Mana on Kill", "(5-10)% increased Mana Recovery Rate if you haven't Killed Recently", statOrder = { 1751, 8191 }, level = 85, group = "MaximumManaOnKillPercentMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1030153674] = { "Recover (5-6)% of Mana on Kill" }, [630994130] = { "(5-10)% increased Mana Recovery Rate if you haven't Killed Recently" }, } },
+ ["MaximumEnergyShieldOnKillPercentUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Recover (5-6)% of Energy Shield on Kill", "(5-10)% increased Energy Shield Recovery Rate if you haven't Killed Recently", statOrder = { 1750, 6450 }, level = 85, group = "MaximumEnergyShieldOnKillPercentMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (5-6)% of Energy Shield on Kill" }, [2698606393] = { "(5-10)% increased Energy Shield Recovery Rate if you haven't Killed Recently" }, } },
+ ["PercentageStrengthUberMaven__"] = { type = "Suffix", affix = "of the Elevated Elder", "+1 to Level of Socketed Strength Gems", "(9-12)% increased Strength", statOrder = { 158, 1184 }, level = 93, group = "PercentageStrengthMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, tradeHashes = { [734614379] = { "(9-12)% increased Strength" }, [916797432] = { "+1 to Level of Socketed Strength Gems" }, } },
+ ["PercentageDexterityUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+1 to Level of Socketed Dexterity Gems", "(9-12)% increased Dexterity", statOrder = { 160, 1185 }, level = 93, group = "PercentageDexterityMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, tradeHashes = { [4139681126] = { "(9-12)% increased Dexterity" }, [2718698372] = { "+1 to Level of Socketed Dexterity Gems" }, } },
+ ["PercentageIntelligenceUberMaven__"] = { type = "Suffix", affix = "of Elevated Shaping", "+1 to Level of Socketed Intelligence Gems", "(9-12)% increased Intelligence", statOrder = { 161, 1186 }, level = 93, group = "PercentageIntelligenceMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, tradeHashes = { [656461285] = { "(9-12)% increased Intelligence" }, [1719423857] = { "+1 to Level of Socketed Intelligence Gems" }, } },
+ ["LifeRegenerationRatePercentUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Regenerate (2.1-3)% of Life per second", statOrder = { 1944 }, level = 85, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (2.1-3)% of Life per second" }, } },
+ ["SupportedByItemRarityUberMaven__"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 20 Item Rarity", "(19-25)% increased Rarity of Items found from Slain Unique Enemies", statOrder = { 321, 10504 }, level = 95, group = "SupportedByItemRarityUnique", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem", "drop" }, tradeHashes = { [121185030] = { "(19-25)% increased Rarity of Items found from Slain Unique Enemies" }, [3587013273] = { "Socketed Gems are Supported by Level 20 Item Rarity" }, } },
+ ["AdditionalCriticalStrikeChanceWithAttacksUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Attacks have +(1.6-2)% to Critical Strike Chance", statOrder = { 4792 }, level = 94, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(1.6-2)% to Critical Strike Chance" }, } },
+ ["AdditionalCriticalStrikeChanceWithSpellsUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(1.6-2)% to Spell Critical Strike Chance", statOrder = { 10125 }, level = 94, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "critical" }, tradeHashes = { [791835907] = { "+(1.6-2)% to Spell Critical Strike Chance" }, } },
+ ["MaximumManaInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(16-18)% increased maximum Mana", statOrder = { 1580 }, level = 90, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [2748665614] = { "(16-18)% increased maximum Mana" }, } },
+ ["PhysTakenAsLightningInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(16-18)% of Physical Damage from Hits taken as Lightning Damage", "(7-10)% of Lightning Damage taken Recouped as Life", statOrder = { 2449, 7451 }, level = 93, group = "PhysicalDamageTakenAsLightningUberMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(16-18)% of Physical Damage from Hits taken as Lightning Damage" }, [2970621759] = { "(7-10)% of Lightning Damage taken Recouped as Life" }, } },
+ ["ConsecratedGroundStationaryInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "You have Consecrated Ground around you while stationary", "Effects of Consecrated Ground you create Linger for 1 second", statOrder = { 5856, 10689 }, level = 85, group = "ConsecratedGroundStationaryMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4113372195] = { "Effects of Consecrated Ground you create Linger for 1 second" }, [880970200] = { "You have Consecrated Ground around you while stationary" }, } },
+ ["HolyPhysicalExplosionInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Crusader's", "(8-12)% increased Area of Effect", "Enemies you Kill Explode, dealing 5% of their Life as Physical Damage", statOrder = { 1880, 6372 }, level = 95, group = "EnemiesExplodeOnDeathPhysicalMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1220361974] = { "Enemies you Kill Explode, dealing 5% of their Life as Physical Damage" }, [280731498] = { "(8-12)% increased Area of Effect" }, } },
+ ["HolyPhysicalExplosionChanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(8-12)% increased Area of Effect", "Enemies you Kill have a (31-35)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 1880, 3304 }, level = 95, group = "EnemiesExplodeOnDeathPhysicalChanceMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [280731498] = { "(8-12)% increased Area of Effect" }, [3295179224] = { "Enemies you Kill have a (31-35)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage" }, } },
+ ["PercentageIntelligenceBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "+1 to Level of Socketed Intelligence Gems", "(9-12)% increased Intelligence", statOrder = { 161, 1186 }, level = 85, group = "PercentageIntelligenceMaven", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, tradeHashes = { [656461285] = { "(9-12)% increased Intelligence" }, [1719423857] = { "+1 to Level of Socketed Intelligence Gems" }, } },
+ ["AddPowerChargeOnCritInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "15% chance to gain a Power Charge on Critical Strike", "3% increased Damage per Power Charge", statOrder = { 1830, 6066 }, level = 90, group = "PowerChargeOnCriticalStrikeChanceMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge", "influence_mod", "critical" }, tradeHashes = { [3814876985] = { "15% chance to gain a Power Charge on Critical Strike" }, [2034658008] = { "3% increased Damage per Power Charge" }, } },
+ ["EnergyShieldOnKillPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "Recover (5-6)% of Energy Shield on Kill", "(5-10)% increased Energy Shield Recovery Rate if you haven't Killed Recently", statOrder = { 1750, 6450 }, level = 90, group = "MaximumEnergyShieldOnKillPercentMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2406605753] = { "Recover (5-6)% of Energy Shield on Kill" }, [2698606393] = { "(5-10)% increased Energy Shield Recovery Rate if you haven't Killed Recently" }, } },
+ ["EnergyShieldRecoveryRateBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(12-15)% increased Energy Shield Recovery rate", "Regenerate (50-100) Energy Shield per second", statOrder = { 1568, 2645 }, level = 90, group = "EnergyShieldRecoveryRateMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [988575597] = { "(12-15)% increased Energy Shield Recovery rate" }, [1330109706] = { "Regenerate (50-100) Energy Shield per second" }, } },
+ ["PhysTakenAsFireInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(16-18)% of Physical Damage from Hits taken as Fire Damage", "(7-10)% of Fire Damage taken Recouped as Life", statOrder = { 2447, 6571 }, level = 93, group = "PhysicalDamageTakenAsFireUberMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(16-18)% of Physical Damage from Hits taken as Fire Damage" }, [1742651309] = { "(7-10)% of Fire Damage taken Recouped as Life" }, } },
+ ["SocketedActiveGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Level of Socketed Skill Gems", "+(5-10)% to Quality of Socketed Skill Gems", statOrder = { 190, 206 }, level = 80, group = "LocalIncreaseSocketedActiveSkillGemLevelMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [524797741] = { "+1 to Level of Socketed Skill Gems" }, [1325783255] = { "+(5-10)% to Quality of Socketed Skill Gems" }, } },
+ ["ReflectedPhysicalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(3-5)% reduced Physical Damage taken", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 2241, 9670 }, level = 85, group = "ReducedPhysicalReflectTakenMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [3853018505] = { "(3-5)% reduced Physical Damage taken" }, [129035625] = { "You and your Minions take 100% reduced Reflected Physical Damage" }, } },
+ ["PhysicalDamageCannotBeReflectedPercentInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "100% of Physical Hit Damage from you and your Minions cannot be Reflected", "(3-5)% reduced Physical Damage taken", statOrder = { 3, 2241 }, level = 85, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercentMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, tradeHashes = { [1818622832] = { "100% of Physical Hit Damage from you and your Minions cannot be Reflected" }, [3853018505] = { "(3-5)% reduced Physical Damage taken" }, } },
+ ["AllResistancesInfluenceMaven____"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(19-22)% to all Elemental Resistances", "+1% to all maximum Elemental Resistances", statOrder = { 1619, 1643 }, level = 85, group = "AllResistancesMaven", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, tradeHashes = { [2901986750] = { "+(19-22)% to all Elemental Resistances" }, [1978899297] = { "+1% to all maximum Elemental Resistances" }, } },
+ ["PercentageStrengthBodyInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Conquest", "+1 to Level of Socketed Strength Gems", "(9-12)% increased Strength", statOrder = { 158, 1184 }, level = 85, group = "PercentageStrengthMaven", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, tradeHashes = { [734614379] = { "(9-12)% increased Strength" }, [916797432] = { "+1 to Level of Socketed Strength Gems" }, } },
+ ["EnduranceChargeIfHitRecentlyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "3% increased Area of Effect per Endurance Charge", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 4733, 6746 }, level = 90, group = "EnduranceChargeIfHitRecentlyMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [2894476716] = { "Gain 1 Endurance Charge every second if you've been Hit Recently" }, [2448279015] = { "3% increased Area of Effect per Endurance Charge" }, } },
+ ["LifeOnKillPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Recover (5-6)% of Life on Kill", "(5-10)% increased Life Recovery Rate if you haven't Killed Recently", statOrder = { 1749, 7393 }, level = 90, group = "MaximumLifeOnKillPercentMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [3353368340] = { "(5-10)% increased Life Recovery Rate if you haven't Killed Recently" }, [2023107756] = { "Recover (5-6)% of Life on Kill" }, } },
+ ["LifeRecoveryRateBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(12-15)% increased Life Recovery rate", "Life Flasks gain 1 Charge every 3 seconds", statOrder = { 1578, 7347 }, level = 90, group = "LifeRecoveryRateMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "life" }, tradeHashes = { [3240073117] = { "(12-15)% increased Life Recovery rate" }, [2592686757] = { "Life Flasks gain 1 Charge every 3 seconds" }, } },
+ ["SocketedAttacksManaCostInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Ignore Stuns while using Socketed Attack Skills", "Socketed Attacks have -20 to Total Mana Cost", statOrder = { 545, 549 }, level = 95, group = "SocketedAttacksManaCostMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "resource", "influence_mod", "mana", "attack", "gem" }, tradeHashes = { [1439818705] = { "Ignore Stuns while using Socketed Attack Skills" }, [2264586521] = { "Socketed Attacks have -20 to Total Mana Cost" }, } },
+ ["PhysTakenAsColdInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(16-18)% of Physical Damage from Hits taken as Cold Damage", "(7-10)% of Cold Damage taken Recouped as Life", statOrder = { 2448, 5818 }, level = 93, group = "PhysicalDamageTakenAsColdUberMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(7-10)% of Cold Damage taken Recouped as Life" }, [1871056256] = { "(16-18)% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["SocketedSupportGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "+1 to Level of Socketed Support Gems", "+(5-10)% to Quality of Socketed Support Gems", statOrder = { 189, 205 }, level = 90, group = "LocalIncreaseSocketedSupportGemLevelMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, tradeHashes = { [1328548975] = { "+(5-10)% to Quality of Socketed Support Gems" }, [4154259475] = { "+1 to Level of Socketed Support Gems" }, } },
+ ["ReflectedElementalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(3-5)% reduced Elemental Damage taken", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 3293, 6334 }, level = 85, group = "ReducedElementalReflectTakenMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2160417795] = { "You and your Minions take 100% reduced Reflected Elemental Damage" }, [2734809852] = { "(3-5)% reduced Elemental Damage taken" }, } },
+ ["ElementalDamageCannotBeReflectedPercentInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "100% of Elemental Hit Damage from you and your Minions cannot be Reflected", "(3-5)% reduced Elemental Damage taken", statOrder = { 2, 3293 }, level = 85, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercentMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, tradeHashes = { [2734809852] = { "(3-5)% reduced Elemental Damage taken" }, [3408683611] = { "100% of Elemental Hit Damage from you and your Minions cannot be Reflected" }, } },
+ ["NearbyEnemiesAreBlindedInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Cannot be Blinded", "Nearby Enemies are Blinded", statOrder = { 2974, 3396 }, level = 85, group = "NearbyEnemiesAreBlindedMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, [2826979740] = { "Nearby Enemies are Blinded" }, } },
+ ["PercentageDexterityBodyInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "+1 to Level of Socketed Dexterity Gems", "(9-12)% increased Dexterity", statOrder = { 160, 1185 }, level = 85, group = "PercentageDexterityMaven", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, tradeHashes = { [4139681126] = { "(9-12)% increased Dexterity" }, [2718698372] = { "+1 to Level of Socketed Dexterity Gems" }, } },
+ ["FrenzyChargeOnHitChanceInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "1% increased Movement Speed per Frenzy Charge", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1802, 1833 }, level = 90, group = "FrenzyChargeOnHitChanceMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge", "influence_mod", "speed" }, tradeHashes = { [2323242761] = { "10% chance to gain a Frenzy Charge on Hit" }, [1541516339] = { "1% increased Movement Speed per Frenzy Charge" }, } },
+ ["ManaOnKillPercentInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "Recover (5-6)% of Mana on Kill", "(5-10)% increased Mana Recovery Rate if you haven't Killed Recently", statOrder = { 1751, 8191 }, level = 90, group = "MaximumManaOnKillPercentMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1030153674] = { "Recover (5-6)% of Mana on Kill" }, [630994130] = { "(5-10)% increased Mana Recovery Rate if you haven't Killed Recently" }, } },
+ ["ManaRecoveryRateBodyInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(12-15)% increased Mana Recovery rate", "(20-35)% increased Mana Recovery from Flasks", statOrder = { 1586, 2060 }, level = 90, group = "ManaRecoveryRateMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "mana" }, tradeHashes = { [2222186378] = { "(20-35)% increased Mana Recovery from Flasks" }, [3513180117] = { "(12-15)% increased Mana Recovery rate" }, } },
+ ["AuraEffectBodyInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(26-30)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 90, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "aura" }, tradeHashes = { [1880071428] = { "(26-30)% increased effect of Non-Curse Auras from your Skills" }, } },
+ ["MaximumLifeBodyInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Hunter's", "(13-15)% increased maximum Life", statOrder = { 1571 }, level = 95, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(13-15)% increased maximum Life" }, } },
+ ["PhysTakenAsChaosInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Hunter's", "+1% to maximum Chaos Resistance", "(16-18)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1640, 2451 }, level = 93, group = "PhysicalDamageTakenAsChaosUberMaven", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "chaos", "resistance" }, tradeHashes = { [4129825612] = { "(16-18)% of Physical Damage from Hits taken as Chaos Damage" }, [1301765461] = { "+1% to maximum Chaos Resistance" }, } },
+ ["AdditionalCurseOnEnemiesInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "You can apply an additional Curse", "20% increased Mana Reservation Efficiency of Curse Aura Skills", statOrder = { 2168, 5994 }, level = 92, group = "OLDAdditionalCurseOnEnemiesMaven", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "caster", "aura", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, [714566414] = { "20% increased Mana Reservation Efficiency of Curse Aura Skills" }, } },
+ ["AdditionalCurseOnEnemiesInfluenceMavenV2___"] = { type = "Prefix", affix = "Elevated Hunter's", "You can apply an additional Curse", "20% increased Mana Reservation Efficiency of Curse Aura Skills", statOrder = { 2168, 5995 }, level = 92, group = "AdditionalCurseOnEnemiesMaven", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "caster", "aura", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, [443165947] = { "20% increased Mana Reservation Efficiency of Curse Aura Skills" }, } },
+ ["RegenerateLifeOverMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Every 4 seconds, Regenerate 25% of Life over one second", statOrder = { 3786 }, level = 90, group = "RegenerateLifeOver1Second", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1242155304] = { "Every 4 seconds, Regenerate 25% of Life over one second" }, } },
+ ["OfferingEffectInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(26-35)% increased effect of Offerings", statOrder = { 4063 }, level = 90, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "(26-35)% increased effect of Offerings" }, } },
+ ["AdditionalCritWithAttacksInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Attacks have +(1.6-2)% to Critical Strike Chance", statOrder = { 4792 }, level = 94, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2572042788] = { "Attacks have +(1.6-2)% to Critical Strike Chance" }, } },
+ ["AdditionalCritWithSpellsInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(1.6-2)% to Spell Critical Strike Chance", statOrder = { 10125 }, level = 94, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [791835907] = { "+(1.6-2)% to Spell Critical Strike Chance" }, } },
+ ["LifeRegenerationPercentBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Regenerate (2.1-3)% of Life per second", statOrder = { 1944 }, level = 85, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (2.1-3)% of Life per second" }, } },
+ ["AreaDamageSupportedUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Concentrated Effect", "(23-25)% increased Area Damage", statOrder = { 453, 2035 }, level = 92, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [4251717817] = { "(23-25)% increased Area Damage" }, [2388360415] = { "Socketed Gems are Supported by Level 25 Concentrated Effect" }, } },
+ ["AreaOfEffectSupportedUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 25 Increased Area of Effect", "(13-15)% increased Area of Effect", statOrder = { 224, 1880 }, level = 93, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 25 Increased Area of Effect" }, [280731498] = { "(13-15)% increased Area of Effect" }, } },
+ ["MaximumManaUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(12-15)% increased maximum Mana", "Transfiguration of Mind", statOrder = { 1580, 4603 }, level = 85, group = "MaximumManaIncreasePercentMaven", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "damage" }, tradeHashes = { [2571899044] = { "Transfiguration of Mind" }, [2748665614] = { "(12-15)% increased maximum Mana" }, } },
+ ["MinionDamageSupportedUberMaven___"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Minion Damage", "Minions deal (23-25)% increased Damage", statOrder = { 506, 1973 }, level = 93, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, tradeHashes = { [808939569] = { "Socketed Gems are Supported by Level 25 Minion Damage" }, [1589917703] = { "Minions deal (23-25)% increased Damage" }, } },
+ ["MinionLifeSupportedUberMaven_"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Minion Life", "Minions have (23-25)% increased maximum Life", statOrder = { 504, 1766 }, level = 90, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 25 Minion Life" }, [770672621] = { "Minions have (23-25)% increased maximum Life" }, } },
+ ["AdditionalMinesPlacedSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Blastchain Mine", "Throw an additional Mine", statOrder = { 497, 3549 }, level = 95, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1710508327] = { "Socketed Gems are Supported by Level 25 Blastchain Mine" }, [2395088636] = { "Throw an additional Mine" }, } },
+ ["MineDamageUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Blastchain Mine", "(31-35)% increased Mine Damage", statOrder = { 497, 1196 }, level = 90, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(31-35)% increased Mine Damage" }, [1710508327] = { "Socketed Gems are Supported by Level 25 Blastchain Mine" }, } },
+ ["MineDamageTrapUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap And Mine Damage", "(31-35)% increased Mine Damage", statOrder = { 457, 1196 }, level = 90, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2137912951] = { "(31-35)% increased Mine Damage" }, [3814066599] = { "Socketed Gems are Supported by Level 25 Trap And Mine Damage" }, } },
+ ["IncreasedChillEffectSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Hypothermia", "(17-20)% increased Effect of Cold Ailments", statOrder = { 511, 5798 }, level = 90, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, tradeHashes = { [1793818220] = { "(17-20)% increased Effect of Cold Ailments" }, [13669281] = { "Socketed Gems are Supported by Level 25 Hypothermia" }, } },
+ ["IncreasedShockEffectSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Innervate", "(17-20)% increased Effect of Lightning Ailments", statOrder = { 521, 7433 }, level = 90, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, tradeHashes = { [3081816887] = { "(17-20)% increased Effect of Lightning Ailments" }, [1106668565] = { "Socketed Gems are Supported by Level 25 Innervate" }, } },
+ ["IgniteDurationSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Immolate", "(17-20)% increased Ignite Duration on Enemies", statOrder = { 309, 1859 }, level = 90, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, tradeHashes = { [1086147743] = { "(17-20)% increased Ignite Duration on Enemies" }, [2420410470] = { "Socketed Gems are Supported by Level 25 Immolate" }, } },
+ ["IncreasedBurningDamageSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Burning Damage", "(31-35)% increased Burning Damage", statOrder = { 312, 1877 }, level = 92, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1175385867] = { "(31-35)% increased Burning Damage" }, [2680613507] = { "Socketed Gems are Supported by Level 25 Burning Damage" }, } },
+ ["ChanceToGainPowerChargeOnKillUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "50% increased Power Charge Duration", "(11-15)% chance to gain a Power Charge on Kill", statOrder = { 2142, 2633 }, level = 94, group = "PowerChargeOnKillChanceMaven", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(11-15)% chance to gain a Power Charge on Kill" }, [3872306017] = { "50% increased Power Charge Duration" }, } },
+ ["SupportedByLessDurationUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Less Duration", statOrder = { 365 }, level = 78, group = "SupportedByLessDuration", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2487643588] = { "Socketed Gems are Supported by Level 25 Less Duration" }, } },
+ ["SpellAddedFireDamageUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Adds (35-49) to (60-73) Fire Damage to Spells", statOrder = { 1404 }, level = 92, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (35-49) to (60-73) Fire Damage to Spells" }, } },
+ ["SpellAddedColdDamageUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Adds (29-39) to (49-61) Cold Damage to Spells", statOrder = { 1405 }, level = 93, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (29-39) to (49-61) Cold Damage to Spells" }, } },
+ ["SpellAddedLightningDamageUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Adds (2-8) to (101-121) Lightning Damage to Spells", statOrder = { 1406 }, level = 94, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-8) to (101-121) Lightning Damage to Spells" }, } },
+ ["SpellAddedPhysicalDamageUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Adds (35-49) to (60-73) Physical Damage to Spells", statOrder = { 1403 }, level = 95, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (35-49) to (60-73) Physical Damage to Spells" }, } },
+ ["SpellAddedChaosDamageUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Adds (29-39) to (49-61) Chaos Damage to Spells", statOrder = { 1407 }, level = 95, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (29-39) to (49-61) Chaos Damage to Spells" }, } },
+ ["ManaRegenerationUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "(56-70)% increased Mana Regeneration Rate", "20% increased Mana Regeneration Rate while stationary", statOrder = { 1584, 4316 }, level = 85, group = "ManaRegenerationMaven", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3308030688] = { "20% increased Mana Regeneration Rate while stationary" }, [789117908] = { "(56-70)% increased Mana Regeneration Rate" }, } },
+ ["AddedManaRegenerationUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Regenerate (6-8) Mana per second", "Mana Flasks gain 1 Charge every 3 seconds", statOrder = { 1582, 8175 }, level = 90, group = "AddedManaRegenerationMaven", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (6-8) Mana per second" }, [1193925814] = { "Mana Flasks gain 1 Charge every 3 seconds" }, } },
+ ["AdditionalSpellBlockChanceUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(5-6)% Chance to Block Spell Damage", "+1% to maximum Chance to Block Spell Damage", statOrder = { 1160, 1989 }, level = 90, group = "SpellBlockPercentageMaven", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(5-6)% Chance to Block Spell Damage" }, [2388574377] = { "+1% to maximum Chance to Block Spell Damage" }, } },
+ ["SocketedSpellCriticalStrikeChanceUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Spells have +4% to Critical Strike Chance", statOrder = { 566 }, level = 94, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, tradeHashes = { [135378852] = { "Socketed Spells have +4% to Critical Strike Chance" }, } },
+ ["SocketedAttackCriticalStrikeChanceUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Attacks have +4% to Critical Strike Chance", statOrder = { 547 }, level = 93, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, tradeHashes = { [2867348718] = { "Socketed Attacks have +4% to Critical Strike Chance" }, } },
+ ["EnemyPhysicalDamageTakenAuraUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Nearby Enemies take 12% increased Physical Damage", statOrder = { 7918 }, level = 95, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [3853018505] = { "12% increased Physical Damage taken" }, [415837237] = { "Nearby Enemies take 12% increased Physical Damage" }, } },
+ ["EnemyElementalDamageTakenAuraUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Nearby Enemies take 9% increased Elemental Damage", statOrder = { 7913 }, level = 95, group = "NearbyEnemyElementalDamageTaken", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [639595152] = { "Nearby Enemies take 9% increased Elemental Damage" }, [2734809852] = { "9% increased Elemental Damage taken" }, } },
+ ["LifeRegenerationPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Regenerate (1.6-2)% of Life per second", statOrder = { 1944 }, level = 83, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.6-2)% of Life per second" }, } },
+ ["MaximumLightningResistanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 95, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } },
+ ["MaximumLightningResistanceInfluenceMavenNew"] = { type = "Suffix", affix = "of the Elevated Crusade", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 95, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } },
+ ["PhysTakenAsLightningHelmInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(11-13)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 93, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(11-13)% of Physical Damage from Hits taken as Lightning Damage" }, } },
+ ["EnemyLightningResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "Nearby Enemies have -12% to Lightning Resistance", statOrder = { 7916 }, level = 95, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "-12% to Lightning Resistance" }, [1849749435] = { "Nearby Enemies have -12% to Lightning Resistance" }, } },
+ ["SpellBlockPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(5-6)% Chance to Block Spell Damage", "+1% to maximum Chance to Block Spell Damage", statOrder = { 1160, 1989 }, level = 90, group = "SpellBlockPercentageMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [561307714] = { "(5-6)% Chance to Block Spell Damage" }, [2388574377] = { "+1% to maximum Chance to Block Spell Damage" }, } },
+ ["FortifyEffectInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Crusade", "+500 to Armour while Fortified", "+(4.2-5) to maximum Fortification", statOrder = { 4767, 9117 }, level = 90, group = "FortifyEffectMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "armour" }, tradeHashes = { [153004860] = { "+500 to Armour while Fortified" }, [335507772] = { "+(4.2-5) to maximum Fortification" }, } },
+ ["EnergyShieldRegenInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Crusade", "(15-25)% increased Energy Shield Recharge Rate", "Regenerate (1-1.5)% of Energy Shield per second", statOrder = { 1565, 2646 }, level = 85, group = "EnergyShieldRegenerationPerMinuteMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(15-25)% increased Energy Shield Recharge Rate" }, [3594640492] = { "Regenerate (1-1.5)% of Energy Shield per second" }, } },
+ ["ReducedIgniteDurationInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(51-60)% reduced Ignite Duration on you", "(36-50)% increased Damage if you've been Ignited Recently", statOrder = { 1875, 6045 }, level = 85, group = "ReducedBurnDurationMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [430821956] = { "(36-50)% increased Damage if you've been Ignited Recently" }, [986397080] = { "(51-60)% reduced Ignite Duration on you" }, } },
+ ["ReducedFreezeDurationInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Crusade", "(51-60)% reduced Freeze Duration on you", "(4-7)% reduced Damage taken if you've been Frozen Recently", statOrder = { 1874, 6117 }, level = 85, group = "ReducedFreezeDurationMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-60)% reduced Freeze Duration on you" }, [3616645755] = { "(4-7)% reduced Damage taken if you've been Frozen Recently" }, } },
+ ["ReducedShockEffectInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(45-75)% increased Critical Strike Chance if you've been Shocked Recently", "(51-60)% reduced Effect of Shock on you", statOrder = { 5926, 10019 }, level = 85, group = "ReducedShockEffectOnSelfMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "critical", "ailment" }, tradeHashes = { [3801067695] = { "(51-60)% reduced Effect of Shock on you" }, [1434381067] = { "(45-75)% increased Critical Strike Chance if you've been Shocked Recently" }, } },
+ ["MaximumPowerChargeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Maximum Power Charges", "10% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 1814, 6775, 6775.1 }, level = 85, group = "IncreasedMaximumPowerChargesMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [1232004574] = { "10% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges" }, [227523295] = { "+1 to Maximum Power Charges" }, } },
+ ["PhysTakenAsFireHelmetInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(11-13)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 93, group = "PhysicalDamageTakenAsFireUber", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(11-13)% of Physical Damage from Hits taken as Fire Damage" }, } },
+ ["ElementalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(19-22)% increased Elemental Damage", "Damage Penetrates (2-3)% of Enemy Elemental Resistances", statOrder = { 1980, 3559 }, level = 85, group = "ElementalDamagePercentMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, tradeHashes = { [697807915] = { "Damage Penetrates (2-3)% of Enemy Elemental Resistances" }, [3141070085] = { "(19-22)% increased Elemental Damage" }, } },
+ ["WarcryAreaOfEffectInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "15% increased Warcry Buff Effect", "Warcry Skills have (26-30)% increased Area of Effect", statOrder = { 10566, 10574 }, level = 85, group = "WarcryAreaOfEffectMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [2567751411] = { "Warcry Skills have (26-30)% increased Area of Effect" }, [3037553757] = { "15% increased Warcry Buff Effect" }, } },
+ ["EnemyFireResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Nearby Enemies have -12% to Fire Resistance", statOrder = { 7914 }, level = 95, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "resistance" }, tradeHashes = { [3914021960] = { "Nearby Enemies have -12% to Fire Resistance" }, [3372524247] = { "-12% to Fire Resistance" }, } },
+ ["CriticalStrikeMultiplierInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(21-24)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 85, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(21-24)% to Global Critical Strike Multiplier" }, } },
+ ["ManaRegenerationInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(56-70)% increased Mana Regeneration Rate", "20% increased Mana Regeneration Rate while stationary", statOrder = { 1584, 4316 }, level = 85, group = "ManaRegenerationMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [3308030688] = { "20% increased Mana Regeneration Rate while stationary" }, [789117908] = { "(56-70)% increased Mana Regeneration Rate" }, } },
+ ["GainAccuracyEqualToStrengthInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "1% increased Critical Strike Chance per 10 Strength", "Gain Accuracy Rating equal to your Strength", statOrder = { 5930, 6712 }, level = 85, group = "GainAccuracyEqualToStrengthMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "critical" }, tradeHashes = { [2511370818] = { "1% increased Critical Strike Chance per 10 Strength" }, [1575519214] = { "Gain Accuracy Rating equal to your Strength" }, } },
+ ["MinionLifeInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Minions have (36-40)% increased maximum Life", "Minions Regenerate (1-1.5)% of Life per second", statOrder = { 1766, 2911 }, level = 85, group = "MinionLifeMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate (1-1.5)% of Life per second" }, [770672621] = { "Minions have (36-40)% increased maximum Life" }, } },
+ ["PowerChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Power Charge Duration", "(11-15)% chance to gain a Power Charge on Kill", statOrder = { 2142, 2633 }, level = 90, group = "PowerChargeOnKillChanceMaven", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "power_charge", "influence_mod" }, tradeHashes = { [2483795307] = { "(11-15)% chance to gain a Power Charge on Kill" }, [3872306017] = { "50% increased Power Charge Duration" }, } },
+ ["PhysTakenAsColdHelmetInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(11-13)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 93, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(11-13)% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["SpellsAdditionalUnleashSealInfluenceMaven___"] = { type = "Prefix", affix = "Elevated Redeemer's", "(50-75)% increased Critical Strike Chance with Spells which remove the maximum number of Seals", "Skills supported by Unleash have +1 to maximum number of Seals", statOrder = { 10137, 10720 }, level = 90, group = "SpellsAdditionalUnleashSealMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "critical" }, tradeHashes = { [2897207025] = { "(50-75)% increased Critical Strike Chance with Spells which remove the maximum number of Seals" }, [3155029005] = { "Skills supported by Unleash have +1 to maximum number of Seals" }, } },
+ ["EnemyColdResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "Nearby Enemies have -12% to Cold Resistance", statOrder = { 7912 }, level = 95, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "-12% to Cold Resistance" }, [2674336304] = { "Nearby Enemies have -12% to Cold Resistance" }, } },
+ ["ReducedManaReservationInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(12-14)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 85, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [1269219558] = { "(12-14)% increased Mana Reservation Efficiency of Skills" }, } },
+ ["ManaReservationEfficiencyInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(11-14)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 85, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, tradeHashes = { [4237190083] = { "(11-14)% increased Mana Reservation Efficiency of Skills" }, } },
+ ["IgniteChanceAndDamageInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Ignite", "Ignites you inflict deal Damage (10-15)% faster", statOrder = { 2026, 2564 }, level = 85, group = "IgniteChanceAndDamageMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "(10-15)% chance to Ignite" }, [2443492284] = { "Ignites you inflict deal Damage (10-15)% faster" }, } },
+ ["FreezeChanceAndDurationInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Freeze", "Freeze Enemies as though dealing (30-50)% more Damage", statOrder = { 2029, 7102 }, level = 85, group = "FreezeChanceAndDurationMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1302208736] = { "Freeze Enemies as though dealing (30-50)% more Damage" }, [44571480] = { "(10-15)% chance to Freeze" }, } },
+ ["ShockChanceAndEffectInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Shock", "Shock Enemies as though dealing (30-50)% more Damage", statOrder = { 2033, 7103 }, level = 85, group = "ShockChanceAndEffectMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2206792089] = { "Shock Enemies as though dealing (30-50)% more Damage" }, [1538773178] = { "(10-15)% chance to Shock" }, } },
+ ["AddedManaRegenerationInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "Regenerate (6-8) Mana per second", "Mana Flasks gain 1 Charge every 3 seconds", statOrder = { 1582, 8175 }, level = 85, group = "AddedManaRegenerationMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "mana" }, tradeHashes = { [4291461939] = { "Regenerate (6-8) Mana per second" }, [1193925814] = { "Mana Flasks gain 1 Charge every 3 seconds" }, } },
+ ["SpellAddedFireDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (35-49) to (60-73) Fire Damage to Spells", statOrder = { 1404 }, level = 85, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (35-49) to (60-73) Fire Damage to Spells" }, } },
+ ["SpellAddedColdDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (29-39) to (49-61) Cold Damage to Spells", statOrder = { 1405 }, level = 85, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (29-39) to (49-61) Cold Damage to Spells" }, } },
+ ["SpellAddedLightningDamageInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (2-8) to (101-121) Lightning Damage to Spells", statOrder = { 1406 }, level = 85, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-8) to (101-121) Lightning Damage to Spells" }, } },
+ ["SpellAddedPhysicalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (35-49) to (60-73) Physical Damage to Spells", statOrder = { 1403 }, level = 85, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (35-49) to (60-73) Physical Damage to Spells" }, } },
+ ["SpellAddedChaosDamageInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (29-39) to (49-61) Chaos Damage to Spells", statOrder = { 1407 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [2300399854] = { "Adds (29-39) to (49-61) Chaos Damage to Spells" }, } },
+ ["EnemyChaosResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Nearby Enemies have -12% to Chaos Resistance", statOrder = { 7911 }, level = 95, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, tradeHashes = { [1902595112] = { "Nearby Enemies have -12% to Chaos Resistance" }, [2923486259] = { "-12% to Chaos Resistance" }, } },
+ ["PercentageIntelligenceInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(11-12)% increased Intelligence", statOrder = { 1186 }, level = 85, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(11-12)% increased Intelligence" }, } },
+ ["IgnitingConfluxInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(20-30)% increased Ignite Duration on Enemies", "You have Igniting Conflux for 3 seconds every 8 seconds", statOrder = { 1859, 6821 }, level = 90, group = "IgnitingConfluxMaven", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1190121450] = { "You have Igniting Conflux for 3 seconds every 8 seconds" }, [1086147743] = { "(20-30)% increased Ignite Duration on Enemies" }, } },
+ ["ChillingConfluxInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(20-30)% increased Chill Duration on Enemies", "You have Chilling Conflux for 3 seconds every 8 seconds", statOrder = { 1856, 6821 }, level = 90, group = "ChillingConfluxMaven", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1190121450] = { "You have Chilling Conflux for 3 seconds every 8 seconds" }, [3485067555] = { "(20-30)% increased Chill Duration on Enemies" }, } },
+ ["ShockingConfluxInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(20-30)% increased Shock Duration on Enemies", "You have Shocking Conflux for 3 seconds every 8 seconds", statOrder = { 1857, 6821 }, level = 90, group = "ShockingConfluxMaven", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1190121450] = { "You have Shocking Conflux for 3 seconds every 8 seconds" }, [3668351662] = { "(20-30)% increased Shock Duration on Enemies" }, } },
+ ["IncreasedAttackSpeedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Faster Attacks", "(13-14)% increased Attack Speed", statOrder = { 469, 1410 }, level = 92, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, tradeHashes = { [681332047] = { "(13-14)% increased Attack Speed" }, [928701213] = { "Socketed Gems are Supported by Level 25 Faster Attacks" }, } },
+ ["IncreasedCastSpeedUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Faster Casting", "(13-14)% increased Cast Speed", statOrder = { 500, 1446 }, level = 94, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 25 Faster Casting" }, [2891184298] = { "(13-14)% increased Cast Speed" }, } },
+ ["IncreasedAttackAndCastSpeedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(13-14)% increased Attack and Cast Speed", "(5-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2046, 2993 }, level = 95, group = "IncreasedAttackAndCastSpeedSupportedMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(13-14)% increased Attack and Cast Speed" }, [2988593550] = { "(5-10)% chance to gain Onslaught for 4 seconds on Kill" }, } },
+ ["SupportedByManaLeechUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 20 Mana Leech", "(20-30)% increased Maximum total Mana Recovery per second from Leech", statOrder = { 514, 1733 }, level = 78, group = "DisplaySupportedByManaLeechMaven", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "resource", "influence_mod", "mana", "gem" }, tradeHashes = { [96977651] = { "(20-30)% increased Maximum total Mana Recovery per second from Leech" }, [2608615082] = { "Socketed Gems are Supported by Level 20 Mana Leech" }, } },
+ ["ProjectileSpeedUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are supported by Level 25 Faster Projectiles", "(26-30)% increased Projectile Speed", statOrder = { 482, 1796 }, level = 92, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [99089516] = { "Socketed Gems are supported by Level 25 Faster Projectiles" }, [3759663284] = { "(26-30)% increased Projectile Speed" }, } },
+ ["ProjectileDamageUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 25 Slower Projectiles", "(23-25)% increased Projectile Damage", statOrder = { 377, 1996 }, level = 93, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1390285657] = { "Socketed Gems are Supported by Level 25 Slower Projectiles" }, [1839076647] = { "(23-25)% increased Projectile Damage" }, } },
+ ["ChanceToAvoidInterruptionWhileCastingUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "(31-60)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 90, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(31-60)% chance to Ignore Stuns while Casting" }, } },
+ ["IncreasedMeleeWeaponRangeUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+(0.3-0.4) metres to Melee Strike Range", statOrder = { 2534 }, level = 95, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [2264295449] = { "+(0.3-0.4) metres to Melee Strike Range" }, } },
+ ["IncreasedMeleeWeaponRangeAndMeleeDamageUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "(13-16)% increased Melee Damage", "+(0.3-0.4) metres to Melee Strike Range", statOrder = { 1234, 2534 }, level = 95, group = "MeleeDamageAndMeleeRange", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2264295449] = { "+(0.3-0.4) metres to Melee Strike Range" }, [1002362373] = { "(13-16)% increased Melee Damage" }, } },
+ ["AdditionalTrapsThrownSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 454, 9528 }, level = 94, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [1220800126] = { "Skills which Throw Traps throw up to 1 additional Trap" }, [1122134690] = { "Socketed Gems are Supported by Level 25 Trap" }, } },
+ ["TrapDamageUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap", "(31-35)% increased Trap Damage", statOrder = { 454, 1194 }, level = 90, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 25 Trap" }, [2941585404] = { "(31-35)% increased Trap Damage" }, } },
+ ["TrapDamageCooldownUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Advanced Traps", "(31-35)% increased Trap Damage", statOrder = { 390, 1194 }, level = 90, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3839163699] = { "Socketed Gems are Supported by Level 25 Advanced Traps" }, [2941585404] = { "(31-35)% increased Trap Damage" }, } },
+ ["TrapSpeedCooldownUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Advanced Traps", "(17-20)% increased Trap Throwing Speed", statOrder = { 390, 1927 }, level = 90, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [118398748] = { "(17-20)% increased Trap Throwing Speed" }, [3839163699] = { "Socketed Gems are Supported by Level 25 Advanced Traps" }, } },
+ ["TrapDamageMineUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap And Mine Damage", "(31-35)% increased Trap Damage", statOrder = { 457, 1194 }, level = 90, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3814066599] = { "Socketed Gems are Supported by Level 25 Trap And Mine Damage" }, [2941585404] = { "(31-35)% increased Trap Damage" }, } },
+ ["PoisonDamageSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Chance to Poison", "(31-35)% increased Damage with Poison", statOrder = { 523, 3181 }, level = 90, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 25 Chance to Poison" }, [1290399200] = { "(31-35)% increased Damage with Poison" }, } },
+ ["PoisonDurationSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Chance to Poison", "(17-20)% increased Poison Duration", statOrder = { 523, 3170 }, level = 90, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, tradeHashes = { [2011656677] = { "(17-20)% increased Poison Duration" }, [228165595] = { "Socketed Gems are Supported by Level 25 Chance to Poison" }, } },
+ ["BleedingDamageUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Chance To Bleed", "(31-35)% increased Damage with Bleeding", statOrder = { 244, 3169 }, level = 90, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, tradeHashes = { [4197676934] = { "Socketed Gems are Supported by Level 25 Chance To Bleed" }, [1294118672] = { "(31-35)% increased Damage with Bleeding" }, } },
+ ["ChanceToGainFrenzyChargeOnKillUberElderMaven"] = { type = "Prefix", affix = "Elevated Elder's", "50% increased Frenzy Charge Duration", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2127, 2631 }, level = 94, group = "FrenzyChargeOnKillChanceMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [3338298622] = { "50% increased Frenzy Charge Duration" }, [1826802197] = { "(7-10)% chance to gain a Frenzy Charge on Kill" }, } },
+ ["IncreasedAccuracySupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are supported by Level 25 Additional Accuracy", "(16-20)% increased Global Accuracy Rating", statOrder = { 480, 1434 }, level = 93, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, tradeHashes = { [1567462963] = { "Socketed Gems are supported by Level 25 Additional Accuracy" }, [624954515] = { "(16-20)% increased Global Accuracy Rating" }, } },
+ ["AdditionalBlockChanceUberMaven___"] = { type = "Suffix", affix = "of the Elevated Elder", "(4-5)% Chance to Block Attack Damage", "+1% to maximum Chance to Block Attack Damage", statOrder = { 1138, 1988 }, level = 90, group = "BlockPercentMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [4124805414] = { "+1% to maximum Chance to Block Attack Damage" }, [2530372417] = { "(4-5)% Chance to Block Attack Damage" }, } },
+ ["BlindOnHitSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are supported by Level 25 Blind", "(9-10)% Global chance to Blind Enemies on hit", statOrder = { 470, 2958 }, level = 90, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [2223640518] = { "Socketed Gems are supported by Level 25 Blind" }, [2221570601] = { "(9-10)% Global chance to Blind Enemies on hit" }, } },
+ ["SocketedSpellCriticalMultiplierUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Spells have +90% to Critical Strike Multiplier", statOrder = { 567 }, level = 93, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, tradeHashes = { [2828710986] = { "Socketed Spells have +90% to Critical Strike Multiplier" }, } },
+ ["SocketedAttackCriticalMultiplierUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Attacks have +90% to Critical Strike Multiplier", statOrder = { 548 }, level = 94, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, tradeHashes = { [356456977] = { "Socketed Attacks have +90% to Critical Strike Multiplier" }, } },
+ ["ChaosNonAilmentDamageOverTimeMultiplierUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+(17-24)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 90, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "influence_mod", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(17-24)% to Chaos Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplierUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(17-24)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 90, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(17-24)% to Cold Damage over Time Multiplier" }, } },
+ ["FireDamageOverTimeMultiplierUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(17-24)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 90, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(17-24)% to Fire Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "+(17-24)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 90, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(17-24)% to Physical Damage over Time Multiplier" }, } },
+ ["AvoidStunInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Conquest", "(36-50)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 85, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(36-50)% chance to Avoid being Stunned" }, } },
+ ["MaximumColdResistanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 95, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } },
+ ["MaximumColdResistanceInfluenceMavenNew"] = { type = "Suffix", affix = "of the Elevated Crusade", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 95, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to maximum Cold Resistance" }, } },
+ ["ConvertPhysicalToFireInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (3-5)% of Physical Damage as Extra Fire Damage", "(22-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1932, 1955 }, level = 81, group = "ConvertPhysicalToFireMaven", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1533563525] = { "(22-25)% of Physical Damage Converted to Fire Damage" }, [369494213] = { "Gain (3-5)% of Physical Damage as Extra Fire Damage" }, } },
+ ["ConvertPhysicalToColdInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (3-5)% of Physical Damage as Extra Cold Damage", "(22-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1933, 1957 }, level = 81, group = "ConvertPhysicalToColdMaven", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [2133341901] = { "(22-25)% of Physical Damage Converted to Cold Damage" }, [979246511] = { "Gain (3-5)% of Physical Damage as Extra Cold Damage" }, } },
+ ["ConvertPhysicalToLightningInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (3-5)% of Physical Damage as Extra Lightning Damage", "(22-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1934, 1959 }, level = 81, group = "ConvertPhysicalToLightningMaven", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (3-5)% of Physical Damage as Extra Lightning Damage" }, [3240769289] = { "(22-25)% of Physical Damage Converted to Lightning Damage" }, } },
+ ["MaximumLifeLeechRateInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "20% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 85, group = "MaximumLifeLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, tradeHashes = { [4118987751] = { "20% increased Maximum total Life Recovery per second from Leech" }, } },
+ ["MaximumEnergyShieldLeechRateInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Crusader's", "30% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1734 }, level = 85, group = "MaximumEnergyShieldLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, tradeHashes = { [2013799819] = { "30% increased Maximum total Energy Shield Recovery per second from Leech" }, } },
+ ["AvoidInterruptionWhileCastingInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(31-60)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 85, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1916706958] = { "(31-60)% chance to Ignore Stuns while Casting" }, } },
+ ["GlobalCriticalStrikeChanceInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(31-60)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 85, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [587431675] = { "(31-60)% increased Global Critical Strike Chance" }, } },
+ ["MaximumFrenzyChargeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Maximum Frenzy Charges", "10% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", statOrder = { 1809, 6773 }, level = 85, group = "MaximumFrenzyChargesMaven", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, [2119664154] = { "10% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges" }, } },
+ ["MeleeDamageInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Melee Damage", statOrder = { 1234 }, level = 83, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [1002362373] = { "(31-38)% increased Melee Damage" }, } },
+ ["ProjectileAttackDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 83, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, tradeHashes = { [2162876159] = { "(31-38)% increased Projectile Attack Damage" }, } },
+ ["SpellDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Spell Damage", statOrder = { 1223 }, level = 83, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(31-38)% increased Spell Damage" }, } },
+ ["DamageOverTimeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Damage over Time", statOrder = { 1210 }, level = 83, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [967627487] = { "(31-38)% increased Damage over Time" }, } },
+ ["MeleeWeaponRangeInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(0.3-0.4) metres to Melee Strike Range", statOrder = { 2534 }, level = 92, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [2264295449] = { "+(0.3-0.4) metres to Melee Strike Range" }, } },
+ ["BlockPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(4-5)% Chance to Block Attack Damage", "+1% to maximum Chance to Block Attack Damage", statOrder = { 1138, 1988 }, level = 90, group = "BlockPercentMaven", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, tradeHashes = { [4124805414] = { "+1% to maximum Chance to Block Attack Damage" }, [2530372417] = { "(4-5)% Chance to Block Attack Damage" }, } },
+ ["CullingStrikeInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Conquest", "Culling Strike", "(15-25)% increased Area of Effect if you've dealt a Culling Strike Recently", statOrder = { 2039, 4725 }, level = 83, group = "CullingStrikeMaven", weightKey = { "gloves_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1785568076] = { "(15-25)% increased Area of Effect if you've dealt a Culling Strike Recently" }, [2524254339] = { "Culling Strike" }, } },
+ ["FrenzyChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Frenzy Charge Duration", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2127, 2631 }, level = 90, group = "FrenzyChargeOnKillChanceMaven", weightKey = { "gloves_eyrie", "quiver_eyrie", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "frenzy_charge", "influence_mod" }, tradeHashes = { [3338298622] = { "50% increased Frenzy Charge Duration" }, [1826802197] = { "(7-10)% chance to gain a Frenzy Charge on Kill" }, } },
+ ["AddedPhysicalDamageCritRecentlyInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds (9-12) to (13-16) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9247 }, level = 83, group = "AddedPhysicalDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, tradeHashes = { [2723101291] = { "Adds (9-12) to (13-16) Physical Damage if you've dealt a Critical Strike Recently" }, } },
+ ["AddedFireDamageCritRecentlyInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds (26-30) to (36-45) Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9235 }, level = 83, group = "AddedFireDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, tradeHashes = { [3144358296] = { "Adds (26-30) to (36-45) Fire Damage if you've dealt a Critical Strike Recently" }, } },
+ ["AddedColdDamageCritRecentlyInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds (26-30) to (36-45) Cold Damage if you've dealt a Critical Strike Recently", statOrder = { 9230 }, level = 83, group = "AddedColdDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, tradeHashes = { [3370223014] = { "Adds (26-30) to (36-45) Cold Damage if you've dealt a Critical Strike Recently" }, } },
+ ["AddedLightningDamageCritRecentlyInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds 1 to (61-90) Lightning Damage if you've dealt a Critical Strike Recently", statOrder = { 9241 }, level = 83, group = "AddedLightningDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, tradeHashes = { [935623115] = { "Adds 1 to (61-90) Lightning Damage if you've dealt a Critical Strike Recently" }, } },
+ ["MinionDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Minions deal (31-45)% increased Damage", statOrder = { 1973 }, level = 83, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (31-45)% increased Damage" }, } },
+ ["IncreasedAccuracyPercentInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "(21-30)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 90, group = "IncreasedAccuracyPercent", weightKey = { "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod", "attack" }, tradeHashes = { [624954515] = { "(21-30)% increased Global Accuracy Rating" }, } },
+ ["GlobalChanceToBlindOnHitInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(20-30)% increased Damage with Hits and Ailments against Blinded Enemies", "(12-15)% Global chance to Blind Enemies on hit", statOrder = { 2811, 2958 }, level = 90, group = "GlobalChanceToBlindOnHitMaven", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "damage" }, tradeHashes = { [3503466234] = { "(20-30)% increased Damage with Hits and Ailments against Blinded Enemies" }, [2221570601] = { "(12-15)% Global chance to Blind Enemies on hit" }, } },
+ ["AdditionalChanceToEvadeInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(7-12)% increased Attack and Cast Speed if you haven't been Hit Recently", "+(2-4)% chance to Evade Attack Hits", statOrder = { 4816, 5673 }, level = 85, group = "AdditionalChanceToEvadeMaven", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion", "attack", "caster", "speed" }, tradeHashes = { [223937937] = { "(7-12)% increased Attack and Cast Speed if you haven't been Hit Recently" }, [2021058489] = { "+(2-4)% chance to Evade Attack Hits" }, } },
+ ["ChanceToIntimidateOnHitInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 95, group = "ChanceToIntimidateOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [78985352] = { "Intimidate Enemies for 4 seconds on Hit" }, } },
+ ["ChanceToUnnerveOnHitInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 95, group = "ChanceToUnnerveOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [763611529] = { "Unnerve Enemies for 4 seconds on Hit" }, } },
+ ["StrikeSkillsAdditionalTargetInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9184 }, level = 90, group = "StrikeSkillsAdditionalTarget", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 2 additional nearby Enemies" }, } },
+ ["ChanceToImpaleInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "(21-25)% chance to Impale Enemies on Hit with Attacks", "Adds (1-2) to (3-5) Physical Damage for each Impale on Enemy", statOrder = { 4918, 9249 }, level = 90, group = "AttackImpaleChanceMaven", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "attack" }, tradeHashes = { [1455766505] = { "Adds (1-2) to (3-5) Physical Damage for each Impale on Enemy" }, [3739863694] = { "(21-25)% chance to Impale Enemies on Hit with Attacks" }, } },
+ ["AilmentDurationInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "(13-15)% increased Duration of Ailments on Enemies", "(13-15)% increased Effect of Non-Damaging Ailments", statOrder = { 1860, 9499 }, level = 90, group = "IncreasedAilmentDurationMaven", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "ailment" }, tradeHashes = { [782230869] = { "(13-15)% increased Effect of Non-Damaging Ailments" }, [2419712247] = { "(13-15)% increased Duration of Ailments on Enemies" }, } },
+ ["PercentageDexterityInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(11-12)% increased Dexterity", statOrder = { 1185 }, level = 85, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(11-12)% increased Dexterity" }, } },
+ ["FireDamageOverTimeMultiplierInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 90, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(21-25)% to Fire Damage over Time Multiplier" }, } },
+ ["ColdDamageOverTimeMultiplierInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 90, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(21-25)% to Cold Damage over Time Multiplier" }, } },
+ ["ChaosDamageOverTimeMultiplierInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 90, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(21-25)% to Chaos Damage over Time Multiplier" }, } },
+ ["PhysicalDamageOverTimeMultiplierInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 90, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(21-25)% to Physical Damage over Time Multiplier" }, } },
+ ["ManaGainPerTargetInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Gain (3-5) Mana per Enemy Hit with Attacks", "(10-20)% increased Attack Speed while not on Low Mana", statOrder = { 1744, 4906 }, level = 78, group = "ManaGainPerTargetMaven", weightKey = { "gloves_basilisk", "quiver_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack", "speed" }, tradeHashes = { [820939409] = { "Gain (3-5) Mana per Enemy Hit with Attacks" }, [779663446] = { "(10-20)% increased Attack Speed while not on Low Mana" }, } },
+ ["IncreasedDurationBootsUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 20 More Duration", "(10-15)% increased Skill Effect Duration", statOrder = { 314, 1895 }, level = 78, group = "SkillEffectDurationSupported", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [407317553] = { "Socketed Gems are Supported by Level 20 More Duration" }, [3377888098] = { "(10-15)% increased Skill Effect Duration" }, } },
+ ["IncreasedCooldownRecoveryBootsUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 90, group = "GlobalCooldownRecovery", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(16-20)% increased Cooldown Recovery Rate" }, } },
+ ["SupportedByFortifyUberMaven_"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Fortify", statOrder = { 496 }, level = 78, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 25 Fortify" }, } },
+ ["ImmuneToChilledGroundUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Unaffected by Chill", statOrder = { 10458 }, level = 78, group = "ChilledGroundEffectEffectivenessMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [937372143] = { "Unaffected by Chill" }, } },
+ ["ImmuneToBurningGroundUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "Unaffected by Ignite", statOrder = { 10473 }, level = 78, group = "BurningGroundEffectEffectivenessMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [2635869389] = { "Unaffected by Ignite" }, } },
+ ["ImmuneToShockedGroundUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Unaffected by Shock", statOrder = { 10477 }, level = 78, group = "ShockedGroundEffectEffectivenessMaven", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } },
+ ["ImmuneToDesecratedGroundUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Unaffected by Poison", statOrder = { 5055 }, level = 78, group = "DesecratedGroundEffectEffectivenessMaven", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "influence_mod", "chaos", "ailment" }, tradeHashes = { [1953432004] = { "Unaffected by Poison" }, } },
+ ["ChanceToDodgeUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 94, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(16-18)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } },
+ ["ChanceToDodgeSpellsUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 93, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(16-18)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } },
+ ["ChanceToAvoidStunUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(36-50)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 92, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [4262448838] = { "(36-50)% chance to Avoid being Stunned" }, } },
+ ["ChanceToAvoidElementalAilmentsUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "(36-45)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 91, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(36-45)% chance to Avoid Elemental Ailments" }, } },
+ ["ChanceToAvoidProjectilesUberMaven___"] = { type = "Suffix", affix = "of Elevated Shaping", "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently", "(10-12)% chance to avoid Projectiles", statOrder = { 4950, 4993 }, level = 94, group = "ChanceToAvoidProjectilesMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3452269808] = { "(10-12)% chance to avoid Projectiles" }, [3114696875] = { "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently" }, } },
+ ["ChanceToGainEnduranceChargeOnKillUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "50% increased Endurance Charge Duration", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2125, 2629 }, level = 93, group = "EnduranceChargeOnKillChanceMaven", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "warstaff_elder", "boots_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1170174456] = { "50% increased Endurance Charge Duration" }, [1054322244] = { "(7-10)% chance to gain an Endurance Charge on Kill" }, } },
+ ["TotemDamageSpellUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Spell Totem", "(31-35)% increased Totem Damage", statOrder = { 464, 1193 }, level = 90, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [2962840349] = { "Socketed Gems are Supported by Level 25 Spell Totem" }, [3851254963] = { "(31-35)% increased Totem Damage" }, } },
+ ["TotemSpeedSpellUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Spell Totem", "(17-20)% increased Totem Placement speed", statOrder = { 464, 2578 }, level = 90, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(17-20)% increased Totem Placement speed" }, [2962840349] = { "Socketed Gems are Supported by Level 25 Spell Totem" }, } },
+ ["TotemDamageAttackUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Ballista Totem", "(31-35)% increased Totem Damage", statOrder = { 362, 1193 }, level = 90, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, tradeHashes = { [3030692053] = { "Socketed Gems are Supported by Level 25 Ballista Totem" }, [3851254963] = { "(31-35)% increased Totem Damage" }, } },
+ ["TotemSpeedAttackUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Ballista Totem", "(17-20)% increased Totem Placement speed", statOrder = { 362, 2578 }, level = 90, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, tradeHashes = { [3374165039] = { "(17-20)% increased Totem Placement speed" }, [3030692053] = { "Socketed Gems are Supported by Level 25 Ballista Totem" }, } },
+ ["SupportedByLifeLeechUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are supported by Level 20 Life Leech", statOrder = { 483 }, level = 78, group = "SupportedByLifeLeech", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, tradeHashes = { [891277550] = { "Socketed Gems are supported by Level 20 Life Leech" }, } },
+ ["GrantsDecoyTotemSkillUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Grants Level 25 Decoy Totem Skill", statOrder = { 700 }, level = 78, group = "DecoyTotemSkill", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod" }, tradeHashes = { [3566242751] = { "Grants Level 25 Decoy Totem Skill" }, } },
+ ["GlobalRaiseSpectreGemLevelUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+2 to Level of all Raise Spectre Gems", statOrder = { 1616 }, level = 85, group = "MinionGlobalSkillLevel", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "minion", "gem" }, tradeHashes = { [2739830820] = { "" }, [2120904498] = { "" }, [3235814433] = { "+2 to Level of all Raise Spectre Gems" }, } },
+ ["UnaffectedByShockedGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Unaffected by Shock", statOrder = { 10477 }, level = 78, group = "ShockedGroundEffectEffectivenessMaven", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } },
+ ["SocketedLightningGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+2 to Level of Socketed Lightning Gems", "+(3-7)% to Quality of Socketed Lightning Gems", statOrder = { 169, 216 }, level = 78, group = "LocalIncreaseSocketedLightningGemLevelMaven", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "gem" }, tradeHashes = { [1065580342] = { "+(3-7)% to Quality of Socketed Lightning Gems" }, [4043416969] = { "+2 to Level of Socketed Lightning Gems" }, } },
+ ["MaximumFireResistanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 95, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } },
+ ["MaximumFireResistanceInfluenceMavenNew"] = { type = "Suffix", affix = "of the Elevated Crusade", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 95, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } },
+ ["PhysicalAddedAsExtraLightningBootsInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (9-11)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 85, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (9-11)% of Physical Damage as Extra Lightning Damage" }, } },
+ ["CooldownRecoveryInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Crusade", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 90, group = "GlobalCooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [1004011302] = { "(16-20)% increased Cooldown Recovery Rate" }, } },
+ ["AvoidIgniteInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(71-80)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 85, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(71-80)% chance to Avoid being Ignited" }, } },
+ ["AvoidFreezeInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(71-80)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 85, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(71-80)% chance to Avoid being Frozen" }, } },
+ ["AvoidShockInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(71-80)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 85, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(71-80)% chance to Avoid being Shocked" }, } },
+ ["AvoidProjectilesInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently", "(10-12)% chance to avoid Projectiles", statOrder = { 4950, 4993 }, level = 83, group = "ChanceToAvoidProjectilesMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [3452269808] = { "(10-12)% chance to avoid Projectiles" }, [3114696875] = { "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently" }, } },
+ ["UnaffectedByBurningGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "Unaffected by Ignite", statOrder = { 10473 }, level = 78, group = "BurningGroundEffectEffectivenessMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, tradeHashes = { [2635869389] = { "Unaffected by Ignite" }, } },
+ ["SocketedFireGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+2 to Level of Socketed Fire Gems", "+(3-7)% to Quality of Socketed Fire Gems", statOrder = { 167, 214 }, level = 78, group = "LocalIncreaseSocketedFireGemLevelMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "gem" }, tradeHashes = { [339179093] = { "+2 to Level of Socketed Fire Gems" }, [3422008440] = { "+(3-7)% to Quality of Socketed Fire Gems" }, } },
+ ["MaximumEnduranceChargeInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Maximum Endurance Charges", "10% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", statOrder = { 1804, 4239 }, level = 85, group = "MaximumEnduranceChargesMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [2713233613] = { "10% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges" }, [1515657623] = { "+1 to Maximum Endurance Charges" }, } },
+ ["PhysicalAddedAsExtraFireBootsInfluenceMaven___"] = { type = "Prefix", affix = "Elevated Warlord's", "Gain (9-11)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 85, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (9-11)% of Physical Damage as Extra Fire Damage" }, } },
+ ["AvoidFireDamageInfluenceMaven_____"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(20-30)% to Fire Resistance", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 1625, 3373 }, level = 90, group = "FireDamageAvoidanceMaven", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, [42242677] = { "(8-10)% chance to Avoid Fire Damage from Hits" }, } },
+ ["AvoidColdDamageInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(20-30)% to Cold Resistance", "(8-10)% chance to Avoid Cold Damage from Hits", statOrder = { 1631, 3374 }, level = 90, group = "ColdDamageAvoidanceMaven", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, [3743375737] = { "(8-10)% chance to Avoid Cold Damage from Hits" }, } },
+ ["AvoidLightningDamageInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(20-30)% to Lightning Resistance", "(8-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 1636, 3375 }, level = 90, group = "LightningDamageAvoidanceMaven", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-30)% to Lightning Resistance" }, [2889664727] = { "(8-10)% chance to Avoid Lightning Damage from Hits" }, } },
+ ["AdditionalPhysicalDamageReductionInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(15-20)% increased Armour", "(2-4)% additional Physical Damage Reduction", statOrder = { 1541, 2273 }, level = 85, group = "ReducedPhysicalDamageTakenMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "armour", "physical" }, tradeHashes = { [3771516363] = { "(2-4)% additional Physical Damage Reduction" }, [2866361420] = { "(15-20)% increased Armour" }, } },
+ ["UnaffectedByChilledGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Unaffected by Chill", statOrder = { 10458 }, level = 78, group = "ChilledGroundEffectEffectivenessMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, tradeHashes = { [937372143] = { "Unaffected by Chill" }, } },
+ ["SocketedColdGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "+2 to Level of Socketed Cold Gems", "+(3-7)% to Quality of Socketed Cold Gems", statOrder = { 168, 211 }, level = 78, group = "LocalIncreaseSocketedColdGemLevelMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "gem" }, tradeHashes = { [1164882313] = { "+(3-7)% to Quality of Socketed Cold Gems" }, [1645459191] = { "+2 to Level of Socketed Cold Gems" }, } },
+ ["EnduranceChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Endurance Charge Duration", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2125, 2629 }, level = 90, group = "EnduranceChargeOnKillChanceMaven", weightKey = { "boots_eyrie", "sword_eyrie", "axe_eyrie", "mace_eyrie", "sceptre_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, tradeHashes = { [1170174456] = { "50% increased Endurance Charge Duration" }, [1054322244] = { "(7-10)% chance to gain an Endurance Charge on Kill" }, } },
+ ["PhysicalAddedAsExtraColdBootsInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Gain (9-11)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 85, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (9-11)% of Physical Damage as Extra Cold Damage" }, } },
+ ["ElusiveOnCriticalStrikeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(11-20)% chance to gain Elusive on Critical Strike", "(5-10)% increased Elusive Effect", statOrder = { 4281, 6349 }, level = 85, group = "ElusiveOnCriticalStrikeMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "critical" }, tradeHashes = { [240857668] = { "(5-10)% increased Elusive Effect" }, [2896192589] = { "(11-20)% chance to gain Elusive on Critical Strike" }, } },
+ ["ChanceToDodgeAttacksInfluenceMaven__"] = { type = "Suffix", affix = "of Elevated Redemption", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 90, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(16-18)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } },
+ ["ChanceToDodgeSpellsInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 90, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, tradeHashes = { [492027537] = { "+(16-18)% chance to Suppress Spell Damage" }, [223497523] = { "" }, } },
+ ["IncreasedAilmentEffectOnEnemiesInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(41-60)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 83, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "ailment" }, tradeHashes = { [782230869] = { "(41-60)% increased Effect of Non-Damaging Ailments" }, } },
+ ["OnslaughtOnKillInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(8-10)% chance to gain Onslaught for 4 seconds on Kill", "(3-10)% increased Attack, Cast and Movement Speed while you have Onslaught", statOrder = { 2993, 4839 }, level = 90, group = "ChanceToGainOnslaughtOnKillMaven", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, tradeHashes = { [879520319] = { "(3-10)% increased Attack, Cast and Movement Speed while you have Onslaught" }, [2988593550] = { "(8-10)% chance to gain Onslaught for 4 seconds on Kill" }, } },
+ ["UnaffectedByDesecratedGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Unaffected by Poison", statOrder = { 5055 }, level = 78, group = "DesecratedGroundEffectEffectivenessMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1953432004] = { "Unaffected by Poison" }, } },
+ ["SocketedChaosGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "+2 to Level of Socketed Chaos Gems", "+(3-7)% to Quality of Socketed Chaos Gems", statOrder = { 170, 210 }, level = 78, group = "LocalIncreaseSocketedChaosGemLevelMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "gem" }, tradeHashes = { [2062835769] = { "+(3-7)% to Quality of Socketed Chaos Gems" }, [2675603254] = { "+2 to Level of Socketed Chaos Gems" }, } },
+ ["AdditionalPierceInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Hunter's", "Projectiles Pierce (3-5) additional Targets", statOrder = { 1790 }, level = 90, group = "AdditionalPierce", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce (3-5) additional Targets" }, } },
+ ["PercentageStrengthInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(11-12)% increased Strength", statOrder = { 1184 }, level = 85, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(11-12)% increased Strength" }, } },
+ ["AvoidBleedAndPoisonInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(61-70)% chance to Avoid being Poisoned", "(61-70)% chance to Avoid Bleeding", statOrder = { 1849, 4216 }, level = 85, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, tradeHashes = { [1618589784] = { "(61-70)% chance to Avoid Bleeding" }, [4053951709] = { "(61-70)% chance to Avoid being Poisoned" }, } },
+ ["TailwindOnCriticalStrikeInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-25)% increased Effect of Tailwind on you", "You have Tailwind if you have dealt a Critical Strike Recently", statOrder = { 10346, 10348 }, level = 85, group = "TailwindOnCriticalStrikeMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2172944497] = { "(10-25)% increased Effect of Tailwind on you" }, [1085545682] = { "You have Tailwind if you have dealt a Critical Strike Recently" }, } },
+ ["FasterIgniteInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-20)% increased Ignite Duration on Enemies", "Ignites you inflict deal Damage (11-15)% faster", statOrder = { 1859, 2564 }, level = 83, group = "FasterIgniteDamageMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(10-20)% increased Ignite Duration on Enemies" }, [2443492284] = { "Ignites you inflict deal Damage (11-15)% faster" }, } },
+ ["FasterBleedInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-20)% increased Bleeding Duration", "Bleeding you inflict deals Damage (11-15)% faster", statOrder = { 4994, 6544 }, level = 83, group = "FasterBleedDamageMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (11-15)% faster" }, [1459321413] = { "(10-20)% increased Bleeding Duration" }, } },
+ ["FasterPoisonInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-20)% increased Poison Duration", "Poisons you inflict deal Damage (11-15)% faster", statOrder = { 3170, 6545 }, level = 83, group = "FasterPoisonDamageMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (11-15)% faster" }, [2011656677] = { "(10-20)% increased Poison Duration" }, } },
+ ["LocalIncreasedWard1"] = { type = "Prefix", affix = "Farrier's", "+(5-9) to Ward", statOrder = { 1528 }, level = 3, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(5-9) to Ward" }, } },
+ ["LocalIncreasedWard2"] = { type = "Prefix", affix = "Brownsmith's", "+(10-15) to Ward", statOrder = { 1528 }, level = 11, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(10-15) to Ward" }, } },
+ ["LocalIncreasedWard3_"] = { type = "Prefix", affix = "Coppersmith's", "+(16-23) to Ward", statOrder = { 1528 }, level = 17, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(16-23) to Ward" }, } },
+ ["LocalIncreasedWard4"] = { type = "Prefix", affix = "Blacksmith's", "+(24-35) to Ward", statOrder = { 1528 }, level = 23, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(24-35) to Ward" }, } },
+ ["LocalIncreasedWard5___"] = { type = "Prefix", affix = "Silversmith's", "+(36-52) to Ward", statOrder = { 1528 }, level = 29, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(36-52) to Ward" }, } },
+ ["LocalIncreasedWard6_"] = { type = "Prefix", affix = "Goldsmith's", "+(52-69) to Ward", statOrder = { 1528 }, level = 35, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(52-69) to Ward" }, } },
+ ["LocalIncreasedWard7"] = { type = "Prefix", affix = "Whitesmith's", "+(70-84) to Ward", statOrder = { 1528 }, level = 43, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(70-84) to Ward" }, } },
+ ["LocalIncreasedWard8__"] = { type = "Prefix", affix = "Engraver's", "+(85-99) to Ward", statOrder = { 1528 }, level = 51, group = "LocalWard", weightKey = { "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(85-99) to Ward" }, } },
+ ["LocalIncreasedWard9"] = { type = "Prefix", affix = "Runesmith's", "+(100-119) to Ward", statOrder = { 1528 }, level = 60, group = "LocalWard", weightKey = { "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(100-119) to Ward" }, } },
+ ["LocalIncreasedWard10____"] = { type = "Prefix", affix = "Runemaster's", "+(120-139) to Ward", statOrder = { 1528 }, level = 69, group = "LocalWard", weightKey = { "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(120-139) to Ward" }, } },
+ ["LocalIncreasedWard11"] = { type = "Prefix", affix = "Artificer's", "+(140-159) to Ward", statOrder = { 1528 }, level = 75, group = "LocalWard", weightKey = { "shield", "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [774059442] = { "+(140-159) to Ward" }, } },
+ ["LocalIncreasedWardPercent1"] = { type = "Prefix", affix = "Chiseled", "(11-28)% increased Ward", statOrder = { 1530 }, level = 3, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(11-28)% increased Ward" }, } },
+ ["LocalIncreasedWardPercent2"] = { type = "Prefix", affix = "Etched", "(27-42)% increased Ward", statOrder = { 1530 }, level = 18, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(27-42)% increased Ward" }, } },
+ ["LocalIncreasedWardPercent3"] = { type = "Prefix", affix = "Engraved", "(43-55)% increased Ward", statOrder = { 1530 }, level = 30, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(43-55)% increased Ward" }, } },
+ ["LocalIncreasedWardPercent4"] = { type = "Prefix", affix = "Embedded", "(56-67)% increased Ward", statOrder = { 1530 }, level = 44, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(56-67)% increased Ward" }, } },
+ ["LocalIncreasedWardPercent5"] = { type = "Prefix", affix = "Inscribed", "(68-79)% increased Ward", statOrder = { 1530 }, level = 60, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(68-79)% increased Ward" }, } },
+ ["LocalIncreasedWardPercent6"] = { type = "Prefix", affix = "Lettered", "(80-91)% increased Ward", statOrder = { 1530 }, level = 72, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(80-91)% increased Ward" }, } },
+ ["LocalIncreasedWardPercent7"] = { type = "Prefix", affix = "Runed", "(92-100)% increased Ward", statOrder = { 1530 }, level = 84, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(92-100)% increased Ward" }, } },
+ ["LocalIncreasedWardPercent8"] = { type = "Prefix", affix = "Calligraphic", "(101-110)% increased Ward", statOrder = { 1530 }, level = 86, group = "LocalWardPercent", weightKey = { "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "defences" }, tradeHashes = { [830161081] = { "(101-110)% increased Ward" }, } },
+ ["LocalIncreasedWardPercentAndStunRecovery1______"] = { type = "Prefix", affix = "Improved", "(6-13)% increased Ward", "(6-7)% increased Stun and Block Recovery", statOrder = { 1530, 1902 }, level = 3, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [2511217560] = { "(6-7)% increased Stun and Block Recovery" }, [830161081] = { "(6-13)% increased Ward" }, } },
+ ["LocalIncreasedWardPercentAndStunRecovery2_"] = { type = "Prefix", affix = "Enhanced", "(14-20)% increased Ward", "(8-9)% increased Stun and Block Recovery", statOrder = { 1530, 1902 }, level = 18, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [2511217560] = { "(8-9)% increased Stun and Block Recovery" }, [830161081] = { "(14-20)% increased Ward" }, } },
+ ["LocalIncreasedWardPercentAndStunRecovery3"] = { type = "Prefix", affix = "Bolstered", "(21-26)% increased Ward", "(10-11)% increased Stun and Block Recovery", statOrder = { 1530, 1902 }, level = 30, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [2511217560] = { "(10-11)% increased Stun and Block Recovery" }, [830161081] = { "(21-26)% increased Ward" }, } },
+ ["LocalIncreasedWardPercentAndStunRecovery4"] = { type = "Prefix", affix = "Elegant", "(27-32)% increased Ward", "(12-13)% increased Stun and Block Recovery", statOrder = { 1530, 1902 }, level = 44, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [2511217560] = { "(12-13)% increased Stun and Block Recovery" }, [830161081] = { "(27-32)% increased Ward" }, } },
+ ["LocalIncreasedWardPercentAndStunRecovery5"] = { type = "Prefix", affix = "Exquisite", "(33-38)% increased Ward", "(14-15)% increased Stun and Block Recovery", statOrder = { 1530, 1902 }, level = 60, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [2511217560] = { "(14-15)% increased Stun and Block Recovery" }, [830161081] = { "(33-38)% increased Ward" }, } },
+ ["LocalIncreasedWardPercentAndStunRecovery6_"] = { type = "Prefix", affix = "Masterwork", "(39-42)% increased Ward", "(16-17)% increased Stun and Block Recovery", statOrder = { 1530, 1902 }, level = 78, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [2511217560] = { "(16-17)% increased Stun and Block Recovery" }, [830161081] = { "(39-42)% increased Ward" }, } },
+ ["LocalBaseWardAndLife1__"] = { type = "Prefix", affix = "Annest's", "+(15-20) to Ward", "+(18-23) to maximum Life", statOrder = { 1528, 1569 }, level = 30, group = "LocalBaseWardAndLife", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "defences" }, tradeHashes = { [774059442] = { "+(15-20) to Ward" }, [3299347043] = { "+(18-23) to maximum Life" }, } },
+ ["LocalBaseWardAndLife2"] = { type = "Prefix", affix = "Owen's", "+(21-30) to Ward", "+(24-28) to maximum Life", statOrder = { 1528, 1569 }, level = 46, group = "LocalBaseWardAndLife", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "defences" }, tradeHashes = { [774059442] = { "+(21-30) to Ward" }, [3299347043] = { "+(24-28) to maximum Life" }, } },
+ ["LocalBaseWardAndLife3_"] = { type = "Prefix", affix = "Gwayne's", "+(31-40) to Ward", "+(29-33) to maximum Life", statOrder = { 1528, 1569 }, level = 62, group = "LocalBaseWardAndLife", weightKey = { "boots", "gloves", "ward_armour", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "resource", "life", "defences" }, tradeHashes = { [774059442] = { "+(31-40) to Ward" }, [3299347043] = { "+(29-33) to maximum Life" }, } },
+ ["LocalBaseWardAndLife4_"] = { type = "Prefix", affix = "Cadigan's", "+(41-50) to Ward", "+(34-38) to maximum Life", statOrder = { 1528, 1569 }, level = 78, group = "LocalBaseWardAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "ward_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { "resource", "life", "defences" }, tradeHashes = { [774059442] = { "+(41-50) to Ward" }, [3299347043] = { "+(34-38) to maximum Life" }, } },
+ ["FasterStartOfWardRecharge1"] = { type = "Suffix", affix = "of Artifice", "(33-37)% faster Restoration of Ward", statOrder = { 1531 }, level = 46, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(33-37)% faster Restoration of Ward" }, } },
+ ["FasterStartOfWardRecharge2"] = { type = "Suffix", affix = "of Etching", "(38-42)% faster Restoration of Ward", statOrder = { 1531 }, level = 57, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(38-42)% faster Restoration of Ward" }, } },
+ ["FasterStartOfWardRecharge3"] = { type = "Suffix", affix = "of Engraving", "(43-47)% faster Restoration of Ward", statOrder = { 1531 }, level = 68, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(43-47)% faster Restoration of Ward" }, } },
+ ["FasterStartOfWardRecharge4"] = { type = "Suffix", affix = "of Inscription", "(48-52)% faster Restoration of Ward", statOrder = { 1531 }, level = 76, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(48-52)% faster Restoration of Ward" }, } },
+ ["FasterStartOfWardRecharge5"] = { type = "Suffix", affix = "of Runes", "(53-58)% faster Restoration of Ward", statOrder = { 1531 }, level = 85, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, tradeHashes = { [1130670241] = { "(53-58)% faster Restoration of Ward" }, } },
+ ["RecombinatorSpecialMaximumEnduranceCharge"] = { type = "Prefix", affix = "Sentinel's", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 68, group = "MaximumEnduranceCharges", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } },
+ ["RecombinatorSpecialMaximumFrenzyCharge"] = { type = "Prefix", affix = "Sentinel's", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 68, group = "MaximumFrenzyCharges", weightKey = { "default", }, weightVal = { 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } },
+ ["RecombinatorSpecialMaximumPowerCharge"] = { type = "Prefix", affix = "Sentinel's", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 68, group = "IncreasedMaximumPowerCharges", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } },
+ ["RecombinatorSpecialKeystoneMinionInstability"] = { type = "Suffix", affix = "of the Sentinel", "Minion Instability", statOrder = { 10798 }, level = 68, group = "MinionInstability", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [433293234] = { "Minion Instability" }, } },
+ ["RecombinatorSpecialKeystoneResoluteTechnique"] = { type = "Suffix", affix = "of the Sentinel", "Resolute Technique", statOrder = { 10828 }, level = 68, group = "ResoluteTechnique", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } },
+ ["RecombinatorSpecialKeystoneBloodMagic"] = { type = "Suffix", affix = "of the Sentinel", "Blood Magic", statOrder = { 10772 }, level = 68, group = "BloodMagic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } },
+ ["RecombinatorSpecialKeystonePainAttunement"] = { type = "Suffix", affix = "of the Sentinel", "Pain Attunement", statOrder = { 10800 }, level = 68, group = "PainAttunement", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } },
+ ["RecombinatorSpecialKeystoneElementalEquilibrium"] = { type = "Suffix", affix = "of the Sentinel", "Elemental Equilibrium", statOrder = { 10781 }, level = 68, group = "ElementalEquilibrium", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [1263158408] = { "Elemental Equilibrium" }, } },
+ ["RecombinatorSpecialKeystoneIronGrip"] = { type = "Suffix", affix = "of the Sentinel", "Iron Grip", statOrder = { 10816 }, level = 68, group = "IronGrip", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [573347393] = { "Iron Grip" }, } },
+ ["RecombinatorSpecialKeystonePointBlank"] = { type = "Suffix", affix = "of the Sentinel", "Point Blank", statOrder = { 10801 }, level = 68, group = "PointBlank", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2896346114] = { "Point Blank" }, } },
+ ["RecombinatorSpecialKeystoneAcrobatics"] = { type = "Suffix", affix = "of the Sentinel", "Acrobatics", statOrder = { 10767 }, level = 68, group = "Acrobatics", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [223497523] = { "" }, [383557755] = { "Acrobatics" }, } },
+ ["RecombinatorSpecialKeystoneGhostReaver"] = { type = "Suffix", affix = "of the Sentinel", "Ghost Reaver", statOrder = { 10787 }, level = 68, group = "KeystoneGhostReaver", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, tradeHashes = { [4272248216] = { "Ghost Reaver" }, } },
+ ["RecombinatorSpecialKeystoneVaalPact"] = { type = "Suffix", affix = "of the Sentinel", "Vaal Pact", statOrder = { 10821 }, level = 68, group = "VaalPact", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2257118425] = { "Vaal Pact" }, } },
+ ["RecombinatorSpecialKeystoneElementalOverload"] = { type = "Suffix", affix = "of the Sentinel", "Elemental Overload", statOrder = { 10782 }, level = 68, group = "ElementalOverload", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHashes = { [3574189159] = { "Elemental Overload" }, } },
+ ["RecombinatorSpecialKeystoneAvatarOfFire"] = { type = "Suffix", affix = "of the Sentinel", "Avatar of Fire", statOrder = { 10770 }, level = 68, group = "AvatarOfFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [346029096] = { "Avatar of Fire" }, } },
+ ["RecombinatorSpecialKeystoneEldritchBattery"] = { type = "Suffix", affix = "of the Sentinel", "Eldritch Battery", statOrder = { 10780 }, level = 68, group = "EldritchBattery", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } },
+ ["RecombinatorSpecialKeystoneAncestralBond"] = { type = "Suffix", affix = "of the Sentinel", "Ancestral Bond", statOrder = { 10769 }, level = 68, group = "AncestralBond", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2648570028] = { "Ancestral Bond" }, } },
+ ["RecombinatorSpecialKeystoneCrimsonDance"] = { type = "Suffix", affix = "of the Sentinel", "Crimson Dance", statOrder = { 10777 }, level = 68, group = "CrimsonDance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [300702212] = { "Crimson Dance" }, } },
+ ["RecombinatorSpecialKeystonePerfectAgony"] = { type = "Suffix", affix = "of the Sentinel", "Perfect Agony", statOrder = { 10768 }, level = 68, group = "PerfectAgony", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [3884934810] = { "Perfect Agony" }, } },
+ ["RecombinatorSpecialKeystoneRunebinder"] = { type = "Suffix", affix = "of the Sentinel", "Runebinder", statOrder = { 10808 }, level = 68, group = "Runebinder", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, tradeHashes = { [4080245957] = { "Runebinder" }, } },
+ ["RecombinatorSpecialKeystoneMortalConviction"] = { type = "Suffix", affix = "of the Sentinel", "Blood Magic", statOrder = { 10772 }, level = 68, group = "BloodMagic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } },
+ ["RecombinatorSpecialKeystoneCallToArms"] = { type = "Suffix", affix = "of the Sentinel", "Call to Arms", statOrder = { 10773 }, level = 68, group = "CallToArms", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3292262540] = { "Call to Arms" }, } },
+ ["RecombinatorSpecialKeystoneTheAgnostic"] = { type = "Suffix", affix = "of the Sentinel", "The Agnostic", statOrder = { 10799 }, level = 68, group = "TheAgnostic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, tradeHashes = { [462691314] = { "The Agnostic" }, } },
+ ["RecombinatorSpecialKeystoneSupremeEgo"] = { type = "Suffix", affix = "of the Sentinel", "Supreme Ego", statOrder = { 10817 }, level = 68, group = "SupremeEgo", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1421267186] = { "Supreme Ego" }, } },
+ ["RecombinatorSpecialKeystoneTheImpaler"] = { type = "Suffix", affix = "of the Sentinel", "The Impaler", statOrder = { 10792 }, level = 68, group = "Impaler", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1441799693] = { "The Impaler" }, } },
+ ["RecombinatorSpecialKeystoneDoomsday"] = { type = "Suffix", affix = "of the Sentinel", "Hex Master", statOrder = { 10790 }, level = 68, group = "HexMaster", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, tradeHashes = { [3849554033] = { "Hex Master" }, } },
+ ["RecombinatorSpecialKeystoneLetheShade1"] = { type = "Suffix", affix = "of the Sentinel", "Lethe Shade", statOrder = { 10794 }, level = 68, group = "LetheShade", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [1678358883] = { "Lethe Shade" }, } },
+ ["RecombinatorSpecialKeystoneGhostDance"] = { type = "Suffix", affix = "of the Sentinel", "Ghost Dance", statOrder = { 10786 }, level = 68, group = "GhostDance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [3590128077] = { "Ghost Dance" }, } },
+ ["RecombinatorSpecialKeystoneVersatileCombatant"] = { type = "Suffix", affix = "of the Sentinel", "Versatile Combatant", statOrder = { 10822 }, level = 68, group = "VersatileCombatant", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [593845252] = { "Versatile Combatant" }, } },
+ ["RecombinatorSpecialKeystoneMagebane"] = { type = "Suffix", affix = "of the Sentinel", "Magebane", statOrder = { 10795 }, level = 68, group = "Magebane", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4180925106] = { "Magebane" }, } },
+ ["RecombinatorSpecialKeystoneSolipsism"] = { type = "Suffix", affix = "of the Sentinel", "Solipsism", statOrder = { 10814 }, level = 68, group = "Solipsism", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [112130960] = { "Solipsism" }, } },
+ ["RecombinatorSpecialKeystoneDivineShield"] = { type = "Suffix", affix = "of the Sentinel", "Divine Shield", statOrder = { 10779 }, level = 68, group = "DivineShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2048995720] = { "Divine Shield" }, } },
+ ["RecombinatorSpecialKeystoneIronWill"] = { type = "Suffix", affix = "of the Sentinel", "Iron Will", statOrder = { 10829 }, level = 68, group = "IronWill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, tradeHashes = { [4092697134] = { "Iron Will" }, } },
+ ["RecombinatorSpecialMagicUtilityFlaskEffect"] = { type = "Prefix", affix = "Sentinel's", "Magic Utility Flasks applied to you have (20-25)% increased Effect", statOrder = { 2743 }, level = 68, group = "MagicUtilityFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2564857472] = { "Magic Utility Flasks applied to you have (20-25)% increased Effect" }, } },
+ ["RecombinatorSpecialAuraEffect"] = { type = "Suffix", affix = "of the Sentinel", "(15-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 68, group = "AuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, tradeHashes = { [1880071428] = { "(15-20)% increased effect of Non-Curse Auras from your Skills" }, } },
+ ["RecombinatorSpecialFireDamageToAttacksPerStrength"] = { type = "Prefix", affix = "Sentinel's", "Adds 2 to 4 Fire Damage to Attacks per 10 Strength", statOrder = { 9239 }, level = 68, group = "FireDamageToAttacksPerStrength", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [68673913] = { "Adds 2 to 4 Fire Damage to Attacks per 10 Strength" }, } },
+ ["RecombinatorSpecialColdDamageToAttacksPerDexterity"] = { type = "Prefix", affix = "Sentinel's", "Adds 2 to 4 Cold Damage to Attacks per 10 Dexterity", statOrder = { 9231 }, level = 68, group = "ColdDamageToAttacksPerDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [769783486] = { "Adds 2 to 4 Cold Damage to Attacks per 10 Dexterity" }, } },
+ ["RecombinatorSpecialLightningDamageToAttacksPerIntelligence"] = { type = "Prefix", affix = "Sentinel's", "Adds 1 to 5 Lightning Damage to Attacks per 10 Intelligence", statOrder = { 9244 }, level = 68, group = "LightningDamageToAttacksPerIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [3168149399] = { "Adds 1 to 5 Lightning Damage to Attacks per 10 Intelligence" }, } },
+ ["RecombinatorSpecialAllFireDamageCanShock"] = { type = "Suffix", affix = "of the Sentinel", "Your Fire Damage can Shock", statOrder = { 2876 }, level = 68, group = "AllFireDamageCanShock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "lightning", "ailment" }, tradeHashes = { [932096321] = { "Your Fire Damage can Shock" }, } },
+ ["RecombinatorSpecialAllColdDamageCanIgnite"] = { type = "Suffix", affix = "of the Sentinel", "Your Cold Damage can Ignite", statOrder = { 2871 }, level = 68, group = "AllColdDamageCanIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHashes = { [1888494262] = { "Your Cold Damage can Ignite" }, } },
+ ["RecombinatorSpecialAllLightningDamageCanFreeze"] = { type = "Suffix", affix = "of the Sentinel", "Your Lightning Damage can Freeze", statOrder = { 2883 }, level = 68, group = "AllLightningDamageCanFreeze", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHashes = { [380759151] = { "Your Lightning Damage can Freeze" }, } },
+ ["RecombinatorSpecialMarkEffect"] = { type = "Suffix", affix = "of the Sentinel", "(30-40)% increased Effect of your Marks", statOrder = { 2598 }, level = 68, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [803185500] = { "(30-40)% increased Effect of your Marks" }, } },
+ ["RecombinatorSpecialArcaneSurgeEffect1H"] = { type = "Suffix", affix = "of the Sentinel", "(30-40)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 68, group = "ArcaneSurgeEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(30-40)% increased Effect of Arcane Surge on you" }, } },
+ ["RecombinatorSpecialArcaneSurgeEffect2H"] = { type = "Suffix", affix = "of the Sentinel", "(50-70)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 68, group = "ArcaneSurgeEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3015437071] = { "(50-70)% increased Effect of Arcane Surge on you" }, } },
+ ["RecombinatorSpecialOnslaughtEffect1H"] = { type = "Suffix", affix = "of the Sentinel", "(30-40)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 68, group = "OnslaughtEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(30-40)% increased Effect of Onslaught on you" }, } },
+ ["RecombinatorSpecialOnslaughtEffect2H"] = { type = "Suffix", affix = "of the Sentinel", "(50-70)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 68, group = "OnslaughtEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3151397056] = { "(50-70)% increased Effect of Onslaught on you" }, } },
+ ["RecombinatorSpecialIncreasedDamageVsWarcryTauntedEnemies1H"] = { type = "Suffix", affix = "of the Sentinel", "Enemies Taunted by your Warcries take (10-15)% increased Damage", statOrder = { 10356 }, level = 68, group = "WarcryTauntedEnemiesTakeIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3610197448] = { "Enemies Taunted by your Warcries take (10-15)% increased Damage" }, } },
+ ["RecombinatorSpecialIncreasedDamageVsWarcryTauntedEnemies2H"] = { type = "Suffix", affix = "of the Sentinel", "Enemies Taunted by your Warcries take (20-25)% increased Damage", statOrder = { 10356 }, level = 68, group = "WarcryTauntedEnemiesTakeIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3610197448] = { "Enemies Taunted by your Warcries take (20-25)% increased Damage" }, } },
+ ["RecombinatorSpecialSupportedByLevelFourEnlighten"] = { type = "Prefix", affix = "Sentinel's", "Socketed Gems are Supported by Level 4 Enlighten", statOrder = { 272 }, level = 68, group = "SupportedByEnlighten", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "gem" }, tradeHashes = { [2065361612] = { "Socketed Gems are Supported by Level 4 Enlighten" }, } },
+ ["RecombinatorSpecialSupportedByLevelFourEnhance"] = { type = "Prefix", affix = "Sentinel's", "Socketed Gems are Supported by Level 4 Enhance", statOrder = { 271 }, level = 68, group = "SupportedByEnhance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "gem" }, tradeHashes = { [2556436882] = { "Socketed Gems are Supported by Level 4 Enhance" }, } },
+ ["RecombinatorSpecialSupportedByLevelFourEmpower"] = { type = "Prefix", affix = "Sentinel's", "Socketed Gems are Supported by Level 4 Empower", statOrder = { 269 }, level = 68, group = "SupportedByEmpower", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "gem" }, tradeHashes = { [3581578643] = { "Socketed Gems are Supported by Level 4 Empower" }, } },
+ ["RecombinatorSpecialTriggerSkillsDoubleDamage"] = { type = "Prefix", affix = "Sentinel's", "Socketed Triggered Skills deal Double Damage", statOrder = { 409 }, level = 68, group = "SocketedTriggeredSkillsDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "damage", "gem" }, tradeHashes = { [4021083819] = { "Socketed Triggered Skills deal Double Damage" }, } },
+ ["LifeRegeneration1Inverted"] = { type = "Suffix", affix = "of the Newt", "Lose (1-2) Life per second", statOrder = { 1575 }, level = 1, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (1-2) Life per second" }, } },
+ ["LifeRegeneration2Inverted"] = { type = "Suffix", affix = "of the Lizard", "Lose (2.1-8) Life per second", statOrder = { 1575 }, level = 7, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (2.1-8) Life per second" }, } },
+ ["LifeRegeneration3Inverted"] = { type = "Suffix", affix = "of the Flatworm", "Lose (8.1-16) Life per second", statOrder = { 1575 }, level = 19, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (8.1-16) Life per second" }, } },
+ ["LifeRegeneration4Inverted"] = { type = "Suffix", affix = "of the Starfish", "Lose (16.1-24) Life per second", statOrder = { 1575 }, level = 31, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (16.1-24) Life per second" }, } },
+ ["LifeRegeneration5Inverted"] = { type = "Suffix", affix = "of the Hydra", "Lose (24.1-32) Life per second", statOrder = { 1575 }, level = 44, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (24.1-32) Life per second" }, } },
+ ["LifeRegeneration6Inverted"] = { type = "Suffix", affix = "of the Troll", "Lose (32.1-48) Life per second", statOrder = { 1575 }, level = 55, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (32.1-48) Life per second" }, } },
+ ["LifeRegeneration7Inverted"] = { type = "Suffix", affix = "of Ryslatha", "Lose (48.1-64) Life per second", statOrder = { 1575 }, level = 68, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (48.1-64) Life per second" }, } },
+ ["LifeRegeneration8Inverted"] = { type = "Suffix", affix = "of the Phoenix", "Lose (64.1-96) Life per second", statOrder = { 1575 }, level = 74, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [771127912] = { "Lose (64.1-96) Life per second" }, } },
+ ["AddedPhysicalDamage1Inverted"] = { type = "Prefix", affix = "Glinting", "Adds 1 to 2 Physical Damage to Attacks against you", statOrder = { 1267 }, level = 5, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds 1 to 2 Physical Damage to Attacks against you" }, } },
+ ["AddedPhysicalDamage2Inverted"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-5) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 13, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (2-3) to (4-5) Physical Damage to Attacks against you" }, } },
+ ["AddedPhysicalDamage3Inverted"] = { type = "Prefix", affix = "Polished", "Adds (3-4) to (6-7) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 19, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (3-4) to (6-7) Physical Damage to Attacks against you" }, } },
+ ["AddedPhysicalDamage4Inverted"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (9-10) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 28, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (4-6) to (9-10) Physical Damage to Attacks against you" }, } },
+ ["AddedPhysicalDamage5Inverted"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (11-12) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 35, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (5-7) to (11-12) Physical Damage to Attacks against you" }, } },
+ ["AddedPhysicalDamage6Inverted"] = { type = "Prefix", affix = "Annealed", "Adds (6-9) to (13-15) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 44, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (6-9) to (13-15) Physical Damage to Attacks against you" }, } },
+ ["AddedPhysicalDamage7Inverted"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-10) to (15-18) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 52, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (7-10) to (15-18) Physical Damage to Attacks against you" }, } },
+ ["AddedPhysicalDamage8Inverted"] = { type = "Prefix", affix = "Tempered", "Adds (9-12) to (19-22) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 64, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (9-12) to (19-22) Physical Damage to Attacks against you" }, } },
+ ["AddedPhysicalDamage9Inverted"] = { type = "Prefix", affix = "Flaring", "Adds (11-15) to (22-26) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 76, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (11-15) to (22-26) Physical Damage to Attacks against you" }, } },
+ ["AddedFireDamage1Inverted"] = { type = "Prefix", affix = "Heated", "Adds 1 to 2 Fire Damage to Attacks against you", statOrder = { 1361 }, level = 1, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds 1 to 2 Fire Damage to Attacks against you" }, } },
+ ["AddedFireDamage2Inverted"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (7-8) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 12, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (3-5) to (7-8) Fire Damage to Attacks against you" }, } },
+ ["AddedFireDamage3Inverted"] = { type = "Prefix", affix = "Smoking", "Adds (5-7) to (11-13) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 20, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (5-7) to (11-13) Fire Damage to Attacks against you" }, } },
+ ["AddedFireDamage4Inverted"] = { type = "Prefix", affix = "Burning", "Adds (7-10) to (15-18) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 28, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (7-10) to (15-18) Fire Damage to Attacks against you" }, } },
+ ["AddedFireDamage5Inverted"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 35, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (9-12) to (19-22) Fire Damage to Attacks against you" }, } },
+ ["AddedFireDamage6Inverted"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 44, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (11-15) to (23-27) Fire Damage to Attacks against you" }, } },
+ ["AddedFireDamage7Inverted"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 52, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (13-18) to (27-31) Fire Damage to Attacks against you" }, } },
+ ["AddedFireDamage8Inverted"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 64, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (16-22) to (32-38) Fire Damage to Attacks against you" }, } },
+ ["AddedFireDamage9Inverted"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 76, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (19-25) to (39-45) Fire Damage to Attacks against you" }, } },
+ ["AddedColdDamage1Inverted"] = { type = "Prefix", affix = "Frosted", "Adds 1 to 2 Cold Damage to Attacks against you", statOrder = { 1370 }, level = 2, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds 1 to 2 Cold Damage to Attacks against you" }, } },
+ ["AddedColdDamage2Inverted"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (7-8) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 13, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (3-4) to (7-8) Cold Damage to Attacks against you" }, } },
+ ["AddedColdDamage3Inverted"] = { type = "Prefix", affix = "Icy", "Adds (5-7) to (10-12) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 21, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (5-7) to (10-12) Cold Damage to Attacks against you" }, } },
+ ["AddedColdDamage4Inverted"] = { type = "Prefix", affix = "Frigid", "Adds (6-9) to (13-16) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 29, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (6-9) to (13-16) Cold Damage to Attacks against you" }, } },
+ ["AddedColdDamage5Inverted"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 36, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (8-11) to (16-19) Cold Damage to Attacks against you" }, } },
+ ["AddedColdDamage6Inverted"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 45, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (10-13) to (20-24) Cold Damage to Attacks against you" }, } },
+ ["AddedColdDamage7Inverted"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 53, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (12-16) to (24-28) Cold Damage to Attacks against you" }, } },
+ ["AddedColdDamage8Inverted"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 65, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (14-19) to (29-34) Cold Damage to Attacks against you" }, } },
+ ["AddedColdDamage9Inverted"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 77, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (17-22) to (34-40) Cold Damage to Attacks against you" }, } },
+ ["AddedLightningDamage1Inverted"] = { type = "Prefix", affix = "Humming", "Adds 1 to 5 Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 3, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds 1 to 5 Lightning Damage to Attacks against you" }, } },
+ ["AddedLightningDamage2Inverted"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (14-15) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 13, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds 1 to (14-15) Lightning Damage to Attacks against you" }, } },
+ ["AddedLightningDamage3Inverted"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (22-23) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 22, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (1-2) to (22-23) Lightning Damage to Attacks against you" }, } },
+ ["AddedLightningDamage4Inverted"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (27-28) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 28, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (1-2) to (27-28) Lightning Damage to Attacks against you" }, } },
+ ["AddedLightningDamage5Inverted"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 35, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (1-3) to (33-34) Lightning Damage to Attacks against you" }, } },
+ ["AddedLightningDamage6Inverted"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 44, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (1-4) to (40-43) Lightning Damage to Attacks against you" }, } },
+ ["AddedLightningDamage7Inverted"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 52, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (2-5) to (47-50) Lightning Damage to Attacks against you" }, } },
+ ["AddedLightningDamage8Inverted"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 64, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (3-6) to (57-61) Lightning Damage to Attacks against you" }, } },
+ ["AddedLightningDamage9Inverted"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 76, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (3-7) to (68-72) Lightning Damage to Attacks against you" }, } },
+ ["LifeLeechPermyriad1Inverted"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1648 }, level = 50, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2693705594] = { "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Life" }, } },
+ ["LifeLeechPermyriad2Inverted"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1648 }, level = 60, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2693705594] = { "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Life" }, } },
+ ["LifeLeechPermyriad3Inverted"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1648 }, level = 70, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2693705594] = { "(1-1.2)% of Physical Attack Damage Leeched by Enemy as Life" }, } },
+ ["LifeLeechPermyriadSuffix1Inverted"] = { type = "Suffix", affix = "of the Remora", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1648 }, level = 50, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2693705594] = { "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Life" }, } },
+ ["LifeLeechPermyriadSuffix2Inverted"] = { type = "Suffix", affix = "of the Lamprey", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1648 }, level = 60, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2693705594] = { "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Life" }, } },
+ ["LifeLeechPermyriadSuffix3Inverted"] = { type = "Suffix", affix = "of the Vampire", "(1-1.2)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1648 }, level = 70, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2693705594] = { "(1-1.2)% of Physical Attack Damage Leeched by Enemy as Life" }, } },
+ ["ManaLeechPermyriad1Inverted"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1698 }, level = 50, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [407390981] = { "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Mana" }, } },
+ ["ManaLeechPermyriad2Inverted"] = { type = "Prefix", affix = "Parched", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1698 }, level = 70, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [407390981] = { "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Mana" }, } },
+ ["ManaLeechPermyriadSuffix1Inverted"] = { type = "Suffix", affix = "of Thirst", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1698 }, level = 50, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [407390981] = { "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Mana" }, } },
+ ["ManaLeechPermyriadSuffix2Inverted"] = { type = "Suffix", affix = "of Parching", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1698 }, level = 70, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [407390981] = { "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Mana" }, } },
+ ["LifeRegenerationEnhancedLevel50ModInverted"] = { type = "Suffix", affix = "of Guatelitzi", "Lose (32-40) Life per second", "Lose 0.4% of Life per second", statOrder = { 1575, 1943 }, level = 50, group = "LifeDegenerationAndPercentGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [1661347488] = { "Lose 0.4% of Life per second" }, [771127912] = { "Lose (32-40) Life per second" }, } },
+ ["IncreasedEnergyShieldEnhancedLevel50ModRegenInverted"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Lose 0.4% of Energy Shield per second", statOrder = { 1558, 2647 }, level = 50, group = "EnergyShieldAndDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [761102773] = { "Lose 0.4% of Energy Shield per second" }, [3489782002] = { "+(44-47) to maximum Energy Shield" }, } },
+ ["FireResistEnhancedLevel50ModLeechInverted"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched by Enemy as Life", statOrder = { 1625, 1671 }, level = 50, group = "FireResistanceEnemyLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, tradeHashes = { [45548764] = { "0.4% of Fire Damage Leeched by Enemy as Life" }, [3372524247] = { "+(46-48)% to Fire Resistance" }, } },
+ ["ColdResistEnhancedLevel50ModLeechInverted"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched by Enemy as Life", statOrder = { 1631, 1676 }, level = 50, group = "ColdResistanceEnemyLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(46-48)% to Cold Resistance" }, [3271464175] = { "0.4% of Cold Damage Leeched by Enemy as Life" }, } },
+ ["LightningResistEnhancedLevel50ModLeechInverted"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched by Enemy as Life", statOrder = { 1636, 1680 }, level = 50, group = "LightningResistanceEnemyLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning", "resistance" }, tradeHashes = { [3925004212] = { "0.4% of Lightning Damage Leeched by Enemy as Life" }, [1671376347] = { "+(46-48)% to Lightning Resistance" }, } },
+ ["IncreasedManaEnhancedLevel50ModRegenInverted"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Lose (5-7) Mana per second", statOrder = { 1579, 1583 }, level = 50, group = "IncreasedManaAndDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [838272676] = { "Lose (5-7) Mana per second" }, } },
+ ["IncreasedManaEnhancedLevel50ModCostNewInverted"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Non-Channelling Skills Cost -(8-6) Mana", statOrder = { 1579, 10063 }, level = 50, group = "IncreasedManaAndBaseCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(74-78) to maximum Mana" }, [407482587] = { "Non-Channelling Skills Cost -(8-6) Mana" }, } },
+ ["AddedPhysicalDamageEssenceAmulet7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (16-18) to (27-30) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 82, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (16-18) to (27-30) Physical Damage to Attacks against you" }, } },
+ ["AddedPhysicalDamageEssenceRing5Inverted"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-13) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 58, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (6-8) to (12-13) Physical Damage to Attacks against you" }, } },
+ ["AddedPhysicalDamageEssenceRing6Inverted"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-15) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 74, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (7-9) to (13-15) Physical Damage to Attacks against you" }, } },
+ ["AddedPhysicalDamageEssenceRing7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (10-11) to (16-17) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 82, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2093523445] = { "Adds (10-11) to (16-17) Physical Damage to Attacks against you" }, } },
+ ["AddedFireDamageEssence7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (23-27) to (43-48) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 82, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [2127433866] = { "Adds (23-27) to (43-48) Fire Damage to Attacks against you" }, } },
+ ["AddedColdDamageEssence7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (20-24) to (38-44) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 82, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [617462123] = { "Adds (20-24) to (38-44) Cold Damage to Attacks against you" }, } },
+ ["AddedLightningDamageEssence7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (4-8) to (71-76) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 82, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2491363440] = { "Adds (4-8) to (71-76) Lightning Damage to Attacks against you" }, } },
+ ["FireDamageAsPortionOfPhysicalDamageEssence1Inverted"] = { type = "Prefix", affix = "Essences", "Hits against you gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1931 }, level = 63, group = "SelfPhysAsExtraFireTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [248982637] = { "Hits against you gain 10% of Physical Damage as Extra Fire Damage" }, } },
+ ["AddedColdDamagePerFrenzyChargeEssence1Inverted"] = { type = "Prefix", affix = "Essences", "Adds 4 to 7 Cold Damage to Hits against you per Frenzy Charge", statOrder = { 4272 }, level = 63, group = "SelfColdDamageTakenPerFrenzy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [178386603] = { "Adds 4 to 7 Cold Damage to Hits against you per Frenzy Charge" }, } },
+ ["ChanceToRecoverManaOnSkillUseEssence1Inverted"] = { type = "Suffix", affix = "of the Essence", "10% chance to lose 10% of Mana when you use a Skill", statOrder = { 3474 }, level = 63, group = "ChanceToLoseManaOnSkillUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2858930612] = { "10% chance to lose 10% of Mana when you use a Skill" }, } },
+ ["DamageCannotBeReflectedPercentEssence1Inverted"] = { type = "Suffix", affix = "of the Essence", "You and your Minions take 60% increased Reflected Damage", statOrder = { 9882 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3577248251] = { "You and your Minions take 60% increased Reflected Damage" }, } },
+ ["PhysicalDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Physical Damage Leeched by Enemy as Life", statOrder = { 1667 }, level = 60, group = "EnemyPhysicalDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3423022686] = { "0.4% of Physical Damage Leeched by Enemy as Life" }, } },
+ ["FireDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Fire Damage Leeched by Enemy as Life", statOrder = { 1671 }, level = 60, group = "EnemyFireDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [45548764] = { "0.4% of Fire Damage Leeched by Enemy as Life" }, } },
+ ["ColdDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Cold Damage Leeched by Enemy as Life", statOrder = { 1676 }, level = 60, group = "EnemyColdDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3271464175] = { "0.4% of Cold Damage Leeched by Enemy as Life" }, } },
+ ["LightningDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Lightning Damage Leeched by Enemy as Life", statOrder = { 1680 }, level = 60, group = "EnemyLightningDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3925004212] = { "0.4% of Lightning Damage Leeched by Enemy as Life" }, } },
+ ["ChaosDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Chaos Damage Leeched by Enemy as Life", statOrder = { 1683 }, level = 60, group = "EnemyChaosDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [334180828] = { "0.4% of Chaos Damage Leeched by Enemy as Life" }, } },
+ ["AddedManaRegenerationDelveInverted"] = { type = "Suffix", affix = "of the Underground", "Lose (3-5) Mana per second", statOrder = { 1583 }, level = 60, group = "ManaDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [838272676] = { "Lose (3-5) Mana per second" }, } },
+ ["WeaponSpellDamageTriggerSkillOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost", "(70-74)% increased Spell Damage", statOrder = { 832, 832.1, 1223 }, level = 50, group = "WeaponSpellDamageTriggerSkill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(70-74)% increased Spell Damage" }, [1582781759] = { "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost" }, } },
+ ["WeaponSpellDamageTriggerSkillOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost", "(105-110)% increased Spell Damage", statOrder = { 832, 832.1, 1223 }, level = 50, group = "WeaponSpellDamageTriggerSkill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, tradeHashes = { [2974417149] = { "(105-110)% increased Spell Damage" }, [1582781759] = { "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost" }, } },
+ ["MercenaryModLightningSkillManaCostWhileShocked"] = { type = "Suffix", affix = "of Infamy", "40% less Mana cost of Lightning Skills while Shocked", statOrder = { 7466 }, level = 68, group = "LightningSkillManaCostWhileShocked", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "elemental", "lightning" }, tradeHashes = { [3964669425] = { "40% less Mana cost of Lightning Skills while Shocked" }, } },
+ ["MercenaryModTravelSkillCrit"] = { type = "Prefix", affix = "Infamous", "Your Travel Skills Critically Strike once every 3 uses", statOrder = { 10424 }, level = 68, group = "TravelSkillCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [335741860] = { "Your Travel Skills Critically Strike once every 3 uses" }, } },
+ ["MercenaryModRecoupWhileFrozen"] = { type = "Suffix", affix = "of Infamy", "(50-90)% of Damage taken while Frozen Recouped as Life", statOrder = { 6124 }, level = 68, group = "RecoupWhileFrozen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2585984986] = { "(50-90)% of Damage taken while Frozen Recouped as Life" }, } },
+ ["MercenaryModSkipSacrifice"] = { type = "Suffix", affix = "of Infamy", "(20-40)% chance on Skill use to not Sacrifice Life but", "still gain benefits as though you had", statOrder = { 10071, 10071.1 }, level = 68, group = "SkipSacrifice", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [1761297940] = { "(20-40)% chance on Skill use to not Sacrifice Life but", "still gain benefits as though you had" }, } },
+ ["MercenaryModMinionFireConvertToChaos"] = { type = "Prefix", affix = "Infamous", "Minions convert 100% of Fire Damage to Chaos Damage", statOrder = { 9277 }, level = 68, group = "MinionFireConvertToChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "chaos", "minion" }, tradeHashes = { [2727256287] = { "Minions convert 100% of Fire Damage to Chaos Damage" }, } },
+ ["MercenaryModRecentMinionCrit"] = { type = "Suffix", affix = "of Infamy", "Minions created Recently have (60-100)% increased Critical Hit Chance", statOrder = { 9338 }, level = 68, group = "RecentMinionCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "critical" }, tradeHashes = { [3913090641] = { "Minions created Recently have (60-100)% increased Critical Hit Chance" }, } },
+ ["MercenaryModTrapMineChain"] = { type = "Suffix", affix = "of Infamy", "Skills used by your Traps and Mines Chain 2 additional times", statOrder = { 10416 }, level = 68, group = "TrapMineChain", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2999750998] = { "Skills used by your Traps and Mines Chain 2 additional times" }, } },
+ ["MercenaryModMineLifeReserve"] = { type = "Prefix", affix = "Infamous", "Your Skills that throw Mines reserve Life instead of Mana", statOrder = { 10070 }, level = 68, group = "MineLifeReserve", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [1192252020] = { "Your Skills that throw Mines reserve Life instead of Mana" }, } },
+ ["MercenaryModProjSpeedVariance"] = { type = "Suffix", affix = "of Infamy", "Each Projectile created by Attacks you make with a Melee Weapon has", "between 50% more and 50% less Projectile Speed at random", statOrder = { 9745, 9745.1 }, level = 68, group = "MeleeProjSpeedVariance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1563068812] = { "Each Projectile created by Attacks you make with a Melee Weapon has", "between 50% more and 50% less Projectile Speed at random" }, } },
+ ["MercenaryModMaxBlades"] = { type = "Prefix", affix = "Infamous", "Skills that leave Lingering Blades have +(5-10) to Maximum Lingering Blades", statOrder = { 9174 }, level = 68, group = "MaxBlades", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3954265754] = { "Skills that leave Lingering Blades have +(5-10) to Maximum Lingering Blades" }, } },
+ ["MercenaryModDebilitate"] = { type = "Prefix", affix = "Infamous", "Debuffs on you expire (80-100)% faster", "You are Debilitated", statOrder = { 6151, 9974 }, level = 68, group = "SelfDebilitate", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (80-100)% faster" }, [1989416016] = { "You are Debilitated" }, } },
+ ["MercenaryModAshWarcries"] = { type = "Suffix", affix = "of Infamy", "Your Warcries cover Enemies in Ash for 5 seconds", statOrder = { 10559 }, level = 68, group = "CoverInAshWarcry", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3946593978] = { "Your Warcries cover Enemies in Ash for 5 seconds" }, } },
+ ["MercenaryModRageDecaySpeed"] = { type = "Prefix", affix = "Infamous", "Inherent loss of Rage is 20% slower", statOrder = { 9793 }, level = 68, group = "RageDecaySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3645269560] = { "Inherent loss of Rage is 20% slower" }, } },
+ ["MercenaryModAddCritPerExert"] = { type = "Suffix", affix = "of Infamy", "Skills have +(2-3)% to Critical Strike Chance for each Warcry Exerting them", statOrder = { 4551 }, level = 68, group = "AddCritPerExert", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [3528761893] = { "Skills have +(2-3)% to Critical Strike Chance for each Warcry Exerting them" }, } },
+ ["MercenaryModLGOHIgnitedEnemies"] = { type = "Suffix", affix = "of Infamy", "Gain (5-10) Life for each Ignited Enemy hit with Attacks", statOrder = { 1743 }, level = 68, group = "LifeGainOnHitVsIgnitedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [120895749] = { "Gain (5-10) Life for each Ignited Enemy hit with Attacks" }, } },
+ ["MercenaryModFortificationDamageAura"] = { type = "Suffix", affix = "of Infamy", "Nearby Enemies take 1% increased Physical Damage per two Fortification on you", statOrder = { 9463 }, level = 68, group = "FortificationDamageAura", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [4187518631] = { "Nearby Enemies take 1% increased Physical Damage per two Fortification on you" }, } },
+ ["MercenaryModLifeCostOnLowLife"] = { type = "Suffix", affix = "of Infamy", "30% less Life cost of Skills while on Low Life", statOrder = { 10058 }, level = 68, group = "LifeCostOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3452986510] = { "30% less Life cost of Skills while on Low Life" }, } },
+ ["MercenaryModMinionCDR"] = { type = "Suffix", affix = "of Infamy", "Minions have 20% increased Cooldown Recovery Rate", statOrder = { 9287 }, level = 68, group = "MinionCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1691403182] = { "Minions have 20% increased Cooldown Recovery Rate" }, } },
+ ["MercenaryModConsecratedChaosRes"] = { type = "Suffix", affix = "of Infamy", "Consecrated Ground you create grants +(1-3)% maximum Chaos Resistance to you and Allies", statOrder = { 10688 }, level = 68, group = "ConsecratedChaosRes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [1235229114] = { "Consecrated Ground you create grants +(1-3)% maximum Chaos Resistance to you and Allies" }, } },
+ ["MercenaryModImpaleEffectFromDistance"] = { type = "Suffix", affix = "of Infamy", "Projectiles gain Impale effect as they travel farther, causing Impales they inflict to have up to 40% increased effect", statOrder = { 7249 }, level = 68, group = "ImpaleEffectFromDistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [2521866096] = { "Projectiles gain Impale effect as they travel farther, causing Impales they inflict to have up to 40% increased effect" }, } },
+ ["MercenaryModClonesInheritGloves"] = { type = "Prefix", affix = "Infamous", "Your Blink and Mirror arrow clones use your Gloves", statOrder = { 5223 }, level = 68, group = "ClonesInheritGloves", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [3148879215] = { "Your Blink and Mirror arrow clones use your Gloves" }, } },
+ ["MercenaryModSingleProjAOE"] = { type = "Suffix", affix = "of Infamy", "30% more Area of Effect with Bow Attacks that fire a single Projectile", statOrder = { 4723 }, level = 68, group = "SingleProjAOE", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2379109976] = { "30% more Area of Effect with Bow Attacks that fire a single Projectile" }, } },
+ ["MercenaryModSpellslingerReservation"] = { type = "Suffix", affix = "of Infamy", "20% increased Mana Reservation Efficiency of Skills Supported by Spellslinger", statOrder = { 10199 }, level = 68, group = "EnchantmentSpellslingerManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack", "caster" }, tradeHashes = { [3305838454] = { "20% increased Mana Reservation Efficiency of Skills Supported by Spellslinger" }, } },
+ ["MercenaryModMaimDOT"] = { type = "Suffix", affix = "of Infamy", "Enemies Maimed by you take 10% increased Damage Over Time", statOrder = { 6414 }, level = 68, group = "EnchantmentMaim", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2745149002] = { "Enemies Maimed by you take 10% increased Damage Over Time" }, } },
+ ["MercenaryModUnaffectedShock"] = { type = "Suffix", affix = "of Infamy", "Unaffected by Shock while Channelling", statOrder = { 10479 }, level = 68, group = "UnaffectedByShockWhileChannel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [2967697688] = { "Unaffected by Shock while Channelling" }, } },
+ ["MercenaryModCurseEffect"] = { type = "Prefix", affix = "Infamous", "20% reduced Curse Duration", "15% increased Effect of your Curses", statOrder = { 1781, 2596 }, level = 68, group = "CurseEffectReduceCurseDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, tradeHashes = { [2353576063] = { "15% increased Effect of your Curses" }, [3824372849] = { "20% reduced Curse Duration" }, } },
+ ["MercenaryModCurseChillingAreas"] = { type = "Prefix", affix = "Infamous", "Curses on Enemies in your Chilling Areas have 15% increased Effect", statOrder = { 5777 }, level = 68, group = "CurseEffectChillingAreas", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, tradeHashes = { [608898129] = { "Curses on Enemies in your Chilling Areas have 15% increased Effect" }, } },
+ ["MagicSearchingJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(75-100)% increased Effect of Socketed Magic Searching Eye Jewels", statOrder = { 8022 }, level = 50, group = "MagicSearchingJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1938324031] = { "(75-100)% increased Effect of Socketed Magic Searching Eye Jewels" }, } },
+ ["MagicMurderousJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(75-100)% increased Effect of Socketed Magic Murderous Eye Jewels", statOrder = { 8021 }, level = 50, group = "MagicMurderousJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3949536301] = { "(75-100)% increased Effect of Socketed Magic Murderous Eye Jewels" }, } },
+ ["MagicHypnoticJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(75-100)% increased Effect of Socketed Magic Hypnotic Eye Jewels", statOrder = { 8020 }, level = 50, group = "MagicHypnoticJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [654501336] = { "(75-100)% increased Effect of Socketed Magic Hypnotic Eye Jewels" }, } },
+ ["MagicGhastlyJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(75-100)% increased Effect of Socketed Magic Ghastly Eye Jewels", statOrder = { 8019 }, level = 50, group = "MagicGhastlyJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2526952837] = { "(75-100)% increased Effect of Socketed Magic Ghastly Eye Jewels" }, } },
+ ["RareSearchingJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(50-75)% increased Effect of Socketed Rare Searching Eye Jewels", statOrder = { 8026 }, level = 50, group = "RareSearchingJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3524275808] = { "(50-75)% increased Effect of Socketed Rare Searching Eye Jewels" }, } },
+ ["RareMurderousJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(50-75)% increased Effect of Socketed Rare Murderous Eye Jewels", statOrder = { 8025 }, level = 50, group = "RareMurderousJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1217940944] = { "(50-75)% increased Effect of Socketed Rare Murderous Eye Jewels" }, } },
+ ["RareHypnoticJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(50-75)% increased Effect of Socketed Rare Hypnotic Eye Jewels", statOrder = { 8024 }, level = 50, group = "RareHypnoticJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1337730278] = { "(50-75)% increased Effect of Socketed Rare Hypnotic Eye Jewels" }, } },
+ ["RareGhastlyJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(50-75)% increased Effect of Socketed Rare Ghastly Eye Jewels", statOrder = { 8023 }, level = 50, group = "RareGhastlyJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1974290842] = { "(50-75)% increased Effect of Socketed Rare Ghastly Eye Jewels" }, } },
}
\ No newline at end of file
diff --git a/src/Data/ModFlask.lua b/src/Data/ModFlask.lua
index db2f4a0834d..9bba56187ea 100644
--- a/src/Data/ModFlask.lua
+++ b/src/Data/ModFlask.lua
@@ -2,250 +2,250 @@
-- Item data (c) Grinding Gear Games
return {
- ["FlaskIncreasedRecoverySpeed1"] = { type = "Prefix", affix = "Undiluted", "(41-46)% increased Recovery rate", statOrder = { 860 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(41-46)% increased Recovery rate" }, } },
- ["FlaskIncreasedRecoverySpeed2"] = { type = "Prefix", affix = "Thickened", "(47-52)% increased Recovery rate", statOrder = { 860 }, level = 21, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(47-52)% increased Recovery rate" }, } },
- ["FlaskIncreasedRecoverySpeed3_"] = { type = "Prefix", affix = "Viscous", "(53-58)% increased Recovery rate", statOrder = { 860 }, level = 41, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(53-58)% increased Recovery rate" }, } },
- ["FlaskIncreasedRecoverySpeed4"] = { type = "Prefix", affix = "Condensed", "(59-64)% increased Recovery rate", statOrder = { 860 }, level = 61, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(59-64)% increased Recovery rate" }, } },
- ["FlaskIncreasedRecoverySpeed5"] = { type = "Prefix", affix = "Catalysed", "(65-70)% increased Recovery rate", statOrder = { 860 }, level = 81, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(65-70)% increased Recovery rate" }, } },
- ["FlaskIncreasedRecoveryAmount1"] = { type = "Prefix", affix = "Substantial", "(41-46)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 859, 860 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(41-46)% increased Amount Recovered" }, [173226756] = { "33% reduced Recovery rate" }, } },
- ["FlaskIncreasedRecoveryAmount2_"] = { type = "Prefix", affix = "Opaque", "(47-52)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 859, 860 }, level = 21, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(47-52)% increased Amount Recovered" }, [173226756] = { "33% reduced Recovery rate" }, } },
- ["FlaskIncreasedRecoveryAmount3"] = { type = "Prefix", affix = "Full-bodied", "(53-58)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 859, 860 }, level = 41, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(53-58)% increased Amount Recovered" }, [173226756] = { "33% reduced Recovery rate" }, } },
- ["FlaskIncreasedRecoveryAmount4"] = { type = "Prefix", affix = "Concentrated", "(59-64)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 859, 860 }, level = 61, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(59-64)% increased Amount Recovered" }, [173226756] = { "33% reduced Recovery rate" }, } },
- ["FlaskIncreasedRecoveryAmount5"] = { type = "Prefix", affix = "Saturated", "(65-70)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 859, 860 }, level = 81, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(65-70)% increased Amount Recovered" }, [173226756] = { "33% reduced Recovery rate" }, } },
- ["FlaskIncreasedRecoveryOnLowLife1"] = { type = "Prefix", affix = "Prudent", "(101-106)% more Recovery if used while on Low Life", statOrder = { 864 }, level = 6, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(101-106)% more Recovery if used while on Low Life" }, } },
- ["FlaskIncreasedRecoveryOnLowLife2_"] = { type = "Prefix", affix = "Prepared", "(107-112)% more Recovery if used while on Low Life", statOrder = { 864 }, level = 25, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(107-112)% more Recovery if used while on Low Life" }, } },
- ["FlaskIncreasedRecoveryOnLowLife3"] = { type = "Prefix", affix = "Wary", "(113-118)% more Recovery if used while on Low Life", statOrder = { 864 }, level = 44, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(113-118)% more Recovery if used while on Low Life" }, } },
- ["FlaskIncreasedRecoveryOnLowLife4"] = { type = "Prefix", affix = "Careful", "(119-124)% more Recovery if used while on Low Life", statOrder = { 864 }, level = 63, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(119-124)% more Recovery if used while on Low Life" }, } },
- ["FlaskIncreasedRecoveryOnLowLife5"] = { type = "Prefix", affix = "Cautious", "(125-130)% more Recovery if used while on Low Life", statOrder = { 864 }, level = 82, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(125-130)% more Recovery if used while on Low Life" }, } },
- ["FlaskInstantRecoveryOnLowLife1"] = { type = "Prefix", affix = "Startled", "(27-30)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 859, 865 }, level = 9, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [3812107348] = { "Instant Recovery when on Low Life" }, [700317374] = { "(27-30)% reduced Amount Recovered" }, } },
- ["FlaskInstantRecoveryOnLowLife2"] = { type = "Prefix", affix = "Frightened", "(23-26)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 859, 865 }, level = 27, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [3812107348] = { "Instant Recovery when on Low Life" }, [700317374] = { "(23-26)% reduced Amount Recovered" }, } },
- ["FlaskInstantRecoveryOnLowLife3"] = { type = "Prefix", affix = "Alarmed", "(19-22)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 859, 865 }, level = 45, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [3812107348] = { "Instant Recovery when on Low Life" }, [700317374] = { "(19-22)% reduced Amount Recovered" }, } },
- ["FlaskInstantRecoveryOnLowLife4"] = { type = "Prefix", affix = "Terrified", "(15-18)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 859, 865 }, level = 63, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [3812107348] = { "Instant Recovery when on Low Life" }, [700317374] = { "(15-18)% reduced Amount Recovered" }, } },
- ["FlaskInstantRecoveryOnLowLife5__"] = { type = "Prefix", affix = "Panicked", "(11-14)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 859, 865 }, level = 81, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [3812107348] = { "Instant Recovery when on Low Life" }, [700317374] = { "(11-14)% reduced Amount Recovered" }, } },
- ["FlaskPartialInstantRecovery1"] = { type = "Prefix", affix = "Simmering", "(52-55)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 859, 860, 866 }, level = 3, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(52-55)% reduced Amount Recovered" }, [2503377690] = { "50% of Recovery applied Instantly" }, [173226756] = { "135% increased Recovery rate" }, } },
- ["FlaskPartialInstantRecovery2"] = { type = "Prefix", affix = "Ebullient", "(48-51)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 859, 860, 866 }, level = 22, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(48-51)% reduced Amount Recovered" }, [2503377690] = { "50% of Recovery applied Instantly" }, [173226756] = { "135% increased Recovery rate" }, } },
- ["FlaskPartialInstantRecovery3"] = { type = "Prefix", affix = "Effusive", "(44-47)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 859, 860, 866 }, level = 41, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(44-47)% reduced Amount Recovered" }, [2503377690] = { "50% of Recovery applied Instantly" }, [173226756] = { "135% increased Recovery rate" }, } },
- ["FlaskPartialInstantRecovery4"] = { type = "Prefix", affix = "Effervescent", "(40-43)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 859, 860, 866 }, level = 60, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(40-43)% reduced Amount Recovered" }, [2503377690] = { "50% of Recovery applied Instantly" }, [173226756] = { "135% increased Recovery rate" }, } },
- ["FlaskPartialInstantRecovery5_"] = { type = "Prefix", affix = "Bubbling", "(36-39)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 859, 860, 866 }, level = 79, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(36-39)% reduced Amount Recovered" }, [2503377690] = { "50% of Recovery applied Instantly" }, [173226756] = { "135% increased Recovery rate" }, } },
- ["FlaskFullInstantRecovery1"] = { type = "Prefix", affix = "Seething", "66% reduced Amount Recovered", "Instant Recovery", statOrder = { 859, 871 }, level = 7, group = "FlaskFullInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 3000 }, modTags = { "flask" }, tradeHashes = { [1526933524] = { "Instant Recovery" }, [700317374] = { "66% reduced Amount Recovered" }, } },
- ["FlaskExtraManaCostsLife1"] = { type = "Prefix", affix = "Aged", "(41-46)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 858, 874 }, level = 13, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(41-46)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } },
- ["FlaskExtraManaCostsLife2"] = { type = "Prefix", affix = "Fermented", "(47-52)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 858, 874 }, level = 30, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(47-52)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } },
- ["FlaskExtraManaCostsLife3_"] = { type = "Prefix", affix = "Congealed", "(53-58)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 858, 874 }, level = 47, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(53-58)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } },
- ["FlaskExtraManaCostsLife4"] = { type = "Prefix", affix = "Turbid", "(59-64)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 858, 874 }, level = 64, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(59-64)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } },
- ["FlaskExtraManaCostsLife5_"] = { type = "Prefix", affix = "Caustic", "(65-70)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 858, 874 }, level = 81, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(65-70)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } },
- ["FlaskExtraLifeCostsMana1"] = { type = "Prefix", affix = "Impairing", "(35-39)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 854, 876 }, level = 13, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(35-39)% increased Life Recovered" }, [648019518] = { "Removes 10% of Life Recovered from Mana when used" }, } },
- ["FlaskExtraLifeCostsMana2"] = { type = "Prefix", affix = "Dizzying", "(40-44)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 854, 876 }, level = 30, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(40-44)% increased Life Recovered" }, [648019518] = { "Removes 10% of Life Recovered from Mana when used" }, } },
- ["FlaskExtraLifeCostsMana3"] = { type = "Prefix", affix = "Depleting", "(46-50)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 854, 876 }, level = 47, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(46-50)% increased Life Recovered" }, [648019518] = { "Removes 10% of Life Recovered from Mana when used" }, } },
- ["FlaskExtraLifeCostsMana4"] = { type = "Prefix", affix = "Vitiating", "(51-55)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 854, 876 }, level = 64, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(51-55)% increased Life Recovered" }, [648019518] = { "Removes 10% of Life Recovered from Mana when used" }, } },
- ["FlaskExtraLifeCostsMana5_"] = { type = "Prefix", affix = "Sapping", "(56-60)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 854, 876 }, level = 81, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(56-60)% increased Life Recovered" }, [648019518] = { "Removes 10% of Life Recovered from Mana when used" }, } },
- ["FlaskDispellsChill1"] = { type = "Suffix", affix = "of Heat", "Grants Immunity to Chill for 4 seconds if used while Chilled", "Grants Immunity to Freeze for 4 seconds if used while Frozen", statOrder = { 907, 907.1 }, level = 4, group = "FlaskDispellsChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "cold", "ailment" }, tradeHashes = { [3570046771] = { "Grants Immunity to Chill for 4 seconds if used while Chilled", "Grants Immunity to Freeze for 4 seconds if used while Frozen" }, } },
- ["FlaskDispellsBurning1"] = { type = "Suffix", affix = "of Dousing", "Grants Immunity to Ignite for 4 seconds if used while Ignited", "Removes all Burning when used", statOrder = { 909, 909.1 }, level = 6, group = "FlaskDispellsBurning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "fire", "ailment" }, tradeHashes = { [2695527599] = { "Grants Immunity to Ignite for 4 seconds if used while Ignited", "Removes all Burning when used" }, } },
- ["FlaskRemovesBleeding1"] = { type = "Suffix", affix = "of Staunching", "Grants Immunity to Bleeding for 4 seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for 4 seconds if used while affected by Corrupted Blood", statOrder = { 905, 905.1 }, level = 8, group = "FlaskRemovesBleeding", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3233646242] = { "Grants Immunity to Bleeding for 4 seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for 4 seconds if used while affected by Corrupted Blood" }, } },
- ["FlaskRemovesShock1"] = { type = "Suffix", affix = "of Grounding", "Grants Immunity to Shock for 4 seconds if used while Shocked", statOrder = { 915 }, level = 10, group = "FlaskRemovesShock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "lightning", "ailment" }, tradeHashes = { [1823903967] = { "Grants Immunity to Shock for 4 seconds if used while Shocked" }, } },
- ["FlaskExtraCharges1"] = { type = "Prefix", affix = "Wide", "+(16-19) to Maximum Charges", statOrder = { 842 }, level = 2, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(16-19) to Maximum Charges" }, } },
- ["FlaskExtraCharges2__"] = { type = "Prefix", affix = "Plentiful", "+(20-23) to Maximum Charges", statOrder = { 842 }, level = 22, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(20-23) to Maximum Charges" }, } },
- ["FlaskExtraCharges3_"] = { type = "Prefix", affix = "Bountiful", "+(24-27) to Maximum Charges", statOrder = { 842 }, level = 42, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(24-27) to Maximum Charges" }, } },
- ["FlaskExtraCharges4__"] = { type = "Prefix", affix = "Abundant", "+(28-31) to Maximum Charges", statOrder = { 842 }, level = 62, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(28-31) to Maximum Charges" }, } },
- ["FlaskExtraCharges5"] = { type = "Prefix", affix = "Ample", "+(32-35) to Maximum Charges", statOrder = { 842 }, level = 82, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(32-35) to Maximum Charges" }, } },
- ["FlaskChargesAddedIncreasePercent1"] = { type = "Prefix", affix = "Constant", "(16-20)% increased Charge Recovery", statOrder = { 850 }, level = 3, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(16-20)% increased Charge Recovery" }, } },
- ["FlaskChargesAddedIncreasePercent2_"] = { type = "Prefix", affix = "Continuous", "(21-25)% increased Charge Recovery", statOrder = { 850 }, level = 23, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(21-25)% increased Charge Recovery" }, } },
- ["FlaskChargesAddedIncreasePercent3_"] = { type = "Prefix", affix = "Endless", "(26-30)% increased Charge Recovery", statOrder = { 850 }, level = 43, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(26-30)% increased Charge Recovery" }, } },
- ["FlaskChargesAddedIncreasePercent4_"] = { type = "Prefix", affix = "Bottomless", "(31-45)% increased Charge Recovery", statOrder = { 850 }, level = 63, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(31-45)% increased Charge Recovery" }, } },
- ["FlaskChargesAddedIncreasePercent5__"] = { type = "Prefix", affix = "Perpetual", "(46-50)% increased Charge Recovery", statOrder = { 850 }, level = 83, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(46-50)% increased Charge Recovery" }, } },
- ["FlaskIncreasedRecoveryReducedEffect1_"] = { type = "Prefix", affix = "Doled", "(37-42)% increased Charge Recovery", "25% reduced effect", statOrder = { 850, 940 }, level = 20, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(37-42)% increased Charge Recovery" }, [553298121] = { "25% reduced effect" }, } },
- ["FlaskIncreasedRecoveryReducedEffect2_"] = { type = "Prefix", affix = "Provisioned", "(43-48)% increased Charge Recovery", "25% reduced effect", statOrder = { 850, 940 }, level = 36, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(43-48)% increased Charge Recovery" }, [553298121] = { "25% reduced effect" }, } },
- ["FlaskIncreasedRecoveryReducedEffect3____"] = { type = "Prefix", affix = "Measured", "(49-54)% increased Charge Recovery", "25% reduced effect", statOrder = { 850, 940 }, level = 52, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(49-54)% increased Charge Recovery" }, [553298121] = { "25% reduced effect" }, } },
- ["FlaskIncreasedRecoveryReducedEffect4_"] = { type = "Prefix", affix = "Allocated", "(55-60)% increased Charge Recovery", "25% reduced effect", statOrder = { 850, 940 }, level = 68, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(55-60)% increased Charge Recovery" }, [553298121] = { "25% reduced effect" }, } },
- ["FlaskIncreasedRecoveryReducedEffect5"] = { type = "Prefix", affix = "Rationed", "(61-66)% increased Charge Recovery", "25% reduced effect", statOrder = { 850, 940 }, level = 84, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(61-66)% increased Charge Recovery" }, [553298121] = { "25% reduced effect" }, } },
- ["FlaskBuffArmourWhileHealing1"] = { type = "Suffix", affix = "of the Abalone", "(41-45)% increased Armour during Effect", statOrder = { 941 }, level = 6, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, tradeHashes = { [1693613464] = { "(41-45)% increased Armour during Effect" }, } },
- ["FlaskBuffArmourWhileHealing2"] = { type = "Suffix", affix = "of the Tortoise", "(46-50)% increased Armour during Effect", statOrder = { 941 }, level = 32, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, tradeHashes = { [1693613464] = { "(46-50)% increased Armour during Effect" }, } },
- ["FlaskBuffArmourWhileHealing3"] = { type = "Suffix", affix = "of the Pangolin", "(51-55)% increased Armour during Effect", statOrder = { 941 }, level = 58, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, tradeHashes = { [1693613464] = { "(51-55)% increased Armour during Effect" }, } },
- ["FlaskBuffArmourWhileHealing4"] = { type = "Suffix", affix = "of the Armadillo", "(56-60)% increased Armour during Effect", statOrder = { 941 }, level = 84, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, tradeHashes = { [1693613464] = { "(56-60)% increased Armour during Effect" }, } },
- ["FlaskBuffEvasionWhileHealing"] = { type = "Suffix", affix = "of the Gazelle", "(41-45)% increased Evasion Rating during Effect", statOrder = { 942 }, level = 6, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, tradeHashes = { [299054775] = { "(41-45)% increased Evasion Rating during Effect" }, } },
- ["FlaskBuffEvasionWhileHealing2"] = { type = "Suffix", affix = "of the Antelope", "(46-50)% increased Evasion Rating during Effect", statOrder = { 942 }, level = 32, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, tradeHashes = { [299054775] = { "(46-50)% increased Evasion Rating during Effect" }, } },
- ["FlaskBuffEvasionWhileHealing3_"] = { type = "Suffix", affix = "of the Ibex", "(51-55)% increased Evasion Rating during Effect", statOrder = { 942 }, level = 58, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, tradeHashes = { [299054775] = { "(51-55)% increased Evasion Rating during Effect" }, } },
- ["FlaskBuffEvasionWhileHealing4"] = { type = "Suffix", affix = "of the Impala", "(56-60)% increased Evasion Rating during Effect", statOrder = { 942 }, level = 84, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, tradeHashes = { [299054775] = { "(56-60)% increased Evasion Rating during Effect" }, } },
- ["FlaskBuffMovementSpeedWhileHealing"] = { type = "Suffix", affix = "of the Hare", "(6-8)% increased Movement Speed during Effect", statOrder = { 951 }, level = 5, group = "FlaskBuffMovementSpeedWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, tradeHashes = { [3182498570] = { "(6-8)% increased Movement Speed during Effect" }, } },
- ["FlaskBuffMovementSpeedWhileHealing2"] = { type = "Suffix", affix = "of the Lynx", "(9-11)% increased Movement Speed during Effect", statOrder = { 951 }, level = 65, group = "FlaskBuffMovementSpeedWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, tradeHashes = { [3182498570] = { "(9-11)% increased Movement Speed during Effect" }, } },
- ["FlaskBuffMovementSpeedWhileHealing3"] = { type = "Suffix", affix = "of the Cheetah", "(12-14)% increased Movement Speed during Effect", statOrder = { 951 }, level = 85, group = "FlaskBuffMovementSpeedWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, tradeHashes = { [3182498570] = { "(12-14)% increased Movement Speed during Effect" }, } },
- ["FlaskBuffStunRecoveryWhileHealing"] = { type = "Suffix", affix = "of Stiffness", "(51-56)% increased Block and Stun Recovery during Effect", statOrder = { 952 }, level = 1, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3479987487] = { "(51-56)% increased Block and Stun Recovery during Effect" }, } },
- ["FlaskBuffStunRecoveryWhileHealing2"] = { type = "Suffix", affix = "of Bracing", "(57-62)% increased Block and Stun Recovery during Effect", statOrder = { 952 }, level = 19, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3479987487] = { "(57-62)% increased Block and Stun Recovery during Effect" }, } },
- ["FlaskBuffStunRecoveryWhileHealing3"] = { type = "Suffix", affix = "of Ballast", "(63-68)% increased Block and Stun Recovery during Effect", statOrder = { 952 }, level = 37, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3479987487] = { "(63-68)% increased Block and Stun Recovery during Effect" }, } },
- ["FlaskBuffStunRecoveryWhileHealing4"] = { type = "Suffix", affix = "of Counterpoise", "(69-74)% increased Block and Stun Recovery during Effect", statOrder = { 952 }, level = 55, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3479987487] = { "(69-74)% increased Block and Stun Recovery during Effect" }, } },
- ["FlaskBuffStunRecoveryWhileHealing5"] = { type = "Suffix", affix = "of Stabilisation", "(75-80)% increased Block and Stun Recovery during Effect", statOrder = { 952 }, level = 73, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3479987487] = { "(75-80)% increased Block and Stun Recovery during Effect" }, } },
- ["FlaskBuffResistancesWhileHealing"] = { type = "Suffix", affix = "of the Crystal", "(12-14)% additional Elemental Resistances during Effect", statOrder = { 953 }, level = 1, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [962725504] = { "(12-14)% additional Elemental Resistances during Effect" }, } },
- ["FlaskBuffResistancesWhileHealing2"] = { type = "Suffix", affix = "of the Prism", "(12-14)% additional Elemental Resistances during Effect", statOrder = { 953 }, level = 21, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [962725504] = { "(12-14)% additional Elemental Resistances during Effect" }, } },
- ["FlaskBuffResistancesWhileHealing3"] = { type = "Suffix", affix = "of the Kaleidoscope", "(15-17)% additional Elemental Resistances during Effect", statOrder = { 953 }, level = 41, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [962725504] = { "(15-17)% additional Elemental Resistances during Effect" }, } },
- ["FlaskBuffResistancesWhileHealing4"] = { type = "Suffix", affix = "of Variegation", "(15-17)% additional Elemental Resistances during Effect", statOrder = { 953 }, level = 61, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [962725504] = { "(15-17)% additional Elemental Resistances during Effect" }, } },
- ["FlaskBuffResistancesWhileHealing5_"] = { type = "Suffix", affix = "of the Rainbow", "(18-20)% additional Elemental Resistances during Effect", statOrder = { 953 }, level = 81, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [962725504] = { "(18-20)% additional Elemental Resistances during Effect" }, } },
- ["FlaskBuffLifeLeechWhileHealing"] = { type = "Suffix", affix = "of Gluttony", "2% of Physical Attack Damage Leeched as Life during Effect", statOrder = { 954 }, level = 10, group = "FlaskBuffLifeLeechWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life", "physical", "attack" }, tradeHashes = { [2146299369] = { "2% of Physical Attack Damage Leeched as Life during Effect" }, } },
- ["FlaskBuffLifeLeechPermyriadWhileHealing"] = { type = "Suffix", affix = "of Gluttony", "0.4% of Physical Attack Damage Leeched as Life during Effect", statOrder = { 957 }, level = 10, group = "FlaskBuffLifeLeechPermyriadWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life", "physical", "attack" }, tradeHashes = { [3111255591] = { "0.4% of Physical Attack Damage Leeched as Life during Effect" }, } },
- ["FlaskBuffManaLeechPermyriadWhileHealing"] = { type = "Suffix", affix = "of Craving", "0.4% of Physical Attack Damage Leeched as Mana during Effect", statOrder = { 959 }, level = 12, group = "FlaskBuffManaLeechPermyriadWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana", "physical", "attack" }, tradeHashes = { [374891408] = { "0.4% of Physical Attack Damage Leeched as Mana during Effect" }, } },
- ["FlaskBuffKnockbackWhileHealing"] = { type = "Suffix", affix = "of Fending", "Adds Knockback to Melee Attacks during Effect", statOrder = { 960 }, level = 9, group = "FlaskBuffKnockbackWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack" }, tradeHashes = { [251342217] = { "Adds Knockback to Melee Attacks during Effect" }, } },
- ["FlaskBuffWardWhileHealing1"] = { type = "Suffix", affix = "of Runegleaming", "(19-21)% increased Ward during Effect", statOrder = { 944 }, level = 12, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, tradeHashes = { [2891175306] = { "(19-21)% increased Ward during Effect" }, } },
- ["FlaskBuffWardWhileHealing2_"] = { type = "Suffix", affix = "of Runeshining", "(22-24)% increased Ward during Effect", statOrder = { 944 }, level = 26, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, tradeHashes = { [2891175306] = { "(22-24)% increased Ward during Effect" }, } },
- ["FlaskBuffWardWhileHealing3"] = { type = "Suffix", affix = "of Runeflaring", "(25-27)% increased Ward during Effect", statOrder = { 944 }, level = 52, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, tradeHashes = { [2891175306] = { "(25-27)% increased Ward during Effect" }, } },
- ["FlaskBuffWardWhileHealing4"] = { type = "Suffix", affix = "of Runeblazing", "(28-30)% increased Ward during Effect", statOrder = { 944 }, level = 78, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, tradeHashes = { [2891175306] = { "(28-30)% increased Ward during Effect" }, } },
- ["FlaskHealsMinions1"] = { type = "Suffix", affix = "of the Novice", "Grants (100-119)% of Life Recovery to Minions", statOrder = { 855 }, level = 10, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (100-119)% of Life Recovery to Minions" }, } },
- ["FlaskHealsMinions2"] = { type = "Suffix", affix = "of the Acolyte", "Grants (120-139)% of Life Recovery to Minions", statOrder = { 855 }, level = 28, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (120-139)% of Life Recovery to Minions" }, } },
- ["FlaskHealsMinions3"] = { type = "Suffix", affix = "of the Summoner", "Grants (140-159)% of Life Recovery to Minions", statOrder = { 855 }, level = 46, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (140-159)% of Life Recovery to Minions" }, } },
- ["FlaskHealsMinions4____"] = { type = "Suffix", affix = "of the Conjurer", "Grants (160-179)% of Life Recovery to Minions", statOrder = { 855 }, level = 64, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (160-179)% of Life Recovery to Minions" }, } },
- ["FlaskHealsMinions5"] = { type = "Suffix", affix = "of the Necromancer", "Grants (180-200)% of Life Recovery to Minions", statOrder = { 855 }, level = 82, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (180-200)% of Life Recovery to Minions" }, } },
- ["FlaskFullRechargeOnCrit1"] = { type = "Prefix", affix = "Surgeon's", "Recharges 1 Charge when you deal a Critical Strike", statOrder = { 846 }, level = 8, group = "FlaskFullRechargeOnCrit", weightKey = { "critical_utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2961372685] = { "Recharges 1 Charge when you deal a Critical Strike" }, } },
- ["FlaskChanceRechargeOnCrit1"] = { type = "Prefix", affix = "Medic's", "(11-15)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 847 }, level = 8, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, tradeHashes = { [2858921304] = { "(11-15)% chance to gain a Flask Charge when you deal a Critical Strike" }, } },
- ["FlaskChanceRechargeOnCrit2"] = { type = "Prefix", affix = "Physician's", "(16-20)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 847 }, level = 26, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, tradeHashes = { [2858921304] = { "(16-20)% chance to gain a Flask Charge when you deal a Critical Strike" }, } },
- ["FlaskChanceRechargeOnCrit3___"] = { type = "Prefix", affix = "Doctor's", "(21-25)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 847 }, level = 44, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, tradeHashes = { [2858921304] = { "(21-25)% chance to gain a Flask Charge when you deal a Critical Strike" }, } },
- ["FlaskChanceRechargeOnCrit4"] = { type = "Prefix", affix = "Specialist's", "(26-30)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 847 }, level = 62, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, tradeHashes = { [2858921304] = { "(26-30)% chance to gain a Flask Charge when you deal a Critical Strike" }, } },
- ["FlaskChanceRechargeOnCrit5"] = { type = "Prefix", affix = "Surgeon's", "(31-35)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 847 }, level = 80, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, tradeHashes = { [2858921304] = { "(31-35)% chance to gain a Flask Charge when you deal a Critical Strike" }, } },
- ["FlaskFullRechargeOnTakeCrit1"] = { type = "Prefix", affix = "Avenger's", "Recharges 5 Charges when you take a Critical Strike", statOrder = { 849 }, level = 12, group = "FlaskFullRechargeOnTakeCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "critical" }, tradeHashes = { [3662336899] = { "Recharges 5 Charges when you take a Critical Strike" }, } },
- ["FlaskDispellsPoison1"] = { type = "Suffix", affix = "of Curing", "Grants Immunity to Poison for 4 seconds if used while Poisoned", statOrder = { 913 }, level = 16, group = "FlaskDispellsPoison", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "poison", "chaos", "ailment" }, tradeHashes = { [3596333054] = { "Grants Immunity to Poison for 4 seconds if used while Poisoned" }, } },
- ["FlaskEffectReducedDuration1"] = { type = "Prefix", affix = "Abecedarian's", "(33-38)% reduced Duration", "25% increased effect", statOrder = { 862, 940 }, level = 20, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% increased effect" }, [156096868] = { "(33-38)% reduced Duration" }, } },
- ["FlaskEffectReducedDuration2"] = { type = "Prefix", affix = "Dabbler's", "(28-32)% reduced Duration", "25% increased effect", statOrder = { 862, 940 }, level = 50, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% increased effect" }, [156096868] = { "(28-32)% reduced Duration" }, } },
- ["FlaskEffectReducedDuration3"] = { type = "Prefix", affix = "Alchemist's", "(23-27)% reduced Duration", "25% increased effect", statOrder = { 862, 940 }, level = 80, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% increased effect" }, [156096868] = { "(23-27)% reduced Duration" }, } },
- ["FlaskChargesUsed1"] = { type = "Prefix", affix = "Apprentice's", "(14-16)% reduced Charges per use", statOrder = { 851 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(14-16)% reduced Charges per use" }, } },
- ["FlaskChargesUsed2"] = { type = "Prefix", affix = "Scholar's", "(17-19)% reduced Charges per use", statOrder = { 851 }, level = 31, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(17-19)% reduced Charges per use" }, } },
- ["FlaskChargesUsed3__"] = { type = "Prefix", affix = "Practitioner's", "(20-22)% reduced Charges per use", statOrder = { 851 }, level = 48, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(20-22)% reduced Charges per use" }, } },
- ["FlaskChargesUsed4__"] = { type = "Prefix", affix = "Brewer's", "(23-25)% reduced Charges per use", statOrder = { 851 }, level = 65, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(23-25)% reduced Charges per use" }, } },
- ["FlaskChargesUsed5"] = { type = "Prefix", affix = "Chemist's", "(26-28)% reduced Charges per use", statOrder = { 851 }, level = 82, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(26-28)% reduced Charges per use" }, } },
- ["FlaskIncreasedDuration2"] = { type = "Prefix", affix = "Investigator's", "(16-20)% increased Duration", statOrder = { 862 }, level = 20, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(16-20)% increased Duration" }, } },
- ["FlaskIncreasedDuration3_"] = { type = "Prefix", affix = "Analyst's", "(21-25)% increased Duration", statOrder = { 862 }, level = 36, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(21-25)% increased Duration" }, } },
- ["FlaskIncreasedDuration4"] = { type = "Prefix", affix = "Examiner's", "(26-30)% increased Duration", statOrder = { 862 }, level = 52, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(26-30)% increased Duration" }, } },
- ["FlaskIncreasedDuration5__"] = { type = "Prefix", affix = "Clinician's", "(31-35)% increased Duration", statOrder = { 862 }, level = 68, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(31-35)% increased Duration" }, } },
- ["FlaskIncreasedDuration6"] = { type = "Prefix", affix = "Experimenter's", "(36-40)% increased Duration", statOrder = { 862 }, level = 84, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(36-40)% increased Duration" }, } },
- ["FlaskFullRechargeOnHit1"] = { type = "Prefix", affix = "Delinquent's", "Gain 1 Charge when you are Hit by an Enemy", statOrder = { 845 }, level = 12, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [1582728645] = { "Gain 1 Charge when you are Hit by an Enemy" }, } },
- ["FlaskFullRechargeOnHit2_"] = { type = "Prefix", affix = "Transgressor's", "Gain 1 Charge when you are Hit by an Enemy", statOrder = { 845 }, level = 29, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [1582728645] = { "Gain 1 Charge when you are Hit by an Enemy" }, } },
- ["FlaskFullRechargeOnHit3_"] = { type = "Prefix", affix = "Sinner's", "Gain 2 Charges when you are Hit by an Enemy", statOrder = { 845 }, level = 46, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [1582728645] = { "Gain 2 Charges when you are Hit by an Enemy" }, } },
- ["FlaskFullRechargeOnHit4_"] = { type = "Prefix", affix = "Masochist's", "Gain 2 Charges when you are Hit by an Enemy", statOrder = { 845 }, level = 63, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [1582728645] = { "Gain 2 Charges when you are Hit by an Enemy" }, } },
- ["FlaskFullRechargeOnHit5___"] = { type = "Prefix", affix = "Flagellant's", "Gain 3 Charges when you are Hit by an Enemy", statOrder = { 845 }, level = 80, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [1582728645] = { "Gain 3 Charges when you are Hit by an Enemy" }, } },
- ["FlaskIncreasedHealingCharges1"] = { type = "Prefix", affix = "Nitrate", "(20-25)% increased Charges per use", "(21-26)% increased Amount Recovered", statOrder = { 851, 859 }, level = 10, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(21-26)% increased Amount Recovered" }, [3139816101] = { "(20-25)% increased Charges per use" }, } },
- ["FlaskIncreasedHealingCharges2"] = { type = "Prefix", affix = "Dolomite", "(20-25)% increased Charges per use", "(27-32)% increased Amount Recovered", statOrder = { 851, 859 }, level = 28, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(27-32)% increased Amount Recovered" }, [3139816101] = { "(20-25)% increased Charges per use" }, } },
- ["FlaskIncreasedHealingCharges3"] = { type = "Prefix", affix = "Kieserite", "(20-25)% increased Charges per use", "(33-38)% increased Amount Recovered", statOrder = { 851, 859 }, level = 46, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(33-38)% increased Amount Recovered" }, [3139816101] = { "(20-25)% increased Charges per use" }, } },
- ["FlaskIncreasedHealingCharges4____"] = { type = "Prefix", affix = "Kainite", "(20-25)% increased Charges per use", "(39-44)% increased Amount Recovered", statOrder = { 851, 859 }, level = 64, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(39-44)% increased Amount Recovered" }, [3139816101] = { "(20-25)% increased Charges per use" }, } },
- ["FlaskIncreasedHealingCharges5"] = { type = "Prefix", affix = "Gypsum", "(20-25)% increased Charges per use", "(45-50)% increased Amount Recovered", statOrder = { 851, 859 }, level = 82, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(45-50)% increased Amount Recovered" }, [3139816101] = { "(20-25)% increased Charges per use" }, } },
- ["FlaskManaRecoveryAtEnd1_"] = { type = "Prefix", affix = "Foreboding", "66% increased Amount Recovered", "Mana Recovery occurs instantly at the end of Effect", statOrder = { 859, 870 }, level = 16, group = "FlaskManaRecoveryAtEnd", weightKey = { "utility_flask", "life_flask", "default", }, weightVal = { 0, 0, 3000 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [4204954479] = { "Mana Recovery occurs instantly at the end of Effect" }, [700317374] = { "66% increased Amount Recovered" }, } },
- ["FlaskEffectNotRemovedOnFullMana1"] = { type = "Prefix", affix = "Enduring", "66% reduced Amount Recovered", "Effect is not removed when Unreserved Mana is Filled", "Effect does not Queue", statOrder = { 859, 869, 869.1 }, level = 16, group = "FlaskEffectNotRemovedOnFullManaReducedRecovery", weightKey = { "utility_flask", "life_flask", "default", }, weightVal = { 0, 0, 3000 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [700317374] = { "66% reduced Amount Recovered" }, [156096868] = { "" }, [3969608626] = { "Effect is not removed when Unreserved Mana is Filled", "Effect does not Queue" }, } },
- ["FlaskBuffAttackLifeLeechWhileHealing1"] = { type = "Suffix", affix = "of Bloodshed", "0.4% of Attack Damage Leeched as Life during Effect", statOrder = { 956 }, level = 10, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, tradeHashes = { [1173558568] = { "0.4% of Attack Damage Leeched as Life during Effect" }, } },
- ["FlaskBuffAttackLifeLeechWhileHealing2"] = { type = "Suffix", affix = "of Gore", "0.5% of Attack Damage Leeched as Life during Effect", statOrder = { 956 }, level = 20, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, tradeHashes = { [1173558568] = { "0.5% of Attack Damage Leeched as Life during Effect" }, } },
- ["FlaskBuffAttackLifeLeechWhileHealing3"] = { type = "Suffix", affix = "of Carnage", "0.6% of Attack Damage Leeched as Life during Effect", statOrder = { 956 }, level = 40, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, tradeHashes = { [1173558568] = { "0.6% of Attack Damage Leeched as Life during Effect" }, } },
- ["FlaskBuffAttackLifeLeechWhileHealing4"] = { type = "Suffix", affix = "of Butchery", "0.7% of Attack Damage Leeched as Life during Effect", statOrder = { 956 }, level = 60, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, tradeHashes = { [1173558568] = { "0.7% of Attack Damage Leeched as Life during Effect" }, } },
- ["FlaskBuffAttackLifeLeechWhileHealing5"] = { type = "Suffix", affix = "of Bloodletting", "0.8% of Attack Damage Leeched as Life during Effect", statOrder = { 956 }, level = 80, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, tradeHashes = { [1173558568] = { "0.8% of Attack Damage Leeched as Life during Effect" }, } },
- ["FlaskBuffSpellEnergyShieldLeechWhileHealing1"] = { type = "Suffix", affix = "of Diverting", "0.4% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 955 }, level = 10, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, tradeHashes = { [1456464057] = { "0.4% of Spell Damage Leeched as Energy Shield during Effect" }, } },
- ["FlaskBuffSpellEnergyShieldLeechWhileHealing2_"] = { type = "Suffix", affix = "of Depletion", "0.5% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 955 }, level = 20, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, tradeHashes = { [1456464057] = { "0.5% of Spell Damage Leeched as Energy Shield during Effect" }, } },
- ["FlaskBuffSpellEnergyShieldLeechWhileHealing3_____"] = { type = "Suffix", affix = "of Tapping", "0.6% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 955 }, level = 40, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, tradeHashes = { [1456464057] = { "0.6% of Spell Damage Leeched as Energy Shield during Effect" }, } },
- ["FlaskBuffSpellEnergyShieldLeechWhileHealing4"] = { type = "Suffix", affix = "of Siphoning", "0.7% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 955 }, level = 60, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, tradeHashes = { [1456464057] = { "0.7% of Spell Damage Leeched as Energy Shield during Effect" }, } },
- ["FlaskBuffSpellEnergyShieldLeechWhileHealing5"] = { type = "Suffix", affix = "of Draining", "0.8% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 955 }, level = 80, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, tradeHashes = { [1456464057] = { "0.8% of Spell Damage Leeched as Energy Shield during Effect" }, } },
- ["FlaskBuffAttackSpeedWhileHealing1"] = { type = "Suffix", affix = "of the Falcon", "(9-11)% increased Attack Speed during Effect", statOrder = { 949 }, level = 12, group = "FlaskBuffAttackSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "speed" }, tradeHashes = { [968369591] = { "(9-11)% increased Attack Speed during Effect" }, } },
- ["FlaskBuffAttackSpeedWhileHealing2_____"] = { type = "Suffix", affix = "of the Eagle", "(12-14)% increased Attack Speed during Effect", statOrder = { 949 }, level = 62, group = "FlaskBuffAttackSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "speed" }, tradeHashes = { [968369591] = { "(12-14)% increased Attack Speed during Effect" }, } },
- ["FlaskBuffAttackSpeedWhileHealing3_"] = { type = "Suffix", affix = "of the Dove", "(15-17)% increased Attack Speed during Effect", statOrder = { 949 }, level = 82, group = "FlaskBuffAttackSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "speed" }, tradeHashes = { [968369591] = { "(15-17)% increased Attack Speed during Effect" }, } },
- ["FlaskBuffCastSpeedWhileHealing1"] = { type = "Suffix", affix = "of the Albatross", "(9-11)% increased Cast Speed during Effect", statOrder = { 950 }, level = 12, group = "FlaskBuffCastSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "speed" }, tradeHashes = { [3256116097] = { "(9-11)% increased Cast Speed during Effect" }, } },
- ["FlaskBuffCastSpeedWhileHealing2"] = { type = "Suffix", affix = "of the Hummingbird", "(12-14)% increased Cast Speed during Effect", statOrder = { 950 }, level = 62, group = "FlaskBuffCastSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "speed" }, tradeHashes = { [3256116097] = { "(12-14)% increased Cast Speed during Effect" }, } },
- ["FlaskBuffCastSpeedWhileHealing3"] = { type = "Suffix", affix = "of the Horsefly", "(15-17)% increased Cast Speed during Effect", statOrder = { 950 }, level = 82, group = "FlaskBuffCastSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "speed" }, tradeHashes = { [3256116097] = { "(15-17)% increased Cast Speed during Effect" }, } },
- ["FlaskBuffAccuracyWhileHealing1__"] = { type = "Suffix", affix = "of the Monkey", "(15-25)% increased Accuracy Rating during Effect", statOrder = { 948 }, level = 12, group = "FlaskBuffAccuracyWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "attack" }, tradeHashes = { [3337754340] = { "(15-25)% increased Accuracy Rating during Effect" }, } },
- ["FlaskBuffAccuracyWhileHealing2"] = { type = "Suffix", affix = "of the Raccoon", "(26-35)% increased Accuracy Rating during Effect", statOrder = { 948 }, level = 42, group = "FlaskBuffAccuracyWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "attack" }, tradeHashes = { [3337754340] = { "(26-35)% increased Accuracy Rating during Effect" }, } },
- ["FlaskBuffAccuracyWhileHealing3"] = { type = "Suffix", affix = "of the Crow", "(35-45)% increased Accuracy Rating during Effect", statOrder = { 948 }, level = 72, group = "FlaskBuffAccuracyWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "attack" }, tradeHashes = { [3337754340] = { "(35-45)% increased Accuracy Rating during Effect" }, } },
- ["FlaskBuffCriticalChanceWhileHealing1_"] = { type = "Suffix", affix = "of Stinging", "(26-31)% increased Critical Strike Chance during Effect", statOrder = { 981 }, level = 18, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2008255263] = { "(26-31)% increased Critical Strike Chance during Effect" }, } },
- ["FlaskBuffCriticalChanceWhileHealing2_"] = { type = "Suffix", affix = "of Piercing", "(32-37)% increased Critical Strike Chance during Effect", statOrder = { 981 }, level = 34, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2008255263] = { "(32-37)% increased Critical Strike Chance during Effect" }, } },
- ["FlaskBuffCriticalChanceWhileHealing3"] = { type = "Suffix", affix = "of Rupturing", "(38-43)% increased Critical Strike Chance during Effect", statOrder = { 981 }, level = 50, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2008255263] = { "(38-43)% increased Critical Strike Chance during Effect" }, } },
- ["FlaskBuffCriticalChanceWhileHealing4__"] = { type = "Suffix", affix = "of Penetrating", "(44-49)% increased Critical Strike Chance during Effect", statOrder = { 981 }, level = 66, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2008255263] = { "(44-49)% increased Critical Strike Chance during Effect" }, } },
- ["FlaskBuffCriticalChanceWhileHealing5"] = { type = "Suffix", affix = "of Incision", "(50-55)% increased Critical Strike Chance during Effect", statOrder = { 981 }, level = 82, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2008255263] = { "(50-55)% increased Critical Strike Chance during Effect" }, } },
- ["FlaskBuffFreezeShockIgniteChanceWhileHealing1_"] = { type = "Suffix", affix = "of Foisting", "(19-22)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 979 }, level = 12, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [97064873] = { "(19-22)% chance to Freeze, Shock and Ignite during Effect" }, } },
- ["FlaskBuffFreezeShockIgniteChanceWhileHealing2____"] = { type = "Suffix", affix = "of Imposing", "(23-26)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 979 }, level = 32, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [97064873] = { "(23-26)% chance to Freeze, Shock and Ignite during Effect" }, } },
- ["FlaskBuffFreezeShockIgniteChanceWhileHealing3"] = { type = "Suffix", affix = "of Wreaking", "(27-30)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 979 }, level = 52, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [97064873] = { "(27-30)% chance to Freeze, Shock and Ignite during Effect" }, } },
- ["FlaskBuffFreezeShockIgniteChanceWhileHealing4_"] = { type = "Suffix", affix = "of Infliction", "(31-34)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 979 }, level = 72, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [97064873] = { "(31-34)% chance to Freeze, Shock and Ignite during Effect" }, } },
- ["FlaskBuffAvoidStunWhileHealing1_"] = { type = "Suffix", affix = "of Composure", "(31-35)% Chance to Avoid being Stunned during Effect", statOrder = { 977 }, level = 12, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2312652600] = { "(31-35)% Chance to Avoid being Stunned during Effect" }, } },
- ["FlaskBuffAvoidStunWhileHealing2"] = { type = "Suffix", affix = "of Surefootedness", "(36-40)% Chance to Avoid being Stunned during Effect", statOrder = { 977 }, level = 29, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2312652600] = { "(36-40)% Chance to Avoid being Stunned during Effect" }, } },
- ["FlaskBuffAvoidStunWhileHealing3"] = { type = "Suffix", affix = "of Persistence", "(41-45)% Chance to Avoid being Stunned during Effect", statOrder = { 977 }, level = 46, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2312652600] = { "(41-45)% Chance to Avoid being Stunned during Effect" }, } },
- ["FlaskBuffAvoidStunWhileHealing4"] = { type = "Suffix", affix = "of Relentlessness", "(46-50)% Chance to Avoid being Stunned during Effect", statOrder = { 977 }, level = 63, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2312652600] = { "(46-50)% Chance to Avoid being Stunned during Effect" }, } },
- ["FlaskBuffAvoidStunWhileHealing5"] = { type = "Suffix", affix = "of Tenaciousness", "(51-55)% Chance to Avoid being Stunned during Effect", statOrder = { 977 }, level = 80, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2312652600] = { "(51-55)% Chance to Avoid being Stunned during Effect" }, } },
- ["FlaskBuffReducedManaCostWhileHealing1_"] = { type = "Suffix", affix = "of the Pupil", "(11-14)% reduced Mana Cost of Skills during Effect", statOrder = { 1004 }, level = 12, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [683273571] = { "(11-14)% reduced Mana Cost of Skills during Effect" }, } },
- ["FlaskBuffReducedManaCostWhileHealing2__"] = { type = "Suffix", affix = "of the Initiate", "(15-18)% reduced Mana Cost of Skills during Effect", statOrder = { 1004 }, level = 29, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [683273571] = { "(15-18)% reduced Mana Cost of Skills during Effect" }, } },
- ["FlaskBuffReducedManaCostWhileHealing3"] = { type = "Suffix", affix = "of the Mage", "(19-21)% reduced Mana Cost of Skills during Effect", statOrder = { 1004 }, level = 46, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [683273571] = { "(19-21)% reduced Mana Cost of Skills during Effect" }, } },
- ["FlaskBuffReducedManaCostWhileHealing4"] = { type = "Suffix", affix = "of the Arcanist", "(22-25)% reduced Mana Cost of Skills during Effect", statOrder = { 1004 }, level = 63, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [683273571] = { "(22-25)% reduced Mana Cost of Skills during Effect" }, } },
- ["FlaskBuffReducedManaCostWhileHealing5"] = { type = "Suffix", affix = "of the Sorcerer", "(26-29)% reduced Mana Cost of Skills during Effect", statOrder = { 1004 }, level = 80, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [683273571] = { "(26-29)% reduced Mana Cost of Skills during Effect" }, } },
- ["FlaskBuffChillFreezeDuration1"] = { type = "Suffix", affix = "of the Rabbit", "(36-41)% reduced Effect of Chill on you during Effect", "(36-41)% reduced Freeze Duration on you during Effect", statOrder = { 1009, 1011 }, level = 4, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2434101731] = { "(36-41)% reduced Effect of Chill on you during Effect" }, [774474440] = { "(36-41)% reduced Freeze Duration on you during Effect" }, } },
- ["FlaskBuffChillFreezeDuration2_"] = { type = "Suffix", affix = "of the Cat", "(42-47)% reduced Effect of Chill on you during Effect", "(42-47)% reduced Freeze Duration on you during Effect", statOrder = { 1009, 1011 }, level = 23, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2434101731] = { "(42-47)% reduced Effect of Chill on you during Effect" }, [774474440] = { "(42-47)% reduced Freeze Duration on you during Effect" }, } },
- ["FlaskBuffChillFreezeDuration3_"] = { type = "Suffix", affix = "of the Fox", "(48-52)% reduced Effect of Chill on you during Effect", "(48-52)% reduced Freeze Duration on you during Effect", statOrder = { 1009, 1011 }, level = 42, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2434101731] = { "(48-52)% reduced Effect of Chill on you during Effect" }, [774474440] = { "(48-52)% reduced Freeze Duration on you during Effect" }, } },
- ["FlaskBuffChillFreezeDuration4"] = { type = "Suffix", affix = "of the Sable", "(52-59)% reduced Effect of Chill on you during Effect", "(52-59)% reduced Freeze Duration on you during Effect", statOrder = { 1009, 1011 }, level = 61, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2434101731] = { "(52-59)% reduced Effect of Chill on you during Effect" }, [774474440] = { "(52-59)% reduced Freeze Duration on you during Effect" }, } },
- ["FlaskBuffChillFreezeDuration5"] = { type = "Suffix", affix = "of the Bear", "(60-65)% reduced Effect of Chill on you during Effect", "(60-65)% reduced Freeze Duration on you during Effect", statOrder = { 1009, 1011 }, level = 80, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2434101731] = { "(60-65)% reduced Effect of Chill on you during Effect" }, [774474440] = { "(60-65)% reduced Freeze Duration on you during Effect" }, } },
- ["FlaskBuffShockEffect1"] = { type = "Suffix", affix = "of the Plover", "(36-41)% reduced Effect of Shock on you during Effect", statOrder = { 1014 }, level = 6, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [1878455805] = { "(36-41)% reduced Effect of Shock on you during Effect" }, } },
- ["FlaskBuffShockEffect2"] = { type = "Suffix", affix = "of the Sandpiper", "(42-47)% reduced Effect of Shock on you during Effect", statOrder = { 1014 }, level = 25, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [1878455805] = { "(42-47)% reduced Effect of Shock on you during Effect" }, } },
- ["FlaskBuffShockEffect3___"] = { type = "Suffix", affix = "of the Cormorant", "(48-52)% reduced Effect of Shock on you during Effect", statOrder = { 1014 }, level = 44, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [1878455805] = { "(48-52)% reduced Effect of Shock on you during Effect" }, } },
- ["FlaskBuffShockEffect4"] = { type = "Suffix", affix = "of the Sanderling", "(52-59)% reduced Effect of Shock on you during Effect", statOrder = { 1014 }, level = 63, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [1878455805] = { "(52-59)% reduced Effect of Shock on you during Effect" }, } },
- ["FlaskBuffShockEffect5"] = { type = "Suffix", affix = "of the Heron", "(60-65)% reduced Effect of Shock on you during Effect", statOrder = { 1014 }, level = 82, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [1878455805] = { "(60-65)% reduced Effect of Shock on you during Effect" }, } },
- ["FlaskBuffCurseEffect1"] = { type = "Suffix", affix = "of the Petrel", "(36-41)% reduced Effect of Curses on you during Effect", statOrder = { 1010 }, level = 8, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [4265534424] = { "(36-41)% reduced Effect of Curses on you during Effect" }, } },
- ["FlaskBuffCurseEffect2"] = { type = "Suffix", affix = "of the Mockingbird", "(42-47)% reduced Effect of Curses on you during Effect", statOrder = { 1010 }, level = 27, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [4265534424] = { "(42-47)% reduced Effect of Curses on you during Effect" }, } },
- ["FlaskBuffCurseEffect3_"] = { type = "Suffix", affix = "of the Curlew", "(48-52)% reduced Effect of Curses on you during Effect", statOrder = { 1010 }, level = 46, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [4265534424] = { "(48-52)% reduced Effect of Curses on you during Effect" }, } },
- ["FlaskBuffCurseEffect4"] = { type = "Suffix", affix = "of the Kakapo", "(52-59)% reduced Effect of Curses on you during Effect", statOrder = { 1010 }, level = 65, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [4265534424] = { "(52-59)% reduced Effect of Curses on you during Effect" }, } },
- ["FlaskBuffCurseEffect5"] = { type = "Suffix", affix = "of the Owl", "(60-65)% reduced Effect of Curses on you during Effect", statOrder = { 1010 }, level = 84, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [4265534424] = { "(60-65)% reduced Effect of Curses on you during Effect" }, } },
- ["FlaskBuffBleedDuration1"] = { type = "Suffix", affix = "[UNUSED] Bleed duration 1", "(35-45)% reduced Bleeding Duration on you during Effect", statOrder = { 1008 }, level = 8, group = "FlaskBuffBleedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, tradeHashes = { [1050147907] = { "(35-45)% reduced Bleeding Duration on you during Effect" }, } },
- ["FlaskBuffPoisonDuration1"] = { type = "Suffix", affix = "[UNUSED] Poison duration 1", "(35-45)% reduced Poison Duration on you during Effect", statOrder = { 1013 }, level = 16, group = "FlaskBuffPoisonDuration", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, tradeHashes = { [4151049654] = { "(35-45)% reduced Poison Duration on you during Effect" }, } },
- ["FlaskBuffIgniteDuration1_"] = { type = "Suffix", affix = "[UNUSED] Ignite duration 1", "(35-45)% reduced Ignite Duration on you during Effect", statOrder = { 1012 }, level = 6, group = "FlaskBuffIgniteDuration", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, tradeHashes = { [424810649] = { "(35-45)% reduced Ignite Duration on you during Effect" }, } },
- ["FlaskBuffAvoidChillFreeze1_"] = { type = "Suffix", affix = "of the Orca", "(31-35)% chance to Avoid being Chilled during Effect", "(31-35)% chance to Avoid being Frozen during Effect", statOrder = { 968, 969 }, level = 4, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [475518267] = { "(31-35)% chance to Avoid being Frozen during Effect" }, [1619168299] = { "(31-35)% chance to Avoid being Chilled during Effect" }, } },
- ["FlaskBuffAvoidChillFreeze2"] = { type = "Suffix", affix = "of the Sea Lion", "(36-40)% chance to Avoid being Chilled during Effect", "(36-40)% chance to Avoid being Frozen during Effect", statOrder = { 968, 969 }, level = 23, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [475518267] = { "(36-40)% chance to Avoid being Frozen during Effect" }, [1619168299] = { "(36-40)% chance to Avoid being Chilled during Effect" }, } },
- ["FlaskBuffAvoidChillFreeze3"] = { type = "Suffix", affix = "of the Narwhal", "(41-45)% chance to Avoid being Chilled during Effect", "(41-45)% chance to Avoid being Frozen during Effect", statOrder = { 968, 969 }, level = 42, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [475518267] = { "(41-45)% chance to Avoid being Frozen during Effect" }, [1619168299] = { "(41-45)% chance to Avoid being Chilled during Effect" }, } },
- ["FlaskBuffAvoidChillFreeze4"] = { type = "Suffix", affix = "of the Beluga", "(46-50)% chance to Avoid being Chilled during Effect", "(46-50)% chance to Avoid being Frozen during Effect", statOrder = { 968, 969 }, level = 61, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [475518267] = { "(46-50)% chance to Avoid being Frozen during Effect" }, [1619168299] = { "(46-50)% chance to Avoid being Chilled during Effect" }, } },
- ["FlaskBuffAvoidChillFreeze5"] = { type = "Suffix", affix = "of the Seal", "(51-55)% chance to Avoid being Chilled during Effect", "(51-55)% chance to Avoid being Frozen during Effect", statOrder = { 968, 969 }, level = 80, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [475518267] = { "(51-55)% chance to Avoid being Frozen during Effect" }, [1619168299] = { "(51-55)% chance to Avoid being Chilled during Effect" }, } },
- ["FlaskBuffAvoidIgnite1"] = { type = "Suffix", affix = "of the Guppy", "(31-35)% chance to Avoid being Ignited during Effect", statOrder = { 970 }, level = 6, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [20251177] = { "(31-35)% chance to Avoid being Ignited during Effect" }, } },
- ["FlaskBuffAvoidIgnite2"] = { type = "Suffix", affix = "of the Goldfish", "(36-40)% chance to Avoid being Ignited during Effect", statOrder = { 970 }, level = 25, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [20251177] = { "(36-40)% chance to Avoid being Ignited during Effect" }, } },
- ["FlaskBuffAvoidIgnite3"] = { type = "Suffix", affix = "of the Carp", "(41-45)% chance to Avoid being Ignited during Effect", statOrder = { 970 }, level = 44, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [20251177] = { "(41-45)% chance to Avoid being Ignited during Effect" }, } },
- ["FlaskBuffAvoidIgnite4___"] = { type = "Suffix", affix = "of the Catfish", "(46-50)% chance to Avoid being Ignited during Effect", statOrder = { 970 }, level = 63, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [20251177] = { "(46-50)% chance to Avoid being Ignited during Effect" }, } },
- ["FlaskBuffAvoidIgnite5_"] = { type = "Suffix", affix = "of the Sunfish", "(51-55)% chance to Avoid being Ignited during Effect", statOrder = { 970 }, level = 82, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [20251177] = { "(51-55)% chance to Avoid being Ignited during Effect" }, } },
- ["FlaskBuffAvoidShock1"] = { type = "Suffix", affix = "of Tree Moss", "(31-35)% chance to Avoid being Shocked during Effect", statOrder = { 971 }, level = 6, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3642618258] = { "(31-35)% chance to Avoid being Shocked during Effect" }, } },
- ["FlaskBuffAvoidShock2_"] = { type = "Suffix", affix = "of Turf Moss", "(36-40)% chance to Avoid being Shocked during Effect", statOrder = { 971 }, level = 25, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3642618258] = { "(36-40)% chance to Avoid being Shocked during Effect" }, } },
- ["FlaskBuffAvoidShock3"] = { type = "Suffix", affix = "of Tooth Moss", "(41-45)% chance to Avoid being Shocked during Effect", statOrder = { 971 }, level = 44, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3642618258] = { "(41-45)% chance to Avoid being Shocked during Effect" }, } },
- ["FlaskBuffAvoidShock4_____"] = { type = "Suffix", affix = "of Plume Moss", "(46-50)% chance to Avoid being Shocked during Effect", statOrder = { 971 }, level = 63, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3642618258] = { "(46-50)% chance to Avoid being Shocked during Effect" }, } },
- ["FlaskBuffAvoidShock5"] = { type = "Suffix", affix = "of Bog Moss", "(51-55)% chance to Avoid being Shocked during Effect", statOrder = { 971 }, level = 82, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3642618258] = { "(51-55)% chance to Avoid being Shocked during Effect" }, } },
- ["FlaskCurseImmunity1"] = { type = "Suffix", affix = "of Warding", "Removes Curses on use", statOrder = { 902 }, level = 18, group = "FlaskCurseImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 3000 }, modTags = { "flask", "caster", "curse" }, tradeHashes = { [3895393544] = { "Removes Curses on use" }, } },
- ["LocalManaFlaskHinderNearbyEnemies1_"] = { type = "Suffix", affix = "of Interference", "Hinders nearby Enemies with (17-22)% reduced Movement Speed if used while not on Full Mana", statOrder = { 918 }, level = 30, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [2313899959] = { "Hinders nearby Enemies with (17-22)% reduced Movement Speed if used while not on Full Mana" }, } },
- ["LocalManaFlaskHinderNearbyEnemies2"] = { type = "Suffix", affix = "of Obstruction", "Hinders nearby Enemies with (23-28)% reduced Movement Speed if used while not on Full Mana", statOrder = { 918 }, level = 48, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [2313899959] = { "Hinders nearby Enemies with (23-28)% reduced Movement Speed if used while not on Full Mana" }, } },
- ["LocalManaFlaskHinderNearbyEnemies3"] = { type = "Suffix", affix = "of Occlusion", "Hinders nearby Enemies with (29-34)% reduced Movement Speed if used while not on Full Mana", statOrder = { 918 }, level = 66, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [2313899959] = { "Hinders nearby Enemies with (29-34)% reduced Movement Speed if used while not on Full Mana" }, } },
- ["LocalManaFlaskHinderNearbyEnemies4"] = { type = "Suffix", affix = "of Restraint", "Hinders nearby Enemies with (35-40)% reduced Movement Speed if used while not on Full Mana", statOrder = { 918 }, level = 84, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [2313899959] = { "Hinders nearby Enemies with (35-40)% reduced Movement Speed if used while not on Full Mana" }, } },
- ["LocalLifeFlaskHinderNearbyEnemies1_"] = { type = "Suffix", affix = "of Interference", "Hinders nearby Enemies with (17-22)% reduced Movement Speed if used while not on Full Life", statOrder = { 917 }, level = 30, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [1462364052] = { "Hinders nearby Enemies with (17-22)% reduced Movement Speed if used while not on Full Life" }, } },
- ["LocalLifeFlaskHinderNearbyEnemies2_"] = { type = "Suffix", affix = "of Obstruction", "Hinders nearby Enemies with (23-28)% reduced Movement Speed if used while not on Full Life", statOrder = { 917 }, level = 48, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [1462364052] = { "Hinders nearby Enemies with (23-28)% reduced Movement Speed if used while not on Full Life" }, } },
- ["LocalLifeFlaskHinderNearbyEnemies3_"] = { type = "Suffix", affix = "of Occlusion", "Hinders nearby Enemies with (29-34)% reduced Movement Speed if used while not on Full Life", statOrder = { 917 }, level = 66, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [1462364052] = { "Hinders nearby Enemies with (29-34)% reduced Movement Speed if used while not on Full Life" }, } },
- ["LocalLifeFlaskHinderNearbyEnemies4"] = { type = "Suffix", affix = "of Restraint", "Hinders nearby Enemies with (35-40)% reduced Movement Speed if used while not on Full Life", statOrder = { 917 }, level = 84, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [1462364052] = { "Hinders nearby Enemies with (35-40)% reduced Movement Speed if used while not on Full Life" }, } },
- ["LocalFlaskImmuneToMaimAndHinder1"] = { type = "Suffix", affix = "of Movement", "Grants Immunity to Hinder for (6-8) seconds if used while Hindered", "Grants Immunity to Maim for (6-8) seconds if used while Maimed", statOrder = { 911, 912 }, level = 16, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, tradeHashes = { [4003593289] = { "Grants Immunity to Hinder for (6-8) seconds if used while Hindered" }, [4232582040] = { "Grants Immunity to Maim for (6-8) seconds if used while Maimed" }, } },
- ["LocalFlaskImmuneToMaimAndHinder2"] = { type = "Suffix", affix = "of Motion", "Grants Immunity to Hinder for (9-11) seconds if used while Hindered", "Grants Immunity to Maim for (9-11) seconds if used while Maimed", statOrder = { 911, 912 }, level = 38, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, tradeHashes = { [4003593289] = { "Grants Immunity to Hinder for (9-11) seconds if used while Hindered" }, [4232582040] = { "Grants Immunity to Maim for (9-11) seconds if used while Maimed" }, } },
- ["LocalFlaskImmuneToMaimAndHinder3"] = { type = "Suffix", affix = "of Freedom", "Grants Immunity to Hinder for (12-14) seconds if used while Hindered", "Grants Immunity to Maim for (12-14) seconds if used while Maimed", statOrder = { 911, 912 }, level = 60, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, tradeHashes = { [4003593289] = { "Grants Immunity to Hinder for (12-14) seconds if used while Hindered" }, [4232582040] = { "Grants Immunity to Maim for (12-14) seconds if used while Maimed" }, } },
- ["LocalFlaskImmuneToMaimAndHinder4"] = { type = "Suffix", affix = "of Liberation", "Grants Immunity to Hinder for (15-17) seconds if used while Hindered", "Grants Immunity to Maim for (15-17) seconds if used while Maimed", statOrder = { 911, 912 }, level = 82, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, tradeHashes = { [4003593289] = { "Grants Immunity to Hinder for (15-17) seconds if used while Hindered" }, [4232582040] = { "Grants Immunity to Maim for (15-17) seconds if used while Maimed" }, } },
- ["LocalLifeFlaskAdditionalLifeRecovery1"] = { type = "Suffix", affix = "of Abundance", "Recover an additional (11-16)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 904 }, level = 25, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [307410279] = { "Recover an additional (11-16)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life" }, } },
- ["LocalLifeFlaskAdditionalLifeRecovery2__"] = { type = "Suffix", affix = "of Plenty", "Recover an additional (17-22)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 904 }, level = 39, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [307410279] = { "Recover an additional (17-22)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life" }, } },
- ["LocalLifeFlaskAdditionalLifeRecovery3"] = { type = "Suffix", affix = "of Bounty", "Recover an additional (23-28)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 904 }, level = 53, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [307410279] = { "Recover an additional (23-28)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life" }, } },
- ["LocalLifeFlaskAdditionalLifeRecovery4"] = { type = "Suffix", affix = "of Incessance", "Recover an additional (29-34)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 904 }, level = 67, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [307410279] = { "Recover an additional (29-34)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life" }, } },
- ["LocalLifeFlaskAdditionalLifeRecovery5_"] = { type = "Suffix", affix = "of Perenniality", "Recover an additional (35-40)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 904 }, level = 81, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [307410279] = { "Recover an additional (35-40)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life" }, } },
- ["FlaskBleedCorruptingBloodImmunity1"] = { type = "Suffix", affix = "of Sealing", "Grants Immunity to Bleeding for (6-8) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (6-8) seconds if used while affected by Corrupted Blood", statOrder = { 906, 906.1 }, level = 8, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [182714578] = { "Grants Immunity to Bleeding for (6-8) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (6-8) seconds if used while affected by Corrupted Blood" }, } },
- ["FlaskBleedCorruptingBloodImmunity2"] = { type = "Suffix", affix = "of Alleviation", "Grants Immunity to Bleeding for (9-11) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (9-11) seconds if used while affected by Corrupted Blood", statOrder = { 906, 906.1 }, level = 32, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [182714578] = { "Grants Immunity to Bleeding for (9-11) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (9-11) seconds if used while affected by Corrupted Blood" }, } },
- ["FlaskBleedCorruptingBloodImmunity3______"] = { type = "Suffix", affix = "of Allaying", "Grants Immunity to Bleeding for (12-14) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (12-14) seconds if used while affected by Corrupted Blood", statOrder = { 906, 906.1 }, level = 56, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [182714578] = { "Grants Immunity to Bleeding for (12-14) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (12-14) seconds if used while affected by Corrupted Blood" }, } },
- ["FlaskBleedCorruptingBloodImmunity4_"] = { type = "Suffix", affix = "of Assuaging", "Grants Immunity to Bleeding for (15-17) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (15-17) seconds if used while affected by Corrupted Blood", statOrder = { 906, 906.1 }, level = 80, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [182714578] = { "Grants Immunity to Bleeding for (15-17) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (15-17) seconds if used while affected by Corrupted Blood" }, } },
- ["FlaskShockImmunity1"] = { type = "Suffix", affix = "of Earthing", "Grants Immunity to Shock for (6-8) seconds if used while Shocked", statOrder = { 916 }, level = 6, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3854439683] = { "Grants Immunity to Shock for (6-8) seconds if used while Shocked" }, } },
- ["FlaskShockImmunity2"] = { type = "Suffix", affix = "of Grounding", "Grants Immunity to Shock for (9-11) seconds if used while Shocked", statOrder = { 916 }, level = 30, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3854439683] = { "Grants Immunity to Shock for (9-11) seconds if used while Shocked" }, } },
- ["FlaskShockImmunity3"] = { type = "Suffix", affix = "of Insulation", "Grants Immunity to Shock for (12-14) seconds if used while Shocked", statOrder = { 916 }, level = 54, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3854439683] = { "Grants Immunity to Shock for (12-14) seconds if used while Shocked" }, } },
- ["FlaskShockImmunity4_"] = { type = "Suffix", affix = "of the Dielectric", "Grants Immunity to Shock for (15-17) seconds if used while Shocked", statOrder = { 916 }, level = 78, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3854439683] = { "Grants Immunity to Shock for (15-17) seconds if used while Shocked" }, } },
- ["FlaskChillFreezeImmunity1"] = { type = "Suffix", affix = "of Convection", "Grants Immunity to Chill for (6-8) seconds if used while Chilled", "Grants Immunity to Freeze for (6-8) seconds if used while Frozen", statOrder = { 908, 908.1 }, level = 4, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3869628136] = { "Grants Immunity to Chill for (6-8) seconds if used while Chilled", "Grants Immunity to Freeze for (6-8) seconds if used while Frozen" }, } },
- ["FlaskChillFreezeImmunity2"] = { type = "Suffix", affix = "of Thermodynamics", "Grants Immunity to Chill for (9-11) seconds if used while Chilled", "Grants Immunity to Freeze for (9-11) seconds if used while Frozen", statOrder = { 908, 908.1 }, level = 28, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3869628136] = { "Grants Immunity to Chill for (9-11) seconds if used while Chilled", "Grants Immunity to Freeze for (9-11) seconds if used while Frozen" }, } },
- ["FlaskChillFreezeImmunity3"] = { type = "Suffix", affix = "of Entropy", "Grants Immunity to Chill for (12-14) seconds if used while Chilled", "Grants Immunity to Freeze for (12-14) seconds if used while Frozen", statOrder = { 908, 908.1 }, level = 52, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3869628136] = { "Grants Immunity to Chill for (12-14) seconds if used while Chilled", "Grants Immunity to Freeze for (12-14) seconds if used while Frozen" }, } },
- ["FlaskChillFreezeImmunity4"] = { type = "Suffix", affix = "of Thawing", "Grants Immunity to Chill for (15-17) seconds if used while Chilled", "Grants Immunity to Freeze for (15-17) seconds if used while Frozen", statOrder = { 908, 908.1 }, level = 76, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3869628136] = { "Grants Immunity to Chill for (15-17) seconds if used while Chilled", "Grants Immunity to Freeze for (15-17) seconds if used while Frozen" }, } },
- ["FlaskIgniteImmunity1"] = { type = "Suffix", affix = "of Damping", "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 910, 910.1 }, level = 6, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [2361218755] = { "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used" }, } },
- ["FlaskIgniteImmunity2_"] = { type = "Suffix", affix = "of Quashing", "Grants Immunity to Ignite for (9-11) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 910, 910.1 }, level = 30, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [2361218755] = { "Grants Immunity to Ignite for (9-11) seconds if used while Ignited", "Removes all Burning when used" }, } },
- ["FlaskIgniteImmunity3_"] = { type = "Suffix", affix = "of Quelling", "Grants Immunity to Ignite for (12-14) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 910, 910.1 }, level = 54, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [2361218755] = { "Grants Immunity to Ignite for (12-14) seconds if used while Ignited", "Removes all Burning when used" }, } },
- ["FlaskIgniteImmunity4"] = { type = "Suffix", affix = "of Quenching", "Grants Immunity to Ignite for (15-17) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 910, 910.1 }, level = 78, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [2361218755] = { "Grants Immunity to Ignite for (15-17) seconds if used while Ignited", "Removes all Burning when used" }, } },
- ["FlaskPoisonImmunity1__"] = { type = "Suffix", affix = "of the Antitoxin", "Grants Immunity to Poison for (6-8) seconds if used while Poisoned", statOrder = { 914 }, level = 16, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [542375676] = { "Grants Immunity to Poison for (6-8) seconds if used while Poisoned" }, } },
- ["FlaskPoisonImmunity2"] = { type = "Suffix", affix = "of the Remedy", "Grants Immunity to Poison for (9-11) seconds if used while Poisoned", statOrder = { 914 }, level = 38, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [542375676] = { "Grants Immunity to Poison for (9-11) seconds if used while Poisoned" }, } },
- ["FlaskPoisonImmunity3"] = { type = "Suffix", affix = "of the Cure", "Grants Immunity to Poison for (12-14) seconds if used while Poisoned", statOrder = { 914 }, level = 60, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [542375676] = { "Grants Immunity to Poison for (12-14) seconds if used while Poisoned" }, } },
- ["FlaskPoisonImmunity4"] = { type = "Suffix", affix = "of the Antidote", "Grants Immunity to Poison for (15-17) seconds if used while Poisoned", statOrder = { 914 }, level = 82, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [542375676] = { "Grants Immunity to Poison for (15-17) seconds if used while Poisoned" }, } },
- ["FlaskPoisonImmunityDuringEffect"] = { type = "Suffix", affix = "of the Skunk", "(45-49)% less Duration", "Immunity to Poison during Effect", statOrder = { 863, 991 }, level = 16, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(45-49)% less Duration" }, [1349296959] = { "Immunity to Poison during Effect" }, } },
- ["FlaskPoisonImmunityDuringEffect2"] = { type = "Suffix", affix = "of the Hedgehog", "(40-44)% less Duration", "Immunity to Poison during Effect", statOrder = { 863, 991 }, level = 46, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(40-44)% less Duration" }, [1349296959] = { "Immunity to Poison during Effect" }, } },
- ["FlaskPoisonImmunityDuringEffect3"] = { type = "Suffix", affix = "of the Opossum", "(35-39)% less Duration", "Immunity to Poison during Effect", statOrder = { 863, 991 }, level = 76, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(35-39)% less Duration" }, [1349296959] = { "Immunity to Poison during Effect" }, } },
- ["FlaskShockImmunityDuringEffect"] = { type = "Suffix", affix = "of the Conger", "(45-49)% less Duration", "Immunity to Shock during Effect", statOrder = { 863, 992 }, level = 6, group = "FlaskShockImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [589991690] = { "Immunity to Shock during Effect" }, [1506355899] = { "(45-49)% less Duration" }, } },
- ["FlaskShockImmunityDuringEffect2___"] = { type = "Suffix", affix = "of the Moray", "(40-44)% less Duration", "Immunity to Shock during Effect", statOrder = { 863, 992 }, level = 40, group = "FlaskShockImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [589991690] = { "Immunity to Shock during Effect" }, [1506355899] = { "(40-44)% less Duration" }, } },
- ["FlaskShockImmunityDuringEffect3"] = { type = "Suffix", affix = "of the Eel", "(35-39)% less Duration", "Immunity to Shock during Effect", statOrder = { 863, 992 }, level = 74, group = "FlaskShockImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [589991690] = { "Immunity to Shock during Effect" }, [1506355899] = { "(35-39)% less Duration" }, } },
- ["FlaskFreezeAndChillImmunityDuringEffect"] = { type = "Suffix", affix = "of the Deer", "(45-49)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 863, 990 }, level = 4, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [3838369929] = { "Immunity to Freeze and Chill during Effect" }, [1506355899] = { "(45-49)% less Duration" }, } },
- ["FlaskFreezeAndChillImmunityDuringEffect2"] = { type = "Suffix", affix = "of the Walrus", "(40-44)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 863, 990 }, level = 38, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [3838369929] = { "Immunity to Freeze and Chill during Effect" }, [1506355899] = { "(40-44)% less Duration" }, } },
- ["FlaskFreezeAndChillImmunityDuringEffect3__"] = { type = "Suffix", affix = "of the Penguin", "(35-39)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 863, 990 }, level = 72, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [3838369929] = { "Immunity to Freeze and Chill during Effect" }, [1506355899] = { "(35-39)% less Duration" }, } },
- ["FlaskIgniteImmunityDuringEffect_"] = { type = "Suffix", affix = "of the Urchin", "(45-49)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 863, 921, 921.1 }, level = 6, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [658443507] = { "Immunity to Ignite during Effect", "Removes Burning on use" }, [1506355899] = { "(45-49)% less Duration" }, } },
- ["FlaskIgniteImmunityDuringEffect2"] = { type = "Suffix", affix = "of the Mussel", "(40-44)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 863, 921, 921.1 }, level = 40, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [658443507] = { "Immunity to Ignite during Effect", "Removes Burning on use" }, [1506355899] = { "(40-44)% less Duration" }, } },
- ["FlaskIgniteImmunityDuringEffect3"] = { type = "Suffix", affix = "of the Starfish", "(35-39)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 863, 921, 921.1 }, level = 74, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [658443507] = { "Immunity to Ignite during Effect", "Removes Burning on use" }, [1506355899] = { "(35-39)% less Duration" }, } },
- ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect_1"] = { type = "Suffix", affix = "of the Lizard", "(45-49)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 863, 988 }, level = 8, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(45-49)% less Duration" }, [3965637181] = { "Immunity to Bleeding and Corrupted Blood during Effect" }, } },
- ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect2_"] = { type = "Suffix", affix = "of the Skink", "(40-44)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 863, 988 }, level = 42, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(40-44)% less Duration" }, [3965637181] = { "Immunity to Bleeding and Corrupted Blood during Effect" }, } },
- ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect3___"] = { type = "Suffix", affix = "of the Iguana", "(35-39)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 863, 988 }, level = 76, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(35-39)% less Duration" }, [3965637181] = { "Immunity to Bleeding and Corrupted Blood during Effect" }, } },
+ ["FlaskIncreasedRecoverySpeed1"] = { type = "Prefix", affix = "Undiluted", "(41-46)% increased Recovery rate", statOrder = { 855 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(41-46)% increased Recovery rate" }, } },
+ ["FlaskIncreasedRecoverySpeed2"] = { type = "Prefix", affix = "Thickened", "(47-52)% increased Recovery rate", statOrder = { 855 }, level = 21, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(47-52)% increased Recovery rate" }, } },
+ ["FlaskIncreasedRecoverySpeed3_"] = { type = "Prefix", affix = "Viscous", "(53-58)% increased Recovery rate", statOrder = { 855 }, level = 41, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(53-58)% increased Recovery rate" }, } },
+ ["FlaskIncreasedRecoverySpeed4"] = { type = "Prefix", affix = "Condensed", "(59-64)% increased Recovery rate", statOrder = { 855 }, level = 61, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(59-64)% increased Recovery rate" }, } },
+ ["FlaskIncreasedRecoverySpeed5"] = { type = "Prefix", affix = "Catalysed", "(65-70)% increased Recovery rate", statOrder = { 855 }, level = 81, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(65-70)% increased Recovery rate" }, } },
+ ["FlaskIncreasedRecoveryAmount1"] = { type = "Prefix", affix = "Substantial", "(41-46)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 854, 855 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(41-46)% increased Amount Recovered" }, [173226756] = { "33% reduced Recovery rate" }, } },
+ ["FlaskIncreasedRecoveryAmount2_"] = { type = "Prefix", affix = "Opaque", "(47-52)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 854, 855 }, level = 21, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(47-52)% increased Amount Recovered" }, [173226756] = { "33% reduced Recovery rate" }, } },
+ ["FlaskIncreasedRecoveryAmount3"] = { type = "Prefix", affix = "Full-bodied", "(53-58)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 854, 855 }, level = 41, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(53-58)% increased Amount Recovered" }, [173226756] = { "33% reduced Recovery rate" }, } },
+ ["FlaskIncreasedRecoveryAmount4"] = { type = "Prefix", affix = "Concentrated", "(59-64)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 854, 855 }, level = 61, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(59-64)% increased Amount Recovered" }, [173226756] = { "33% reduced Recovery rate" }, } },
+ ["FlaskIncreasedRecoveryAmount5"] = { type = "Prefix", affix = "Saturated", "(65-70)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 854, 855 }, level = 81, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(65-70)% increased Amount Recovered" }, [173226756] = { "33% reduced Recovery rate" }, } },
+ ["FlaskIncreasedRecoveryOnLowLife1"] = { type = "Prefix", affix = "Prudent", "(101-106)% more Recovery if used while on Low Life", statOrder = { 859 }, level = 6, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(101-106)% more Recovery if used while on Low Life" }, } },
+ ["FlaskIncreasedRecoveryOnLowLife2_"] = { type = "Prefix", affix = "Prepared", "(107-112)% more Recovery if used while on Low Life", statOrder = { 859 }, level = 25, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(107-112)% more Recovery if used while on Low Life" }, } },
+ ["FlaskIncreasedRecoveryOnLowLife3"] = { type = "Prefix", affix = "Wary", "(113-118)% more Recovery if used while on Low Life", statOrder = { 859 }, level = 44, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(113-118)% more Recovery if used while on Low Life" }, } },
+ ["FlaskIncreasedRecoveryOnLowLife4"] = { type = "Prefix", affix = "Careful", "(119-124)% more Recovery if used while on Low Life", statOrder = { 859 }, level = 63, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(119-124)% more Recovery if used while on Low Life" }, } },
+ ["FlaskIncreasedRecoveryOnLowLife5"] = { type = "Prefix", affix = "Cautious", "(125-130)% more Recovery if used while on Low Life", statOrder = { 859 }, level = 82, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(125-130)% more Recovery if used while on Low Life" }, } },
+ ["FlaskInstantRecoveryOnLowLife1"] = { type = "Prefix", affix = "Startled", "(27-30)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 854, 860 }, level = 9, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [3812107348] = { "Instant Recovery when on Low Life" }, [700317374] = { "(27-30)% reduced Amount Recovered" }, } },
+ ["FlaskInstantRecoveryOnLowLife2"] = { type = "Prefix", affix = "Frightened", "(23-26)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 854, 860 }, level = 27, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [3812107348] = { "Instant Recovery when on Low Life" }, [700317374] = { "(23-26)% reduced Amount Recovered" }, } },
+ ["FlaskInstantRecoveryOnLowLife3"] = { type = "Prefix", affix = "Alarmed", "(19-22)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 854, 860 }, level = 45, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [3812107348] = { "Instant Recovery when on Low Life" }, [700317374] = { "(19-22)% reduced Amount Recovered" }, } },
+ ["FlaskInstantRecoveryOnLowLife4"] = { type = "Prefix", affix = "Terrified", "(15-18)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 854, 860 }, level = 63, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [3812107348] = { "Instant Recovery when on Low Life" }, [700317374] = { "(15-18)% reduced Amount Recovered" }, } },
+ ["FlaskInstantRecoveryOnLowLife5__"] = { type = "Prefix", affix = "Panicked", "(11-14)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 854, 860 }, level = 81, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, tradeHashes = { [3812107348] = { "Instant Recovery when on Low Life" }, [700317374] = { "(11-14)% reduced Amount Recovered" }, } },
+ ["FlaskPartialInstantRecovery1"] = { type = "Prefix", affix = "Simmering", "(52-55)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 854, 855, 861 }, level = 3, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(52-55)% reduced Amount Recovered" }, [2503377690] = { "50% of Recovery applied Instantly" }, [173226756] = { "135% increased Recovery rate" }, } },
+ ["FlaskPartialInstantRecovery2"] = { type = "Prefix", affix = "Ebullient", "(48-51)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 854, 855, 861 }, level = 22, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(48-51)% reduced Amount Recovered" }, [2503377690] = { "50% of Recovery applied Instantly" }, [173226756] = { "135% increased Recovery rate" }, } },
+ ["FlaskPartialInstantRecovery3"] = { type = "Prefix", affix = "Effusive", "(44-47)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 854, 855, 861 }, level = 41, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(44-47)% reduced Amount Recovered" }, [2503377690] = { "50% of Recovery applied Instantly" }, [173226756] = { "135% increased Recovery rate" }, } },
+ ["FlaskPartialInstantRecovery4"] = { type = "Prefix", affix = "Effervescent", "(40-43)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 854, 855, 861 }, level = 60, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(40-43)% reduced Amount Recovered" }, [2503377690] = { "50% of Recovery applied Instantly" }, [173226756] = { "135% increased Recovery rate" }, } },
+ ["FlaskPartialInstantRecovery5_"] = { type = "Prefix", affix = "Bubbling", "(36-39)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 854, 855, 861 }, level = 79, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(36-39)% reduced Amount Recovered" }, [2503377690] = { "50% of Recovery applied Instantly" }, [173226756] = { "135% increased Recovery rate" }, } },
+ ["FlaskFullInstantRecovery1"] = { type = "Prefix", affix = "Seething", "66% reduced Amount Recovered", "Instant Recovery", statOrder = { 854, 866 }, level = 7, group = "FlaskFullInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 3000 }, modTags = { "flask" }, tradeHashes = { [1526933524] = { "Instant Recovery" }, [700317374] = { "66% reduced Amount Recovered" }, } },
+ ["FlaskExtraManaCostsLife1"] = { type = "Prefix", affix = "Aged", "(41-46)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 853, 869 }, level = 13, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(41-46)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } },
+ ["FlaskExtraManaCostsLife2"] = { type = "Prefix", affix = "Fermented", "(47-52)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 853, 869 }, level = 30, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(47-52)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } },
+ ["FlaskExtraManaCostsLife3_"] = { type = "Prefix", affix = "Congealed", "(53-58)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 853, 869 }, level = 47, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(53-58)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } },
+ ["FlaskExtraManaCostsLife4"] = { type = "Prefix", affix = "Turbid", "(59-64)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 853, 869 }, level = 64, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(59-64)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } },
+ ["FlaskExtraManaCostsLife5_"] = { type = "Prefix", affix = "Caustic", "(65-70)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 853, 869 }, level = 81, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(65-70)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } },
+ ["FlaskExtraLifeCostsMana1"] = { type = "Prefix", affix = "Impairing", "(35-39)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 849, 871 }, level = 13, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(35-39)% increased Life Recovered" }, [648019518] = { "Removes 10% of Life Recovered from Mana when used" }, } },
+ ["FlaskExtraLifeCostsMana2"] = { type = "Prefix", affix = "Dizzying", "(40-44)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 849, 871 }, level = 30, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(40-44)% increased Life Recovered" }, [648019518] = { "Removes 10% of Life Recovered from Mana when used" }, } },
+ ["FlaskExtraLifeCostsMana3"] = { type = "Prefix", affix = "Depleting", "(46-50)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 849, 871 }, level = 47, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(46-50)% increased Life Recovered" }, [648019518] = { "Removes 10% of Life Recovered from Mana when used" }, } },
+ ["FlaskExtraLifeCostsMana4"] = { type = "Prefix", affix = "Vitiating", "(51-55)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 849, 871 }, level = 64, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(51-55)% increased Life Recovered" }, [648019518] = { "Removes 10% of Life Recovered from Mana when used" }, } },
+ ["FlaskExtraLifeCostsMana5_"] = { type = "Prefix", affix = "Sapping", "(56-60)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 849, 871 }, level = 81, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(56-60)% increased Life Recovered" }, [648019518] = { "Removes 10% of Life Recovered from Mana when used" }, } },
+ ["FlaskDispellsChill1"] = { type = "Suffix", affix = "of Heat", "Grants Immunity to Chill for 4 seconds if used while Chilled", "Grants Immunity to Freeze for 4 seconds if used while Frozen", statOrder = { 902, 902.1 }, level = 4, group = "FlaskDispellsChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "cold", "ailment" }, tradeHashes = { [3570046771] = { "Grants Immunity to Chill for 4 seconds if used while Chilled", "Grants Immunity to Freeze for 4 seconds if used while Frozen" }, } },
+ ["FlaskDispellsBurning1"] = { type = "Suffix", affix = "of Dousing", "Grants Immunity to Ignite for 4 seconds if used while Ignited", "Removes all Burning when used", statOrder = { 904, 904.1 }, level = 6, group = "FlaskDispellsBurning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "fire", "ailment" }, tradeHashes = { [2695527599] = { "Grants Immunity to Ignite for 4 seconds if used while Ignited", "Removes all Burning when used" }, } },
+ ["FlaskRemovesBleeding1"] = { type = "Suffix", affix = "of Staunching", "Grants Immunity to Bleeding for 4 seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for 4 seconds if used while affected by Corrupted Blood", statOrder = { 900, 900.1 }, level = 8, group = "FlaskRemovesBleeding", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3233646242] = { "Grants Immunity to Bleeding for 4 seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for 4 seconds if used while affected by Corrupted Blood" }, } },
+ ["FlaskRemovesShock1"] = { type = "Suffix", affix = "of Grounding", "Grants Immunity to Shock for 4 seconds if used while Shocked", statOrder = { 910 }, level = 10, group = "FlaskRemovesShock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "lightning", "ailment" }, tradeHashes = { [1823903967] = { "Grants Immunity to Shock for 4 seconds if used while Shocked" }, } },
+ ["FlaskExtraCharges1"] = { type = "Prefix", affix = "Wide", "+(16-19) to Maximum Charges", statOrder = { 837 }, level = 2, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(16-19) to Maximum Charges" }, } },
+ ["FlaskExtraCharges2__"] = { type = "Prefix", affix = "Plentiful", "+(20-23) to Maximum Charges", statOrder = { 837 }, level = 22, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(20-23) to Maximum Charges" }, } },
+ ["FlaskExtraCharges3_"] = { type = "Prefix", affix = "Bountiful", "+(24-27) to Maximum Charges", statOrder = { 837 }, level = 42, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(24-27) to Maximum Charges" }, } },
+ ["FlaskExtraCharges4__"] = { type = "Prefix", affix = "Abundant", "+(28-31) to Maximum Charges", statOrder = { 837 }, level = 62, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(28-31) to Maximum Charges" }, } },
+ ["FlaskExtraCharges5"] = { type = "Prefix", affix = "Ample", "+(32-35) to Maximum Charges", statOrder = { 837 }, level = 82, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3608809816] = { "+(32-35) to Maximum Charges" }, } },
+ ["FlaskChargesAddedIncreasePercent1"] = { type = "Prefix", affix = "Constant", "(16-20)% increased Charge Recovery", statOrder = { 845 }, level = 3, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(16-20)% increased Charge Recovery" }, } },
+ ["FlaskChargesAddedIncreasePercent2_"] = { type = "Prefix", affix = "Continuous", "(21-25)% increased Charge Recovery", statOrder = { 845 }, level = 23, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(21-25)% increased Charge Recovery" }, } },
+ ["FlaskChargesAddedIncreasePercent3_"] = { type = "Prefix", affix = "Endless", "(26-30)% increased Charge Recovery", statOrder = { 845 }, level = 43, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(26-30)% increased Charge Recovery" }, } },
+ ["FlaskChargesAddedIncreasePercent4_"] = { type = "Prefix", affix = "Bottomless", "(31-45)% increased Charge Recovery", statOrder = { 845 }, level = 63, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(31-45)% increased Charge Recovery" }, } },
+ ["FlaskChargesAddedIncreasePercent5__"] = { type = "Prefix", affix = "Perpetual", "(46-50)% increased Charge Recovery", statOrder = { 845 }, level = 83, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(46-50)% increased Charge Recovery" }, } },
+ ["FlaskIncreasedRecoveryReducedEffect1_"] = { type = "Prefix", affix = "Doled", "(37-42)% increased Charge Recovery", "25% reduced effect", statOrder = { 845, 935 }, level = 20, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(37-42)% increased Charge Recovery" }, [553298121] = { "25% reduced effect" }, } },
+ ["FlaskIncreasedRecoveryReducedEffect2_"] = { type = "Prefix", affix = "Provisioned", "(43-48)% increased Charge Recovery", "25% reduced effect", statOrder = { 845, 935 }, level = 36, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(43-48)% increased Charge Recovery" }, [553298121] = { "25% reduced effect" }, } },
+ ["FlaskIncreasedRecoveryReducedEffect3____"] = { type = "Prefix", affix = "Measured", "(49-54)% increased Charge Recovery", "25% reduced effect", statOrder = { 845, 935 }, level = 52, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(49-54)% increased Charge Recovery" }, [553298121] = { "25% reduced effect" }, } },
+ ["FlaskIncreasedRecoveryReducedEffect4_"] = { type = "Prefix", affix = "Allocated", "(55-60)% increased Charge Recovery", "25% reduced effect", statOrder = { 845, 935 }, level = 68, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(55-60)% increased Charge Recovery" }, [553298121] = { "25% reduced effect" }, } },
+ ["FlaskIncreasedRecoveryReducedEffect5"] = { type = "Prefix", affix = "Rationed", "(61-66)% increased Charge Recovery", "25% reduced effect", statOrder = { 845, 935 }, level = 84, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(61-66)% increased Charge Recovery" }, [553298121] = { "25% reduced effect" }, } },
+ ["FlaskBuffArmourWhileHealing1"] = { type = "Suffix", affix = "of the Abalone", "(41-45)% increased Armour during Effect", statOrder = { 936 }, level = 6, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, tradeHashes = { [1693613464] = { "(41-45)% increased Armour during Effect" }, } },
+ ["FlaskBuffArmourWhileHealing2"] = { type = "Suffix", affix = "of the Tortoise", "(46-50)% increased Armour during Effect", statOrder = { 936 }, level = 32, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, tradeHashes = { [1693613464] = { "(46-50)% increased Armour during Effect" }, } },
+ ["FlaskBuffArmourWhileHealing3"] = { type = "Suffix", affix = "of the Pangolin", "(51-55)% increased Armour during Effect", statOrder = { 936 }, level = 58, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, tradeHashes = { [1693613464] = { "(51-55)% increased Armour during Effect" }, } },
+ ["FlaskBuffArmourWhileHealing4"] = { type = "Suffix", affix = "of the Armadillo", "(56-60)% increased Armour during Effect", statOrder = { 936 }, level = 84, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, tradeHashes = { [1693613464] = { "(56-60)% increased Armour during Effect" }, } },
+ ["FlaskBuffEvasionWhileHealing"] = { type = "Suffix", affix = "of the Gazelle", "(41-45)% increased Evasion Rating during Effect", statOrder = { 937 }, level = 6, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, tradeHashes = { [299054775] = { "(41-45)% increased Evasion Rating during Effect" }, } },
+ ["FlaskBuffEvasionWhileHealing2"] = { type = "Suffix", affix = "of the Antelope", "(46-50)% increased Evasion Rating during Effect", statOrder = { 937 }, level = 32, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, tradeHashes = { [299054775] = { "(46-50)% increased Evasion Rating during Effect" }, } },
+ ["FlaskBuffEvasionWhileHealing3_"] = { type = "Suffix", affix = "of the Ibex", "(51-55)% increased Evasion Rating during Effect", statOrder = { 937 }, level = 58, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, tradeHashes = { [299054775] = { "(51-55)% increased Evasion Rating during Effect" }, } },
+ ["FlaskBuffEvasionWhileHealing4"] = { type = "Suffix", affix = "of the Impala", "(56-60)% increased Evasion Rating during Effect", statOrder = { 937 }, level = 84, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, tradeHashes = { [299054775] = { "(56-60)% increased Evasion Rating during Effect" }, } },
+ ["FlaskBuffMovementSpeedWhileHealing"] = { type = "Suffix", affix = "of the Hare", "(6-8)% increased Movement Speed during Effect", statOrder = { 946 }, level = 5, group = "FlaskBuffMovementSpeedWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, tradeHashes = { [3182498570] = { "(6-8)% increased Movement Speed during Effect" }, } },
+ ["FlaskBuffMovementSpeedWhileHealing2"] = { type = "Suffix", affix = "of the Lynx", "(9-11)% increased Movement Speed during Effect", statOrder = { 946 }, level = 65, group = "FlaskBuffMovementSpeedWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, tradeHashes = { [3182498570] = { "(9-11)% increased Movement Speed during Effect" }, } },
+ ["FlaskBuffMovementSpeedWhileHealing3"] = { type = "Suffix", affix = "of the Cheetah", "(12-14)% increased Movement Speed during Effect", statOrder = { 946 }, level = 85, group = "FlaskBuffMovementSpeedWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, tradeHashes = { [3182498570] = { "(12-14)% increased Movement Speed during Effect" }, } },
+ ["FlaskBuffStunRecoveryWhileHealing"] = { type = "Suffix", affix = "of Stiffness", "(51-56)% increased Block and Stun Recovery during Effect", statOrder = { 947 }, level = 1, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3479987487] = { "(51-56)% increased Block and Stun Recovery during Effect" }, } },
+ ["FlaskBuffStunRecoveryWhileHealing2"] = { type = "Suffix", affix = "of Bracing", "(57-62)% increased Block and Stun Recovery during Effect", statOrder = { 947 }, level = 19, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3479987487] = { "(57-62)% increased Block and Stun Recovery during Effect" }, } },
+ ["FlaskBuffStunRecoveryWhileHealing3"] = { type = "Suffix", affix = "of Ballast", "(63-68)% increased Block and Stun Recovery during Effect", statOrder = { 947 }, level = 37, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3479987487] = { "(63-68)% increased Block and Stun Recovery during Effect" }, } },
+ ["FlaskBuffStunRecoveryWhileHealing4"] = { type = "Suffix", affix = "of Counterpoise", "(69-74)% increased Block and Stun Recovery during Effect", statOrder = { 947 }, level = 55, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3479987487] = { "(69-74)% increased Block and Stun Recovery during Effect" }, } },
+ ["FlaskBuffStunRecoveryWhileHealing5"] = { type = "Suffix", affix = "of Stabilisation", "(75-80)% increased Block and Stun Recovery during Effect", statOrder = { 947 }, level = 73, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3479987487] = { "(75-80)% increased Block and Stun Recovery during Effect" }, } },
+ ["FlaskBuffResistancesWhileHealing"] = { type = "Suffix", affix = "of the Crystal", "(12-14)% additional Elemental Resistances during Effect", statOrder = { 948 }, level = 1, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [962725504] = { "(12-14)% additional Elemental Resistances during Effect" }, } },
+ ["FlaskBuffResistancesWhileHealing2"] = { type = "Suffix", affix = "of the Prism", "(12-14)% additional Elemental Resistances during Effect", statOrder = { 948 }, level = 21, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [962725504] = { "(12-14)% additional Elemental Resistances during Effect" }, } },
+ ["FlaskBuffResistancesWhileHealing3"] = { type = "Suffix", affix = "of the Kaleidoscope", "(15-17)% additional Elemental Resistances during Effect", statOrder = { 948 }, level = 41, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [962725504] = { "(15-17)% additional Elemental Resistances during Effect" }, } },
+ ["FlaskBuffResistancesWhileHealing4"] = { type = "Suffix", affix = "of Variegation", "(15-17)% additional Elemental Resistances during Effect", statOrder = { 948 }, level = 61, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [962725504] = { "(15-17)% additional Elemental Resistances during Effect" }, } },
+ ["FlaskBuffResistancesWhileHealing5_"] = { type = "Suffix", affix = "of the Rainbow", "(18-20)% additional Elemental Resistances during Effect", statOrder = { 948 }, level = 81, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "resistance" }, tradeHashes = { [962725504] = { "(18-20)% additional Elemental Resistances during Effect" }, } },
+ ["FlaskBuffLifeLeechWhileHealing"] = { type = "Suffix", affix = "of Gluttony", "2% of Physical Attack Damage Leeched as Life during Effect", statOrder = { 949 }, level = 10, group = "FlaskBuffLifeLeechWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life", "physical", "attack" }, tradeHashes = { [2146299369] = { "2% of Physical Attack Damage Leeched as Life during Effect" }, } },
+ ["FlaskBuffLifeLeechPermyriadWhileHealing"] = { type = "Suffix", affix = "of Gluttony", "0.4% of Physical Attack Damage Leeched as Life during Effect", statOrder = { 952 }, level = 10, group = "FlaskBuffLifeLeechPermyriadWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life", "physical", "attack" }, tradeHashes = { [3111255591] = { "0.4% of Physical Attack Damage Leeched as Life during Effect" }, } },
+ ["FlaskBuffManaLeechPermyriadWhileHealing"] = { type = "Suffix", affix = "of Craving", "0.4% of Physical Attack Damage Leeched as Mana during Effect", statOrder = { 954 }, level = 12, group = "FlaskBuffManaLeechPermyriadWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana", "physical", "attack" }, tradeHashes = { [374891408] = { "0.4% of Physical Attack Damage Leeched as Mana during Effect" }, } },
+ ["FlaskBuffKnockbackWhileHealing"] = { type = "Suffix", affix = "of Fending", "Adds Knockback to Melee Attacks during Effect", statOrder = { 955 }, level = 9, group = "FlaskBuffKnockbackWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack" }, tradeHashes = { [251342217] = { "Adds Knockback to Melee Attacks during Effect" }, } },
+ ["FlaskBuffWardWhileHealing1"] = { type = "Suffix", affix = "of Runegleaming", "(19-21)% increased Ward during Effect", statOrder = { 939 }, level = 12, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, tradeHashes = { [2891175306] = { "(19-21)% increased Ward during Effect" }, } },
+ ["FlaskBuffWardWhileHealing2_"] = { type = "Suffix", affix = "of Runeshining", "(22-24)% increased Ward during Effect", statOrder = { 939 }, level = 26, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, tradeHashes = { [2891175306] = { "(22-24)% increased Ward during Effect" }, } },
+ ["FlaskBuffWardWhileHealing3"] = { type = "Suffix", affix = "of Runeflaring", "(25-27)% increased Ward during Effect", statOrder = { 939 }, level = 52, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, tradeHashes = { [2891175306] = { "(25-27)% increased Ward during Effect" }, } },
+ ["FlaskBuffWardWhileHealing4"] = { type = "Suffix", affix = "of Runeblazing", "(28-30)% increased Ward during Effect", statOrder = { 939 }, level = 78, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, tradeHashes = { [2891175306] = { "(28-30)% increased Ward during Effect" }, } },
+ ["FlaskHealsMinions1"] = { type = "Suffix", affix = "of the Novice", "Grants (100-119)% of Life Recovery to Minions", statOrder = { 850 }, level = 10, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (100-119)% of Life Recovery to Minions" }, } },
+ ["FlaskHealsMinions2"] = { type = "Suffix", affix = "of the Acolyte", "Grants (120-139)% of Life Recovery to Minions", statOrder = { 850 }, level = 28, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (120-139)% of Life Recovery to Minions" }, } },
+ ["FlaskHealsMinions3"] = { type = "Suffix", affix = "of the Summoner", "Grants (140-159)% of Life Recovery to Minions", statOrder = { 850 }, level = 46, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (140-159)% of Life Recovery to Minions" }, } },
+ ["FlaskHealsMinions4____"] = { type = "Suffix", affix = "of the Conjurer", "Grants (160-179)% of Life Recovery to Minions", statOrder = { 850 }, level = 64, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (160-179)% of Life Recovery to Minions" }, } },
+ ["FlaskHealsMinions5"] = { type = "Suffix", affix = "of the Necromancer", "Grants (180-200)% of Life Recovery to Minions", statOrder = { 850 }, level = 82, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (180-200)% of Life Recovery to Minions" }, } },
+ ["FlaskFullRechargeOnCrit1"] = { type = "Prefix", affix = "Surgeon's", "Recharges 1 Charge when you deal a Critical Strike", statOrder = { 841 }, level = 8, group = "FlaskFullRechargeOnCrit", weightKey = { "critical_utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2961372685] = { "Recharges 1 Charge when you deal a Critical Strike" }, } },
+ ["FlaskChanceRechargeOnCrit1"] = { type = "Prefix", affix = "Medic's", "(11-15)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 842 }, level = 8, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, tradeHashes = { [2858921304] = { "(11-15)% chance to gain a Flask Charge when you deal a Critical Strike" }, } },
+ ["FlaskChanceRechargeOnCrit2"] = { type = "Prefix", affix = "Physician's", "(16-20)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 842 }, level = 26, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, tradeHashes = { [2858921304] = { "(16-20)% chance to gain a Flask Charge when you deal a Critical Strike" }, } },
+ ["FlaskChanceRechargeOnCrit3___"] = { type = "Prefix", affix = "Doctor's", "(21-25)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 842 }, level = 44, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, tradeHashes = { [2858921304] = { "(21-25)% chance to gain a Flask Charge when you deal a Critical Strike" }, } },
+ ["FlaskChanceRechargeOnCrit4"] = { type = "Prefix", affix = "Specialist's", "(26-30)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 842 }, level = 62, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, tradeHashes = { [2858921304] = { "(26-30)% chance to gain a Flask Charge when you deal a Critical Strike" }, } },
+ ["FlaskChanceRechargeOnCrit5"] = { type = "Prefix", affix = "Surgeon's", "(31-35)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 842 }, level = 80, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, tradeHashes = { [2858921304] = { "(31-35)% chance to gain a Flask Charge when you deal a Critical Strike" }, } },
+ ["FlaskFullRechargeOnTakeCrit1"] = { type = "Prefix", affix = "Avenger's", "Recharges 5 Charges when you take a Critical Strike", statOrder = { 844 }, level = 12, group = "FlaskFullRechargeOnTakeCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "critical" }, tradeHashes = { [3662336899] = { "Recharges 5 Charges when you take a Critical Strike" }, } },
+ ["FlaskDispellsPoison1"] = { type = "Suffix", affix = "of Curing", "Grants Immunity to Poison for 4 seconds if used while Poisoned", statOrder = { 908 }, level = 16, group = "FlaskDispellsPoison", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "poison", "chaos", "ailment" }, tradeHashes = { [3596333054] = { "Grants Immunity to Poison for 4 seconds if used while Poisoned" }, } },
+ ["FlaskEffectReducedDuration1"] = { type = "Prefix", affix = "Abecedarian's", "(33-38)% reduced Duration", "25% increased effect", statOrder = { 857, 935 }, level = 20, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% increased effect" }, [156096868] = { "(33-38)% reduced Duration" }, } },
+ ["FlaskEffectReducedDuration2"] = { type = "Prefix", affix = "Dabbler's", "(28-32)% reduced Duration", "25% increased effect", statOrder = { 857, 935 }, level = 50, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% increased effect" }, [156096868] = { "(28-32)% reduced Duration" }, } },
+ ["FlaskEffectReducedDuration3"] = { type = "Prefix", affix = "Alchemist's", "(23-27)% reduced Duration", "25% increased effect", statOrder = { 857, 935 }, level = 80, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [553298121] = { "25% increased effect" }, [156096868] = { "(23-27)% reduced Duration" }, } },
+ ["FlaskChargesUsed1"] = { type = "Prefix", affix = "Apprentice's", "(14-16)% reduced Charges per use", statOrder = { 846 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(14-16)% reduced Charges per use" }, } },
+ ["FlaskChargesUsed2"] = { type = "Prefix", affix = "Scholar's", "(17-19)% reduced Charges per use", statOrder = { 846 }, level = 31, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(17-19)% reduced Charges per use" }, } },
+ ["FlaskChargesUsed3__"] = { type = "Prefix", affix = "Practitioner's", "(20-22)% reduced Charges per use", statOrder = { 846 }, level = 48, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(20-22)% reduced Charges per use" }, } },
+ ["FlaskChargesUsed4__"] = { type = "Prefix", affix = "Brewer's", "(23-25)% reduced Charges per use", statOrder = { 846 }, level = 65, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(23-25)% reduced Charges per use" }, } },
+ ["FlaskChargesUsed5"] = { type = "Prefix", affix = "Chemist's", "(26-28)% reduced Charges per use", statOrder = { 846 }, level = 82, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(26-28)% reduced Charges per use" }, } },
+ ["FlaskIncreasedDuration2"] = { type = "Prefix", affix = "Investigator's", "(16-20)% increased Duration", statOrder = { 857 }, level = 20, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(16-20)% increased Duration" }, } },
+ ["FlaskIncreasedDuration3_"] = { type = "Prefix", affix = "Analyst's", "(21-25)% increased Duration", statOrder = { 857 }, level = 36, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(21-25)% increased Duration" }, } },
+ ["FlaskIncreasedDuration4"] = { type = "Prefix", affix = "Examiner's", "(26-30)% increased Duration", statOrder = { 857 }, level = 52, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(26-30)% increased Duration" }, } },
+ ["FlaskIncreasedDuration5__"] = { type = "Prefix", affix = "Clinician's", "(31-35)% increased Duration", statOrder = { 857 }, level = 68, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(31-35)% increased Duration" }, } },
+ ["FlaskIncreasedDuration6"] = { type = "Prefix", affix = "Experimenter's", "(36-40)% increased Duration", statOrder = { 857 }, level = 84, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(36-40)% increased Duration" }, } },
+ ["FlaskFullRechargeOnHit1"] = { type = "Prefix", affix = "Delinquent's", "Gain 1 Charge when you are Hit by an Enemy", statOrder = { 840 }, level = 12, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [1582728645] = { "Gain 1 Charge when you are Hit by an Enemy" }, } },
+ ["FlaskFullRechargeOnHit2_"] = { type = "Prefix", affix = "Transgressor's", "Gain 1 Charge when you are Hit by an Enemy", statOrder = { 840 }, level = 29, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [1582728645] = { "Gain 1 Charge when you are Hit by an Enemy" }, } },
+ ["FlaskFullRechargeOnHit3_"] = { type = "Prefix", affix = "Sinner's", "Gain 2 Charges when you are Hit by an Enemy", statOrder = { 840 }, level = 46, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [1582728645] = { "Gain 2 Charges when you are Hit by an Enemy" }, } },
+ ["FlaskFullRechargeOnHit4_"] = { type = "Prefix", affix = "Masochist's", "Gain 2 Charges when you are Hit by an Enemy", statOrder = { 840 }, level = 63, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [1582728645] = { "Gain 2 Charges when you are Hit by an Enemy" }, } },
+ ["FlaskFullRechargeOnHit5___"] = { type = "Prefix", affix = "Flagellant's", "Gain 3 Charges when you are Hit by an Enemy", statOrder = { 840 }, level = 80, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, tradeHashes = { [1582728645] = { "Gain 3 Charges when you are Hit by an Enemy" }, } },
+ ["FlaskIncreasedHealingCharges1"] = { type = "Prefix", affix = "Nitrate", "(20-25)% increased Charges per use", "(21-26)% increased Amount Recovered", statOrder = { 846, 854 }, level = 10, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(21-26)% increased Amount Recovered" }, [3139816101] = { "(20-25)% increased Charges per use" }, } },
+ ["FlaskIncreasedHealingCharges2"] = { type = "Prefix", affix = "Dolomite", "(20-25)% increased Charges per use", "(27-32)% increased Amount Recovered", statOrder = { 846, 854 }, level = 28, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(27-32)% increased Amount Recovered" }, [3139816101] = { "(20-25)% increased Charges per use" }, } },
+ ["FlaskIncreasedHealingCharges3"] = { type = "Prefix", affix = "Kieserite", "(20-25)% increased Charges per use", "(33-38)% increased Amount Recovered", statOrder = { 846, 854 }, level = 46, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(33-38)% increased Amount Recovered" }, [3139816101] = { "(20-25)% increased Charges per use" }, } },
+ ["FlaskIncreasedHealingCharges4____"] = { type = "Prefix", affix = "Kainite", "(20-25)% increased Charges per use", "(39-44)% increased Amount Recovered", statOrder = { 846, 854 }, level = 64, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(39-44)% increased Amount Recovered" }, [3139816101] = { "(20-25)% increased Charges per use" }, } },
+ ["FlaskIncreasedHealingCharges5"] = { type = "Prefix", affix = "Gypsum", "(20-25)% increased Charges per use", "(45-50)% increased Amount Recovered", statOrder = { 846, 854 }, level = 82, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(45-50)% increased Amount Recovered" }, [3139816101] = { "(20-25)% increased Charges per use" }, } },
+ ["FlaskManaRecoveryAtEnd1_"] = { type = "Prefix", affix = "Foreboding", "66% increased Amount Recovered", "Mana Recovery occurs instantly at the end of Effect", statOrder = { 854, 865 }, level = 16, group = "FlaskManaRecoveryAtEnd", weightKey = { "utility_flask", "life_flask", "default", }, weightVal = { 0, 0, 3000 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [4204954479] = { "Mana Recovery occurs instantly at the end of Effect" }, [700317374] = { "66% increased Amount Recovered" }, } },
+ ["FlaskEffectNotRemovedOnFullMana1"] = { type = "Prefix", affix = "Enduring", "66% reduced Amount Recovered", "Effect is not removed when Unreserved Mana is Filled", "Effect does not Queue", statOrder = { 854, 864, 864.1 }, level = 16, group = "FlaskEffectNotRemovedOnFullManaReducedRecovery", weightKey = { "utility_flask", "life_flask", "default", }, weightVal = { 0, 0, 3000 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [700317374] = { "66% reduced Amount Recovered" }, [156096868] = { "" }, [3969608626] = { "Effect is not removed when Unreserved Mana is Filled", "Effect does not Queue" }, } },
+ ["FlaskBuffAttackLifeLeechWhileHealing1"] = { type = "Suffix", affix = "of Bloodshed", "0.4% of Attack Damage Leeched as Life during Effect", statOrder = { 951 }, level = 10, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, tradeHashes = { [1173558568] = { "0.4% of Attack Damage Leeched as Life during Effect" }, } },
+ ["FlaskBuffAttackLifeLeechWhileHealing2"] = { type = "Suffix", affix = "of Gore", "0.5% of Attack Damage Leeched as Life during Effect", statOrder = { 951 }, level = 20, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, tradeHashes = { [1173558568] = { "0.5% of Attack Damage Leeched as Life during Effect" }, } },
+ ["FlaskBuffAttackLifeLeechWhileHealing3"] = { type = "Suffix", affix = "of Carnage", "0.6% of Attack Damage Leeched as Life during Effect", statOrder = { 951 }, level = 40, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, tradeHashes = { [1173558568] = { "0.6% of Attack Damage Leeched as Life during Effect" }, } },
+ ["FlaskBuffAttackLifeLeechWhileHealing4"] = { type = "Suffix", affix = "of Butchery", "0.7% of Attack Damage Leeched as Life during Effect", statOrder = { 951 }, level = 60, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, tradeHashes = { [1173558568] = { "0.7% of Attack Damage Leeched as Life during Effect" }, } },
+ ["FlaskBuffAttackLifeLeechWhileHealing5"] = { type = "Suffix", affix = "of Bloodletting", "0.8% of Attack Damage Leeched as Life during Effect", statOrder = { 951 }, level = 80, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, tradeHashes = { [1173558568] = { "0.8% of Attack Damage Leeched as Life during Effect" }, } },
+ ["FlaskBuffSpellEnergyShieldLeechWhileHealing1"] = { type = "Suffix", affix = "of Diverting", "0.4% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 950 }, level = 10, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, tradeHashes = { [1456464057] = { "0.4% of Spell Damage Leeched as Energy Shield during Effect" }, } },
+ ["FlaskBuffSpellEnergyShieldLeechWhileHealing2_"] = { type = "Suffix", affix = "of Depletion", "0.5% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 950 }, level = 20, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, tradeHashes = { [1456464057] = { "0.5% of Spell Damage Leeched as Energy Shield during Effect" }, } },
+ ["FlaskBuffSpellEnergyShieldLeechWhileHealing3_____"] = { type = "Suffix", affix = "of Tapping", "0.6% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 950 }, level = 40, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, tradeHashes = { [1456464057] = { "0.6% of Spell Damage Leeched as Energy Shield during Effect" }, } },
+ ["FlaskBuffSpellEnergyShieldLeechWhileHealing4"] = { type = "Suffix", affix = "of Siphoning", "0.7% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 950 }, level = 60, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, tradeHashes = { [1456464057] = { "0.7% of Spell Damage Leeched as Energy Shield during Effect" }, } },
+ ["FlaskBuffSpellEnergyShieldLeechWhileHealing5"] = { type = "Suffix", affix = "of Draining", "0.8% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 950 }, level = 80, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, tradeHashes = { [1456464057] = { "0.8% of Spell Damage Leeched as Energy Shield during Effect" }, } },
+ ["FlaskBuffAttackSpeedWhileHealing1"] = { type = "Suffix", affix = "of the Falcon", "(9-11)% increased Attack Speed during Effect", statOrder = { 944 }, level = 12, group = "FlaskBuffAttackSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "speed" }, tradeHashes = { [968369591] = { "(9-11)% increased Attack Speed during Effect" }, } },
+ ["FlaskBuffAttackSpeedWhileHealing2_____"] = { type = "Suffix", affix = "of the Eagle", "(12-14)% increased Attack Speed during Effect", statOrder = { 944 }, level = 62, group = "FlaskBuffAttackSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "speed" }, tradeHashes = { [968369591] = { "(12-14)% increased Attack Speed during Effect" }, } },
+ ["FlaskBuffAttackSpeedWhileHealing3_"] = { type = "Suffix", affix = "of the Dove", "(15-17)% increased Attack Speed during Effect", statOrder = { 944 }, level = 82, group = "FlaskBuffAttackSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "speed" }, tradeHashes = { [968369591] = { "(15-17)% increased Attack Speed during Effect" }, } },
+ ["FlaskBuffCastSpeedWhileHealing1"] = { type = "Suffix", affix = "of the Albatross", "(9-11)% increased Cast Speed during Effect", statOrder = { 945 }, level = 12, group = "FlaskBuffCastSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "speed" }, tradeHashes = { [3256116097] = { "(9-11)% increased Cast Speed during Effect" }, } },
+ ["FlaskBuffCastSpeedWhileHealing2"] = { type = "Suffix", affix = "of the Hummingbird", "(12-14)% increased Cast Speed during Effect", statOrder = { 945 }, level = 62, group = "FlaskBuffCastSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "speed" }, tradeHashes = { [3256116097] = { "(12-14)% increased Cast Speed during Effect" }, } },
+ ["FlaskBuffCastSpeedWhileHealing3"] = { type = "Suffix", affix = "of the Horsefly", "(15-17)% increased Cast Speed during Effect", statOrder = { 945 }, level = 82, group = "FlaskBuffCastSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "speed" }, tradeHashes = { [3256116097] = { "(15-17)% increased Cast Speed during Effect" }, } },
+ ["FlaskBuffAccuracyWhileHealing1__"] = { type = "Suffix", affix = "of the Monkey", "(15-25)% increased Accuracy Rating during Effect", statOrder = { 943 }, level = 12, group = "FlaskBuffAccuracyWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "attack" }, tradeHashes = { [3337754340] = { "(15-25)% increased Accuracy Rating during Effect" }, } },
+ ["FlaskBuffAccuracyWhileHealing2"] = { type = "Suffix", affix = "of the Raccoon", "(26-35)% increased Accuracy Rating during Effect", statOrder = { 943 }, level = 42, group = "FlaskBuffAccuracyWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "attack" }, tradeHashes = { [3337754340] = { "(26-35)% increased Accuracy Rating during Effect" }, } },
+ ["FlaskBuffAccuracyWhileHealing3"] = { type = "Suffix", affix = "of the Crow", "(35-45)% increased Accuracy Rating during Effect", statOrder = { 943 }, level = 72, group = "FlaskBuffAccuracyWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "attack" }, tradeHashes = { [3337754340] = { "(35-45)% increased Accuracy Rating during Effect" }, } },
+ ["FlaskBuffCriticalChanceWhileHealing1_"] = { type = "Suffix", affix = "of Stinging", "(26-31)% increased Critical Strike Chance during Effect", statOrder = { 976 }, level = 18, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2008255263] = { "(26-31)% increased Critical Strike Chance during Effect" }, } },
+ ["FlaskBuffCriticalChanceWhileHealing2_"] = { type = "Suffix", affix = "of Piercing", "(32-37)% increased Critical Strike Chance during Effect", statOrder = { 976 }, level = 34, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2008255263] = { "(32-37)% increased Critical Strike Chance during Effect" }, } },
+ ["FlaskBuffCriticalChanceWhileHealing3"] = { type = "Suffix", affix = "of Rupturing", "(38-43)% increased Critical Strike Chance during Effect", statOrder = { 976 }, level = 50, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2008255263] = { "(38-43)% increased Critical Strike Chance during Effect" }, } },
+ ["FlaskBuffCriticalChanceWhileHealing4__"] = { type = "Suffix", affix = "of Penetrating", "(44-49)% increased Critical Strike Chance during Effect", statOrder = { 976 }, level = 66, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2008255263] = { "(44-49)% increased Critical Strike Chance during Effect" }, } },
+ ["FlaskBuffCriticalChanceWhileHealing5"] = { type = "Suffix", affix = "of Incision", "(50-55)% increased Critical Strike Chance during Effect", statOrder = { 976 }, level = 82, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, tradeHashes = { [2008255263] = { "(50-55)% increased Critical Strike Chance during Effect" }, } },
+ ["FlaskBuffFreezeShockIgniteChanceWhileHealing1_"] = { type = "Suffix", affix = "of Foisting", "(19-22)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 974 }, level = 12, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [97064873] = { "(19-22)% chance to Freeze, Shock and Ignite during Effect" }, } },
+ ["FlaskBuffFreezeShockIgniteChanceWhileHealing2____"] = { type = "Suffix", affix = "of Imposing", "(23-26)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 974 }, level = 32, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [97064873] = { "(23-26)% chance to Freeze, Shock and Ignite during Effect" }, } },
+ ["FlaskBuffFreezeShockIgniteChanceWhileHealing3"] = { type = "Suffix", affix = "of Wreaking", "(27-30)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 974 }, level = 52, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [97064873] = { "(27-30)% chance to Freeze, Shock and Ignite during Effect" }, } },
+ ["FlaskBuffFreezeShockIgniteChanceWhileHealing4_"] = { type = "Suffix", affix = "of Infliction", "(31-34)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 974 }, level = 72, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [97064873] = { "(31-34)% chance to Freeze, Shock and Ignite during Effect" }, } },
+ ["FlaskBuffAvoidStunWhileHealing1_"] = { type = "Suffix", affix = "of Composure", "(31-35)% Chance to Avoid being Stunned during Effect", statOrder = { 972 }, level = 12, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2312652600] = { "(31-35)% Chance to Avoid being Stunned during Effect" }, } },
+ ["FlaskBuffAvoidStunWhileHealing2"] = { type = "Suffix", affix = "of Surefootedness", "(36-40)% Chance to Avoid being Stunned during Effect", statOrder = { 972 }, level = 29, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2312652600] = { "(36-40)% Chance to Avoid being Stunned during Effect" }, } },
+ ["FlaskBuffAvoidStunWhileHealing3"] = { type = "Suffix", affix = "of Persistence", "(41-45)% Chance to Avoid being Stunned during Effect", statOrder = { 972 }, level = 46, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2312652600] = { "(41-45)% Chance to Avoid being Stunned during Effect" }, } },
+ ["FlaskBuffAvoidStunWhileHealing4"] = { type = "Suffix", affix = "of Relentlessness", "(46-50)% Chance to Avoid being Stunned during Effect", statOrder = { 972 }, level = 63, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2312652600] = { "(46-50)% Chance to Avoid being Stunned during Effect" }, } },
+ ["FlaskBuffAvoidStunWhileHealing5"] = { type = "Suffix", affix = "of Tenaciousness", "(51-55)% Chance to Avoid being Stunned during Effect", statOrder = { 972 }, level = 80, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2312652600] = { "(51-55)% Chance to Avoid being Stunned during Effect" }, } },
+ ["FlaskBuffReducedManaCostWhileHealing1_"] = { type = "Suffix", affix = "of the Pupil", "(11-14)% reduced Mana Cost of Skills during Effect", statOrder = { 999 }, level = 12, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [683273571] = { "(11-14)% reduced Mana Cost of Skills during Effect" }, } },
+ ["FlaskBuffReducedManaCostWhileHealing2__"] = { type = "Suffix", affix = "of the Initiate", "(15-18)% reduced Mana Cost of Skills during Effect", statOrder = { 999 }, level = 29, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [683273571] = { "(15-18)% reduced Mana Cost of Skills during Effect" }, } },
+ ["FlaskBuffReducedManaCostWhileHealing3"] = { type = "Suffix", affix = "of the Mage", "(19-21)% reduced Mana Cost of Skills during Effect", statOrder = { 999 }, level = 46, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [683273571] = { "(19-21)% reduced Mana Cost of Skills during Effect" }, } },
+ ["FlaskBuffReducedManaCostWhileHealing4"] = { type = "Suffix", affix = "of the Arcanist", "(22-25)% reduced Mana Cost of Skills during Effect", statOrder = { 999 }, level = 63, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [683273571] = { "(22-25)% reduced Mana Cost of Skills during Effect" }, } },
+ ["FlaskBuffReducedManaCostWhileHealing5"] = { type = "Suffix", affix = "of the Sorcerer", "(26-29)% reduced Mana Cost of Skills during Effect", statOrder = { 999 }, level = 80, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [683273571] = { "(26-29)% reduced Mana Cost of Skills during Effect" }, } },
+ ["FlaskBuffChillFreezeDuration1"] = { type = "Suffix", affix = "of the Rabbit", "(36-41)% reduced Effect of Chill on you during Effect", "(36-41)% reduced Freeze Duration on you during Effect", statOrder = { 1004, 1006 }, level = 4, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2434101731] = { "(36-41)% reduced Effect of Chill on you during Effect" }, [774474440] = { "(36-41)% reduced Freeze Duration on you during Effect" }, } },
+ ["FlaskBuffChillFreezeDuration2_"] = { type = "Suffix", affix = "of the Cat", "(42-47)% reduced Effect of Chill on you during Effect", "(42-47)% reduced Freeze Duration on you during Effect", statOrder = { 1004, 1006 }, level = 23, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2434101731] = { "(42-47)% reduced Effect of Chill on you during Effect" }, [774474440] = { "(42-47)% reduced Freeze Duration on you during Effect" }, } },
+ ["FlaskBuffChillFreezeDuration3_"] = { type = "Suffix", affix = "of the Fox", "(48-52)% reduced Effect of Chill on you during Effect", "(48-52)% reduced Freeze Duration on you during Effect", statOrder = { 1004, 1006 }, level = 42, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2434101731] = { "(48-52)% reduced Effect of Chill on you during Effect" }, [774474440] = { "(48-52)% reduced Freeze Duration on you during Effect" }, } },
+ ["FlaskBuffChillFreezeDuration4"] = { type = "Suffix", affix = "of the Sable", "(52-59)% reduced Effect of Chill on you during Effect", "(52-59)% reduced Freeze Duration on you during Effect", statOrder = { 1004, 1006 }, level = 61, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2434101731] = { "(52-59)% reduced Effect of Chill on you during Effect" }, [774474440] = { "(52-59)% reduced Freeze Duration on you during Effect" }, } },
+ ["FlaskBuffChillFreezeDuration5"] = { type = "Suffix", affix = "of the Bear", "(60-65)% reduced Effect of Chill on you during Effect", "(60-65)% reduced Freeze Duration on you during Effect", statOrder = { 1004, 1006 }, level = 80, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [2434101731] = { "(60-65)% reduced Effect of Chill on you during Effect" }, [774474440] = { "(60-65)% reduced Freeze Duration on you during Effect" }, } },
+ ["FlaskBuffShockEffect1"] = { type = "Suffix", affix = "of the Plover", "(36-41)% reduced Effect of Shock on you during Effect", statOrder = { 1009 }, level = 6, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [1878455805] = { "(36-41)% reduced Effect of Shock on you during Effect" }, } },
+ ["FlaskBuffShockEffect2"] = { type = "Suffix", affix = "of the Sandpiper", "(42-47)% reduced Effect of Shock on you during Effect", statOrder = { 1009 }, level = 25, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [1878455805] = { "(42-47)% reduced Effect of Shock on you during Effect" }, } },
+ ["FlaskBuffShockEffect3___"] = { type = "Suffix", affix = "of the Cormorant", "(48-52)% reduced Effect of Shock on you during Effect", statOrder = { 1009 }, level = 44, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [1878455805] = { "(48-52)% reduced Effect of Shock on you during Effect" }, } },
+ ["FlaskBuffShockEffect4"] = { type = "Suffix", affix = "of the Sanderling", "(52-59)% reduced Effect of Shock on you during Effect", statOrder = { 1009 }, level = 63, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [1878455805] = { "(52-59)% reduced Effect of Shock on you during Effect" }, } },
+ ["FlaskBuffShockEffect5"] = { type = "Suffix", affix = "of the Heron", "(60-65)% reduced Effect of Shock on you during Effect", statOrder = { 1009 }, level = 82, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [1878455805] = { "(60-65)% reduced Effect of Shock on you during Effect" }, } },
+ ["FlaskBuffCurseEffect1"] = { type = "Suffix", affix = "of the Petrel", "(36-41)% reduced Effect of Curses on you during Effect", statOrder = { 1005 }, level = 8, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [4265534424] = { "(36-41)% reduced Effect of Curses on you during Effect" }, } },
+ ["FlaskBuffCurseEffect2"] = { type = "Suffix", affix = "of the Mockingbird", "(42-47)% reduced Effect of Curses on you during Effect", statOrder = { 1005 }, level = 27, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [4265534424] = { "(42-47)% reduced Effect of Curses on you during Effect" }, } },
+ ["FlaskBuffCurseEffect3_"] = { type = "Suffix", affix = "of the Curlew", "(48-52)% reduced Effect of Curses on you during Effect", statOrder = { 1005 }, level = 46, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [4265534424] = { "(48-52)% reduced Effect of Curses on you during Effect" }, } },
+ ["FlaskBuffCurseEffect4"] = { type = "Suffix", affix = "of the Kakapo", "(52-59)% reduced Effect of Curses on you during Effect", statOrder = { 1005 }, level = 65, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [4265534424] = { "(52-59)% reduced Effect of Curses on you during Effect" }, } },
+ ["FlaskBuffCurseEffect5"] = { type = "Suffix", affix = "of the Owl", "(60-65)% reduced Effect of Curses on you during Effect", statOrder = { 1005 }, level = 84, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [4265534424] = { "(60-65)% reduced Effect of Curses on you during Effect" }, } },
+ ["FlaskBuffBleedDuration1"] = { type = "Suffix", affix = "[UNUSED] Bleed duration 1", "(35-45)% reduced Bleeding Duration on you during Effect", statOrder = { 1003 }, level = 8, group = "FlaskBuffBleedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, tradeHashes = { [1050147907] = { "(35-45)% reduced Bleeding Duration on you during Effect" }, } },
+ ["FlaskBuffPoisonDuration1"] = { type = "Suffix", affix = "[UNUSED] Poison duration 1", "(35-45)% reduced Poison Duration on you during Effect", statOrder = { 1008 }, level = 16, group = "FlaskBuffPoisonDuration", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, tradeHashes = { [4151049654] = { "(35-45)% reduced Poison Duration on you during Effect" }, } },
+ ["FlaskBuffIgniteDuration1_"] = { type = "Suffix", affix = "[UNUSED] Ignite duration 1", "(35-45)% reduced Ignite Duration on you during Effect", statOrder = { 1007 }, level = 6, group = "FlaskBuffIgniteDuration", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, tradeHashes = { [424810649] = { "(35-45)% reduced Ignite Duration on you during Effect" }, } },
+ ["FlaskBuffAvoidChillFreeze1_"] = { type = "Suffix", affix = "of the Orca", "(31-35)% chance to Avoid being Chilled during Effect", "(31-35)% chance to Avoid being Frozen during Effect", statOrder = { 963, 964 }, level = 4, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [475518267] = { "(31-35)% chance to Avoid being Frozen during Effect" }, [1619168299] = { "(31-35)% chance to Avoid being Chilled during Effect" }, } },
+ ["FlaskBuffAvoidChillFreeze2"] = { type = "Suffix", affix = "of the Sea Lion", "(36-40)% chance to Avoid being Chilled during Effect", "(36-40)% chance to Avoid being Frozen during Effect", statOrder = { 963, 964 }, level = 23, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [475518267] = { "(36-40)% chance to Avoid being Frozen during Effect" }, [1619168299] = { "(36-40)% chance to Avoid being Chilled during Effect" }, } },
+ ["FlaskBuffAvoidChillFreeze3"] = { type = "Suffix", affix = "of the Narwhal", "(41-45)% chance to Avoid being Chilled during Effect", "(41-45)% chance to Avoid being Frozen during Effect", statOrder = { 963, 964 }, level = 42, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [475518267] = { "(41-45)% chance to Avoid being Frozen during Effect" }, [1619168299] = { "(41-45)% chance to Avoid being Chilled during Effect" }, } },
+ ["FlaskBuffAvoidChillFreeze4"] = { type = "Suffix", affix = "of the Beluga", "(46-50)% chance to Avoid being Chilled during Effect", "(46-50)% chance to Avoid being Frozen during Effect", statOrder = { 963, 964 }, level = 61, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [475518267] = { "(46-50)% chance to Avoid being Frozen during Effect" }, [1619168299] = { "(46-50)% chance to Avoid being Chilled during Effect" }, } },
+ ["FlaskBuffAvoidChillFreeze5"] = { type = "Suffix", affix = "of the Seal", "(51-55)% chance to Avoid being Chilled during Effect", "(51-55)% chance to Avoid being Frozen during Effect", statOrder = { 963, 964 }, level = 80, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [475518267] = { "(51-55)% chance to Avoid being Frozen during Effect" }, [1619168299] = { "(51-55)% chance to Avoid being Chilled during Effect" }, } },
+ ["FlaskBuffAvoidIgnite1"] = { type = "Suffix", affix = "of the Guppy", "(31-35)% chance to Avoid being Ignited during Effect", statOrder = { 965 }, level = 6, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [20251177] = { "(31-35)% chance to Avoid being Ignited during Effect" }, } },
+ ["FlaskBuffAvoidIgnite2"] = { type = "Suffix", affix = "of the Goldfish", "(36-40)% chance to Avoid being Ignited during Effect", statOrder = { 965 }, level = 25, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [20251177] = { "(36-40)% chance to Avoid being Ignited during Effect" }, } },
+ ["FlaskBuffAvoidIgnite3"] = { type = "Suffix", affix = "of the Carp", "(41-45)% chance to Avoid being Ignited during Effect", statOrder = { 965 }, level = 44, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [20251177] = { "(41-45)% chance to Avoid being Ignited during Effect" }, } },
+ ["FlaskBuffAvoidIgnite4___"] = { type = "Suffix", affix = "of the Catfish", "(46-50)% chance to Avoid being Ignited during Effect", statOrder = { 965 }, level = 63, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [20251177] = { "(46-50)% chance to Avoid being Ignited during Effect" }, } },
+ ["FlaskBuffAvoidIgnite5_"] = { type = "Suffix", affix = "of the Sunfish", "(51-55)% chance to Avoid being Ignited during Effect", statOrder = { 965 }, level = 82, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [20251177] = { "(51-55)% chance to Avoid being Ignited during Effect" }, } },
+ ["FlaskBuffAvoidShock1"] = { type = "Suffix", affix = "of Tree Moss", "(31-35)% chance to Avoid being Shocked during Effect", statOrder = { 966 }, level = 6, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3642618258] = { "(31-35)% chance to Avoid being Shocked during Effect" }, } },
+ ["FlaskBuffAvoidShock2_"] = { type = "Suffix", affix = "of Turf Moss", "(36-40)% chance to Avoid being Shocked during Effect", statOrder = { 966 }, level = 25, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3642618258] = { "(36-40)% chance to Avoid being Shocked during Effect" }, } },
+ ["FlaskBuffAvoidShock3"] = { type = "Suffix", affix = "of Tooth Moss", "(41-45)% chance to Avoid being Shocked during Effect", statOrder = { 966 }, level = 44, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3642618258] = { "(41-45)% chance to Avoid being Shocked during Effect" }, } },
+ ["FlaskBuffAvoidShock4_____"] = { type = "Suffix", affix = "of Plume Moss", "(46-50)% chance to Avoid being Shocked during Effect", statOrder = { 966 }, level = 63, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3642618258] = { "(46-50)% chance to Avoid being Shocked during Effect" }, } },
+ ["FlaskBuffAvoidShock5"] = { type = "Suffix", affix = "of Bog Moss", "(51-55)% chance to Avoid being Shocked during Effect", statOrder = { 966 }, level = 82, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [3642618258] = { "(51-55)% chance to Avoid being Shocked during Effect" }, } },
+ ["FlaskCurseImmunity1"] = { type = "Suffix", affix = "of Warding", "Removes Curses on use", statOrder = { 897 }, level = 18, group = "FlaskCurseImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 3000 }, modTags = { "flask", "caster", "curse" }, tradeHashes = { [3895393544] = { "Removes Curses on use" }, } },
+ ["LocalManaFlaskHinderNearbyEnemies1_"] = { type = "Suffix", affix = "of Interference", "Hinders nearby Enemies with (17-22)% reduced Movement Speed if used while not on Full Mana", statOrder = { 913 }, level = 30, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [2313899959] = { "Hinders nearby Enemies with (17-22)% reduced Movement Speed if used while not on Full Mana" }, } },
+ ["LocalManaFlaskHinderNearbyEnemies2"] = { type = "Suffix", affix = "of Obstruction", "Hinders nearby Enemies with (23-28)% reduced Movement Speed if used while not on Full Mana", statOrder = { 913 }, level = 48, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [2313899959] = { "Hinders nearby Enemies with (23-28)% reduced Movement Speed if used while not on Full Mana" }, } },
+ ["LocalManaFlaskHinderNearbyEnemies3"] = { type = "Suffix", affix = "of Occlusion", "Hinders nearby Enemies with (29-34)% reduced Movement Speed if used while not on Full Mana", statOrder = { 913 }, level = 66, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [2313899959] = { "Hinders nearby Enemies with (29-34)% reduced Movement Speed if used while not on Full Mana" }, } },
+ ["LocalManaFlaskHinderNearbyEnemies4"] = { type = "Suffix", affix = "of Restraint", "Hinders nearby Enemies with (35-40)% reduced Movement Speed if used while not on Full Mana", statOrder = { 913 }, level = 84, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [2313899959] = { "Hinders nearby Enemies with (35-40)% reduced Movement Speed if used while not on Full Mana" }, } },
+ ["LocalLifeFlaskHinderNearbyEnemies1_"] = { type = "Suffix", affix = "of Interference", "Hinders nearby Enemies with (17-22)% reduced Movement Speed if used while not on Full Life", statOrder = { 912 }, level = 30, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [1462364052] = { "Hinders nearby Enemies with (17-22)% reduced Movement Speed if used while not on Full Life" }, } },
+ ["LocalLifeFlaskHinderNearbyEnemies2_"] = { type = "Suffix", affix = "of Obstruction", "Hinders nearby Enemies with (23-28)% reduced Movement Speed if used while not on Full Life", statOrder = { 912 }, level = 48, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [1462364052] = { "Hinders nearby Enemies with (23-28)% reduced Movement Speed if used while not on Full Life" }, } },
+ ["LocalLifeFlaskHinderNearbyEnemies3_"] = { type = "Suffix", affix = "of Occlusion", "Hinders nearby Enemies with (29-34)% reduced Movement Speed if used while not on Full Life", statOrder = { 912 }, level = 66, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [1462364052] = { "Hinders nearby Enemies with (29-34)% reduced Movement Speed if used while not on Full Life" }, } },
+ ["LocalLifeFlaskHinderNearbyEnemies4"] = { type = "Suffix", affix = "of Restraint", "Hinders nearby Enemies with (35-40)% reduced Movement Speed if used while not on Full Life", statOrder = { 912 }, level = 84, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, tradeHashes = { [1462364052] = { "Hinders nearby Enemies with (35-40)% reduced Movement Speed if used while not on Full Life" }, } },
+ ["LocalFlaskImmuneToMaimAndHinder1"] = { type = "Suffix", affix = "of Movement", "Grants Immunity to Hinder for (6-8) seconds if used while Hindered", "Grants Immunity to Maim for (6-8) seconds if used while Maimed", statOrder = { 906, 907 }, level = 16, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, tradeHashes = { [4003593289] = { "Grants Immunity to Hinder for (6-8) seconds if used while Hindered" }, [4232582040] = { "Grants Immunity to Maim for (6-8) seconds if used while Maimed" }, } },
+ ["LocalFlaskImmuneToMaimAndHinder2"] = { type = "Suffix", affix = "of Motion", "Grants Immunity to Hinder for (9-11) seconds if used while Hindered", "Grants Immunity to Maim for (9-11) seconds if used while Maimed", statOrder = { 906, 907 }, level = 38, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, tradeHashes = { [4003593289] = { "Grants Immunity to Hinder for (9-11) seconds if used while Hindered" }, [4232582040] = { "Grants Immunity to Maim for (9-11) seconds if used while Maimed" }, } },
+ ["LocalFlaskImmuneToMaimAndHinder3"] = { type = "Suffix", affix = "of Freedom", "Grants Immunity to Hinder for (12-14) seconds if used while Hindered", "Grants Immunity to Maim for (12-14) seconds if used while Maimed", statOrder = { 906, 907 }, level = 60, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, tradeHashes = { [4003593289] = { "Grants Immunity to Hinder for (12-14) seconds if used while Hindered" }, [4232582040] = { "Grants Immunity to Maim for (12-14) seconds if used while Maimed" }, } },
+ ["LocalFlaskImmuneToMaimAndHinder4"] = { type = "Suffix", affix = "of Liberation", "Grants Immunity to Hinder for (15-17) seconds if used while Hindered", "Grants Immunity to Maim for (15-17) seconds if used while Maimed", statOrder = { 906, 907 }, level = 82, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, tradeHashes = { [4003593289] = { "Grants Immunity to Hinder for (15-17) seconds if used while Hindered" }, [4232582040] = { "Grants Immunity to Maim for (15-17) seconds if used while Maimed" }, } },
+ ["LocalLifeFlaskAdditionalLifeRecovery1"] = { type = "Suffix", affix = "of Abundance", "Recover an additional (11-16)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 899 }, level = 25, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [307410279] = { "Recover an additional (11-16)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life" }, } },
+ ["LocalLifeFlaskAdditionalLifeRecovery2__"] = { type = "Suffix", affix = "of Plenty", "Recover an additional (17-22)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 899 }, level = 39, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [307410279] = { "Recover an additional (17-22)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life" }, } },
+ ["LocalLifeFlaskAdditionalLifeRecovery3"] = { type = "Suffix", affix = "of Bounty", "Recover an additional (23-28)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 899 }, level = 53, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [307410279] = { "Recover an additional (23-28)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life" }, } },
+ ["LocalLifeFlaskAdditionalLifeRecovery4"] = { type = "Suffix", affix = "of Incessance", "Recover an additional (29-34)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 899 }, level = 67, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [307410279] = { "Recover an additional (29-34)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life" }, } },
+ ["LocalLifeFlaskAdditionalLifeRecovery5_"] = { type = "Suffix", affix = "of Perenniality", "Recover an additional (35-40)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 899 }, level = 81, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, tradeHashes = { [307410279] = { "Recover an additional (35-40)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life" }, } },
+ ["FlaskBleedCorruptingBloodImmunity1"] = { type = "Suffix", affix = "of Sealing", "Grants Immunity to Bleeding for (6-8) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (6-8) seconds if used while affected by Corrupted Blood", statOrder = { 901, 901.1 }, level = 8, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [182714578] = { "Grants Immunity to Bleeding for (6-8) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (6-8) seconds if used while affected by Corrupted Blood" }, } },
+ ["FlaskBleedCorruptingBloodImmunity2"] = { type = "Suffix", affix = "of Alleviation", "Grants Immunity to Bleeding for (9-11) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (9-11) seconds if used while affected by Corrupted Blood", statOrder = { 901, 901.1 }, level = 32, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [182714578] = { "Grants Immunity to Bleeding for (9-11) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (9-11) seconds if used while affected by Corrupted Blood" }, } },
+ ["FlaskBleedCorruptingBloodImmunity3______"] = { type = "Suffix", affix = "of Allaying", "Grants Immunity to Bleeding for (12-14) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (12-14) seconds if used while affected by Corrupted Blood", statOrder = { 901, 901.1 }, level = 56, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [182714578] = { "Grants Immunity to Bleeding for (12-14) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (12-14) seconds if used while affected by Corrupted Blood" }, } },
+ ["FlaskBleedCorruptingBloodImmunity4_"] = { type = "Suffix", affix = "of Assuaging", "Grants Immunity to Bleeding for (15-17) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (15-17) seconds if used while affected by Corrupted Blood", statOrder = { 901, 901.1 }, level = 80, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [182714578] = { "Grants Immunity to Bleeding for (15-17) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (15-17) seconds if used while affected by Corrupted Blood" }, } },
+ ["FlaskShockImmunity1"] = { type = "Suffix", affix = "of Earthing", "Grants Immunity to Shock for (6-8) seconds if used while Shocked", statOrder = { 911 }, level = 6, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3854439683] = { "Grants Immunity to Shock for (6-8) seconds if used while Shocked" }, } },
+ ["FlaskShockImmunity2"] = { type = "Suffix", affix = "of Grounding", "Grants Immunity to Shock for (9-11) seconds if used while Shocked", statOrder = { 911 }, level = 30, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3854439683] = { "Grants Immunity to Shock for (9-11) seconds if used while Shocked" }, } },
+ ["FlaskShockImmunity3"] = { type = "Suffix", affix = "of Insulation", "Grants Immunity to Shock for (12-14) seconds if used while Shocked", statOrder = { 911 }, level = 54, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3854439683] = { "Grants Immunity to Shock for (12-14) seconds if used while Shocked" }, } },
+ ["FlaskShockImmunity4_"] = { type = "Suffix", affix = "of the Dielectric", "Grants Immunity to Shock for (15-17) seconds if used while Shocked", statOrder = { 911 }, level = 78, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3854439683] = { "Grants Immunity to Shock for (15-17) seconds if used while Shocked" }, } },
+ ["FlaskChillFreezeImmunity1"] = { type = "Suffix", affix = "of Convection", "Grants Immunity to Chill for (6-8) seconds if used while Chilled", "Grants Immunity to Freeze for (6-8) seconds if used while Frozen", statOrder = { 903, 903.1 }, level = 4, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3869628136] = { "Grants Immunity to Chill for (6-8) seconds if used while Chilled", "Grants Immunity to Freeze for (6-8) seconds if used while Frozen" }, } },
+ ["FlaskChillFreezeImmunity2"] = { type = "Suffix", affix = "of Thermodynamics", "Grants Immunity to Chill for (9-11) seconds if used while Chilled", "Grants Immunity to Freeze for (9-11) seconds if used while Frozen", statOrder = { 903, 903.1 }, level = 28, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3869628136] = { "Grants Immunity to Chill for (9-11) seconds if used while Chilled", "Grants Immunity to Freeze for (9-11) seconds if used while Frozen" }, } },
+ ["FlaskChillFreezeImmunity3"] = { type = "Suffix", affix = "of Entropy", "Grants Immunity to Chill for (12-14) seconds if used while Chilled", "Grants Immunity to Freeze for (12-14) seconds if used while Frozen", statOrder = { 903, 903.1 }, level = 52, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3869628136] = { "Grants Immunity to Chill for (12-14) seconds if used while Chilled", "Grants Immunity to Freeze for (12-14) seconds if used while Frozen" }, } },
+ ["FlaskChillFreezeImmunity4"] = { type = "Suffix", affix = "of Thawing", "Grants Immunity to Chill for (15-17) seconds if used while Chilled", "Grants Immunity to Freeze for (15-17) seconds if used while Frozen", statOrder = { 903, 903.1 }, level = 76, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [3869628136] = { "Grants Immunity to Chill for (15-17) seconds if used while Chilled", "Grants Immunity to Freeze for (15-17) seconds if used while Frozen" }, } },
+ ["FlaskIgniteImmunity1"] = { type = "Suffix", affix = "of Damping", "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 905, 905.1 }, level = 6, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [2361218755] = { "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used" }, } },
+ ["FlaskIgniteImmunity2_"] = { type = "Suffix", affix = "of Quashing", "Grants Immunity to Ignite for (9-11) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 905, 905.1 }, level = 30, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [2361218755] = { "Grants Immunity to Ignite for (9-11) seconds if used while Ignited", "Removes all Burning when used" }, } },
+ ["FlaskIgniteImmunity3_"] = { type = "Suffix", affix = "of Quelling", "Grants Immunity to Ignite for (12-14) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 905, 905.1 }, level = 54, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [2361218755] = { "Grants Immunity to Ignite for (12-14) seconds if used while Ignited", "Removes all Burning when used" }, } },
+ ["FlaskIgniteImmunity4"] = { type = "Suffix", affix = "of Quenching", "Grants Immunity to Ignite for (15-17) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 905, 905.1 }, level = 78, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [2361218755] = { "Grants Immunity to Ignite for (15-17) seconds if used while Ignited", "Removes all Burning when used" }, } },
+ ["FlaskPoisonImmunity1__"] = { type = "Suffix", affix = "of the Antitoxin", "Grants Immunity to Poison for (6-8) seconds if used while Poisoned", statOrder = { 909 }, level = 16, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [542375676] = { "Grants Immunity to Poison for (6-8) seconds if used while Poisoned" }, } },
+ ["FlaskPoisonImmunity2"] = { type = "Suffix", affix = "of the Remedy", "Grants Immunity to Poison for (9-11) seconds if used while Poisoned", statOrder = { 909 }, level = 38, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [542375676] = { "Grants Immunity to Poison for (9-11) seconds if used while Poisoned" }, } },
+ ["FlaskPoisonImmunity3"] = { type = "Suffix", affix = "of the Cure", "Grants Immunity to Poison for (12-14) seconds if used while Poisoned", statOrder = { 909 }, level = 60, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [542375676] = { "Grants Immunity to Poison for (12-14) seconds if used while Poisoned" }, } },
+ ["FlaskPoisonImmunity4"] = { type = "Suffix", affix = "of the Antidote", "Grants Immunity to Poison for (15-17) seconds if used while Poisoned", statOrder = { 909 }, level = 82, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, tradeHashes = { [542375676] = { "Grants Immunity to Poison for (15-17) seconds if used while Poisoned" }, } },
+ ["FlaskPoisonImmunityDuringEffect"] = { type = "Suffix", affix = "of the Skunk", "(45-49)% less Duration", "Immunity to Poison during Effect", statOrder = { 858, 986 }, level = 16, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(45-49)% less Duration" }, [1349296959] = { "Immunity to Poison during Effect" }, } },
+ ["FlaskPoisonImmunityDuringEffect2"] = { type = "Suffix", affix = "of the Hedgehog", "(40-44)% less Duration", "Immunity to Poison during Effect", statOrder = { 858, 986 }, level = 46, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(40-44)% less Duration" }, [1349296959] = { "Immunity to Poison during Effect" }, } },
+ ["FlaskPoisonImmunityDuringEffect3"] = { type = "Suffix", affix = "of the Opossum", "(35-39)% less Duration", "Immunity to Poison during Effect", statOrder = { 858, 986 }, level = 76, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(35-39)% less Duration" }, [1349296959] = { "Immunity to Poison during Effect" }, } },
+ ["FlaskShockImmunityDuringEffect"] = { type = "Suffix", affix = "of the Conger", "(45-49)% less Duration", "Immunity to Shock during Effect", statOrder = { 858, 987 }, level = 6, group = "FlaskShockImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [589991690] = { "Immunity to Shock during Effect" }, [1506355899] = { "(45-49)% less Duration" }, } },
+ ["FlaskShockImmunityDuringEffect2___"] = { type = "Suffix", affix = "of the Moray", "(40-44)% less Duration", "Immunity to Shock during Effect", statOrder = { 858, 987 }, level = 40, group = "FlaskShockImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [589991690] = { "Immunity to Shock during Effect" }, [1506355899] = { "(40-44)% less Duration" }, } },
+ ["FlaskShockImmunityDuringEffect3"] = { type = "Suffix", affix = "of the Eel", "(35-39)% less Duration", "Immunity to Shock during Effect", statOrder = { 858, 987 }, level = 74, group = "FlaskShockImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [589991690] = { "Immunity to Shock during Effect" }, [1506355899] = { "(35-39)% less Duration" }, } },
+ ["FlaskFreezeAndChillImmunityDuringEffect"] = { type = "Suffix", affix = "of the Deer", "(45-49)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 858, 985 }, level = 4, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [3838369929] = { "Immunity to Freeze and Chill during Effect" }, [1506355899] = { "(45-49)% less Duration" }, } },
+ ["FlaskFreezeAndChillImmunityDuringEffect2"] = { type = "Suffix", affix = "of the Walrus", "(40-44)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 858, 985 }, level = 38, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [3838369929] = { "Immunity to Freeze and Chill during Effect" }, [1506355899] = { "(40-44)% less Duration" }, } },
+ ["FlaskFreezeAndChillImmunityDuringEffect3__"] = { type = "Suffix", affix = "of the Penguin", "(35-39)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 858, 985 }, level = 72, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [3838369929] = { "Immunity to Freeze and Chill during Effect" }, [1506355899] = { "(35-39)% less Duration" }, } },
+ ["FlaskIgniteImmunityDuringEffect_"] = { type = "Suffix", affix = "of the Urchin", "(45-49)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 858, 916, 916.1 }, level = 6, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [658443507] = { "Immunity to Ignite during Effect", "Removes Burning on use" }, [1506355899] = { "(45-49)% less Duration" }, } },
+ ["FlaskIgniteImmunityDuringEffect2"] = { type = "Suffix", affix = "of the Mussel", "(40-44)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 858, 916, 916.1 }, level = 40, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [658443507] = { "Immunity to Ignite during Effect", "Removes Burning on use" }, [1506355899] = { "(40-44)% less Duration" }, } },
+ ["FlaskIgniteImmunityDuringEffect3"] = { type = "Suffix", affix = "of the Starfish", "(35-39)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 858, 916, 916.1 }, level = 74, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [658443507] = { "Immunity to Ignite during Effect", "Removes Burning on use" }, [1506355899] = { "(35-39)% less Duration" }, } },
+ ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect_1"] = { type = "Suffix", affix = "of the Lizard", "(45-49)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 858, 983 }, level = 8, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(45-49)% less Duration" }, [3965637181] = { "Immunity to Bleeding and Corrupted Blood during Effect" }, } },
+ ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect2_"] = { type = "Suffix", affix = "of the Skink", "(40-44)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 858, 983 }, level = 42, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(40-44)% less Duration" }, [3965637181] = { "Immunity to Bleeding and Corrupted Blood during Effect" }, } },
+ ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect3___"] = { type = "Suffix", affix = "of the Iguana", "(35-39)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 858, 983 }, level = 76, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(35-39)% less Duration" }, [3965637181] = { "Immunity to Bleeding and Corrupted Blood during Effect" }, } },
}
\ No newline at end of file
diff --git a/src/Data/ModFoulborn.lua b/src/Data/ModFoulborn.lua
index d77502abbf3..f3748a4cdbf 100644
--- a/src/Data/ModFoulborn.lua
+++ b/src/Data/ModFoulborn.lua
@@ -2,345 +2,345 @@
-- Item data (c) Grinding Gear Games
return {
- ["MutatedUniqueBow4BowAttacksUsableWithoutMana"] = { affix = "", "Insufficient Mana doesn't prevent your Bow Attacks", statOrder = { 5269 }, level = 1, group = "BowAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "attack" }, tradeHashes = { [2564976564] = { "Insufficient Mana doesn't prevent your Bow Attacks" }, } },
- ["MutatedUniqueBow4AreaOfEffect"] = { affix = "", "(40-60)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [280731498] = { "(40-60)% increased Area of Effect" }, } },
- ["MutatedUniqueHelmetDex3ChaosResistance"] = { affix = "", "+(50-75)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(50-75)% to Chaos Resistance" }, } },
- ["MutatedUniqueHelmetDex5LocalIncreaseSocketedMinionGemLevel"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } },
- ["MutatedUniqueHelmetDex5LifeReservationEfficiency"] = { affix = "", "32% increased Life Reservation Efficiency of Skills", statOrder = { 2231 }, level = 1, group = "LifeReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [635485889] = { "32% increased Life Reservation Efficiency of Skills" }, } },
- ["MutatedUniqueBow18FasterIgnite"] = { affix = "", "Ignites you inflict deal Damage (20-40)% faster", statOrder = { 2569 }, level = 1, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (20-40)% faster" }, } },
- ["MutatedUniqueBow19SupportedByImmolate"] = { affix = "", "Socketed Gems are Supported by Level 30 Immolate", statOrder = { 314 }, level = 1, group = "DisplaySupportedByImmolate", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [2420410470] = { "Socketed Gems are Supported by Level 30 Immolate" }, } },
- ["MutatedUniqueBow19AllDamageCanIgnite"] = { affix = "", "All Damage can Ignite", statOrder = { 4630 }, level = 1, group = "AllDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [1369840970] = { "All Damage can Ignite" }, } },
- ["MutatedUniqueHelmetStr4FireDamageTakenAsPhysical"] = { affix = "", "30% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2450 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "fire" }, tradeHashes = { [3205239847] = { "30% of Fire Damage from Hits taken as Physical Damage" }, } },
- ["MutatedUniqueHelmetStr4TotemLifeIncreasedByOvercappedFireResistance"] = { affix = "", "Totem Life is increased by their Overcapped Fire Resistance", statOrder = { 10395 }, level = 1, group = "TotemLifeIncreasedByOvercappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "resistance" }, tradeHashes = { [284063465] = { "Totem Life is increased by their Overcapped Fire Resistance" }, } },
- ["MutatedUniqueHelmetStr5SupportedByMinionLife"] = { affix = "", "Socketed Gems are Supported by Level 30 Minion Life", statOrder = { 509 }, level = 1, group = "DisplaySocketedGemsSupportedByMinionLife", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 30 Minion Life" }, } },
- ["MutatedUniqueAmulet37PhysicalDamageTakenAsFire"] = { affix = "", "(5-15)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(5-15)% of Physical Damage from Hits taken as Fire Damage" }, } },
- ["MutatedUniqueAmulet37NearbyEnemiesDebilitated"] = { affix = "", "Nearby Enemies are Debilitated", statOrder = { 7912 }, level = 1, group = "NearbyEnemiesDebilitated", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2006060276] = { "Nearby Enemies are Debilitated" }, } },
- ["MutatedUniqueAmulet38KeystoneElementalOverload"] = { affix = "", "Elemental Overload", statOrder = { 10781 }, level = 1, group = "ElementalOverload", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "critical" }, tradeHashes = { [3574189159] = { "Elemental Overload" }, } },
- ["MutatedUniqueWand15PowerChargeOnManaSpent"] = { affix = "", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7897 }, level = 1, group = "PowerChargeOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [3269060224] = { "Gain a Power Charge after Spending a total of 200 Mana" }, } },
- ["MutatedUniqueWand15GlobalIncreaseColdSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Cold Spell Skill Gems", statOrder = { 1616 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(2-3) to Level of all Cold Spell Skill Gems" }, } },
- ["MutatedUniqueWand16ColdDamageOverTimeMultiplierPerPowerCharge"] = { affix = "", "+(15-20)% to Cold Damage over Time Multiplier per Power Charge", statOrder = { 5811 }, level = 1, group = "ColdDamageOverTimeMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold" }, tradeHashes = { [2936849585] = { "+(15-20)% to Cold Damage over Time Multiplier per Power Charge" }, } },
- ["MutatedUniqueBodyDex10PurityOfIceNoReservation"] = { affix = "", "Purity of Ice has no Reservation", statOrder = { 9772 }, level = 1, group = "PurityOfIceNoReservation", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura" }, tradeHashes = { [1622979279] = { "Purity of Ice has no Reservation" }, } },
- ["MutatedUniqueBodyDex10EvasionRatingPer10PlayerLife"] = { affix = "", "+6 to Evasion Rating per 10 Player Maximum Life", statOrder = { 6488 }, level = 1, group = "EvasionRatingPer10PlayerLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences" }, tradeHashes = { [3637775205] = { "+6 to Evasion Rating per 10 Player Maximum Life" }, } },
- ["MutatedUniqueBodyDex11GhostDance"] = { affix = "", "Ghost Dance", statOrder = { 10785 }, level = 1, group = "GhostDance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "evasion", "energy_shield" }, tradeHashes = { [3590128077] = { "Ghost Dance" }, } },
- ["MutatedUniqueBodyDex11EvasionRatingPer10PlayerLife"] = { affix = "", "+8 to Evasion Rating per 10 Player Maximum Life", statOrder = { 6488 }, level = 1, group = "EvasionRatingPer10PlayerLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences" }, tradeHashes = { [3637775205] = { "+8 to Evasion Rating per 10 Player Maximum Life" }, } },
- ["MutatedUniqueAmulet39PhysicalDamageTakenAsCold"] = { affix = "", "(5-15)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 1, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(5-15)% of Physical Damage from Hits taken as Cold Damage" }, } },
- ["MutatedUniqueAmulet39CannotBeFrozen"] = { affix = "", "Cannot be Frozen", statOrder = { 1843 }, level = 1, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "ailment" }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, } },
- ["MutatedUniqueAmulet40CannotBeChilled"] = { affix = "", "Cannot be Chilled", statOrder = { 1842 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [283649372] = { "Cannot be Chilled" }, } },
- ["MutatedUniqueClaw16PercentageStrength"] = { affix = "", "(8-12)% increased Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [734614379] = { "(8-12)% increased Strength" }, } },
- ["MutatedUniqueClaw16AccuracyRatingPercentPer25Intelligence"] = { affix = "", "3% increased Accuracy Rating per 25 Intelligence", statOrder = { 4515 }, level = 1, group = "AccuracyRatingPercentPer25Intelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4106889136] = { "3% increased Accuracy Rating per 25 Intelligence" }, } },
- ["MutatedUniqueClaw17PercentageStrength"] = { affix = "", "(8-12)% increased Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [734614379] = { "(8-12)% increased Strength" }, } },
- ["MutatedUniqueClaw17CriticalStrikeMultiplierPer25Dexterity"] = { affix = "", "+3% to Critical Strike Multiplier per 25 Dexterity", statOrder = { 5954 }, level = 1, group = "CriticalStrikeMultiplierPer25Dexterity", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical" }, tradeHashes = { [2846122155] = { "+3% to Critical Strike Multiplier per 25 Dexterity" }, } },
- ["MutatedUniqueShieldInt8DamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6026 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } },
- ["MutatedUniqueShieldInt8AlwaysShockLowLifeEnemies"] = { affix = "", "Hits always Shock Enemies that are on Low Life", statOrder = { 4663 }, level = 1, group = "AlwaysShockLowLifeEnemies", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [2610583760] = { "Hits always Shock Enemies that are on Low Life" }, } },
- ["MutatedUniqueShieldInt9DamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6026 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } },
- ["MutatedUniqueShieldInt9ChaosDamageDoesNotBypassESWhileNotLowMana"] = { affix = "", "Chaos Damage taken does not bypass Energy Shield while not on Low Mana", statOrder = { 5735 }, level = 1, group = "ChaosDamageDoesNotBypassESWhileNotLowMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "defences", "energy_shield", "chaos" }, tradeHashes = { [795512669] = { "Chaos Damage taken does not bypass Energy Shield while not on Low Mana" }, } },
- ["MutatedUniqueAmulet41MaximumLightningResistance"] = { affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } },
- ["MutatedUniqueAmulet41EnemyExtraDamageRolls"] = { affix = "", "Damage of Enemies Hitting you is Unlucky", statOrder = { 5017 }, level = 1, group = "EnemyExtraDamageRolls", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1937473464] = { "Damage of Enemies Hitting you is Unlucky" }, } },
- ["MutatedUniqueAmulet42ManaIncreasedPerOvercappedLightningResistUniqueAmulet42"] = { affix = "", "Mana is increased by 1% per 4% Overcapped Lightning Resistance", statOrder = { 8186 }, level = 1, group = "ManaIncreasedPerOvercappedLightningResistUniqueAmulet42", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "elemental", "lightning" }, tradeHashes = { [3178534707] = { "Mana is increased by 1% per 4% Overcapped Lightning Resistance" }, } },
- ["MutatedUniqueBootsStr6IncreasedArmourWhileBleeding"] = { affix = "", "(50-100)% increased Armour while Bleeding", statOrder = { 4778 }, level = 1, group = "IncreasedArmourWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "armour" }, tradeHashes = { [2466912132] = { "(50-100)% increased Armour while Bleeding" }, } },
- ["MutatedUniqueBootsStr6ImmuneToElementalAilmentsWhileBleeding"] = { affix = "", "Immune to Elemental Ailments while Bleeding", statOrder = { 7228 }, level = 1, group = "ImmuneToElementalAilmentsWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [2526304488] = { "Immune to Elemental Ailments while Bleeding" }, } },
- ["MutatedUniqueBootsStr7GainEnduranceChargeEveryXSecondsWhileStationary"] = { affix = "", "Gain an Endurance Charge each second while Stationary", statOrder = { 6712 }, level = 1, group = "GainEnduranceChargePerXSecondsWhileStationary", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "mutatedunique" }, tradeHashes = { [3331206505] = { "Gain an Endurance Charge each second while Stationary" }, } },
- ["MutatedUniqueBottsStr7GainPowerChargeOnHitWhileBleeding"] = { affix = "", "Gain a Power Charge on Hit while Bleeding", statOrder = { 6811 }, level = 1, group = "GainPowerChargeOnHitWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique", "ailment" }, tradeHashes = { [3468151987] = { "Gain a Power Charge on Hit while Bleeding" }, } },
- ["MutatedUniqueTwoHandAxe11WarcriesExertAnAdditionalAttack"] = { affix = "", "Warcries Exert 1 additional Attack", statOrder = { 10569 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1434716233] = { "Warcries Exert 1 additional Attack" }, } },
- ["MutatedUniqueTwoHandAxe11WarcryCooldownSpeed"] = { affix = "", "500% increased Warcry Cooldown Recovery Rate", statOrder = { 3334 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4159248054] = { "500% increased Warcry Cooldown Recovery Rate" }, } },
- ["MutatedUniqueTwoHandAxe12PercentageIntelligence"] = { affix = "", "80% reduced Intelligence", statOrder = { 1191 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [656461285] = { "80% reduced Intelligence" }, } },
- ["MutatedUniqueTwoHandAxe12FasterBleedDamage"] = { affix = "", "Bleeding you inflict deals Damage (20-40)% faster", statOrder = { 6549 }, level = 1, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "mutatedunique", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (20-40)% faster" }, } },
- ["MutatedUniqueShieldStr8MaximumBlockChance"] = { affix = "", "+3% to maximum Chance to Block Attack Damage", statOrder = { 1993 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [4124805414] = { "+3% to maximum Chance to Block Attack Damage" }, } },
- ["MutatedUniqueShieldStr8ArmourAppliesToElementalIfBlockedRecently"] = { affix = "", "(8-12)% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently", statOrder = { 4754 }, level = 1, group = "ArmourAppliesToElementalIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique", "defences" }, tradeHashes = { [1239225602] = { "(8-12)% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently" }, } },
- ["MutatedUniqueShieldStr9GainEnergyShieldOnBlock"] = { affix = "", "Gain (300-650) Energy Shield when you Block", statOrder = { 1764 }, level = 1, group = "GainEnergyShieldOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [450695450] = { "Gain (300-650) Energy Shield when you Block" }, } },
- ["MutatedUniqueOneHandSword22MinionUnholyMightChance"] = { affix = "", "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3384 }, level = 1, group = "MinionUnholyMightChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "minion" }, tradeHashes = { [3131367308] = { "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" }, } },
- ["MutatedUniqueOneHandSword23MinionUnholyMightChance"] = { affix = "", "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3384 }, level = 1, group = "MinionUnholyMightChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "minion" }, tradeHashes = { [3131367308] = { "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" }, } },
- ["MutatedUniqueOneHandSword22MinionBaseCriticalStrikeChance"] = { affix = "", "Minions have +5% to Critical Strike Chance", statOrder = { 9270 }, level = 1, group = "MinionBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion", "critical" }, tradeHashes = { [440812751] = { "Minions have +5% to Critical Strike Chance" }, } },
- ["MutatedUniqueOneHandSword23MinionSkillGemQuality"] = { affix = "", "+(20-30)% to Quality of all Minion Skill Gems", statOrder = { 9334 }, level = 1, group = "MinionSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion", "gem" }, tradeHashes = { [1723333214] = { "+(20-30)% to Quality of all Minion Skill Gems" }, } },
- ["MutatedUniqueBodyInt13SocketedGemQuality"] = { affix = "", "+20% to Quality of Socketed Gems", statOrder = { 209 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [3828613551] = { "+20% to Quality of Socketed Gems" }, } },
- ["MutatedUniqueBodyInt13IncreasedAllResistances"] = { affix = "", "50% increased Elemental and Chaos Resistances", statOrder = { 4634 }, level = 1, group = "IncreasedAllResistances", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "resistance" }, tradeHashes = { [1195367742] = { "50% increased Elemental and Chaos Resistances" }, } },
- ["MutatedUniqueBodyInt14aSocketedGemQuality"] = { affix = "", "+30% to Quality of Socketed Gems", statOrder = { 209 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [3828613551] = { "+30% to Quality of Socketed Gems" }, } },
- ["MutatedUniqueBodyInt14IncreasedAllResistances"] = { affix = "", "50% increased Elemental and Chaos Resistances", statOrder = { 4634 }, level = 1, group = "IncreasedAllResistances", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "resistance" }, tradeHashes = { [1195367742] = { "50% increased Elemental and Chaos Resistances" }, } },
- ["MutatedUniqueBodyDexInt1DisplaySocketedGemsSupportedByIntensify"] = { affix = "", "Socketed Gems are Supported by Level 20 Intensify", statOrder = { 411 }, level = 1, group = "DisplaySocketedGemsSupportedByIntensify", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1792524915] = { "Socketed Gems are Supported by Level 20 Intensify" }, } },
- ["MutatedUniqueBodyDexInt1AuraEffectOnEnemies"] = { affix = "", "(15-30)% increased Effect of Non-Curse Auras from your Skills on Enemies", statOrder = { 3572 }, level = 1, group = "AuraEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura" }, tradeHashes = { [1636209393] = { "(15-30)% increased Effect of Non-Curse Auras from your Skills on Enemies" }, } },
- ["MutatedUniqueGlovesInt4DisplaySocketedGemsSupportedByFocusedChannelling"] = { affix = "", "Socketed Gems are Supported by Level 18 Focused Channelling", statOrder = { 508 }, level = 1, group = "DisplaySocketedGemsSupportedByFocusedChannelling", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1948535732] = { "Socketed Gems are Supported by Level 18 Focused Channelling" }, } },
- ["MutatedUniqueBelt7CullingStrike"] = { affix = "", "Culling Strike", statOrder = { 2044 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2524254339] = { "Culling Strike" }, } },
- ["MutatedUniqueBodyInt12HeraldOfDoom"] = { affix = "", "Lone Messenger", statOrder = { 10788 }, level = 1, group = "KeystoneHeraldOfDoom", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [155220198] = { "Lone Messenger" }, } },
- ["MutatedUniqueBodyInt12HeraldEffectOnSelf"] = { affix = "", "(80-100)% increased Effect of Herald Buffs on you", statOrder = { 7109 }, level = 1, group = "HeraldEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [870531513] = { "(80-100)% increased Effect of Herald Buffs on you" }, } },
- ["MutatedUniqueBodyInt16LocalIncreaseSocketedGemLevel"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } },
- ["MutatedUniqueShieldStrDex7LocalIncreaseSocketedGemLevel"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } },
- ["MutatedUniqueFishingRod1FishingMutatedFish"] = { affix = "", "You can catch Foulborn Fish", statOrder = { 5390 }, level = 1, group = "FishingMutatedFish", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3564016014] = { "You can catch Foulborn Fish" }, } },
- ["MutatedUniqueFishingRod1FishingLureType"] = { affix = "", "Wombgift Bait", statOrder = { 2851 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3360430812] = { "Wombgift Bait" }, } },
- ["MutatedUniqueFishingRod2AvoidInterruptionWhileCasting"] = { affix = "", "(30-40)% chance to Ignore Stuns while Casting", statOrder = { 1903 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1916706958] = { "(30-40)% chance to Ignore Stuns while Casting" }, } },
- ["MutatedUniqueFishingRod2FishingLureType"] = { affix = "", "Otherworldly Lure", statOrder = { 2851 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3360430812] = { "Otherworldly Lure" }, } },
- ["MutatedUniqueRing9IncreasedAttackSpeedWhenOnLowLife"] = { affix = "", "(12-16)% increased Attack Speed when on Low Life", statOrder = { 1226 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [1921572790] = { "(12-16)% increased Attack Speed when on Low Life" }, } },
- ["MutatedUniqueBodyDex6DamageTaken"] = { affix = "", "25% increased Damage taken", statOrder = { 2243 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3691641145] = { "25% increased Damage taken" }, } },
- ["MutatedUniqueWand2MaximumGolems"] = { affix = "", "+2 to maximum number of Summoned Golems", statOrder = { 3695 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [2821079699] = { "+2 to maximum number of Summoned Golems" }, } },
- ["MutatedUniqueShieldDex9TreatElementalResistanceAsInverted"] = { affix = "", "Hits have (20-25)% chance to treat Enemy Monster Elemental Resistance values as inverted", statOrder = { 10425 }, level = 1, group = "TreatElementalResistanceAsInverted", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental" }, tradeHashes = { [3593401321] = { "Hits have (20-25)% chance to treat Enemy Monster Elemental Resistance values as inverted" }, } },
- ["MutatedUniqueGlovesDex2ActionSpeedMinimum90"] = { affix = "", "Your Action Speed is at least 90% of base value", statOrder = { 176 }, level = 1, group = "ActionSpeedMinimum90", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [179010262] = { "Your Action Speed is at least 90% of base value" }, } },
- ["MutatedUniqueGlovesDex2CriticalStrikesNonDamagingAilmentEffect"] = { affix = "", "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes", statOrder = { 9502 }, level = 1, group = "CriticalStrikesNonDamagingAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical", "ailment" }, tradeHashes = { [3772078232] = { "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes" }, } },
- ["MutatedUniqueOneHandMace3AreaOfEffect"] = { affix = "", "(20-30)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [280731498] = { "(20-30)% increased Area of Effect" }, } },
- ["MutatedUniqueHelmetStrDex3WarcryBuffEffect"] = { affix = "", "(20-35)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 1, group = "WarcryBuffEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3037553757] = { "(20-35)% increased Warcry Buff Effect" }, } },
- ["MutatedUniqueHelmetStrDex3WarcryCooldownSpeed"] = { affix = "", "(20-40)% increased Warcry Cooldown Recovery Rate", statOrder = { 3334 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4159248054] = { "(20-40)% increased Warcry Cooldown Recovery Rate" }, } },
- ["MutatedUniqueOneHandMace3LightningBoltOnHit"] = { affix = "", "Trigger Level 20 Lightning Bolt on Melee Hit with this Weapon, with a 0.25 second cooldown", statOrder = { 778 }, level = 1, group = "LightningBoltOnHit", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique", "elemental", "lightning" }, tradeHashes = { [3195558548] = { "Trigger Level 20 Lightning Bolt on Melee Hit with this Weapon, with a 0.25 second cooldown" }, [1478425331] = { "" }, } },
- ["MutatedUniqueClaw13CrushOnHitChance"] = { affix = "", "25% chance to Crush on Hit", statOrder = { 5660 }, level = 1, group = "CrushOnHitChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical" }, tradeHashes = { [2228892313] = { "25% chance to Crush on Hit" }, } },
- ["MutatedUniqueRing18RecoupWhileFrozen"] = { affix = "", "25% of Damage taken while Frozen Recouped as Life", statOrder = { 6129 }, level = 1, group = "RecoupWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [2585984986] = { "25% of Damage taken while Frozen Recouped as Life" }, } },
- ["MutatedUniqueRing18ActionSpeedMinimumWhileIgnited"] = { affix = "", "Action Speed cannot be modified to below Base Value while Ignited", statOrder = { 4529 }, level = 1, group = "ActionSpeedMinimumWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "speed", "ailment" }, tradeHashes = { [2146687910] = { "Action Speed cannot be modified to below Base Value while Ignited" }, } },
- ["MutatedUniqueTwoHandSword8RecoupedAsLifePerRedGem"] = { affix = "", "10% of Damage taken Recouped as Life per Socketed Red Gem", statOrder = { 6128 }, level = 1, group = "RecoupedAsLifePerRedGem", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "gem" }, tradeHashes = { [902847342] = { "10% of Damage taken Recouped as Life per Socketed Red Gem" }, } },
- ["MutatedUniqueTwoHandSword8ImmortalAmbitionIfAllSocketsRed"] = { affix = "", "You have Immortal Ambition while all Socketed Gems are Red", statOrder = { 7940 }, level = 1, group = "ImmortalAmbitionIfAllSocketsRed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2954550164] = { "You have Immortal Ambition while all Socketed Gems are Red" }, } },
- ["MutatedUniqueHelmStrInt7MaximumEnergyShieldAsPercentageOfLifeWithNoCorruptItems"] = { affix = "", "Gain (8-12)% of Maximum Life as Extra Maximum Energy Shield if no Equipped Items are Corrupted", statOrder = { 9148 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLifeWithNoCorruptItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [70766949] = { "Gain (8-12)% of Maximum Life as Extra Maximum Energy Shield if no Equipped Items are Corrupted" }, } },
- ["MutatedUniqueClaw13PhysicalSkillEffectDurationPerIntelligence"] = { affix = "", "Physical Skills have 1% increased Duration per 12 Intelligence", statOrder = { 3805 }, level = 1, group = "PhysicalSkillEffectDurationPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "attribute" }, tradeHashes = { [2632037464] = { "Physical Skills have 1% increased Duration per 12 Intelligence" }, } },
- ["MutatedUniqueBelt14MaximumLifeOnChillPercent"] = { affix = "", "Recover 2% of Life when you Chill a non-Chilled Enemy", statOrder = { 9839 }, level = 1, group = "MaximumLifeOnChillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "elemental", "cold", "ailment" }, tradeHashes = { [3883840239] = { "Recover 2% of Life when you Chill a non-Chilled Enemy" }, } },
- ["MutatedUniqueRing19FrozenMonstersTakePercentIncreasedDamage"] = { affix = "", "Enemies Frozen by you take 10% increased Damage", statOrder = { 6695 }, level = 1, group = "FrozenMonstersTakePercentIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "ailment" }, tradeHashes = { [1588094148] = { "Enemies Frozen by you take 10% increased Damage" }, } },
- ["MutatedUniqueBodyInt16BlueSocketGemsIgnoreAttributeRequirements"] = { affix = "", "Ignore Attribute Requirements of Gems Socketed in Blue Sockets", statOrder = { 7943 }, level = 1, group = "BlueSocketGemsIgnoreAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [2852307173] = { "Ignore Attribute Requirements of Gems Socketed in Blue Sockets" }, } },
- ["MutatedUniqueRing20IgnitedEnemiesExplode"] = { affix = "", "Ignited Enemies you Kill Explode, dealing 5% of their Life as Fire Damage which cannot Ignite", statOrder = { 7212 }, level = 1, group = "IgnitedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [321971518] = { "Ignited Enemies you Kill Explode, dealing 5% of their Life as Fire Damage which cannot Ignite" }, } },
- ["MutatedUniqueShieldInt1DamageOverTimePer100PlayerMaxLife"] = { affix = "", "Deal 5% increased Damage Over Time per 100 Player Maximum Life", statOrder = { 6028 }, level = 1, group = "DamageOverTimePer100PlayerMaxLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [1855381243] = { "Deal 5% increased Damage Over Time per 100 Player Maximum Life" }, } },
- ["MutatedUniqueRing9ExtraDamageRollsWhileLowLife"] = { affix = "", "Your Damage with Hits is Lucky while on Low Life", statOrder = { 4559 }, level = 1, group = "ExtraDamageRollsWhileLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [204466006] = { "Your Damage with Hits is Lucky while on Low Life" }, } },
- ["MutatedUniqueBodyInt21ChaosDamageTakenRecoupedAsLifeActual"] = { affix = "", "50% of Chaos Damage taken Recouped as Life", statOrder = { 5752 }, level = 1, group = "ChaosDamageTakenRecoupedAsLifeActual", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "chaos" }, tradeHashes = { [2485226576] = { "50% of Chaos Damage taken Recouped as Life" }, } },
- ["MutatedUniqueBodyStrDex7WarcriesAreDisabled"] = { affix = "", "Your Warcries are disabled", statOrder = { 10699 }, level = 1, group = "WarcriesAreDisabled", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [345628839] = { "Your Warcries are disabled" }, } },
- ["MutatedUniqueRing13LeftRingSlotEvasionRating"] = { affix = "", "Left ring slot: +1000 to Evasion Rating", statOrder = { 2677 }, level = 1, group = "LeftRingSlotEvasionRating", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [674502195] = { "Left ring slot: +1000 to Evasion Rating" }, } },
- ["MutatedUniqueRing13RightRingSlotArmour"] = { affix = "", "Right ring slot: +1000 to Armour", statOrder = { 2656 }, level = 1, group = "RightRingSlotArmour", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [1223912433] = { "Right ring slot: +1000 to Armour" }, } },
- ["MutatedUniqueShieldStrDex8SpellBlockPercentage"] = { affix = "", "(20-30)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [561307714] = { "(20-30)% Chance to Block Spell Damage" }, } },
- ["MutatedUniqueShieldStrDex8MonsterChanceToAvoid"] = { affix = "", "(10-15)% chance to Avoid All Damage from Hits", statOrder = { 4945 }, level = 1, group = "MonsterChanceToAvoid", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [407415930] = { "(10-15)% chance to Avoid All Damage from Hits" }, } },
- ["MutatedUniqueBelt14AllDamageCanIgnite"] = { affix = "", "All Damage can Ignite", statOrder = { 4630 }, level = 1, group = "AllDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [1369840970] = { "All Damage can Ignite" }, } },
- ["MutatedUniqueRing20ShockedEnemiesExplode"] = { affix = "", "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock", statOrder = { 10019, 10019.1 }, level = 1, group = "ShockedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "lightning" }, tradeHashes = { [2706994884] = { "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock" }, } },
- ["MutatedUniqueBodyDexInt2GainManaAsExtraEnergyShield"] = { affix = "", "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2180 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2663376056] = { "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield" }, } },
- ["MutatedUniqueBodyDexInt2EldritchBattery"] = { affix = "", "Eldritch Battery", statOrder = { 10779 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } },
- ["MutatedUniqueShieldDex9DegenDamageTaken"] = { affix = "", "(10-15)% reduced Damage taken from Damage Over Time", statOrder = { 2250 }, level = 1, group = "DegenDamageTaken", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, tradeHashes = { [1101403182] = { "(10-15)% reduced Damage taken from Damage Over Time" }, } },
- ["MutatedUniqueGlovesStr12RageLossDelay"] = { affix = "", "Inherent Rage Loss starts 2 seconds later", statOrder = { 9796 }, level = 1, group = "RageLossDelay", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2842935061] = { "Inherent Rage Loss starts 2 seconds later" }, } },
- ["MutatedUniqueBodyStrDex8AttackDamage"] = { affix = "", "100% increased Attack Damage", statOrder = { 1203 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "attack" }, tradeHashes = { [2843214518] = { "100% increased Attack Damage" }, } },
- ["MutatedUniqueBodyInt2DamageWhileIgnited"] = { affix = "", "(50-100)% increased Damage while Ignited", statOrder = { 2807 }, level = 1, group = "DamageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, tradeHashes = { [1686122637] = { "(50-100)% increased Damage while Ignited" }, } },
- ["MutatedUniqueBodyInt2FireDamageLifeLeechPermyriad"] = { affix = "", "(5-7)% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(5-7)% of Fire Damage Leeched as Life" }, } },
- ["MutatedUniqueHelmetDexInt4ChaosDamageCanShock"] = { affix = "", "Your Chaos Damage can Shock", statOrder = { 2875 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Your Chaos Damage can Shock" }, } },
- ["MutatedUniqueHelmetDexInt4ChaosDamageCanIgnite"] = { affix = "", "Your Chaos Damage can Ignite", statOrder = { 5006 }, level = 1, group = "ChaosDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "poison", "mutatedunique", "damage", "elemental", "fire", "chaos", "ailment" }, tradeHashes = { [1139878780] = { "Your Chaos Damage can Ignite" }, } },
- ["MutatedUniqueHelmetDexInt4ChaosDamageCanFreeze"] = { affix = "", "Your Chaos Damage can Freeze", statOrder = { 2874 }, level = 1, group = "ChaosDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "elemental", "cold", "chaos", "ailment" }, tradeHashes = { [2973498992] = { "Your Chaos Damage can Freeze" }, } },
- ["MutatedUniqueQuiver7StartEnergyShieldRechargeOnSkillChance"] = { affix = "", "(10-15)% chance for Energy Shield Recharge to start when you use a Skill", statOrder = { 6454 }, level = 1, group = "StartEnergyShieldRechargeOnSkillChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [3853996752] = { "(10-15)% chance for Energy Shield Recharge to start when you use a Skill" }, } },
- ["MutatedUniqueQuiver7MaximumLifeConvertedToEnergyShield"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 9165 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } },
- ["MutatedUniqueBow12DisplaySupportedBySummonPhantasm"] = { affix = "", "Socketed Gems are Supported by Level 20 Summon Phantasm", statOrder = { 413 }, level = 1, group = "DisplaySupportedBySummonPhantasm", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [2169409479] = { "Socketed Gems are Supported by Level 20 Summon Phantasm" }, } },
- ["MutatedUniqueBow12SummonWrithingWormEveryXMs"] = { affix = "", "An Enemy Writhing Worm spawns every 2 seconds", statOrder = { 625 }, level = 1, group = "SummonWrithingWormEveryXMs", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique" }, tradeHashes = { [933024928] = { "An Enemy Writhing Worm spawns every 2 seconds" }, } },
- ["MutatedUniqueBow12MinionAddedChaosDamage"] = { affix = "", "Minions deal (25-35) to (50-65) additional Chaos Damage", statOrder = { 3774 }, level = 1, group = "MinionAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos", "minion" }, tradeHashes = { [2889601781] = { "Minions deal (25-35) to (50-65) additional Chaos Damage" }, } },
- ["MutatedUniqueTwoHandMace8IncreasedMinionDamageIfYouHitEnemy"] = { affix = "", "Minions deal (50-70)% increased Damage if you've Hit Recently", statOrder = { 9299 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (50-70)% increased Damage if you've Hit Recently" }, } },
- ["MutatedUniqueTwoHandMace8DoubleAnimateWeaponLimit"] = { affix = "", "Maximum number of Animated Weapons is Doubled", statOrder = { 6267 }, level = 1, group = "DoubleAnimateWeaponLimit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [737980235] = { "Maximum number of Animated Weapons is Doubled" }, } },
- ["MutatedUniqueHelmetStrDex2AttackSpeedWithMovementSkills"] = { affix = "", "20% increased Attack Speed with Movement Skills", statOrder = { 1437 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [3683134121] = { "20% increased Attack Speed with Movement Skills" }, } },
- ["MutatedUniqueHelmetStrDex2ChanceToSuppressSpells"] = { affix = "", "+(10-20)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3680664274] = { "+(10-20)% chance to Suppress Spell Damage" }, } },
- ["MutatedUniqueBow6ProjectilesPierceAllNearbyTargets"] = { affix = "", "Projectiles Pierce all nearby Targets", statOrder = { 9752 }, level = 1, group = "ProjectilesPierceAllNearbyTargets", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1284333657] = { "Projectiles Pierce all nearby Targets" }, } },
- ["MutatedUniqueBelt21EverlastingSacrifice"] = { affix = "", "Everlasting Sacrifice", statOrder = { 10784 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "resistance" }, tradeHashes = { [145598447] = { "Everlasting Sacrifice" }, } },
- ["MutatedUniqueBelt21AnimalCharmLeechPercentIsInstant"] = { affix = "", "(8-12)% of Leech is Instant", statOrder = { 7343 }, level = 1, group = "AnimalCharmLeechPercentIsInstant", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3561837752] = { "(8-12)% of Leech is Instant" }, } },
- ["MutatedUniqueBelt13CurseEffectOnYou"] = { affix = "", "20% reduced Effect of Curses on you", statOrder = { 2175 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "curse" }, tradeHashes = { [3407849389] = { "20% reduced Effect of Curses on you" }, } },
- ["MutatedUniqueBodyStr7PrismaticBulwark"] = { affix = "", "Transcendence", statOrder = { 10802 }, level = 1, group = "PrismaticBulwark", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2381571742] = { "Transcendence" }, } },
- ["MutatedUniqueBodyStr7GainNoInherentBonusFromStrength"] = { affix = "", "Gain no inherent bonuses from Strength", statOrder = { 2022 }, level = 1, group = "GainNoInherentBonusFromStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [2035199242] = { "Gain no inherent bonuses from Strength" }, } },
- ["MutatedUniqueBelt19FlaskChargesUsed"] = { affix = "", "100% increased Flask Charges used", statOrder = { 2189 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, tradeHashes = { [644456512] = { "100% increased Flask Charges used" }, } },
- ["MutatedUniqueBelt19AnimalCharmFlaskChargesEvery3Secondsage"] = { affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3483 }, level = 1, group = "AnimalCharmFlaskChargesEvery3Seconds", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } },
- ["MutatedUniqueAmulet43ChaosDamageTakenRecoupedAsLife"] = { affix = "", "50% of Chaos Damage taken Recouped as Life", statOrder = { 5752 }, level = 1, group = "ChaosDamageTakenRecoupedAsLifeActual", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "chaos" }, tradeHashes = { [2485226576] = { "50% of Chaos Damage taken Recouped as Life" }, } },
- ["MutatedUniqueAmulet43RecoupEnergyShieldInsteadOfLife"] = { affix = "", "Recoup Energy Shield instead of Life", statOrder = { 7393 }, level = 1, group = "RecoupEnergyShieldInsteadOfLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [4074053582] = { "Recoup Energy Shield instead of Life" }, } },
- ["MutatedUniqueBow18DisplaySupportedByReturningProjectiles"] = { affix = "", "Socketed Gems are Supported by Level 20 Returning Projectiles", statOrder = { 412 }, level = 1, group = "DisplaySupportedByReturningProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1549219417] = { "Socketed Gems are Supported by Level 20 Returning Projectiles" }, } },
- ["MutatedUniqueGlovesDexInt7PoisonSpread"] = { affix = "", "When you kill a Poisoned Enemy, Enemies within 1.5 metres are Poisoned", statOrder = { 1046 }, level = 1, group = "PoisonSpread", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "chaos", "ailment" }, tradeHashes = { [3559020159] = { "When you kill a Poisoned Enemy, Enemies within 1.5 metres are Poisoned" }, } },
- ["MutatedUniqueGlovesDexInt7FasterPoisonDamage"] = { affix = "", "Poisons you inflict deal Damage (15-20)% faster", statOrder = { 6550 }, level = 1, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "mutatedunique", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (15-20)% faster" }, } },
- ["MutatedUniqueAmulet14GainPowerChargesNotLostRecently"] = { affix = "", "Gain a Power Charge every Second if you haven't lost Power Charges Recently", statOrder = { 6815 }, level = 1, group = "GainPowerChargesNotLostRecently", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [1099200124] = { "Gain a Power Charge every Second if you haven't lost Power Charges Recently" }, } },
- ["MutatedUniqueAmulet14LosePowerChargesOnMaxPowerCharges"] = { affix = "", "Lose all Power Charges on reaching Maximum Power Charges", statOrder = { 3608 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [2135899247] = { "Lose all Power Charges on reaching Maximum Power Charges" }, } },
- ["MutatedUniqueRing2WarcryMonsterPower"] = { affix = "", "(20-30)% increased total Power counted by Warcries", statOrder = { 10571 }, level = 1, group = "WarcryMonsterPower", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2663359259] = { "(20-30)% increased total Power counted by Warcries" }, } },
- ["MutatedUniqueHelmetDexInt1MinionDoubleDamage"] = { affix = "", "Minions have 20% chance to deal Double Damage", statOrder = { 9283 }, level = 1, group = "MinionDoubleDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [755922799] = { "Minions have 20% chance to deal Double Damage" }, } },
- ["MutatedUniqueRing4TemporalChainsOnHit"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2524 }, level = 1, group = "TemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [4139135963] = { "Curse Enemies with Temporal Chains on Hit" }, } },
- ["MutatedUniqueRing4VulnerabilityOnHit"] = { affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2525 }, level = 1, group = "VulnerabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1826297223] = { "Curse Enemies with Vulnerability on Hit" }, } },
- ["MutatedUniqueRing4EnfeebleOnHit"] = { affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2518 }, level = 1, group = "EnfeebleOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1516661546] = { "Curse Enemies with Enfeeble on Hit" }, } },
- ["MutatedUniqueHelmetStrInt2HeraldOfPurityAdditionalMinion"] = { affix = "", "+(2-3) to maximum number of Sentinels of Purity", statOrder = { 5038 }, level = 1, group = "HeraldOfPurityAdditionalMinion", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [2836937264] = { "+(2-3) to maximum number of Sentinels of Purity" }, } },
- ["MutatedUniqueBootsStrDex1MovementVelocityOnFullLife"] = { affix = "", "40% increased Movement Speed when on Full Life", statOrder = { 1805 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [3393547195] = { "40% increased Movement Speed when on Full Life" }, } },
- ["MutatedUniqueGlovesInt1IncreasedGold"] = { affix = "", "(5-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7308 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [253956903] = { "(5-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } },
- ["MutatedUniqueBelt4PercentageStrength"] = { affix = "", "(5-15)% increased Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [734614379] = { "(5-15)% increased Strength" }, } },
- ["MutatedUniqueBodyStrInt2MaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "mutatedunique" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } },
- ["MutatedUniqueGlovesDexInt2UnarmedAreaOfEffect"] = { affix = "", "(20-30)% increased Area of Effect while Unarmed", statOrder = { 3058 }, level = 1, group = "UnarmedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2216127021] = { "(20-30)% increased Area of Effect while Unarmed" }, } },
- ["MutatedUniqueBootsDex2IncreasedGold"] = { affix = "", "(20-30)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7308 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [253956903] = { "(20-30)% increased Quantity of Gold Dropped by Slain Enemies" }, } },
- ["MutatedUniqueBootsDex3ActionSpeedReduction"] = { affix = "", "(6-12)% increased Action Speed", statOrder = { 4532 }, level = 1, group = "ActionSpeedReduction", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [2878959938] = { "(6-12)% increased Action Speed" }, } },
- ["MutatedUniqueBodyStr2LocalPhysicalDamageReductionRating"] = { affix = "", "+(500-800) to Armour", statOrder = { 1545 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "armour" }, tradeHashes = { [3484657501] = { "+(500-800) to Armour" }, } },
- ["MutatedUniqueBodyDex3MeleeFireDamage"] = { affix = "", "(75-150)% increased Melee Fire Damage", statOrder = { 1987 }, level = 1, group = "MeleeFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, tradeHashes = { [3630160064] = { "(75-150)% increased Melee Fire Damage" }, } },
- ["MutatedUniqueShieldInt2LocalIncreaseSocketedAuraLevel"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 186 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } },
- ["MutatedUniqueRing6CriticalStrikeMultiplier"] = { affix = "", "+(10-30)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(10-30)% to Global Critical Strike Multiplier" }, } },
- ["MutatedUniqueRing6AllDefences"] = { affix = "", "(10-30)% increased Global Defences", statOrder = { 2838 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [1389153006] = { "(10-30)% increased Global Defences" }, } },
- ["MutatedUniqueHelmetDex4IncreasedMana"] = { affix = "", "+(100-200) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [1050105434] = { "+(100-200) to maximum Mana" }, } },
- ["MutatedUniqueShieldStrInt5FlatEnergyShieldRegenerationPerMinute"] = { affix = "", "Regenerate (100-200) Energy Shield per second", statOrder = { 2650 }, level = 1, group = "FlatEnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [1330109706] = { "Regenerate (100-200) Energy Shield per second" }, } },
- ["MutatedUniqueShieldStrInt5CastSpeedOnLowLife"] = { affix = "", "(10-20)% increased Cast Speed when on Low Life", statOrder = { 2004 }, level = 1, group = "CastSpeedOnLowLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "speed" }, tradeHashes = { [1136768410] = { "(10-20)% increased Cast Speed when on Low Life" }, } },
- ["MutatedUniqueBodyDex5MovementSkillCooldown"] = { affix = "", "(20-40)% increased Cooldown Recovery Rate of Movement Skills", statOrder = { 9404 }, level = 1, group = "MovementSkillCooldown", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1124980805] = { "(20-40)% increased Cooldown Recovery Rate of Movement Skills" }, } },
- ["MutatedUniqueBootsStrDex2IncreasedAccuracyPerFrenzy"] = { affix = "", "(4-8)% increased Accuracy Rating per Frenzy Charge", statOrder = { 2055 }, level = 1, group = "AccuracyRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [3700381193] = { "(4-8)% increased Accuracy Rating per Frenzy Charge" }, } },
- ["MutatedUniqueBodyInt7SupportedByFlamewood"] = { affix = "", "Socketed Gems are Supported by Level 20 Flamewood", statOrder = { 285 }, level = 1, group = "SupportedByFlamewood", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [285773939] = { "Socketed Gems are Supported by Level 20 Flamewood" }, } },
- ["MutatedUniqueGlovesInt6ChaosDamagePerCorruptedItem"] = { affix = "", "(10-15)% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 3104 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos" }, tradeHashes = { [4004011170] = { "(10-15)% increased Chaos Damage for each Corrupted Item Equipped" }, } },
- ["MutatedUniqueRing7NonDamagingAilmentEffectOnSelf"] = { affix = "", "50% reduced Effect of Non-Damaging Ailments on you", statOrder = { 9499 }, level = 1, group = "NonDamagingAilmentEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [1519474779] = { "50% reduced Effect of Non-Damaging Ailments on you" }, } },
- ["MutatedUniqueClaw6ChaosDamage"] = { affix = "", "(100-120)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos" }, tradeHashes = { [736967255] = { "(100-120)% increased Chaos Damage" }, } },
- ["MutatedUniqueRing11ConsecratedGroundEffect"] = { affix = "", "(25-40)% increased Effect of Consecrated Ground you create", statOrder = { 5852 }, level = 1, group = "ConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4058190193] = { "(25-40)% increased Effect of Consecrated Ground you create" }, } },
- ["MutatedUniqueTwoHandMace6KeystoneBattlemage"] = { affix = "", "Battlemage", statOrder = { 10770 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [448903047] = { "Battlemage" }, } },
- ["MutatedUniqueTwoHandMace6LoseLifePercentOnCrit"] = { affix = "", "Lose 1% of Life when you deal a Critical Strike", statOrder = { 8146 }, level = 1, group = "LoseLifePercentOnCrit", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "critical" }, tradeHashes = { [1862591837] = { "Lose 1% of Life when you deal a Critical Strike" }, } },
- ["MutatedUniqueRing17IncreasedMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1819 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } },
- ["MutatedUniqueBodyStr4ElementalDamageTakenAsChaos"] = { affix = "", "25% of Elemental Damage from Hits taken as Chaos Damage", statOrder = { 2458 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "chaos" }, tradeHashes = { [1175213674] = { "25% of Elemental Damage from Hits taken as Chaos Damage" }, } },
- ["MutatedUniqueShieldDex4ChaosDamageOverTimeMultiplier"] = { affix = "", "+(23-37)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 1, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "mutatedunique", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(23-37)% to Chaos Damage over Time Multiplier" }, } },
- ["MutatedUniqueHelmetStrInt4MaximumLifeIncreasePercent"] = { affix = "", "50% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [983749596] = { "50% increased maximum Life" }, } },
- ["MutatedUniqueGlovesStrInt1SelfCurseDuration"] = { affix = "", "(-30-30)% reduced Duration of Curses on you", statOrder = { 2176 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [2920970371] = { "(-30-30)% reduced Duration of Curses on you" }, } },
- ["MutatedUniqueGlovesDexInt5LocalEnergyShield"] = { affix = "", "+(100-130) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-130) to maximum Energy Shield" }, } },
- ["MutatedUniqueBootsStrInt2PercentageIntelligence"] = { affix = "", "(15-18)% increased Intelligence", statOrder = { 1191 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [656461285] = { "(15-18)% increased Intelligence" }, } },
- ["MutatedUniqueQuiver3ImpaleEffect"] = { affix = "", "(20-30)% increased Impale Effect", statOrder = { 7247 }, level = 1, group = "ImpaleEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical" }, tradeHashes = { [298173317] = { "(20-30)% increased Impale Effect" }, } },
- ["MutatedUniqueQuiver4BowStunThresholdReduction"] = { affix = "", "50% reduced Enemy Stun Threshold with Bows", statOrder = { 1524 }, level = 1, group = "BowStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2410484864] = { "50% reduced Enemy Stun Threshold with Bows" }, } },
- ["MutatedUniqueBodyInt9MinionHasUnholyMight"] = { affix = "", "Minions have Unholy Might", statOrder = { 9312 }, level = 1, group = "MinionHasUnholyMight", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "minion" }, tradeHashes = { [1436083424] = { "Minions have Unholy Might" }, } },
- ["MutatedUniqueWand6WeaponTreeFishingWishEffectOfAncientFish"] = { affix = "", "(30-50)% increased effect of Wishes granted by Ancient Fish", statOrder = { 6619 }, level = 1, group = "WeaponTreeFishingWishEffectOfAncientFish", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [796951852] = { "(30-50)% increased effect of Wishes granted by Ancient Fish" }, } },
- ["MutatedUniqueRing24MaximumFireResist"] = { affix = "", "+3% to maximum Fire Resistance", statOrder = { 1628 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } },
- ["MutatedUniqueBodyStrDex4PhysicalDamageTakenAsChaos"] = { affix = "", "20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 1, group = "PhysicalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "chaos" }, tradeHashes = { [4129825612] = { "20% of Physical Damage from Hits taken as Chaos Damage" }, } },
- ["MutatedUniqueGlovesStrInt2LifeRegenerationRatePercentage"] = { affix = "", "(15-25)% increased Life Regeneration rate", statOrder = { 1582 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [44972811] = { "(15-25)% increased Life Regeneration rate" }, } },
- ["MutatedUniqueGlovesStrDex5VaalSkillDuration"] = { affix = "", "Vaal Skills have (20-40)% increased Skill Effect Duration", statOrder = { 3110 }, level = 1, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "vaal" }, tradeHashes = { [547412107] = { "Vaal Skills have (20-40)% increased Skill Effect Duration" }, } },
- ["MutatedUniqueGlovesDexInt6BlindEffect"] = { affix = "", "(20-30)% increased Blind Effect", statOrder = { 5224 }, level = 1, group = "BlindEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1585769763] = { "(20-30)% increased Blind Effect" }, } },
- ["MutatedUniqueTwoHandAxe8SpellDamage"] = { affix = "", "(120-140)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "mutatedunique", "damage", "caster" }, tradeHashes = { [2974417149] = { "(120-140)% increased Spell Damage" }, } },
- ["MutatedUniqueTwoHandSword7AccuracyRatingPerLevel"] = { affix = "", "+(6-8) to Accuracy Rating per Level", statOrder = { 4520 }, level = 1, group = "AccuracyRatingPerLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [539841130] = { "+(6-8) to Accuracy Rating per Level" }, } },
- ["MutatedUniqueShieldDex6ImpaleChanceForJewel"] = { affix = "", "(20-40)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 1, group = "ImpaleChanceForJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "attack" }, tradeHashes = { [3739863694] = { "(20-40)% chance to Impale Enemies on Hit with Attacks" }, } },
- ["MutatedUniqueRing26ManaPerLevel"] = { affix = "", "+2 Maximum Mana per Level", statOrder = { 8190 }, level = 1, group = "ManaPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [2563691316] = { "+2 Maximum Mana per Level" }, } },
- ["MutatedUniqueBelt12ConvertLightningDamageToChaos"] = { affix = "", "40% of Lightning Damage Converted to Chaos Damage", statOrder = { 1971 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "mutatedunique", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [4238266823] = { "40% of Lightning Damage Converted to Chaos Damage" }, } },
- ["MutatedUniqueRing27DebuffTimePassed"] = { affix = "", "Debuffs on you expire (-20-20)% slower", statOrder = { 6156 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1238227257] = { "Debuffs on you expire (-20-20)% slower" }, } },
- ["MutatedUniqueBodyStr5ExperienceIncrease"] = { affix = "", "5% increased Experience gain", statOrder = { 1608 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3666934677] = { "5% increased Experience gain" }, } },
- ["MutatedUniqueAmulet20CurseEffectTemporalChains"] = { affix = "", "(20-30)% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 1, group = "CurseEffectTemporalChains", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1662974426] = { "(20-30)% increased Temporal Chains Curse Effect" }, } },
- ["MutatedUniqueHelmetInt9WeaponTreeSupportImpendingDoom"] = { affix = "", "Socketed Gems are Supported by Level 30 Impending Doom", statOrder = { 316 }, level = 1, group = "WeaponTreeSupportImpendingDoom", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [3227145554] = { "Socketed Gems are Supported by Level 30 Impending Doom" }, } },
- ["MutatedUniqueRing32EnergyShieldAndMana"] = { affix = "", "+(0-60) to maximum Energy Shield", "+(0-60) to maximum Mana", statOrder = { 1563, 1584 }, level = 1, group = "EnergyShieldAndMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "defences", "energy_shield" }, tradeHashes = { [1050105434] = { "+(0-60) to maximum Mana" }, [3489782002] = { "+(0-60) to maximum Energy Shield" }, } },
- ["MutatedUniqueRing33MinionSkillManaCost"] = { affix = "", "(10-20)% reduced Mana Cost of Minion Skills", statOrder = { 9335 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "minion" }, tradeHashes = { [2969128501] = { "(10-20)% reduced Mana Cost of Minion Skills" }, } },
- ["MutatedUniqueStaff10DisplaySocketedSkillsChain"] = { affix = "", "Socketed Gems Chain 2 additional times", statOrder = { 545 }, level = 1, group = "DisplaySocketedSkillsChain", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique", "gem" }, tradeHashes = { [2788729902] = { "Socketed Gems Chain 2 additional times" }, } },
- ["MutatedUniqueBodyDexInt4NonCurseAuraDuration"] = { affix = "", "Non-Curse Aura Skills have (40-80)% increased Duration", statOrder = { 10054 }, level = 1, group = "NonCurseAuraDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [4152389562] = { "Non-Curse Aura Skills have (40-80)% increased Duration" }, } },
- ["MutatedUniqueDagger10ChaosDamageCanIgnite"] = { affix = "", "Your Chaos Damage can Ignite", statOrder = { 5006 }, level = 1, group = "ChaosDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "poison", "mutatedunique", "damage", "elemental", "fire", "chaos", "ailment" }, tradeHashes = { [1139878780] = { "Your Chaos Damage can Ignite" }, } },
- ["MutatedUniqueBodyStr6ChanceToAvoidProjectiles"] = { affix = "", "25% chance to avoid Projectiles", statOrder = { 4998 }, level = 1, group = "ChanceToAvoidProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3452269808] = { "25% chance to avoid Projectiles" }, } },
- ["MutatedUniqueOneHandAxe8LocalIncreasedAttackSpeed"] = { affix = "", "(30-50)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(30-50)% increased Attack Speed" }, } },
- ["MutatedUniqueHelmetDexInt6RetaliationSkillCooldownRecoveryRate"] = { affix = "", "Retaliation Skills have (25-35)% increased Cooldown Recovery Rate", statOrder = { 5894 }, level = 1, group = "RetaliationSkillCooldownRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1173860008] = { "Retaliation Skills have (25-35)% increased Cooldown Recovery Rate" }, } },
- ["MutatedUniqueAmluet24EldritchBattery"] = { affix = "", "Eldritch Battery", statOrder = { 10779 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } },
- ["MutatedUniqueShieldInt6EnchantmentBlind"] = { affix = "", "Enemies Blinded by you have 100% reduced Critical Strike Chance", statOrder = { 6409 }, level = 1, group = "EnchantmentBlind", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical" }, tradeHashes = { [4216282855] = { "Enemies Blinded by you have 100% reduced Critical Strike Chance" }, } },
- ["MutatedUniqueGlovesStrDex7SupportedByManaforgedArrows"] = { affix = "", "Socketed Gems are Supported by Level 5 Manaforged Arrows", statOrder = { 337 }, level = 1, group = "SupportedByManaforgedArrows", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [4022502578] = { "Socketed Gems are Supported by Level 5 Manaforged Arrows" }, } },
- ["MutatedUniqueTwoHandSword9LocalLightningDamage"] = { affix = "", "Adds 1 to 777 Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to 777 Lightning Damage" }, } },
- ["MutatedUniqueSceptre13ColdDamageOverTimeMultiplier"] = { affix = "", "+(30-40)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 1, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "mutatedunique", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(30-40)% to Cold Damage over Time Multiplier" }, } },
- ["MutatedUniqueOneHandAxe9MeleeHitsCannotBeEvadedWhileWieldingSword"] = { affix = "", "Your Melee Hits can't be Evaded while wielding a Sword", statOrder = { 9196 }, level = 1, group = "MeleeHitsCannotBeEvadedWhileWieldingSword", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2537902937] = { "Your Melee Hits can't be Evaded while wielding a Sword" }, } },
- ["MutatedUniqueOneHandSword15DualWieldingSpellBlockForJewel"] = { affix = "", "+10% Chance to Block Spell Damage while Dual Wielding", statOrder = { 1149 }, level = 1, group = "DualWieldingSpellBlockForJewel", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [138741818] = { "+10% Chance to Block Spell Damage while Dual Wielding" }, } },
- ["MutatedUniqueShieldInt7DodgeChancePerPowerCharge"] = { affix = "", "+4% chance to Suppress Spell Damage per Power Charge", statOrder = { 10172 }, level = 1, group = "DodgeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1309947938] = { "+4% chance to Suppress Spell Damage per Power Charge" }, } },
- ["MutatedUniqueOneHandMace10LocalCriticalStrikeChance"] = { affix = "", "(60-100)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "critical" }, tradeHashes = { [2375316951] = { "(60-100)% increased Critical Strike Chance" }, } },
- ["MutatedUniqueWand14MinionPhysicalDamageAddedAsFire"] = { affix = "", "Minions gain (20-40)% of Physical Damage as Extra Fire Damage", statOrder = { 9329 }, level = 1, group = "MinionPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "fire", "minion" }, tradeHashes = { [3217428772] = { "Minions gain (20-40)% of Physical Damage as Extra Fire Damage" }, } },
- ["MutatedUniqueHelmStrInt7LifeRegenerationPercentAppliesToEnergyShieldWithNoCorruptedItems"] = { affix = "", "(15-20)% of Life Regeneration also applies to Energy Shield if no Equipped Items are Corrupted", statOrder = { 10632 }, level = 1, group = "LifeRegenerationPercentAppliesToEnergyShieldWithNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [1750141122] = { "(15-20)% of Life Regeneration also applies to Energy Shield if no Equipped Items are Corrupted" }, } },
- ["MutatedUniqueGlovesInt4GainManaCostReductionOnManaSpent"] = { affix = "", "50% reduced Mana Cost of Skills for 2 seconds after Spending a total of 800 Mana", statOrder = { 8171 }, level = 1, group = "GainManaCostReductionOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [1375431760] = { "50% reduced Mana Cost of Skills for 2 seconds after Spending a total of 800 Mana" }, } },
- ["MutatedUniqueBelt7GainSoulEaterStackOnHit"] = { affix = "", "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0.25 seconds", statOrder = { 6828 }, level = 1, group = "GainSoulEaterStackOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2103621252] = { "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0.25 seconds" }, } },
- ["MutatedUniqueShieldStrDex7LocalGemsSocketedHaveNoAttributeRequirements"] = { affix = "", "Ignore Attribute Requirements of Socketed Gems", statOrder = { 7942 }, level = 1, group = "LocalGemsSocketedHaveNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [3850932596] = { "Ignore Attribute Requirements of Socketed Gems" }, } },
- ["MutatedUniqueRing19EnemiesShockedByHitsAreDebilitated"] = { affix = "", "Enemies Shocked by you are Debilitated", statOrder = { 6402 }, level = 25, group = "EnemiesShockedByHitsAreDebilitated", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2983226297] = { "Enemies Shocked by you are Debilitated" }, } },
- ["MutatedUniqueShieldInt1NonDamagingAilmentWithCritsEffectPer100MaxLife"] = { affix = "", "2% increased Effect of Non-Damaging Ailments you inflict with Critical Strikes per 100 Player Maximum Life", statOrder = { 9497 }, level = 1, group = "NonDamagingAilmentWithCritsEffectPer100MaxLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical", "ailment" }, tradeHashes = { [1572854306] = { "2% increased Effect of Non-Damaging Ailments you inflict with Critical Strikes per 100 Player Maximum Life" }, } },
- ["MutatedUniqueBodyInt21MaximumEnergyShieldIsEqualToPercentOfMaximumLife"] = { affix = "", "Your Maximum Energy Shield is Equal to 40% of Your Maximum Life", statOrder = { 9139 }, level = 1, group = "MaximumEnergyShieldIsEqualToPercentOfMaximumLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [4053338379] = { "Your Maximum Energy Shield is Equal to 40% of Your Maximum Life" }, } },
- ["MutatedUniqueBodyDex6ProjectileSpeedPercentPerEvasionRatingUpToCap"] = { affix = "", "1% increased Projectile Speed per 600 Evasion Rating, up to 75%", statOrder = { 9743 }, level = 1, group = "ProjectileSpeedPercentPerEvasionRatingUpToCap", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [1382953917] = { "1% increased Projectile Speed per 600 Evasion Rating, up to 75%" }, } },
- ["MutatedUniqueWand2LifeAndEnergyShieldDegenPerMinion"] = { affix = "", "Lose 0.5% Life and Energy Shield per Second per Minion", statOrder = { 7344 }, level = 1, group = "LifeAndEnergyShieldDegenPerMinion", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield", "minion" }, tradeHashes = { [1383458163] = { "Lose 0.5% Life and Energy Shield per Second per Minion" }, } },
- ["MutatedUniqueBow6ChinsolDamageAgainstEnemiesOutsideCloseRange"] = { affix = "", "50% more Damage with Arrow Hits not at Close Range", statOrder = { 2448 }, level = 1, group = "ChinsolDamageAgainstEnemiesOutsideCloseRange", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, tradeHashes = { [402730593] = { "50% more Damage with Arrow Hits not at Close Range" }, } },
- ["MutatedUniqueJewel125GrantsAllBonusesOfUnallocatedNotablesInRadius"] = { affix = "", "Grants all bonuses of Unallocated Notable Passive Skills in Radius", statOrder = { 7961 }, level = 1, group = "GrantsAllBonusesOfUnallocatedNotablesInRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3802517517] = { "" }, [3530244373] = { "Grants all bonuses of Unallocated Notable Passive Skills in Radius" }, } },
- ["MutatedUniqueJewel125AllocatedNotablePassiveSkillsInRadiusDoNothing"] = { affix = "", "Allocated Notable Passive Skills in Radius grant nothing", statOrder = { 7959 }, level = 1, group = "AllocatedNotablePassiveSkillsInRadiusDoNothing", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [680202695] = { "Allocated Notable Passive Skills in Radius grant nothing" }, } },
- ["MutatedUniqueJewel6KeystoneCanBeAllocatedInMassiveRadiusWithoutBeingConnected"] = { affix = "", "Keystone Passive Skills in Radius can be Allocated without being connected to your tree", "Passage", statOrder = { 10714, 10714.1 }, level = 1, group = "KeystoneCanBeAllocatedInMassiveRadiusWithoutBeingConnected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1211779989] = { "Keystone Passive Skills in Radius can be Allocated without being connected to your tree", "Passage" }, [3802517517] = { "" }, } },
- ["MutatedUniqueJewel177ModifiersToSpellSuppressionAlsoApplytoChanceToDefendPercentArmor"] = { affix = "", "Modifiers to Chance to Suppress Spell Damage also apply to Chance to Defend with 200% of Armour at 50% of their Value", statOrder = { 10182 }, level = 1, group = "ModifiersToSpellSuppressionAlsoApplytoChanceToDefendPercentArmor", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [860891010] = { "Modifiers to Chance to Suppress Spell Damage also apply to Chance to Defend with 200% of Armour at 50% of their Value" }, } },
- ["MutatedUniqueJewel3GainRandomRareMonsterModOnKillWhileNoNotablesAllocatedInRadius"] = { affix = "", "If no Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 3062 }, level = 1, group = "GainRandomRareMonsterModOnKillWhileNoNotablesAllocatedInRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3802517517] = { "" }, [4151744887] = { "If no Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds" }, } },
- ["MutatedUniqueJewel3GainRandomRareMonsterModOnKillWhileXSmallPassivesAllocatedInRadius"] = { affix = "", "With (8-12) Small Passives Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 3063 }, level = 1, group = "GainRandomRareMonsterModOnKillWhileXSmallPassivesAllocatedInRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [370099215] = { "With (8-12) Small Passives Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds" }, [3802517517] = { "" }, } },
- ["MutatedUniqueJewel5EvasionModifiersInRadiusAreTransformedToArmour"] = { affix = "", "Increases and Reductions to Evasion Rating in Radius are Transformed to apply to Armour", statOrder = { 3071 }, level = 1, group = "EvasionModifiersInRadiusAreTransformedToArmour", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [3802517517] = { "" }, [2548156334] = { "Increases and Reductions to Evasion Rating in Radius are Transformed to apply to Armour" }, } },
- ["MutatedUniqueBelt13NearbyEnemiesAreUnnerved"] = { affix = "", "Nearby Enemies are Unnerved", statOrder = { 9453 }, level = 1, group = "NearbyEnemiesAreUnnerved", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1439308328] = { "Nearby Enemies are Unnerved" }, } },
- ["MutatedUniqueBodyDex8SuppressionPreventionIfYouHaventSuppressedRecently"] = { affix = "", "Prevent +35% of Suppressed Spell Damage if you have not Suppressed Spell Damage Recently", statOrder = { 10139 }, level = 1, group = "SuppressionPreventionIfYouHaventSuppressedRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1409317489] = { "Prevent +35% of Suppressed Spell Damage if you have not Suppressed Spell Damage Recently" }, } },
- ["MutatedUniqueBodyDex8ChanceToSuppressIfYouHaveSuppressedRecently"] = { affix = "", "+(20-30)% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently", statOrder = { 10183 }, level = 1, group = "ChanceToSuppressIfYouHaveSuppressedRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3273678959] = { "+(20-30)% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently" }, } },
- ["MutatedUniqueHelmetStrInt6ChanceToCastOnManaSpent"] = { affix = "", "50% chance to Trigger Socketed Spells when you Spend at least 200 Life on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown", statOrder = { 760, 760.1 }, level = 1, group = "ChanceToCastOnLifeSpent", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique", "caster", "gem" }, tradeHashes = { [2827553480] = { "50% chance to Trigger Socketed Spells when you Spend at least 0 Life on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, [1178126501] = { "0% chance to Trigger Socketed Spells when you Spend at least 200 Life on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, } },
- ["MutatedUniqueBootsInt7PowerChargeOnCriticalStrikeChance"] = { affix = "", "+(3-5)% to Critical Strike Multiplier per Power Charge", statOrder = { 3287 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "critical" }, tradeHashes = { [4164870816] = { "+(3-5)% to Critical Strike Multiplier per Power Charge" }, } },
- ["MutatedUniqueBodyInt3BloodMagic"] = { affix = "", "Blood Magic", statOrder = { 10771 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } },
- ["MutatedUniqueRing16DisablesOtherRingSlot"] = { affix = "", "Can't use other Rings", statOrder = { 1610 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [64726306] = { "Can't use other Rings" }, } },
- ["MutatedUniqueBodyStrInt1ChaosResistance"] = { affix = "", "-(17-13)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "-(17-13)% to Chaos Resistance" }, } },
- ["MutatedUniqueBow3ChaosDamageAsPortionOfDamage"] = { affix = "", "Gain (67-83)% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 1, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "mutatedunique", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (67-83)% of Physical Damage as Extra Chaos Damage" }, } },
- ["MutatedUniqueStaff1SearingBondTotemsAllowed"] = { affix = "", "+(3-5) to maximum number of Summoned Searing Bond Totems", statOrder = { 9525 }, level = 1, group = "SearingBondTotemsAllowed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2674643140] = { "+(3-5) to maximum number of Summoned Searing Bond Totems" }, } },
- ["MutatedUniqueRing5StunRecovery"] = { affix = "", "(200-300)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2511217560] = { "(200-300)% increased Stun and Block Recovery" }, } },
- ["MutatedUniqueHelmetDex2ConvertColdToFire"] = { affix = "", "50% of Cold Damage Converted to Fire Damage", statOrder = { 1973 }, level = 1, group = "ConvertColdToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire", "cold" }, tradeHashes = { [723832351] = { "50% of Cold Damage Converted to Fire Damage" }, } },
- ["MutatedUniqueBootsStr1CurseImmunity"] = { affix = "", "You are Immune to Curses", statOrder = { 7223 }, level = 1, group = "CurseImmunity", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [116621037] = { "You are Immune to Curses" }, } },
- ["MutatedUniqueGlovesStrDex2IncreasedGold"] = { affix = "", "15% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7308 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [253956903] = { "15% increased Quantity of Gold Dropped by Slain Enemies" }, } },
- ["MutatedUniqueShieldStr1MaximumLifeAddedAsArmour"] = { affix = "", "Gain (20-25)% of Maximum Life as Extra Armour", statOrder = { 9163 }, level = 1, group = "MaximumLifeAddedAsArmour", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [4118694562] = { "Gain (20-25)% of Maximum Life as Extra Armour" }, } },
- ["MutatedUniqueShieldStrInt1EnergyShieldIncreasedByChaosResistance"] = { affix = "", "Maximum Energy Shield is increased by Chaos Resistance", statOrder = { 6439 }, level = 1, group = "EnergyShieldIncreasedByChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [1301612627] = { "Maximum Energy Shield is increased by Chaos Resistance" }, } },
- ["MutatedUniqueHelmetInt4SupportedByFrigidBond"] = { affix = "", "Socketed Gems are Supported by Level 25 Frigid Bond", statOrder = { 292 }, level = 1, group = "SupportedByFrigidBond", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [3031999964] = { "Socketed Gems are Supported by Level 25 Frigid Bond" }, } },
- ["MutatedUniqueGlovesStr2StrengthRequirementAndTripleDamageChance"] = { affix = "", "+700 Strength Requirement", "(10-15)% chance to deal Triple Damage", statOrder = { 1090, 5005 }, level = 1, group = "StrengthRequirementAndTripleDamageChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2445189705] = { "(10-15)% chance to deal Triple Damage" }, [2833226514] = { "+700 Strength Requirement" }, } },
- ["MutatedUniqueBodyInt4GainManaAsExtraEnergyShield"] = { affix = "", "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2180 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2663376056] = { "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield" }, } },
- ["MutatedUniqueHelmetDex5LifeReservationEfficiencyCopy"] = { affix = "", "30% increased Life Reservation Efficiency of Skills", statOrder = { 2231 }, level = 1, group = "LifeReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [635485889] = { "30% increased Life Reservation Efficiency of Skills" }, } },
- ["MutatedUniqueHelmetStr3BleedDotMultiplier"] = { affix = "", "+(50-75)% to Damage over Time Multiplier for Bleeding", statOrder = { 1253 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "mutatedunique", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1423749435] = { "+(50-75)% to Damage over Time Multiplier for Bleeding" }, } },
- ["MutatedUniqueHelmetStrDex4SupportedBySadism"] = { affix = "", "Socketed Gems are Supported by Level 30 Sadism", statOrder = { 378 }, level = 1, group = "SupportedBySadism", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [794471597] = { "Socketed Gems are Supported by Level 30 Sadism" }, } },
- ["MutatedUniqueOneHandSword3TrapThrowSpeed"] = { affix = "", "(20-40)% increased Trap Throwing Speed", statOrder = { 1932 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [118398748] = { "(20-40)% increased Trap Throwing Speed" }, } },
- ["MutatedUniqueBelt5IncreasedEnergyShieldPerPowerCharge"] = { affix = "", "(4-6)% increased Energy Shield per Power Charge", statOrder = { 6448 }, level = 1, group = "IncreasedEnergyShieldPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2189382346] = { "(4-6)% increased Energy Shield per Power Charge" }, } },
- ["MutatedUniqueSceptre3DamagePerZombie"] = { affix = "", "(40-60)% increased Damage per Raised Zombie", statOrder = { 6023 }, level = 1, group = "DamagePerZombie", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, tradeHashes = { [3868443508] = { "(40-60)% increased Damage per Raised Zombie" }, } },
- ["MutatedUniqueRing15ColdDamageTakenAsFire"] = { affix = "", "40% of Cold Damage from Hits taken as Fire Damage", statOrder = { 3183 }, level = 14, group = "ColdDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "cold" }, tradeHashes = { [1189760108] = { "40% of Cold Damage from Hits taken as Fire Damage" }, } },
- ["MutatedUniqueBodyStr3WitheredEffect"] = { affix = "", "(20-40)% increased Effect of Withered", statOrder = { 10624 }, level = 1, group = "WitheredEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [2545584555] = { "(20-40)% increased Effect of Withered" }, } },
- ["MutatedUniqueBodyStrDex1MaximumRage"] = { affix = "", "+(8-12) to Maximum Rage", statOrder = { 9784 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1181501418] = { "+(8-12) to Maximum Rage" }, } },
- ["MutatedUniqueBodyStrDex2ChaosDamageTakenAsLightning"] = { affix = "", "50% of Chaos Damage taken as Lightning Damage", statOrder = { 5758 }, level = 1, group = "ChaosDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2313674117] = { "50% of Chaos Damage taken as Lightning Damage" }, } },
- ["MutatedUniqueSceptre6ManaPerStrengthIfInMainHand"] = { affix = "", "1% increased maximum Mana per 18 Strength when in Main Hand", statOrder = { 9171 }, level = 1, group = "ManaPerStrengthIfInMainHand", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [3548542256] = { "1% increased maximum Mana per 18 Strength when in Main Hand" }, } },
- ["MutatedUniqueSceptre6EnergyShieldPerStrengthIfInOffHand"] = { affix = "", "1% increased maximum Energy Shield per 25 Strength when in Off Hand", statOrder = { 6431 }, level = 1, group = "EnergyShieldPerStrengthIfInOffHand", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [699783004] = { "1% increased maximum Energy Shield per 25 Strength when in Off Hand" }, } },
- ["MutatedUniqueGlovesStrDex4AdrenalineOnVaalSkillUse"] = { affix = "", "You gain Adrenaline for 3 seconds on using a Vaal Skill", statOrder = { 2924 }, level = 1, group = "AdrenalineOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3856092403] = { "You gain Adrenaline for 3 seconds on using a Vaal Skill" }, } },
- ["MutatedUniqueBodyStrInt5LightRadiusAppliesToAccuracy"] = { affix = "", "Increases and Reductions to Light Radius also apply to Accuracy", statOrder = { 7434 }, level = 1, group = "LightRadiusAppliesToAccuracy", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack" }, tradeHashes = { [411986876] = { "Increases and Reductions to Light Radius also apply to Accuracy" }, } },
- ["MutatedUniqueBow11SupportedByPrismaticBurst"] = { affix = "", "Socketed Gems are Supported by Level 25 Prismatic Burst", statOrder = { 362 }, level = 1, group = "SupportedByPrismaticBurst", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [2910545715] = { "Socketed Gems are Supported by Level 25 Prismatic Burst" }, } },
- ["MutatedUniqueBootsStr2Strength"] = { affix = "", "+(150-200) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [4080418644] = { "+(150-200) to Strength" }, } },
- ["MutatedUniqueOneHandSword9AttackSpeedPer200Accuracy"] = { affix = "", "1% increased Attack Speed per 150 Accuracy Rating", statOrder = { 4243 }, level = 1, group = "AttackSpeedPer200Accuracy", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [2937694716] = { "1% increased Attack Speed per 150 Accuracy Rating" }, } },
- ["MutatedUniqueWand7AddedChaosDamageFromManaCost"] = { affix = "", "Skills gain Added Chaos Damage equal to (20-25)% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", statOrder = { 4539 }, level = 1, group = "AddedChaosDamageFromManaCost", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [820155465] = { "Skills gain Added Chaos Damage equal to (20-25)% of Mana Cost, if Mana Cost is not higher than the maximum you could spend" }, } },
- ["MutatedUniqueWand8SupportedByAwakenedSpellCascade"] = { affix = "", "Socketed Gems are Supported by Level 1 Greater Spell Cascade", statOrder = { 302 }, level = 1, group = "SupportedByAwakenedSpellCascade", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [2292610865] = { "Socketed Gems are Supported by Level 1 Greater Spell Cascade" }, } },
- ["MutatedUniqueHelmetInt8ManaCostReduction"] = { affix = "", "(20-30)% increased Mana Cost of Skills", statOrder = { 1888 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [474294393] = { "(20-30)% increased Mana Cost of Skills" }, } },
- ["MutatedUniqueStaff11AnimalCharmMineAuraEffect"] = { affix = "", "(60-100)% increased Effect of Auras from Mines", statOrder = { 9223 }, level = 1, group = "AnimalCharmMineAuraEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2121424530] = { "(60-100)% increased Effect of Auras from Mines" }, } },
- ["MutatedUniqueStaff12AreaOfEffectPer20Int"] = { affix = "", "1% increased Area of Effect per 20 Intelligence", statOrder = { 2548 }, level = 1, group = "AreaOfEffectPer20Int", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1307972622] = { "1% increased Area of Effect per 20 Intelligence" }, } },
- ["MutatedUniqueGlovesStrInt4PercentageIntelligence"] = { affix = "", "(12-16)% increased Intelligence", statOrder = { 1191 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [656461285] = { "(12-16)% increased Intelligence" }, } },
- ["MutatedUniqueRing34GainPowerChargeOnKillingFrozenEnemy"] = { affix = "", "Gain a Power Charge on Killing a Frozen Enemy", statOrder = { 1829 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [3607154250] = { "Gain a Power Charge on Killing a Frozen Enemy" }, } },
- ["MutatedUniqueHelmetInt10AdditiveSpellModifiersApplyToRetaliationAttackDamage"] = { affix = "", "Increases and Reductions to Spell Damage also apply to Attack Damage with Retaliation Skills at 200% of their value", statOrder = { 2694 }, level = 1, group = "AdditiveSpellModifiersApplyToRetaliationAttackDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack" }, tradeHashes = { [4171078509] = { "Increases and Reductions to Spell Damage also apply to Attack Damage with Retaliation Skills at 200% of their value" }, } },
- ["MutatedUniqueBelt18ManaRecoveryRate"] = { affix = "", "50% reduced Mana Recovery rate", statOrder = { 1591 }, level = 1, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [3513180117] = { "50% reduced Mana Recovery rate" }, } },
- ["MutatedUniqueTwoHandAxe14AttackAdditionalProjectiles"] = { affix = "", "Attacks fire 3 additional Projectiles", statOrder = { 4201 }, level = 1, group = "AttackAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack" }, tradeHashes = { [1195705739] = { "Attacks fire 3 additional Projectiles" }, } },
- ["MutatedUniqueHelmetInt11PhysicalDamageRemovedFromManaBeforeLife"] = { affix = "", "30% of Physical Damage is taken from Mana before Life", statOrder = { 4174 }, level = 1, group = "PhysicalDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "mana", "physical" }, tradeHashes = { [3743438423] = { "30% of Physical Damage is taken from Mana before Life" }, } },
- ["MutatedUniqueAmulet31LightRadius"] = { affix = "", "(30-50)% increased Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1263695895] = { "(30-50)% increased Light Radius" }, } },
- ["MutatedUniqueBodyDex9WitherOnHitChanceVsCursedEnemies"] = { affix = "", "(15-20)% chance to inflict Withered for 2 seconds on Hit against Cursed Enemies", statOrder = { 10625 }, level = 1, group = "WitherOnHitChanceVsCursedEnemies", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [465526645] = { "(15-20)% chance to inflict Withered for 2 seconds on Hit against Cursed Enemies" }, } },
- ["MutatedUniqueBodyDexInt5TrapSkillCooldownCount"] = { affix = "", "Skills which Throw Traps have +2 Cooldown Uses", statOrder = { 10416 }, level = 1, group = "TrapSkillCooldownCount", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4001105802] = { "Skills which Throw Traps have +2 Cooldown Uses" }, } },
- ["MutatedUniqueOneHandSword20LocalWeaponMoreIgniteDamage"] = { affix = "", "Ignites inflicted with this Weapon deal 100% more Damage", statOrder = { 7948 }, level = 1, group = "LocalWeaponMoreIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "attack", "ailment" }, tradeHashes = { [3165905801] = { "Ignites inflicted with this Weapon deal 100% more Damage" }, } },
- ["MutatedUniqueRing44ProjectileSpeed"] = { affix = "", "(-10-10)% reduced Projectile Speed", statOrder = { 1801 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [3759663284] = { "(-10-10)% reduced Projectile Speed" }, } },
- ["MutatedUniqueTwoHandAxe1MaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "mutatedunique" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } },
- ["MutatedUniqueBodyDex1SpellDamageSuppressed"] = { affix = "", "Prevent +(8-10)% of Suppressed Spell Damage", statOrder = { 1146 }, level = 1, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4116705863] = { "Prevent +(8-10)% of Suppressed Spell Damage" }, } },
- ["MutatedUniqueHelmetInt2GlobalCooldownRecovery"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } },
- ["MutatedUniqueAmulet8ChaosResistance"] = { affix = "", "+(-13-13)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(-13-13)% to Chaos Resistance" }, } },
- ["MutatedUniqueBelt2FlaskEffect"] = { affix = "", "Flasks applied to you have (10-15)% increased Effect", statOrder = { 2747 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, tradeHashes = { [114734841] = { "Flasks applied to you have (10-15)% increased Effect" }, } },
- ["MutatedUniqueShieldStrInt2SocketedGemQuality"] = { affix = "", "+(20-30)% to Quality of Socketed Gems", statOrder = { 209 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [3828613551] = { "+(20-30)% to Quality of Socketed Gems" }, } },
- ["MutatedUniqueBodyInt1SupportedByLivingLightning"] = { affix = "", "Socketed Gems are Supported by Level 20 Living Lightning", statOrder = { 332 }, level = 1, group = "SupportedByLivingLightning", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4096329121] = { "Socketed Gems are Supported by Level 20 Living Lightning" }, } },
- ["MutatedUniqueBow5UnholyMightOnCritChance"] = { affix = "", "25% chance to gain Unholy Might for 4 seconds on Critical Strike", statOrder = { 5705 }, level = 1, group = "UnholyMightOnCritChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [2807857784] = { "25% chance to gain Unholy Might for 4 seconds on Critical Strike" }, } },
- ["MutatedUniqueShieldStrInt4DamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6026 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } },
- ["MutatedUniqueGlovesDexInt3HeraldOfThunderBuffEffect"] = { affix = "", "Herald of Thunder has 100% increased Buff Effect", statOrder = { 7130 }, level = 1, group = "HeraldOfThunderBuffEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3814686091] = { "Herald of Thunder has 100% increased Buff Effect" }, } },
- ["MutatedUniqueWand3AreaOfEffectPerPowerCharge"] = { affix = "", "3% increased Area of Effect per Power Charge", statOrder = { 2134 }, level = 1, group = "AreaOfEffectPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3094501804] = { "3% increased Area of Effect per Power Charge" }, } },
- ["MutatedUniqueRing12AdditionalVaalSoulOnKill"] = { affix = "", "(20-40)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3109 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "vaal" }, tradeHashes = { [1962922582] = { "(20-40)% chance to gain an additional Vaal Soul on Kill" }, } },
- ["MutatedUniqueBelt6TrapAreaOfEffect"] = { affix = "", "Skills used by Traps have (40-60)% increased Area of Effect", statOrder = { 3484 }, level = 47, group = "TrapAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4050593908] = { "Skills used by Traps have (40-60)% increased Area of Effect" }, } },
- ["MutatedUniqueHelmetDexInt3MaximumLifeConvertedToEnergyShield"] = { affix = "", "(15-20)% of Maximum Life Converted to Energy Shield", statOrder = { 9165 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [2458962764] = { "(15-20)% of Maximum Life Converted to Energy Shield" }, } },
- ["MutatedUniqueGlovesStr4SapChance"] = { affix = "", "30% chance to Sap Enemies", statOrder = { 2039 }, level = 1, group = "SapChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [532324017] = { "30% chance to Sap Enemies" }, } },
- ["MutatedUniqueQuiver10ChanceToAggravateBleed"] = { affix = "", "(30-50)% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 1, group = "ChanceToAggravateBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "mutatedunique", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "(30-50)% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
- ["MutatedUniqueOneHandSword21IncreasedWeaponElementalDamagePercent"] = { affix = "", "(80-120)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(80-120)% increased Elemental Damage with Attack Skills" }, } },
- ["MutatedUniqueBodyDexInt6PurityOfLightningNoReservation"] = { affix = "", "Purity of Lightning has no Reservation", statOrder = { 9775 }, level = 1, group = "PurityOfLightningNoReservation", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura" }, tradeHashes = { [2308225900] = { "Purity of Lightning has no Reservation" }, } },
- ["MutatedUniqueWand18SpellAddedPhysicalDamagePerLevel"] = { affix = "", "Adds 3 to 5 Physical Damage to Spells per 3 Player Levels", statOrder = { 1275 }, level = 1, group = "SpellAddedPhysicalDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "caster" }, tradeHashes = { [1092545959] = { "Adds 3 to 5 Physical Damage to Spells per 3 Player Levels" }, } },
- ["MutatedUniqueBodyStr9SpellBlockPer50Strength"] = { affix = "", "+1% Chance to Block Spell Damage per 50 Strength", statOrder = { 1158 }, level = 1, group = "SpellBlockPer50Strength", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [1114429046] = { "+1% Chance to Block Spell Damage per 50 Strength" }, } },
- ["MutatedUniqueBodyStr9AttackBlockLuck"] = { affix = "", "Chance to Block Attack Damage is Unlucky", statOrder = { 4996 }, level = 1, group = "AttackBlockLuck", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [3776150692] = { "Chance to Block Attack Damage is Unlucky" }, } },
- ["MutatedUniqueQuiver15SupportedByArrowNova"] = { affix = "", "Socketed Gems are Supported by Level 25 Arrow Nova", statOrder = { 366 }, level = 1, group = "SupportedByArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1331336999] = { "Socketed Gems are Supported by Level 25 Arrow Nova" }, } },
- ["MutatedUniqueAmulet57MovementVelocityPerFrenzyCharge"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1807 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [1541516339] = { "2% increased Movement Speed per Frenzy Charge" }, } },
- ["MutatedUniqueRing63MaximumLifeIncreasePercent"] = { affix = "", "(40-50)% reduced maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [983749596] = { "(40-50)% reduced maximum Life" }, } },
- ["MutatedUniqueRing64GlobalEnergyShieldPercent"] = { affix = "", "(40-50)% reduced maximum Energy Shield", statOrder = { 1566 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(40-50)% reduced maximum Energy Shield" }, } },
- ["MutatedUniqueShieldStrInt13LocalMaximumQuality"] = { affix = "", "+20% to Maximum Quality", statOrder = { 8001 }, level = 1, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2039822488] = { "+20% to Maximum Quality" }, } },
- ["MutatedUniqueRing75CurseDuration"] = { affix = "", "Curse Skills have (-30-30)% reduced Skill Effect Duration", statOrder = { 6005 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have (-30-30)% reduced Skill Effect Duration" }, } },
- ["MutatedUniqueBodyStrInt15NonChaosDamageBypassEnergyShieldPercent"] = { affix = "", "40% of Non-Chaos Damage taken bypasses Energy Shield", statOrder = { 649 }, level = 1, group = "NonChaosDamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3379724776] = { "40% of Non-Chaos Damage taken bypasses Energy Shield" }, } },
- ["MutatedUniqueSceptre25MinionCriticalStrikeMultiplier"] = { affix = "", "Minions have +(20-40)% to Critical Strike Multiplier", statOrder = { 9294 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(20-40)% to Critical Strike Multiplier" }, } },
- ["MutatedUniqueBodyStr13MaximumEnergyShieldIfNoDefenceModifiersOnEquipment"] = { affix = "", "+(1200-1800) to maximum Energy Shield if there are no Defence Modifiers on other Equipped Items", statOrder = { 9136 }, level = 1, group = "MaximumEnergyShieldIfNoDefenceModifiersOnEquipment", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [2236622399] = { "+(1200-1800) to maximum Energy Shield if there are no Defence Modifiers on other Equipped Items" }, } },
- ["MutatedUniqueGlovesInt3PunishmentOnHit"] = { affix = "", "Curse Enemies with Punishment on Hit", statOrder = { 6007 }, level = 1, group = "PunishmentOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [2950697759] = { "Curse Enemies with Punishment on Hit" }, } },
- ["MutatedUniqueBodyInt20MinionLeechEnergyShieldFromElementalDamage"] = { affix = "", "Minions Leech 5% of Elemental Damage as Energy Shield", statOrder = { 9306 }, level = 1, group = "MinionLeechEnergyShieldFromElementalDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "minion" }, tradeHashes = { [2809815072] = { "Minions Leech 5% of Elemental Damage as Energy Shield" }, } },
- ["MutatedUniqueSceptre10PowerChargeOnStunUniqueSceptre10"] = { affix = "", "Gain Chaotic Might for 4 seconds on Critical Strike", statOrder = { 5689 }, level = 1, group = "ChaoticMightOnCritChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "critical" }, tradeHashes = { [1183009081] = { "Gain Chaotic Might for 4 seconds on Critical Strike" }, } },
- ["MutatedUniqueGlovesStr7CannotBeIgnitedAtMaxEnduranceCharges"] = { affix = "", "Cannot be Ignited while at maximum Endurance Charges", statOrder = { 5410 }, level = 1, group = "CannotBeIgnitedAtMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire" }, tradeHashes = { [2420971151] = { "Cannot be Ignited while at maximum Endurance Charges" }, } },
- ["MutatedUniqueBootsDex5ActionSpeedReduction"] = { affix = "", "15% increased Action Speed", statOrder = { 4532 }, level = 1, group = "ActionSpeedReduction", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [2878959938] = { "15% increased Action Speed" }, } },
- ["MutatedUniqueAmulet76GainMissingManaPercentWhenHit"] = { affix = "", "Gain (15-30)% of Missing Unreserved Mana before being Hit by an Enemy", statOrder = { 9377 }, level = 62, group = "GainMissingManaPercentWhenHit", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [1441107401] = { "Gain (15-30)% of Missing Unreserved Mana before being Hit by an Enemy" }, } },
- ["MutatedUniqueBootsStrInt3MovementVelocityWhileIgnited"] = { affix = "", "(25-50)% increased Movement Speed while Ignited", statOrder = { 2810 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [581625445] = { "(25-50)% increased Movement Speed while Ignited" }, } },
- ["MutatedUniqueClaw7RecoverEnergyShieldFromEvasionOnBlock"] = { affix = "", "Recover Energy Shield equal to 1% of Evasion Rating when you Block", statOrder = { 6428 }, level = 1, group = "RecoverEnergyShieldFromEvasionOnBlock", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [3495989808] = { "Recover Energy Shield equal to 1% of Evasion Rating when you Block" }, } },
- ["MutatedUniqueBodyInt8ProfaneGroundInsteadOfConsecratedGround"] = { affix = "", "Create Profane Ground instead of Consecrated Ground", statOrder = { 5913 }, level = 1, group = "ProfaneGroundInsteadOfConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1243613350] = { "Create Profane Ground instead of Consecrated Ground" }, } },
- ["MutatedUniqueBelt7RareAndUniqueEnemiesHaveIcons"] = { affix = "", "Rare and Unique Enemies within 120 metres have Minimap Icons", statOrder = { 10582 }, level = 1, group = "RareAndUniqueEnemiesHaveIcons", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2543266731] = { "Rare and Unique Enemies within 120 metres have Minimap Icons" }, } },
- ["MutatedUniqueHelmetStr6ZombiesLeechEnergyShieldToYouAt1000Intelligence"] = { affix = "", "With at least 1000 Intelligence, (1.5-2)% of Damage dealt by your Raised Zombies is Leeched to you as Energy Shield", statOrder = { 10752 }, level = 1, group = "ZombiesLeechEnergyShieldToYouAt1000Intelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "minion" }, tradeHashes = { [1919087214] = { "With at least 1000 Intelligence, (1.5-2)% of Damage dealt by your Raised Zombies is Leeched to you as Energy Shield" }, } },
- ["MutatedUniqueHelmetStr6AdditionalZombiesPerXIntelligence"] = { affix = "", "+1 to maximum number of Raised Zombies per 500 Intelligence", statOrder = { 9538 }, level = 1, group = "AdditionalZombiesPerXIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [900892599] = { "+1 to maximum number of Raised Zombies per 500 Intelligence" }, } },
- ["MutatedUniqueBelt43MagicUtilityFlasksAlwaysApplyRightmost"] = { affix = "", "Rightmost (2-4) Magic Utility Flasks constantly apply their Flask Effects to you", statOrder = { 4427 }, level = 56, group = "MagicUtilityFlasksAlwaysApplyRightmost", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, tradeHashes = { [2651470813] = { "Rightmost (2-4) Magic Utility Flasks constantly apply their Flask Effects to you" }, } },
- ["MutatedUniqueUniqueBelt52AvoidPoison"] = { affix = "", "(40-60)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(40-60)% chance to Avoid being Poisoned" }, } },
- ["MutatedUniqueUniqueBelt52ChaosDamage"] = { affix = "", "(30-50)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos" }, tradeHashes = { [736967255] = { "(30-50)% increased Chaos Damage" }, } },
- ["MutatedUniqueUniqueBelt55FireDamage"] = { affix = "", "(30-50)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-50)% increased Fire Damage" }, } },
- ["MutatedUniqueUniqueBelt55IgniteDurationOnYou"] = { affix = "", "(40-60)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(40-60)% reduced Ignite Duration on you" }, } },
- ["MutatedUniqueUniqueBow27ImpalesChanceToLastAdditionalHit"] = { affix = "", "(10-15)% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit", statOrder = { 7261 }, level = 1, group = "ChanceImpaleLastsAdditionalHits", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical" }, tradeHashes = { [220868259] = { "(10-15)% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit" }, } },
- ["MutatedUniqueUniqueBow27AttackSpeed"] = { affix = "", "(14-18)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(14-18)% increased Attack Speed" }, } },
- ["MutatedUniqueUniqueBow26LocalCriticalStrikeChance"] = { affix = "", "(30-34)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-34)% increased Critical Strike Chance" }, } },
- ["MutatedUniqueUniqueBow26FireDamageOverTimeMultiplier"] = { affix = "", "+(28-35)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(28-35)% to Fire Damage over Time Multiplier" }, } },
- ["MutatedUniqueUniqueTwoHandSword18FasterDamagingAilments"] = { affix = "", "Damaging Ailments deal damage (20-40)% faster", statOrder = { 6132 }, level = 1, group = "FasterAilmentDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (20-40)% faster" }, } },
- ["MutatedUniqueUniqueTwoHandSword18LocalAttackSpeed"] = { affix = "", "(25-27)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(25-27)% increased Attack Speed" }, } },
- ["MutatedUniqueUniqueTwoHandSword19AilmentDuration"] = { affix = "", "(30-35)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [2419712247] = { "(30-35)% increased Duration of Ailments on Enemies" }, } },
- ["MutatedUniqueUniqueTwoHandSword19LocalAttackSpeed"] = { affix = "", "(25-27)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(25-27)% increased Attack Speed" }, } },
- ["MutatedUniqueUniqueTwoHandMace16LocalAttackSpeed"] = { affix = "", "(20-22)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(20-22)% increased Attack Speed" }, } },
- ["MutatedUniqueUniqueTwoHandMace16ChaosResistance"] = { affix = "", "+(25-30)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(25-30)% to Chaos Resistance" }, } },
- ["MutatedUniqueUniqueTwoHandMace16PhysicalAddedAsChaos"] = { affix = "", "Gain (35-45)% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 1, group = "PhysicalAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "mutatedunique", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (35-45)% of Physical Damage as Extra Chaos Damage" }, } },
- ["MutatedUniqueUniqueTwoHandMace15LocalAttackSpeed"] = { affix = "", "(20-22)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(20-22)% increased Attack Speed" }, } },
- ["MutatedUniqueUniqueTwoHandMace15PhysicalAddedAsFire"] = { affix = "", "Gain (20-25)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 1, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "mutatedunique", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (20-25)% of Physical Damage as Extra Fire Damage" }, } },
- ["MutatedUniqueUniqueTwoHandMace15PhysicalAddedAsCold"] = { affix = "", "Gain (20-25)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "mutatedunique", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (20-25)% of Physical Damage as Extra Cold Damage" }, } },
- ["MutatedUniqueUniqueTwoHandMace15PhysicalAddedAsLightning"] = { affix = "", "Gain (20-25)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 1, group = "PhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "mutatedunique", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (20-25)% of Physical Damage as Extra Lightning Damage" }, } },
- ["MutatedUniqueUniqueAmulet85PercentIncreasedLife"] = { affix = "", "(8-10)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, } },
- ["MutatedUniqueUniqueAmulet85LifeFlaskChargesEvery3Seconds"] = { affix = "", "Life Flasks gain (1-3) Charge every 3 seconds", statOrder = { 7352 }, level = 1, group = "LifeFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2592686757] = { "Life Flasks gain (1-3) Charge every 3 seconds" }, } },
- ["MutatedUniqueUniqueAmulet81PercentIncreasedMana"] = { affix = "", "(12-14)% increased maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [2748665614] = { "(12-14)% increased maximum Mana" }, } },
- ["MutatedUniqueUniqueAmulet81ManaFlaskChargesEvery3Seconds"] = { affix = "", "Mana Flasks gain (1-3) Charge every 3 seconds", statOrder = { 8180 }, level = 1, group = "ManaFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1193925814] = { "Mana Flasks gain (1-3) Charge every 3 seconds" }, } },
- ["MutatedUniqueUniqueAmulet6ReducedMaximumMana"] = { affix = "", "20% reduced maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [2748665614] = { "20% reduced maximum Mana" }, } },
- ["MutatedUniqueUniqueAmulet6IncreasedGoldFound"] = { affix = "", "20% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7308 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [253956903] = { "20% increased Quantity of Gold Dropped by Slain Enemies" }, } },
+ ["MutatedUniqueBow4BowAttacksUsableWithoutMana"] = { affix = "", "Insufficient Mana doesn't prevent your Bow Attacks", statOrder = { 5264 }, level = 1, group = "BowAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "attack" }, tradeHashes = { [2564976564] = { "Insufficient Mana doesn't prevent your Bow Attacks" }, } },
+ ["MutatedUniqueBow4AreaOfEffect"] = { affix = "", "(40-60)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [280731498] = { "(40-60)% increased Area of Effect" }, } },
+ ["MutatedUniqueHelmetDex3ChaosResistance"] = { affix = "", "+(50-75)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(50-75)% to Chaos Resistance" }, } },
+ ["MutatedUniqueHelmetDex5LocalIncreaseSocketedMinionGemLevel"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion", "gem" }, tradeHashes = { [3604946673] = { "+2 to Level of Socketed Minion Gems" }, } },
+ ["MutatedUniqueHelmetDex5LifeReservationEfficiency"] = { affix = "", "32% increased Life Reservation Efficiency of Skills", statOrder = { 2226 }, level = 1, group = "LifeReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [635485889] = { "32% increased Life Reservation Efficiency of Skills" }, } },
+ ["MutatedUniqueBow18FasterIgnite"] = { affix = "", "Ignites you inflict deal Damage (20-40)% faster", statOrder = { 2564 }, level = 1, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (20-40)% faster" }, } },
+ ["MutatedUniqueBow19SupportedByImmolate"] = { affix = "", "Socketed Gems are Supported by Level 30 Immolate", statOrder = { 309 }, level = 1, group = "DisplaySupportedByImmolate", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [2420410470] = { "Socketed Gems are Supported by Level 30 Immolate" }, } },
+ ["MutatedUniqueBow19AllDamageCanIgnite"] = { affix = "", "All Damage can Ignite", statOrder = { 4625 }, level = 1, group = "AllDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [1369840970] = { "All Damage can Ignite" }, } },
+ ["MutatedUniqueHelmetStr4FireDamageTakenAsPhysical"] = { affix = "", "30% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2445 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "fire" }, tradeHashes = { [3205239847] = { "30% of Fire Damage from Hits taken as Physical Damage" }, } },
+ ["MutatedUniqueHelmetStr4TotemLifeIncreasedByOvercappedFireResistance"] = { affix = "", "Totem Life is increased by their Overcapped Fire Resistance", statOrder = { 10396 }, level = 1, group = "TotemLifeIncreasedByOvercappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "resistance" }, tradeHashes = { [284063465] = { "Totem Life is increased by their Overcapped Fire Resistance" }, } },
+ ["MutatedUniqueHelmetStr5SupportedByMinionLife"] = { affix = "", "Socketed Gems are Supported by Level 30 Minion Life", statOrder = { 504 }, level = 1, group = "DisplaySocketedGemsSupportedByMinionLife", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1337327984] = { "Socketed Gems are Supported by Level 30 Minion Life" }, } },
+ ["MutatedUniqueAmulet37PhysicalDamageTakenAsFire"] = { affix = "", "(5-15)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(5-15)% of Physical Damage from Hits taken as Fire Damage" }, } },
+ ["MutatedUniqueAmulet37NearbyEnemiesDebilitated"] = { affix = "", "Nearby Enemies are Debilitated", statOrder = { 7907 }, level = 1, group = "NearbyEnemiesDebilitated", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2006060276] = { "Nearby Enemies are Debilitated" }, } },
+ ["MutatedUniqueAmulet38KeystoneElementalOverload"] = { affix = "", "Elemental Overload", statOrder = { 10782 }, level = 1, group = "ElementalOverload", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "critical" }, tradeHashes = { [3574189159] = { "Elemental Overload" }, } },
+ ["MutatedUniqueWand15PowerChargeOnManaSpent"] = { affix = "", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7892 }, level = 1, group = "PowerChargeOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [3269060224] = { "Gain a Power Charge after Spending a total of 200 Mana" }, } },
+ ["MutatedUniqueWand15GlobalIncreaseColdSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(2-3) to Level of all Cold Spell Skill Gems" }, } },
+ ["MutatedUniqueWand16ColdDamageOverTimeMultiplierPerPowerCharge"] = { affix = "", "+(15-20)% to Cold Damage over Time Multiplier per Power Charge", statOrder = { 5806 }, level = 1, group = "ColdDamageOverTimeMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold" }, tradeHashes = { [2936849585] = { "+(15-20)% to Cold Damage over Time Multiplier per Power Charge" }, } },
+ ["MutatedUniqueBodyDex10PurityOfIceNoReservation"] = { affix = "", "Purity of Ice has no Reservation", statOrder = { 9773 }, level = 1, group = "PurityOfIceNoReservation", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura" }, tradeHashes = { [1622979279] = { "Purity of Ice has no Reservation" }, } },
+ ["MutatedUniqueBodyDex10EvasionRatingPer10PlayerLife"] = { affix = "", "+6 to Evasion Rating per 10 Player Maximum Life", statOrder = { 6483 }, level = 1, group = "EvasionRatingPer10PlayerLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences" }, tradeHashes = { [3637775205] = { "+6 to Evasion Rating per 10 Player Maximum Life" }, } },
+ ["MutatedUniqueBodyDex11GhostDance"] = { affix = "", "Ghost Dance", statOrder = { 10786 }, level = 1, group = "GhostDance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "evasion", "energy_shield" }, tradeHashes = { [3590128077] = { "Ghost Dance" }, } },
+ ["MutatedUniqueBodyDex11EvasionRatingPer10PlayerLife"] = { affix = "", "+8 to Evasion Rating per 10 Player Maximum Life", statOrder = { 6483 }, level = 1, group = "EvasionRatingPer10PlayerLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences" }, tradeHashes = { [3637775205] = { "+8 to Evasion Rating per 10 Player Maximum Life" }, } },
+ ["MutatedUniqueAmulet39PhysicalDamageTakenAsCold"] = { affix = "", "(5-15)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 1, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(5-15)% of Physical Damage from Hits taken as Cold Damage" }, } },
+ ["MutatedUniqueAmulet39CannotBeFrozen"] = { affix = "", "Cannot be Frozen", statOrder = { 1838 }, level = 1, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "ailment" }, tradeHashes = { [876831634] = { "Cannot be Frozen" }, } },
+ ["MutatedUniqueAmulet40CannotBeChilled"] = { affix = "", "Cannot be Chilled", statOrder = { 1837 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [283649372] = { "Cannot be Chilled" }, } },
+ ["MutatedUniqueClaw16PercentageStrength"] = { affix = "", "(8-12)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [734614379] = { "(8-12)% increased Strength" }, } },
+ ["MutatedUniqueClaw16AccuracyRatingPercentPer25Intelligence"] = { affix = "", "3% increased Accuracy Rating per 25 Intelligence", statOrder = { 4510 }, level = 1, group = "AccuracyRatingPercentPer25Intelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4106889136] = { "3% increased Accuracy Rating per 25 Intelligence" }, } },
+ ["MutatedUniqueClaw17PercentageStrength"] = { affix = "", "(8-12)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [734614379] = { "(8-12)% increased Strength" }, } },
+ ["MutatedUniqueClaw17CriticalStrikeMultiplierPer25Dexterity"] = { affix = "", "+3% to Critical Strike Multiplier per 25 Dexterity", statOrder = { 5949 }, level = 1, group = "CriticalStrikeMultiplierPer25Dexterity", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical" }, tradeHashes = { [2846122155] = { "+3% to Critical Strike Multiplier per 25 Dexterity" }, } },
+ ["MutatedUniqueShieldInt8DamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6021 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } },
+ ["MutatedUniqueShieldInt8AlwaysShockLowLifeEnemies"] = { affix = "", "Hits always Shock Enemies that are on Low Life", statOrder = { 4658 }, level = 1, group = "AlwaysShockLowLifeEnemies", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [2610583760] = { "Hits always Shock Enemies that are on Low Life" }, } },
+ ["MutatedUniqueShieldInt9DamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6021 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } },
+ ["MutatedUniqueShieldInt9ChaosDamageDoesNotBypassESWhileNotLowMana"] = { affix = "", "Chaos Damage taken does not bypass Energy Shield while not on Low Mana", statOrder = { 5730 }, level = 1, group = "ChaosDamageDoesNotBypassESWhileNotLowMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "defences", "energy_shield", "chaos" }, tradeHashes = { [795512669] = { "Chaos Damage taken does not bypass Energy Shield while not on Low Mana" }, } },
+ ["MutatedUniqueAmulet41MaximumLightningResistance"] = { affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to maximum Lightning Resistance" }, } },
+ ["MutatedUniqueAmulet41EnemyExtraDamageRolls"] = { affix = "", "Damage of Enemies Hitting you is Unlucky", statOrder = { 5012 }, level = 1, group = "EnemyExtraDamageRolls", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1937473464] = { "Damage of Enemies Hitting you is Unlucky" }, } },
+ ["MutatedUniqueAmulet42ManaIncreasedPerOvercappedLightningResistUniqueAmulet42"] = { affix = "", "Mana is increased by 1% per 4% Overcapped Lightning Resistance", statOrder = { 8181 }, level = 1, group = "ManaIncreasedPerOvercappedLightningResistUniqueAmulet42", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "elemental", "lightning" }, tradeHashes = { [3178534707] = { "Mana is increased by 1% per 4% Overcapped Lightning Resistance" }, } },
+ ["MutatedUniqueBootsStr6IncreasedArmourWhileBleeding"] = { affix = "", "(50-100)% increased Armour while Bleeding", statOrder = { 4773 }, level = 1, group = "IncreasedArmourWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "armour" }, tradeHashes = { [2466912132] = { "(50-100)% increased Armour while Bleeding" }, } },
+ ["MutatedUniqueBootsStr6ImmuneToElementalAilmentsWhileBleeding"] = { affix = "", "Immune to Elemental Ailments while Bleeding", statOrder = { 7223 }, level = 1, group = "ImmuneToElementalAilmentsWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [2526304488] = { "Immune to Elemental Ailments while Bleeding" }, } },
+ ["MutatedUniqueBootsStr7GainEnduranceChargeEveryXSecondsWhileStationary"] = { affix = "", "Gain an Endurance Charge each second while Stationary", statOrder = { 6707 }, level = 1, group = "GainEnduranceChargePerXSecondsWhileStationary", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "mutatedunique" }, tradeHashes = { [3331206505] = { "Gain an Endurance Charge each second while Stationary" }, } },
+ ["MutatedUniqueBottsStr7GainPowerChargeOnHitWhileBleeding"] = { affix = "", "Gain a Power Charge on Hit while Bleeding", statOrder = { 6806 }, level = 1, group = "GainPowerChargeOnHitWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique", "ailment" }, tradeHashes = { [3468151987] = { "Gain a Power Charge on Hit while Bleeding" }, } },
+ ["MutatedUniqueTwoHandAxe11WarcriesExertAnAdditionalAttack"] = { affix = "", "Warcries Exert 1 additional Attack", statOrder = { 10570 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1434716233] = { "Warcries Exert 1 additional Attack" }, } },
+ ["MutatedUniqueTwoHandAxe11WarcryCooldownSpeed"] = { affix = "", "500% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4159248054] = { "500% increased Warcry Cooldown Recovery Rate" }, } },
+ ["MutatedUniqueTwoHandAxe12PercentageIntelligence"] = { affix = "", "80% reduced Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [656461285] = { "80% reduced Intelligence" }, } },
+ ["MutatedUniqueTwoHandAxe12FasterBleedDamage"] = { affix = "", "Bleeding you inflict deals Damage (20-40)% faster", statOrder = { 6544 }, level = 1, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "mutatedunique", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (20-40)% faster" }, } },
+ ["MutatedUniqueShieldStr8MaximumBlockChance"] = { affix = "", "+3% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [4124805414] = { "+3% to maximum Chance to Block Attack Damage" }, } },
+ ["MutatedUniqueShieldStr8ArmourAppliesToElementalIfBlockedRecently"] = { affix = "", "(8-12)% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently", statOrder = { 4749 }, level = 1, group = "ArmourAppliesToElementalIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique", "defences" }, tradeHashes = { [1239225602] = { "(8-12)% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently" }, } },
+ ["MutatedUniqueShieldStr9GainEnergyShieldOnBlock"] = { affix = "", "Gain (300-650) Energy Shield when you Block", statOrder = { 1759 }, level = 1, group = "GainEnergyShieldOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [450695450] = { "Gain (300-650) Energy Shield when you Block" }, } },
+ ["MutatedUniqueOneHandSword22MinionUnholyMightChance"] = { affix = "", "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3379 }, level = 1, group = "MinionUnholyMightChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "minion" }, tradeHashes = { [3131367308] = { "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" }, } },
+ ["MutatedUniqueOneHandSword23MinionUnholyMightChance"] = { affix = "", "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3379 }, level = 1, group = "MinionUnholyMightChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "minion" }, tradeHashes = { [3131367308] = { "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill" }, } },
+ ["MutatedUniqueOneHandSword22MinionBaseCriticalStrikeChance"] = { affix = "", "Minions have +5% to Critical Strike Chance", statOrder = { 9266 }, level = 1, group = "MinionBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion", "critical" }, tradeHashes = { [440812751] = { "Minions have +5% to Critical Strike Chance" }, } },
+ ["MutatedUniqueOneHandSword23MinionSkillGemQuality"] = { affix = "", "+(20-30)% to Quality of all Minion Skill Gems", statOrder = { 9330 }, level = 1, group = "MinionSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion", "gem" }, tradeHashes = { [1723333214] = { "+(20-30)% to Quality of all Minion Skill Gems" }, } },
+ ["MutatedUniqueBodyInt13SocketedGemQuality"] = { affix = "", "+20% to Quality of Socketed Gems", statOrder = { 204 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [3828613551] = { "+20% to Quality of Socketed Gems" }, } },
+ ["MutatedUniqueBodyInt13IncreasedAllResistances"] = { affix = "", "50% increased Elemental and Chaos Resistances", statOrder = { 4629 }, level = 1, group = "IncreasedAllResistances", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "resistance" }, tradeHashes = { [1195367742] = { "50% increased Elemental and Chaos Resistances" }, } },
+ ["MutatedUniqueBodyInt14aSocketedGemQuality"] = { affix = "", "+30% to Quality of Socketed Gems", statOrder = { 204 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [3828613551] = { "+30% to Quality of Socketed Gems" }, } },
+ ["MutatedUniqueBodyInt14IncreasedAllResistances"] = { affix = "", "50% increased Elemental and Chaos Resistances", statOrder = { 4629 }, level = 1, group = "IncreasedAllResistances", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "resistance" }, tradeHashes = { [1195367742] = { "50% increased Elemental and Chaos Resistances" }, } },
+ ["MutatedUniqueBodyDexInt1DisplaySocketedGemsSupportedByIntensify"] = { affix = "", "Socketed Gems are Supported by Level 20 Intensify", statOrder = { 406 }, level = 1, group = "DisplaySocketedGemsSupportedByIntensify", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1792524915] = { "Socketed Gems are Supported by Level 20 Intensify" }, } },
+ ["MutatedUniqueBodyDexInt1AuraEffectOnEnemies"] = { affix = "", "(15-30)% increased Effect of Non-Curse Auras from your Skills on Enemies", statOrder = { 3567 }, level = 1, group = "AuraEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura" }, tradeHashes = { [1636209393] = { "(15-30)% increased Effect of Non-Curse Auras from your Skills on Enemies" }, } },
+ ["MutatedUniqueGlovesInt4DisplaySocketedGemsSupportedByFocusedChannelling"] = { affix = "", "Socketed Gems are Supported by Level 18 Focused Channelling", statOrder = { 503 }, level = 1, group = "DisplaySocketedGemsSupportedByFocusedChannelling", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1948535732] = { "Socketed Gems are Supported by Level 18 Focused Channelling" }, } },
+ ["MutatedUniqueBelt7CullingStrike"] = { affix = "", "Culling Strike", statOrder = { 2039 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2524254339] = { "Culling Strike" }, } },
+ ["MutatedUniqueBodyInt12HeraldOfDoom"] = { affix = "", "Lone Messenger", statOrder = { 10789 }, level = 1, group = "KeystoneHeraldOfDoom", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [155220198] = { "Lone Messenger" }, } },
+ ["MutatedUniqueBodyInt12HeraldEffectOnSelf"] = { affix = "", "(80-100)% increased Effect of Herald Buffs on you", statOrder = { 7104 }, level = 1, group = "HeraldEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [870531513] = { "(80-100)% increased Effect of Herald Buffs on you" }, } },
+ ["MutatedUniqueBodyInt16LocalIncreaseSocketedGemLevel"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } },
+ ["MutatedUniqueShieldStrDex7LocalIncreaseSocketedGemLevel"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [2843100721] = { "+1 to Level of Socketed Gems" }, } },
+ ["MutatedUniqueFishingRod1FishingMutatedFish"] = { affix = "", "You can catch Foulborn Fish", statOrder = { 5385 }, level = 1, group = "FishingMutatedFish", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3564016014] = { "You can catch Foulborn Fish" }, } },
+ ["MutatedUniqueFishingRod1FishingLureType"] = { affix = "", "Wombgift Bait", statOrder = { 2846 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3360430812] = { "Wombgift Bait" }, } },
+ ["MutatedUniqueFishingRod2AvoidInterruptionWhileCasting"] = { affix = "", "(30-40)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1916706958] = { "(30-40)% chance to Ignore Stuns while Casting" }, } },
+ ["MutatedUniqueFishingRod2FishingLureType"] = { affix = "", "Otherworldly Lure", statOrder = { 2846 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3360430812] = { "Otherworldly Lure" }, } },
+ ["MutatedUniqueRing9IncreasedAttackSpeedWhenOnLowLife"] = { affix = "", "(12-16)% increased Attack Speed when on Low Life", statOrder = { 1221 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [1921572790] = { "(12-16)% increased Attack Speed when on Low Life" }, } },
+ ["MutatedUniqueBodyDex6DamageTaken"] = { affix = "", "25% increased Damage taken", statOrder = { 2238 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3691641145] = { "25% increased Damage taken" }, } },
+ ["MutatedUniqueWand2MaximumGolems"] = { affix = "", "+2 to maximum number of Summoned Golems", statOrder = { 3690 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [2821079699] = { "+2 to maximum number of Summoned Golems" }, } },
+ ["MutatedUniqueShieldDex9TreatElementalResistanceAsInverted"] = { affix = "", "Hits have (20-25)% chance to treat Enemy Monster Elemental Resistance values as inverted", statOrder = { 10426 }, level = 1, group = "TreatElementalResistanceAsInverted", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental" }, tradeHashes = { [3593401321] = { "Hits have (20-25)% chance to treat Enemy Monster Elemental Resistance values as inverted" }, } },
+ ["MutatedUniqueGlovesDex2ActionSpeedMinimum90"] = { affix = "", "Your Action Speed is at least 90% of base value", statOrder = { 171 }, level = 1, group = "ActionSpeedMinimum90", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [179010262] = { "Your Action Speed is at least 90% of base value" }, } },
+ ["MutatedUniqueGlovesDex2CriticalStrikesNonDamagingAilmentEffect"] = { affix = "", "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes", statOrder = { 9503 }, level = 1, group = "CriticalStrikesNonDamagingAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical", "ailment" }, tradeHashes = { [3772078232] = { "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes" }, } },
+ ["MutatedUniqueOneHandMace3AreaOfEffect"] = { affix = "", "(20-30)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [280731498] = { "(20-30)% increased Area of Effect" }, } },
+ ["MutatedUniqueHelmetStrDex3WarcryBuffEffect"] = { affix = "", "(20-35)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 1, group = "WarcryBuffEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3037553757] = { "(20-35)% increased Warcry Buff Effect" }, } },
+ ["MutatedUniqueHelmetStrDex3WarcryCooldownSpeed"] = { affix = "", "(20-40)% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4159248054] = { "(20-40)% increased Warcry Cooldown Recovery Rate" }, } },
+ ["MutatedUniqueOneHandMace3LightningBoltOnHit"] = { affix = "", "Trigger Level 20 Lightning Bolt on Melee Hit with this Weapon, with a 0.25 second cooldown", statOrder = { 773 }, level = 1, group = "LightningBoltOnHit", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique", "elemental", "lightning" }, tradeHashes = { [3195558548] = { "Trigger Level 20 Lightning Bolt on Melee Hit with this Weapon, with a 0.25 second cooldown" }, [1478425331] = { "" }, } },
+ ["MutatedUniqueClaw13CrushOnHitChance"] = { affix = "", "25% chance to Crush on Hit", statOrder = { 5655 }, level = 1, group = "CrushOnHitChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical" }, tradeHashes = { [2228892313] = { "25% chance to Crush on Hit" }, } },
+ ["MutatedUniqueRing18RecoupWhileFrozen"] = { affix = "", "25% of Damage taken while Frozen Recouped as Life", statOrder = { 6124 }, level = 1, group = "RecoupWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [2585984986] = { "25% of Damage taken while Frozen Recouped as Life" }, } },
+ ["MutatedUniqueRing18ActionSpeedMinimumWhileIgnited"] = { affix = "", "Action Speed cannot be modified to below Base Value while Ignited", statOrder = { 4524 }, level = 1, group = "ActionSpeedMinimumWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "speed", "ailment" }, tradeHashes = { [2146687910] = { "Action Speed cannot be modified to below Base Value while Ignited" }, } },
+ ["MutatedUniqueTwoHandSword8RecoupedAsLifePerRedGem"] = { affix = "", "10% of Damage taken Recouped as Life per Socketed Red Gem", statOrder = { 6123 }, level = 1, group = "RecoupedAsLifePerRedGem", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "gem" }, tradeHashes = { [902847342] = { "10% of Damage taken Recouped as Life per Socketed Red Gem" }, } },
+ ["MutatedUniqueTwoHandSword8ImmortalAmbitionIfAllSocketsRed"] = { affix = "", "You have Immortal Ambition while all Socketed Gems are Red", statOrder = { 7935 }, level = 1, group = "ImmortalAmbitionIfAllSocketsRed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2954550164] = { "You have Immortal Ambition while all Socketed Gems are Red" }, } },
+ ["MutatedUniqueHelmStrInt7MaximumEnergyShieldAsPercentageOfLifeWithNoCorruptItems"] = { affix = "", "Gain (8-12)% of Maximum Life as Extra Maximum Energy Shield if no Equipped Items are Corrupted", statOrder = { 9144 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLifeWithNoCorruptItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [70766949] = { "Gain (8-12)% of Maximum Life as Extra Maximum Energy Shield if no Equipped Items are Corrupted" }, } },
+ ["MutatedUniqueClaw13PhysicalSkillEffectDurationPerIntelligence"] = { affix = "", "Physical Skills have 1% increased Duration per 12 Intelligence", statOrder = { 3800 }, level = 1, group = "PhysicalSkillEffectDurationPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "attribute" }, tradeHashes = { [2632037464] = { "Physical Skills have 1% increased Duration per 12 Intelligence" }, } },
+ ["MutatedUniqueBelt14MaximumLifeOnChillPercent"] = { affix = "", "Recover 2% of Life when you Chill a non-Chilled Enemy", statOrder = { 9840 }, level = 1, group = "MaximumLifeOnChillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "elemental", "cold", "ailment" }, tradeHashes = { [3883840239] = { "Recover 2% of Life when you Chill a non-Chilled Enemy" }, } },
+ ["MutatedUniqueRing19FrozenMonstersTakePercentIncreasedDamage"] = { affix = "", "Enemies Frozen by you take 10% increased Damage", statOrder = { 6690 }, level = 1, group = "FrozenMonstersTakePercentIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "ailment" }, tradeHashes = { [1588094148] = { "Enemies Frozen by you take 10% increased Damage" }, } },
+ ["MutatedUniqueBodyInt16BlueSocketGemsIgnoreAttributeRequirements"] = { affix = "", "Ignore Attribute Requirements of Gems Socketed in Blue Sockets", statOrder = { 7938 }, level = 1, group = "BlueSocketGemsIgnoreAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [2852307173] = { "Ignore Attribute Requirements of Gems Socketed in Blue Sockets" }, } },
+ ["MutatedUniqueRing20IgnitedEnemiesExplode"] = { affix = "", "Ignited Enemies you Kill Explode, dealing 5% of their Life as Fire Damage which cannot Ignite", statOrder = { 7207 }, level = 1, group = "IgnitedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [321971518] = { "Ignited Enemies you Kill Explode, dealing 5% of their Life as Fire Damage which cannot Ignite" }, } },
+ ["MutatedUniqueShieldInt1DamageOverTimePer100PlayerMaxLife"] = { affix = "", "Deal 5% increased Damage Over Time per 100 Player Maximum Life", statOrder = { 6023 }, level = 1, group = "DamageOverTimePer100PlayerMaxLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [1855381243] = { "Deal 5% increased Damage Over Time per 100 Player Maximum Life" }, } },
+ ["MutatedUniqueRing9ExtraDamageRollsWhileLowLife"] = { affix = "", "Your Damage with Hits is Lucky while on Low Life", statOrder = { 4554 }, level = 1, group = "ExtraDamageRollsWhileLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [204466006] = { "Your Damage with Hits is Lucky while on Low Life" }, } },
+ ["MutatedUniqueBodyInt21ChaosDamageTakenRecoupedAsLifeActual"] = { affix = "", "50% of Chaos Damage taken Recouped as Life", statOrder = { 5747 }, level = 1, group = "ChaosDamageTakenRecoupedAsLifeActual", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "chaos" }, tradeHashes = { [2485226576] = { "50% of Chaos Damage taken Recouped as Life" }, } },
+ ["MutatedUniqueBodyStrDex7WarcriesAreDisabled"] = { affix = "", "Your Warcries are disabled", statOrder = { 10700 }, level = 1, group = "WarcriesAreDisabled", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [345628839] = { "Your Warcries are disabled" }, } },
+ ["MutatedUniqueRing13LeftRingSlotEvasionRating"] = { affix = "", "Left ring slot: +1000 to Evasion Rating", statOrder = { 2672 }, level = 1, group = "LeftRingSlotEvasionRating", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [674502195] = { "Left ring slot: +1000 to Evasion Rating" }, } },
+ ["MutatedUniqueRing13RightRingSlotArmour"] = { affix = "", "Right ring slot: +1000 to Armour", statOrder = { 2651 }, level = 1, group = "RightRingSlotArmour", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [1223912433] = { "Right ring slot: +1000 to Armour" }, } },
+ ["MutatedUniqueShieldStrDex8SpellBlockPercentage"] = { affix = "", "(20-30)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [561307714] = { "(20-30)% Chance to Block Spell Damage" }, } },
+ ["MutatedUniqueShieldStrDex8MonsterChanceToAvoid"] = { affix = "", "(10-15)% chance to Avoid All Damage from Hits", statOrder = { 4940 }, level = 1, group = "MonsterChanceToAvoid", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [407415930] = { "(10-15)% chance to Avoid All Damage from Hits" }, } },
+ ["MutatedUniqueBelt14AllDamageCanIgnite"] = { affix = "", "All Damage can Ignite", statOrder = { 4625 }, level = 1, group = "AllDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [1369840970] = { "All Damage can Ignite" }, } },
+ ["MutatedUniqueRing20ShockedEnemiesExplode"] = { affix = "", "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock", statOrder = { 10020, 10020.1 }, level = 1, group = "ShockedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "lightning" }, tradeHashes = { [2706994884] = { "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock" }, } },
+ ["MutatedUniqueBodyDexInt2GainManaAsExtraEnergyShield"] = { affix = "", "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2175 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2663376056] = { "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield" }, } },
+ ["MutatedUniqueBodyDexInt2EldritchBattery"] = { affix = "", "Eldritch Battery", statOrder = { 10780 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } },
+ ["MutatedUniqueShieldDex9DegenDamageTaken"] = { affix = "", "(10-15)% reduced Damage taken from Damage Over Time", statOrder = { 2245 }, level = 1, group = "DegenDamageTaken", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, tradeHashes = { [1101403182] = { "(10-15)% reduced Damage taken from Damage Over Time" }, } },
+ ["MutatedUniqueGlovesStr12RageLossDelay"] = { affix = "", "Inherent Rage Loss starts 2 seconds later", statOrder = { 9797 }, level = 1, group = "RageLossDelay", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2842935061] = { "Inherent Rage Loss starts 2 seconds later" }, } },
+ ["MutatedUniqueBodyStrDex8AttackDamage"] = { affix = "", "100% increased Attack Damage", statOrder = { 1198 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "attack" }, tradeHashes = { [2843214518] = { "100% increased Attack Damage" }, } },
+ ["MutatedUniqueBodyInt2DamageWhileIgnited"] = { affix = "", "(50-100)% increased Damage while Ignited", statOrder = { 2802 }, level = 1, group = "DamageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, tradeHashes = { [1686122637] = { "(50-100)% increased Damage while Ignited" }, } },
+ ["MutatedUniqueBodyInt2FireDamageLifeLeechPermyriad"] = { affix = "", "(5-7)% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "elemental", "fire" }, tradeHashes = { [3848282610] = { "(5-7)% of Fire Damage Leeched as Life" }, } },
+ ["MutatedUniqueHelmetDexInt4ChaosDamageCanShock"] = { affix = "", "Your Chaos Damage can Shock", statOrder = { 2870 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Your Chaos Damage can Shock" }, } },
+ ["MutatedUniqueHelmetDexInt4ChaosDamageCanIgnite"] = { affix = "", "Your Chaos Damage can Ignite", statOrder = { 5001 }, level = 1, group = "ChaosDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "poison", "mutatedunique", "damage", "elemental", "fire", "chaos", "ailment" }, tradeHashes = { [1139878780] = { "Your Chaos Damage can Ignite" }, } },
+ ["MutatedUniqueHelmetDexInt4ChaosDamageCanFreeze"] = { affix = "", "Your Chaos Damage can Freeze", statOrder = { 2869 }, level = 1, group = "ChaosDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "elemental", "cold", "chaos", "ailment" }, tradeHashes = { [2973498992] = { "Your Chaos Damage can Freeze" }, } },
+ ["MutatedUniqueQuiver7StartEnergyShieldRechargeOnSkillChance"] = { affix = "", "(10-15)% chance for Energy Shield Recharge to start when you use a Skill", statOrder = { 6449 }, level = 1, group = "StartEnergyShieldRechargeOnSkillChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [3853996752] = { "(10-15)% chance for Energy Shield Recharge to start when you use a Skill" }, } },
+ ["MutatedUniqueQuiver7MaximumLifeConvertedToEnergyShield"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 9161 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } },
+ ["MutatedUniqueBow12DisplaySupportedBySummonPhantasm"] = { affix = "", "Socketed Gems are Supported by Level 20 Summon Phantasm", statOrder = { 408 }, level = 1, group = "DisplaySupportedBySummonPhantasm", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [2169409479] = { "Socketed Gems are Supported by Level 20 Summon Phantasm" }, } },
+ ["MutatedUniqueBow12SummonWrithingWormEveryXMs"] = { affix = "", "An Enemy Writhing Worm spawns every 2 seconds", statOrder = { 620 }, level = 1, group = "SummonWrithingWormEveryXMs", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique" }, tradeHashes = { [933024928] = { "An Enemy Writhing Worm spawns every 2 seconds" }, } },
+ ["MutatedUniqueBow12MinionAddedChaosDamage"] = { affix = "", "Minions deal (25-35) to (50-65) additional Chaos Damage", statOrder = { 3769 }, level = 1, group = "MinionAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos", "minion" }, tradeHashes = { [2889601781] = { "Minions deal (25-35) to (50-65) additional Chaos Damage" }, } },
+ ["MutatedUniqueTwoHandMace8IncreasedMinionDamageIfYouHitEnemy"] = { affix = "", "Minions deal (50-70)% increased Damage if you've Hit Recently", statOrder = { 9295 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (50-70)% increased Damage if you've Hit Recently" }, } },
+ ["MutatedUniqueTwoHandMace8DoubleAnimateWeaponLimit"] = { affix = "", "Maximum number of Animated Weapons is Doubled", statOrder = { 6262 }, level = 1, group = "DoubleAnimateWeaponLimit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [737980235] = { "Maximum number of Animated Weapons is Doubled" }, } },
+ ["MutatedUniqueHelmetStrDex2AttackSpeedWithMovementSkills"] = { affix = "", "20% increased Attack Speed with Movement Skills", statOrder = { 1432 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [3683134121] = { "20% increased Attack Speed with Movement Skills" }, } },
+ ["MutatedUniqueHelmetStrDex2ChanceToSuppressSpells"] = { affix = "", "+(10-20)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3680664274] = { "+(10-20)% chance to Suppress Spell Damage" }, } },
+ ["MutatedUniqueBow6ProjectilesPierceAllNearbyTargets"] = { affix = "", "Projectiles Pierce all nearby Targets", statOrder = { 9753 }, level = 1, group = "ProjectilesPierceAllNearbyTargets", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1284333657] = { "Projectiles Pierce all nearby Targets" }, } },
+ ["MutatedUniqueBelt21EverlastingSacrifice"] = { affix = "", "Everlasting Sacrifice", statOrder = { 10785 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "resistance" }, tradeHashes = { [145598447] = { "Everlasting Sacrifice" }, } },
+ ["MutatedUniqueBelt21AnimalCharmLeechPercentIsInstant"] = { affix = "", "(8-12)% of Leech is Instant", statOrder = { 7338 }, level = 1, group = "AnimalCharmLeechPercentIsInstant", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3561837752] = { "(8-12)% of Leech is Instant" }, } },
+ ["MutatedUniqueBelt13CurseEffectOnYou"] = { affix = "", "20% reduced Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "curse" }, tradeHashes = { [3407849389] = { "20% reduced Effect of Curses on you" }, } },
+ ["MutatedUniqueBodyStr7PrismaticBulwark"] = { affix = "", "Transcendence", statOrder = { 10803 }, level = 1, group = "PrismaticBulwark", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2381571742] = { "Transcendence" }, } },
+ ["MutatedUniqueBodyStr7GainNoInherentBonusFromStrength"] = { affix = "", "Gain no inherent bonuses from Strength", statOrder = { 2017 }, level = 1, group = "GainNoInherentBonusFromStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [2035199242] = { "Gain no inherent bonuses from Strength" }, } },
+ ["MutatedUniqueBelt19FlaskChargesUsed"] = { affix = "", "100% increased Flask Charges used", statOrder = { 2184 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, tradeHashes = { [644456512] = { "100% increased Flask Charges used" }, } },
+ ["MutatedUniqueBelt19AnimalCharmFlaskChargesEvery3Secondsage"] = { affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3478 }, level = 1, group = "AnimalCharmFlaskChargesEvery3Seconds", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, tradeHashes = { [1193283913] = { "Flasks gain a Charge every 3 seconds" }, } },
+ ["MutatedUniqueAmulet43ChaosDamageTakenRecoupedAsLife"] = { affix = "", "50% of Chaos Damage taken Recouped as Life", statOrder = { 5747 }, level = 1, group = "ChaosDamageTakenRecoupedAsLifeActual", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "chaos" }, tradeHashes = { [2485226576] = { "50% of Chaos Damage taken Recouped as Life" }, } },
+ ["MutatedUniqueAmulet43RecoupEnergyShieldInsteadOfLife"] = { affix = "", "Recoup Energy Shield instead of Life", statOrder = { 7388 }, level = 1, group = "RecoupEnergyShieldInsteadOfLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [4074053582] = { "Recoup Energy Shield instead of Life" }, } },
+ ["MutatedUniqueBow18DisplaySupportedByReturningProjectiles"] = { affix = "", "Socketed Gems are Supported by Level 20 Returning Projectiles", statOrder = { 407 }, level = 1, group = "DisplaySupportedByReturningProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1549219417] = { "Socketed Gems are Supported by Level 20 Returning Projectiles" }, } },
+ ["MutatedUniqueGlovesDexInt7PoisonSpread"] = { affix = "", "When you kill a Poisoned Enemy, Enemies within 1.5 metres are Poisoned", statOrder = { 1041 }, level = 1, group = "PoisonSpread", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "chaos", "ailment" }, tradeHashes = { [3559020159] = { "When you kill a Poisoned Enemy, Enemies within 1.5 metres are Poisoned" }, } },
+ ["MutatedUniqueGlovesDexInt7FasterPoisonDamage"] = { affix = "", "Poisons you inflict deal Damage (15-20)% faster", statOrder = { 6545 }, level = 1, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "mutatedunique", "damage", "chaos", "ailment" }, tradeHashes = { [2907156609] = { "Poisons you inflict deal Damage (15-20)% faster" }, } },
+ ["MutatedUniqueAmulet14GainPowerChargesNotLostRecently"] = { affix = "", "Gain a Power Charge every Second if you haven't lost Power Charges Recently", statOrder = { 6810 }, level = 1, group = "GainPowerChargesNotLostRecently", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [1099200124] = { "Gain a Power Charge every Second if you haven't lost Power Charges Recently" }, } },
+ ["MutatedUniqueAmulet14LosePowerChargesOnMaxPowerCharges"] = { affix = "", "Lose all Power Charges on reaching Maximum Power Charges", statOrder = { 3603 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [2135899247] = { "Lose all Power Charges on reaching Maximum Power Charges" }, } },
+ ["MutatedUniqueRing2WarcryMonsterPower"] = { affix = "", "(20-30)% increased total Power counted by Warcries", statOrder = { 10572 }, level = 1, group = "WarcryMonsterPower", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2663359259] = { "(20-30)% increased total Power counted by Warcries" }, } },
+ ["MutatedUniqueHelmetDexInt1MinionDoubleDamage"] = { affix = "", "Minions have 20% chance to deal Double Damage", statOrder = { 9279 }, level = 1, group = "MinionDoubleDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [755922799] = { "Minions have 20% chance to deal Double Damage" }, } },
+ ["MutatedUniqueRing4TemporalChainsOnHit"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2519 }, level = 1, group = "TemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [4139135963] = { "Curse Enemies with Temporal Chains on Hit" }, } },
+ ["MutatedUniqueRing4VulnerabilityOnHit"] = { affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2520 }, level = 1, group = "VulnerabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1826297223] = { "Curse Enemies with Vulnerability on Hit" }, } },
+ ["MutatedUniqueRing4EnfeebleOnHit"] = { affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2513 }, level = 1, group = "EnfeebleOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1516661546] = { "Curse Enemies with Enfeeble on Hit" }, } },
+ ["MutatedUniqueHelmetStrInt2HeraldOfPurityAdditionalMinion"] = { affix = "", "+(2-3) to maximum number of Sentinels of Purity", statOrder = { 5033 }, level = 1, group = "HeraldOfPurityAdditionalMinion", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [2836937264] = { "+(2-3) to maximum number of Sentinels of Purity" }, } },
+ ["MutatedUniqueBootsStrDex1MovementVelocityOnFullLife"] = { affix = "", "40% increased Movement Speed when on Full Life", statOrder = { 1800 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [3393547195] = { "40% increased Movement Speed when on Full Life" }, } },
+ ["MutatedUniqueGlovesInt1IncreasedGold"] = { affix = "", "(5-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7303 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [253956903] = { "(5-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } },
+ ["MutatedUniqueBelt4PercentageStrength"] = { affix = "", "(5-15)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [734614379] = { "(5-15)% increased Strength" }, } },
+ ["MutatedUniqueBodyStrInt2MaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "mutatedunique" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } },
+ ["MutatedUniqueGlovesDexInt2UnarmedAreaOfEffect"] = { affix = "", "(20-30)% increased Area of Effect while Unarmed", statOrder = { 3053 }, level = 1, group = "UnarmedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2216127021] = { "(20-30)% increased Area of Effect while Unarmed" }, } },
+ ["MutatedUniqueBootsDex2IncreasedGold"] = { affix = "", "(20-30)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7303 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [253956903] = { "(20-30)% increased Quantity of Gold Dropped by Slain Enemies" }, } },
+ ["MutatedUniqueBootsDex3ActionSpeedReduction"] = { affix = "", "(6-12)% increased Action Speed", statOrder = { 4527 }, level = 1, group = "ActionSpeedReduction", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [2878959938] = { "(6-12)% increased Action Speed" }, } },
+ ["MutatedUniqueBodyStr2LocalPhysicalDamageReductionRating"] = { affix = "", "+(500-800) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "armour" }, tradeHashes = { [3484657501] = { "+(500-800) to Armour" }, } },
+ ["MutatedUniqueBodyDex3MeleeFireDamage"] = { affix = "", "(75-150)% increased Melee Fire Damage", statOrder = { 1982 }, level = 1, group = "MeleeFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, tradeHashes = { [3630160064] = { "(75-150)% increased Melee Fire Damage" }, } },
+ ["MutatedUniqueShieldInt2LocalIncreaseSocketedAuraLevel"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } },
+ ["MutatedUniqueRing6CriticalStrikeMultiplier"] = { affix = "", "+(10-30)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "critical" }, tradeHashes = { [3556824919] = { "+(10-30)% to Global Critical Strike Multiplier" }, } },
+ ["MutatedUniqueRing6AllDefences"] = { affix = "", "(10-30)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [1389153006] = { "(10-30)% increased Global Defences" }, } },
+ ["MutatedUniqueHelmetDex4IncreasedMana"] = { affix = "", "+(100-200) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [1050105434] = { "+(100-200) to maximum Mana" }, } },
+ ["MutatedUniqueShieldStrInt5FlatEnergyShieldRegenerationPerMinute"] = { affix = "", "Regenerate (100-200) Energy Shield per second", statOrder = { 2645 }, level = 1, group = "FlatEnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [1330109706] = { "Regenerate (100-200) Energy Shield per second" }, } },
+ ["MutatedUniqueShieldStrInt5CastSpeedOnLowLife"] = { affix = "", "(10-20)% increased Cast Speed when on Low Life", statOrder = { 1999 }, level = 1, group = "CastSpeedOnLowLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "speed" }, tradeHashes = { [1136768410] = { "(10-20)% increased Cast Speed when on Low Life" }, } },
+ ["MutatedUniqueBodyDex5MovementSkillCooldown"] = { affix = "", "(20-40)% increased Cooldown Recovery Rate of Movement Skills", statOrder = { 9405 }, level = 1, group = "MovementSkillCooldown", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1124980805] = { "(20-40)% increased Cooldown Recovery Rate of Movement Skills" }, } },
+ ["MutatedUniqueBootsStrDex2IncreasedAccuracyPerFrenzy"] = { affix = "", "(4-8)% increased Accuracy Rating per Frenzy Charge", statOrder = { 2050 }, level = 1, group = "AccuracyRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [3700381193] = { "(4-8)% increased Accuracy Rating per Frenzy Charge" }, } },
+ ["MutatedUniqueBodyInt7SupportedByFlamewood"] = { affix = "", "Socketed Gems are Supported by Level 20 Flamewood", statOrder = { 280 }, level = 1, group = "SupportedByFlamewood", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [285773939] = { "Socketed Gems are Supported by Level 20 Flamewood" }, } },
+ ["MutatedUniqueGlovesInt6ChaosDamagePerCorruptedItem"] = { affix = "", "(10-15)% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 3099 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos" }, tradeHashes = { [4004011170] = { "(10-15)% increased Chaos Damage for each Corrupted Item Equipped" }, } },
+ ["MutatedUniqueRing7NonDamagingAilmentEffectOnSelf"] = { affix = "", "50% reduced Effect of Non-Damaging Ailments on you", statOrder = { 9500 }, level = 1, group = "NonDamagingAilmentEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [1519474779] = { "50% reduced Effect of Non-Damaging Ailments on you" }, } },
+ ["MutatedUniqueClaw6ChaosDamage"] = { affix = "", "(100-120)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos" }, tradeHashes = { [736967255] = { "(100-120)% increased Chaos Damage" }, } },
+ ["MutatedUniqueRing11ConsecratedGroundEffect"] = { affix = "", "(25-40)% increased Effect of Consecrated Ground you create", statOrder = { 5847 }, level = 1, group = "ConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4058190193] = { "(25-40)% increased Effect of Consecrated Ground you create" }, } },
+ ["MutatedUniqueTwoHandMace6KeystoneBattlemage"] = { affix = "", "Battlemage", statOrder = { 10771 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [448903047] = { "Battlemage" }, } },
+ ["MutatedUniqueTwoHandMace6LoseLifePercentOnCrit"] = { affix = "", "Lose 1% of Life when you deal a Critical Strike", statOrder = { 8141 }, level = 1, group = "LoseLifePercentOnCrit", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "critical" }, tradeHashes = { [1862591837] = { "Lose 1% of Life when you deal a Critical Strike" }, } },
+ ["MutatedUniqueRing17IncreasedMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } },
+ ["MutatedUniqueBodyStr4ElementalDamageTakenAsChaos"] = { affix = "", "25% of Elemental Damage from Hits taken as Chaos Damage", statOrder = { 2453 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "chaos" }, tradeHashes = { [1175213674] = { "25% of Elemental Damage from Hits taken as Chaos Damage" }, } },
+ ["MutatedUniqueShieldDex4ChaosDamageOverTimeMultiplier"] = { affix = "", "+(23-37)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 1, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "mutatedunique", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(23-37)% to Chaos Damage over Time Multiplier" }, } },
+ ["MutatedUniqueHelmetStrInt4MaximumLifeIncreasePercent"] = { affix = "", "50% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [983749596] = { "50% increased maximum Life" }, } },
+ ["MutatedUniqueGlovesStrInt1SelfCurseDuration"] = { affix = "", "(-30-30)% reduced Duration of Curses on you", statOrder = { 2171 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [2920970371] = { "(-30-30)% reduced Duration of Curses on you" }, } },
+ ["MutatedUniqueGlovesDexInt5LocalEnergyShield"] = { affix = "", "+(100-130) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-130) to maximum Energy Shield" }, } },
+ ["MutatedUniqueBootsStrInt2PercentageIntelligence"] = { affix = "", "(15-18)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [656461285] = { "(15-18)% increased Intelligence" }, } },
+ ["MutatedUniqueQuiver3ImpaleEffect"] = { affix = "", "(20-30)% increased Impale Effect", statOrder = { 7242 }, level = 1, group = "ImpaleEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical" }, tradeHashes = { [298173317] = { "(20-30)% increased Impale Effect" }, } },
+ ["MutatedUniqueQuiver4BowStunThresholdReduction"] = { affix = "", "50% reduced Enemy Stun Threshold with Bows", statOrder = { 1519 }, level = 1, group = "BowStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2410484864] = { "50% reduced Enemy Stun Threshold with Bows" }, } },
+ ["MutatedUniqueBodyInt9MinionHasUnholyMight"] = { affix = "", "Minions have Unholy Might", statOrder = { 9308 }, level = 1, group = "MinionHasUnholyMight", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "minion" }, tradeHashes = { [1436083424] = { "Minions have Unholy Might" }, } },
+ ["MutatedUniqueWand6WeaponTreeFishingWishEffectOfAncientFish"] = { affix = "", "(30-50)% increased effect of Wishes granted by Ancient Fish", statOrder = { 6614 }, level = 1, group = "WeaponTreeFishingWishEffectOfAncientFish", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [796951852] = { "(30-50)% increased effect of Wishes granted by Ancient Fish" }, } },
+ ["MutatedUniqueRing24MaximumFireResist"] = { affix = "", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to maximum Fire Resistance" }, } },
+ ["MutatedUniqueBodyStrDex4PhysicalDamageTakenAsChaos"] = { affix = "", "20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 1, group = "PhysicalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "chaos" }, tradeHashes = { [4129825612] = { "20% of Physical Damage from Hits taken as Chaos Damage" }, } },
+ ["MutatedUniqueGlovesStrInt2LifeRegenerationRatePercentage"] = { affix = "", "(15-25)% increased Life Regeneration rate", statOrder = { 1577 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [44972811] = { "(15-25)% increased Life Regeneration rate" }, } },
+ ["MutatedUniqueGlovesStrDex5VaalSkillDuration"] = { affix = "", "Vaal Skills have (20-40)% increased Skill Effect Duration", statOrder = { 3105 }, level = 1, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "vaal" }, tradeHashes = { [547412107] = { "Vaal Skills have (20-40)% increased Skill Effect Duration" }, } },
+ ["MutatedUniqueGlovesDexInt6BlindEffect"] = { affix = "", "(20-30)% increased Blind Effect", statOrder = { 5219 }, level = 1, group = "BlindEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1585769763] = { "(20-30)% increased Blind Effect" }, } },
+ ["MutatedUniqueTwoHandAxe8SpellDamage"] = { affix = "", "(120-140)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "mutatedunique", "damage", "caster" }, tradeHashes = { [2974417149] = { "(120-140)% increased Spell Damage" }, } },
+ ["MutatedUniqueTwoHandSword7AccuracyRatingPerLevel"] = { affix = "", "+(6-8) to Accuracy Rating per Level", statOrder = { 4515 }, level = 1, group = "AccuracyRatingPerLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [539841130] = { "+(6-8) to Accuracy Rating per Level" }, } },
+ ["MutatedUniqueShieldDex6ImpaleChanceForJewel"] = { affix = "", "(20-40)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 1, group = "ImpaleChanceForJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "attack" }, tradeHashes = { [3739863694] = { "(20-40)% chance to Impale Enemies on Hit with Attacks" }, } },
+ ["MutatedUniqueRing26ManaPerLevel"] = { affix = "", "+2 Maximum Mana per Level", statOrder = { 8185 }, level = 1, group = "ManaPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [2563691316] = { "+2 Maximum Mana per Level" }, } },
+ ["MutatedUniqueBelt12ConvertLightningDamageToChaos"] = { affix = "", "40% of Lightning Damage Converted to Chaos Damage", statOrder = { 1966 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "mutatedunique", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [4238266823] = { "40% of Lightning Damage Converted to Chaos Damage" }, } },
+ ["MutatedUniqueRing27DebuffTimePassed"] = { affix = "", "Debuffs on you expire (-20-20)% slower", statOrder = { 6151 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1238227257] = { "Debuffs on you expire (-20-20)% slower" }, } },
+ ["MutatedUniqueBodyStr5ExperienceIncrease"] = { affix = "", "5% increased Experience gain", statOrder = { 1603 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3666934677] = { "5% increased Experience gain" }, } },
+ ["MutatedUniqueAmulet20CurseEffectTemporalChains"] = { affix = "", "(20-30)% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 1, group = "CurseEffectTemporalChains", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1662974426] = { "(20-30)% increased Temporal Chains Curse Effect" }, } },
+ ["MutatedUniqueHelmetInt9WeaponTreeSupportImpendingDoom"] = { affix = "", "Socketed Gems are Supported by Level 30 Impending Doom", statOrder = { 311 }, level = 1, group = "WeaponTreeSupportImpendingDoom", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [3227145554] = { "Socketed Gems are Supported by Level 30 Impending Doom" }, } },
+ ["MutatedUniqueRing32EnergyShieldAndMana"] = { affix = "", "+(0-60) to maximum Energy Shield", "+(0-60) to maximum Mana", statOrder = { 1558, 1579 }, level = 1, group = "EnergyShieldAndMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "defences", "energy_shield" }, tradeHashes = { [1050105434] = { "+(0-60) to maximum Mana" }, [3489782002] = { "+(0-60) to maximum Energy Shield" }, } },
+ ["MutatedUniqueRing33MinionSkillManaCost"] = { affix = "", "(10-20)% reduced Mana Cost of Minion Skills", statOrder = { 9331 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "minion" }, tradeHashes = { [2969128501] = { "(10-20)% reduced Mana Cost of Minion Skills" }, } },
+ ["MutatedUniqueStaff10DisplaySocketedSkillsChain"] = { affix = "", "Socketed Gems Chain 2 additional times", statOrder = { 540 }, level = 1, group = "DisplaySocketedSkillsChain", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique", "gem" }, tradeHashes = { [2788729902] = { "Socketed Gems Chain 2 additional times" }, } },
+ ["MutatedUniqueBodyDexInt4NonCurseAuraDuration"] = { affix = "", "Non-Curse Aura Skills have (40-80)% increased Duration", statOrder = { 10055 }, level = 1, group = "NonCurseAuraDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [4152389562] = { "Non-Curse Aura Skills have (40-80)% increased Duration" }, } },
+ ["MutatedUniqueDagger10ChaosDamageCanIgnite"] = { affix = "", "Your Chaos Damage can Ignite", statOrder = { 5001 }, level = 1, group = "ChaosDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "poison", "mutatedunique", "damage", "elemental", "fire", "chaos", "ailment" }, tradeHashes = { [1139878780] = { "Your Chaos Damage can Ignite" }, } },
+ ["MutatedUniqueBodyStr6ChanceToAvoidProjectiles"] = { affix = "", "25% chance to avoid Projectiles", statOrder = { 4993 }, level = 1, group = "ChanceToAvoidProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3452269808] = { "25% chance to avoid Projectiles" }, } },
+ ["MutatedUniqueOneHandAxe8LocalIncreasedAttackSpeed"] = { affix = "", "(30-50)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(30-50)% increased Attack Speed" }, } },
+ ["MutatedUniqueHelmetDexInt6RetaliationSkillCooldownRecoveryRate"] = { affix = "", "Retaliation Skills have (25-35)% increased Cooldown Recovery Rate", statOrder = { 5889 }, level = 1, group = "RetaliationSkillCooldownRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1173860008] = { "Retaliation Skills have (25-35)% increased Cooldown Recovery Rate" }, } },
+ ["MutatedUniqueAmluet24EldritchBattery"] = { affix = "", "Eldritch Battery", statOrder = { 10780 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } },
+ ["MutatedUniqueShieldInt6EnchantmentBlind"] = { affix = "", "Enemies Blinded by you have 100% reduced Critical Strike Chance", statOrder = { 6404 }, level = 1, group = "EnchantmentBlind", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical" }, tradeHashes = { [4216282855] = { "Enemies Blinded by you have 100% reduced Critical Strike Chance" }, } },
+ ["MutatedUniqueGlovesStrDex7SupportedByManaforgedArrows"] = { affix = "", "Socketed Gems are Supported by Level 5 Manaforged Arrows", statOrder = { 332 }, level = 1, group = "SupportedByManaforgedArrows", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [4022502578] = { "Socketed Gems are Supported by Level 5 Manaforged Arrows" }, } },
+ ["MutatedUniqueTwoHandSword9LocalLightningDamage"] = { affix = "", "Adds 1 to 777 Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to 777 Lightning Damage" }, } },
+ ["MutatedUniqueSceptre13ColdDamageOverTimeMultiplier"] = { affix = "", "+(30-40)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 1, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "mutatedunique", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(30-40)% to Cold Damage over Time Multiplier" }, } },
+ ["MutatedUniqueOneHandAxe9MeleeHitsCannotBeEvadedWhileWieldingSword"] = { affix = "", "Your Melee Hits can't be Evaded while wielding a Sword", statOrder = { 9192 }, level = 1, group = "MeleeHitsCannotBeEvadedWhileWieldingSword", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2537902937] = { "Your Melee Hits can't be Evaded while wielding a Sword" }, } },
+ ["MutatedUniqueOneHandSword15DualWieldingSpellBlockForJewel"] = { affix = "", "+10% Chance to Block Spell Damage while Dual Wielding", statOrder = { 1144 }, level = 1, group = "DualWieldingSpellBlockForJewel", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [138741818] = { "+10% Chance to Block Spell Damage while Dual Wielding" }, } },
+ ["MutatedUniqueShieldInt7DodgeChancePerPowerCharge"] = { affix = "", "+4% chance to Suppress Spell Damage per Power Charge", statOrder = { 10173 }, level = 1, group = "DodgeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1309947938] = { "+4% chance to Suppress Spell Damage per Power Charge" }, } },
+ ["MutatedUniqueOneHandMace10LocalCriticalStrikeChance"] = { affix = "", "(60-100)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "critical" }, tradeHashes = { [2375316951] = { "(60-100)% increased Critical Strike Chance" }, } },
+ ["MutatedUniqueWand14MinionPhysicalDamageAddedAsFire"] = { affix = "", "Minions gain (20-40)% of Physical Damage as Extra Fire Damage", statOrder = { 9325 }, level = 1, group = "MinionPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "fire", "minion" }, tradeHashes = { [3217428772] = { "Minions gain (20-40)% of Physical Damage as Extra Fire Damage" }, } },
+ ["MutatedUniqueHelmStrInt7LifeRegenerationPercentAppliesToEnergyShieldWithNoCorruptedItems"] = { affix = "", "(15-20)% of Life Regeneration also applies to Energy Shield if no Equipped Items are Corrupted", statOrder = { 10633 }, level = 1, group = "LifeRegenerationPercentAppliesToEnergyShieldWithNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [1750141122] = { "(15-20)% of Life Regeneration also applies to Energy Shield if no Equipped Items are Corrupted" }, } },
+ ["MutatedUniqueGlovesInt4GainManaCostReductionOnManaSpent"] = { affix = "", "50% reduced Mana Cost of Skills for 2 seconds after Spending a total of 800 Mana", statOrder = { 8166 }, level = 1, group = "GainManaCostReductionOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [1375431760] = { "50% reduced Mana Cost of Skills for 2 seconds after Spending a total of 800 Mana" }, } },
+ ["MutatedUniqueBelt7GainSoulEaterStackOnHit"] = { affix = "", "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0.25 seconds", statOrder = { 6823 }, level = 1, group = "GainSoulEaterStackOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2103621252] = { "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0.25 seconds" }, } },
+ ["MutatedUniqueShieldStrDex7LocalGemsSocketedHaveNoAttributeRequirements"] = { affix = "", "Ignore Attribute Requirements of Socketed Gems", statOrder = { 7937 }, level = 1, group = "LocalGemsSocketedHaveNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [3850932596] = { "Ignore Attribute Requirements of Socketed Gems" }, } },
+ ["MutatedUniqueRing19EnemiesShockedByHitsAreDebilitated"] = { affix = "", "Enemies Shocked by you are Debilitated", statOrder = { 6397 }, level = 25, group = "EnemiesShockedByHitsAreDebilitated", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2983226297] = { "Enemies Shocked by you are Debilitated" }, } },
+ ["MutatedUniqueShieldInt1NonDamagingAilmentWithCritsEffectPer100MaxLife"] = { affix = "", "2% increased Effect of Non-Damaging Ailments you inflict with Critical Strikes per 100 Player Maximum Life", statOrder = { 9498 }, level = 1, group = "NonDamagingAilmentWithCritsEffectPer100MaxLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical", "ailment" }, tradeHashes = { [1572854306] = { "2% increased Effect of Non-Damaging Ailments you inflict with Critical Strikes per 100 Player Maximum Life" }, } },
+ ["MutatedUniqueBodyInt21MaximumEnergyShieldIsEqualToPercentOfMaximumLife"] = { affix = "", "Your Maximum Energy Shield is Equal to 40% of Your Maximum Life", statOrder = { 9135 }, level = 1, group = "MaximumEnergyShieldIsEqualToPercentOfMaximumLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [4053338379] = { "Your Maximum Energy Shield is Equal to 40% of Your Maximum Life" }, } },
+ ["MutatedUniqueBodyDex6ProjectileSpeedPercentPerEvasionRatingUpToCap"] = { affix = "", "1% increased Projectile Speed per 600 Evasion Rating, up to 75%", statOrder = { 9744 }, level = 1, group = "ProjectileSpeedPercentPerEvasionRatingUpToCap", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [1382953917] = { "1% increased Projectile Speed per 600 Evasion Rating, up to 75%" }, } },
+ ["MutatedUniqueWand2LifeAndEnergyShieldDegenPerMinion"] = { affix = "", "Lose 0.5% Life and Energy Shield per Second per Minion", statOrder = { 7339 }, level = 1, group = "LifeAndEnergyShieldDegenPerMinion", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield", "minion" }, tradeHashes = { [1383458163] = { "Lose 0.5% Life and Energy Shield per Second per Minion" }, } },
+ ["MutatedUniqueBow6ChinsolDamageAgainstEnemiesOutsideCloseRange"] = { affix = "", "50% more Damage with Arrow Hits not at Close Range", statOrder = { 2443 }, level = 1, group = "ChinsolDamageAgainstEnemiesOutsideCloseRange", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, tradeHashes = { [402730593] = { "50% more Damage with Arrow Hits not at Close Range" }, } },
+ ["MutatedUniqueJewel125GrantsAllBonusesOfUnallocatedNotablesInRadius"] = { affix = "", "Grants all bonuses of Unallocated Notable Passive Skills in Radius", statOrder = { 7956 }, level = 1, group = "GrantsAllBonusesOfUnallocatedNotablesInRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3802517517] = { "" }, [3530244373] = { "Grants all bonuses of Unallocated Notable Passive Skills in Radius" }, } },
+ ["MutatedUniqueJewel125AllocatedNotablePassiveSkillsInRadiusDoNothing"] = { affix = "", "Allocated Notable Passive Skills in Radius grant nothing", statOrder = { 7954 }, level = 1, group = "AllocatedNotablePassiveSkillsInRadiusDoNothing", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [680202695] = { "Allocated Notable Passive Skills in Radius grant nothing" }, } },
+ ["MutatedUniqueJewel6KeystoneCanBeAllocatedInMassiveRadiusWithoutBeingConnected"] = { affix = "", "Keystone Passive Skills in Radius can be Allocated without being connected to your tree", "Passage", statOrder = { 10715, 10715.1 }, level = 1, group = "KeystoneCanBeAllocatedInMassiveRadiusWithoutBeingConnected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1211779989] = { "Keystone Passive Skills in Radius can be Allocated without being connected to your tree", "Passage" }, [3802517517] = { "" }, } },
+ ["MutatedUniqueJewel177ModifiersToSpellSuppressionAlsoApplytoChanceToDefendPercentArmor"] = { affix = "", "Modifiers to Chance to Suppress Spell Damage also apply to Chance to Defend with 200% of Armour at 50% of their Value", statOrder = { 10183 }, level = 1, group = "ModifiersToSpellSuppressionAlsoApplytoChanceToDefendPercentArmor", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [860891010] = { "Modifiers to Chance to Suppress Spell Damage also apply to Chance to Defend with 200% of Armour at 50% of their Value" }, } },
+ ["MutatedUniqueJewel3GainRandomRareMonsterModOnKillWhileNoNotablesAllocatedInRadius"] = { affix = "", "If no Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 3057 }, level = 1, group = "GainRandomRareMonsterModOnKillWhileNoNotablesAllocatedInRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3802517517] = { "" }, [4151744887] = { "If no Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds" }, } },
+ ["MutatedUniqueJewel3GainRandomRareMonsterModOnKillWhileXSmallPassivesAllocatedInRadius"] = { affix = "", "With (8-12) Small Passives Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 3058 }, level = 1, group = "GainRandomRareMonsterModOnKillWhileXSmallPassivesAllocatedInRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [370099215] = { "With (8-12) Small Passives Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds" }, [3802517517] = { "" }, } },
+ ["MutatedUniqueJewel5EvasionModifiersInRadiusAreTransformedToArmour"] = { affix = "", "Increases and Reductions to Evasion Rating in Radius are Transformed to apply to Armour", statOrder = { 3066 }, level = 1, group = "EvasionModifiersInRadiusAreTransformedToArmour", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [3802517517] = { "" }, [2548156334] = { "Increases and Reductions to Evasion Rating in Radius are Transformed to apply to Armour" }, } },
+ ["MutatedUniqueBelt13NearbyEnemiesAreUnnerved"] = { affix = "", "Nearby Enemies are Unnerved", statOrder = { 9454 }, level = 1, group = "NearbyEnemiesAreUnnerved", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1439308328] = { "Nearby Enemies are Unnerved" }, } },
+ ["MutatedUniqueBodyDex8SuppressionPreventionIfYouHaventSuppressedRecently"] = { affix = "", "Prevent +35% of Suppressed Spell Damage if you have not Suppressed Spell Damage Recently", statOrder = { 10140 }, level = 1, group = "SuppressionPreventionIfYouHaventSuppressedRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1409317489] = { "Prevent +35% of Suppressed Spell Damage if you have not Suppressed Spell Damage Recently" }, } },
+ ["MutatedUniqueBodyDex8ChanceToSuppressIfYouHaveSuppressedRecently"] = { affix = "", "+(20-30)% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently", statOrder = { 10184 }, level = 1, group = "ChanceToSuppressIfYouHaveSuppressedRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3273678959] = { "+(20-30)% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently" }, } },
+ ["MutatedUniqueHelmetStrInt6ChanceToCastOnManaSpent"] = { affix = "", "50% chance to Trigger Socketed Spells when you Spend at least 200 Life on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown", statOrder = { 755, 755.1 }, level = 1, group = "ChanceToCastOnLifeSpent", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique", "caster", "gem" }, tradeHashes = { [2827553480] = { "50% chance to Trigger Socketed Spells when you Spend at least 0 Life on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, [1178126501] = { "0% chance to Trigger Socketed Spells when you Spend at least 200 Life on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, } },
+ ["MutatedUniqueBootsInt7PowerChargeOnCriticalStrikeChance"] = { affix = "", "+(3-5)% to Critical Strike Multiplier per Power Charge", statOrder = { 3282 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "critical" }, tradeHashes = { [4164870816] = { "+(3-5)% to Critical Strike Multiplier per Power Charge" }, } },
+ ["MutatedUniqueBodyInt3BloodMagic"] = { affix = "", "Blood Magic", statOrder = { 10772 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } },
+ ["MutatedUniqueRing16DisablesOtherRingSlot"] = { affix = "", "Can't use other Rings", statOrder = { 1605 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [64726306] = { "Can't use other Rings" }, } },
+ ["MutatedUniqueBodyStrInt1ChaosResistance"] = { affix = "", "-(17-13)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "-(17-13)% to Chaos Resistance" }, } },
+ ["MutatedUniqueBow3ChaosDamageAsPortionOfDamage"] = { affix = "", "Gain (67-83)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 1, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "mutatedunique", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (67-83)% of Physical Damage as Extra Chaos Damage" }, } },
+ ["MutatedUniqueStaff1SearingBondTotemsAllowed"] = { affix = "", "+(3-5) to maximum number of Summoned Searing Bond Totems", statOrder = { 9526 }, level = 1, group = "SearingBondTotemsAllowed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2674643140] = { "+(3-5) to maximum number of Summoned Searing Bond Totems" }, } },
+ ["MutatedUniqueRing5StunRecovery"] = { affix = "", "(200-300)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2511217560] = { "(200-300)% increased Stun and Block Recovery" }, } },
+ ["MutatedUniqueHelmetDex2ConvertColdToFire"] = { affix = "", "50% of Cold Damage Converted to Fire Damage", statOrder = { 1968 }, level = 1, group = "ConvertColdToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire", "cold" }, tradeHashes = { [723832351] = { "50% of Cold Damage Converted to Fire Damage" }, } },
+ ["MutatedUniqueBootsStr1CurseImmunity"] = { affix = "", "You are Immune to Curses", statOrder = { 7218 }, level = 1, group = "CurseImmunity", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [116621037] = { "You are Immune to Curses" }, } },
+ ["MutatedUniqueGlovesStrDex2IncreasedGold"] = { affix = "", "15% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7303 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [253956903] = { "15% increased Quantity of Gold Dropped by Slain Enemies" }, } },
+ ["MutatedUniqueShieldStr1MaximumLifeAddedAsArmour"] = { affix = "", "Gain (20-25)% of Maximum Life as Extra Armour", statOrder = { 9159 }, level = 1, group = "MaximumLifeAddedAsArmour", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [4118694562] = { "Gain (20-25)% of Maximum Life as Extra Armour" }, } },
+ ["MutatedUniqueShieldStrInt1EnergyShieldIncreasedByChaosResistance"] = { affix = "", "Maximum Energy Shield is increased by Chaos Resistance", statOrder = { 6434 }, level = 1, group = "EnergyShieldIncreasedByChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [1301612627] = { "Maximum Energy Shield is increased by Chaos Resistance" }, } },
+ ["MutatedUniqueHelmetInt4SupportedByFrigidBond"] = { affix = "", "Socketed Gems are Supported by Level 25 Frigid Bond", statOrder = { 287 }, level = 1, group = "SupportedByFrigidBond", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [3031999964] = { "Socketed Gems are Supported by Level 25 Frigid Bond" }, } },
+ ["MutatedUniqueGlovesStr2StrengthRequirementAndTripleDamageChance"] = { affix = "", "+700 Strength Requirement", "(10-15)% chance to deal Triple Damage", statOrder = { 1085, 5000 }, level = 1, group = "StrengthRequirementAndTripleDamageChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2445189705] = { "(10-15)% chance to deal Triple Damage" }, [2833226514] = { "+700 Strength Requirement" }, } },
+ ["MutatedUniqueBodyInt4GainManaAsExtraEnergyShield"] = { affix = "", "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2175 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2663376056] = { "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield" }, } },
+ ["MutatedUniqueHelmetDex5LifeReservationEfficiencyCopy"] = { affix = "", "30% increased Life Reservation Efficiency of Skills", statOrder = { 2226 }, level = 1, group = "LifeReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [635485889] = { "30% increased Life Reservation Efficiency of Skills" }, } },
+ ["MutatedUniqueHelmetStr3BleedDotMultiplier"] = { affix = "", "+(50-75)% to Damage over Time Multiplier for Bleeding", statOrder = { 1248 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "mutatedunique", "damage", "physical", "attack", "ailment" }, tradeHashes = { [1423749435] = { "+(50-75)% to Damage over Time Multiplier for Bleeding" }, } },
+ ["MutatedUniqueHelmetStrDex4SupportedBySadism"] = { affix = "", "Socketed Gems are Supported by Level 30 Sadism", statOrder = { 373 }, level = 1, group = "SupportedBySadism", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [794471597] = { "Socketed Gems are Supported by Level 30 Sadism" }, } },
+ ["MutatedUniqueOneHandSword3TrapThrowSpeed"] = { affix = "", "(20-40)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [118398748] = { "(20-40)% increased Trap Throwing Speed" }, } },
+ ["MutatedUniqueBelt5IncreasedEnergyShieldPerPowerCharge"] = { affix = "", "(4-6)% increased Energy Shield per Power Charge", statOrder = { 6443 }, level = 1, group = "IncreasedEnergyShieldPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2189382346] = { "(4-6)% increased Energy Shield per Power Charge" }, } },
+ ["MutatedUniqueSceptre3DamagePerZombie"] = { affix = "", "(40-60)% increased Damage per Raised Zombie", statOrder = { 6018 }, level = 1, group = "DamagePerZombie", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, tradeHashes = { [3868443508] = { "(40-60)% increased Damage per Raised Zombie" }, } },
+ ["MutatedUniqueRing15ColdDamageTakenAsFire"] = { affix = "", "40% of Cold Damage from Hits taken as Fire Damage", statOrder = { 3178 }, level = 14, group = "ColdDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "cold" }, tradeHashes = { [1189760108] = { "40% of Cold Damage from Hits taken as Fire Damage" }, } },
+ ["MutatedUniqueBodyStr3WitheredEffect"] = { affix = "", "(20-40)% increased Effect of Withered", statOrder = { 10625 }, level = 1, group = "WitheredEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [2545584555] = { "(20-40)% increased Effect of Withered" }, } },
+ ["MutatedUniqueBodyStrDex1MaximumRage"] = { affix = "", "+(8-12) to Maximum Rage", statOrder = { 9785 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1181501418] = { "+(8-12) to Maximum Rage" }, } },
+ ["MutatedUniqueBodyStrDex2ChaosDamageTakenAsLightning"] = { affix = "", "50% of Chaos Damage taken as Lightning Damage", statOrder = { 5753 }, level = 1, group = "ChaosDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2313674117] = { "50% of Chaos Damage taken as Lightning Damage" }, } },
+ ["MutatedUniqueSceptre6ManaPerStrengthIfInMainHand"] = { affix = "", "1% increased maximum Mana per 18 Strength when in Main Hand", statOrder = { 9167 }, level = 1, group = "ManaPerStrengthIfInMainHand", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [3548542256] = { "1% increased maximum Mana per 18 Strength when in Main Hand" }, } },
+ ["MutatedUniqueSceptre6EnergyShieldPerStrengthIfInOffHand"] = { affix = "", "1% increased maximum Energy Shield per 25 Strength when in Off Hand", statOrder = { 6426 }, level = 1, group = "EnergyShieldPerStrengthIfInOffHand", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [699783004] = { "1% increased maximum Energy Shield per 25 Strength when in Off Hand" }, } },
+ ["MutatedUniqueGlovesStrDex4AdrenalineOnVaalSkillUse"] = { affix = "", "You gain Adrenaline for 3 seconds on using a Vaal Skill", statOrder = { 2919 }, level = 1, group = "AdrenalineOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3856092403] = { "You gain Adrenaline for 3 seconds on using a Vaal Skill" }, } },
+ ["MutatedUniqueBodyStrInt5LightRadiusAppliesToAccuracy"] = { affix = "", "Increases and Reductions to Light Radius also apply to Accuracy", statOrder = { 7429 }, level = 1, group = "LightRadiusAppliesToAccuracy", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack" }, tradeHashes = { [411986876] = { "Increases and Reductions to Light Radius also apply to Accuracy" }, } },
+ ["MutatedUniqueBow11SupportedByPrismaticBurst"] = { affix = "", "Socketed Gems are Supported by Level 25 Prismatic Burst", statOrder = { 357 }, level = 1, group = "SupportedByPrismaticBurst", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [2910545715] = { "Socketed Gems are Supported by Level 25 Prismatic Burst" }, } },
+ ["MutatedUniqueBootsStr2Strength"] = { affix = "", "+(150-200) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [4080418644] = { "+(150-200) to Strength" }, } },
+ ["MutatedUniqueOneHandSword9AttackSpeedPer200Accuracy"] = { affix = "", "1% increased Attack Speed per 150 Accuracy Rating", statOrder = { 4238 }, level = 1, group = "AttackSpeedPer200Accuracy", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [2937694716] = { "1% increased Attack Speed per 150 Accuracy Rating" }, } },
+ ["MutatedUniqueWand7AddedChaosDamageFromManaCost"] = { affix = "", "Skills gain Added Chaos Damage equal to (20-25)% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", statOrder = { 4534 }, level = 1, group = "AddedChaosDamageFromManaCost", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [820155465] = { "Skills gain Added Chaos Damage equal to (20-25)% of Mana Cost, if Mana Cost is not higher than the maximum you could spend" }, } },
+ ["MutatedUniqueWand8SupportedByAwakenedSpellCascade"] = { affix = "", "Socketed Gems are Supported by Level 1 Greater Spell Cascade", statOrder = { 297 }, level = 1, group = "SupportedByAwakenedSpellCascade", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [2292610865] = { "Socketed Gems are Supported by Level 1 Greater Spell Cascade" }, } },
+ ["MutatedUniqueHelmetInt8ManaCostReduction"] = { affix = "", "(20-30)% increased Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [474294393] = { "(20-30)% increased Mana Cost of Skills" }, } },
+ ["MutatedUniqueStaff11AnimalCharmMineAuraEffect"] = { affix = "", "(60-100)% increased Effect of Auras from Mines", statOrder = { 9219 }, level = 1, group = "AnimalCharmMineAuraEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2121424530] = { "(60-100)% increased Effect of Auras from Mines" }, } },
+ ["MutatedUniqueStaff12AreaOfEffectPer20Int"] = { affix = "", "1% increased Area of Effect per 20 Intelligence", statOrder = { 2543 }, level = 1, group = "AreaOfEffectPer20Int", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1307972622] = { "1% increased Area of Effect per 20 Intelligence" }, } },
+ ["MutatedUniqueGlovesStrInt4PercentageIntelligence"] = { affix = "", "(12-16)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, tradeHashes = { [656461285] = { "(12-16)% increased Intelligence" }, } },
+ ["MutatedUniqueRing34GainPowerChargeOnKillingFrozenEnemy"] = { affix = "", "Gain a Power Charge on Killing a Frozen Enemy", statOrder = { 1824 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, tradeHashes = { [3607154250] = { "Gain a Power Charge on Killing a Frozen Enemy" }, } },
+ ["MutatedUniqueHelmetInt10AdditiveSpellModifiersApplyToRetaliationAttackDamage"] = { affix = "", "Increases and Reductions to Spell Damage also apply to Attack Damage with Retaliation Skills at 200% of their value", statOrder = { 2689 }, level = 1, group = "AdditiveSpellModifiersApplyToRetaliationAttackDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack" }, tradeHashes = { [4171078509] = { "Increases and Reductions to Spell Damage also apply to Attack Damage with Retaliation Skills at 200% of their value" }, } },
+ ["MutatedUniqueBelt18ManaRecoveryRate"] = { affix = "", "50% reduced Mana Recovery rate", statOrder = { 1586 }, level = 1, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [3513180117] = { "50% reduced Mana Recovery rate" }, } },
+ ["MutatedUniqueTwoHandAxe14AttackAdditionalProjectiles"] = { affix = "", "Attacks fire 3 additional Projectiles", statOrder = { 4196 }, level = 1, group = "AttackAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack" }, tradeHashes = { [1195705739] = { "Attacks fire 3 additional Projectiles" }, } },
+ ["MutatedUniqueHelmetInt11PhysicalDamageRemovedFromManaBeforeLife"] = { affix = "", "30% of Physical Damage is taken from Mana before Life", statOrder = { 4169 }, level = 1, group = "PhysicalDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "mana", "physical" }, tradeHashes = { [3743438423] = { "30% of Physical Damage is taken from Mana before Life" }, } },
+ ["MutatedUniqueAmulet31LightRadius"] = { affix = "", "(30-50)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1263695895] = { "(30-50)% increased Light Radius" }, } },
+ ["MutatedUniqueBodyDex9WitherOnHitChanceVsCursedEnemies"] = { affix = "", "(15-20)% chance to inflict Withered for 2 seconds on Hit against Cursed Enemies", statOrder = { 10626 }, level = 1, group = "WitherOnHitChanceVsCursedEnemies", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [465526645] = { "(15-20)% chance to inflict Withered for 2 seconds on Hit against Cursed Enemies" }, } },
+ ["MutatedUniqueBodyDexInt5TrapSkillCooldownCount"] = { affix = "", "Skills which Throw Traps have +2 Cooldown Uses", statOrder = { 10417 }, level = 1, group = "TrapSkillCooldownCount", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4001105802] = { "Skills which Throw Traps have +2 Cooldown Uses" }, } },
+ ["MutatedUniqueOneHandSword20LocalWeaponMoreIgniteDamage"] = { affix = "", "Ignites inflicted with this Weapon deal 100% more Damage", statOrder = { 7943 }, level = 1, group = "LocalWeaponMoreIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "attack", "ailment" }, tradeHashes = { [3165905801] = { "Ignites inflicted with this Weapon deal 100% more Damage" }, } },
+ ["MutatedUniqueRing44ProjectileSpeed"] = { affix = "", "(-10-10)% reduced Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [3759663284] = { "(-10-10)% reduced Projectile Speed" }, } },
+ ["MutatedUniqueTwoHandAxe1MaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "mutatedunique" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } },
+ ["MutatedUniqueBodyDex1SpellDamageSuppressed"] = { affix = "", "Prevent +(8-10)% of Suppressed Spell Damage", statOrder = { 1141 }, level = 1, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4116705863] = { "Prevent +(8-10)% of Suppressed Spell Damage" }, } },
+ ["MutatedUniqueHelmetInt2GlobalCooldownRecovery"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } },
+ ["MutatedUniqueAmulet8ChaosResistance"] = { affix = "", "+(-13-13)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(-13-13)% to Chaos Resistance" }, } },
+ ["MutatedUniqueBelt2FlaskEffect"] = { affix = "", "Flasks applied to you have (10-15)% increased Effect", statOrder = { 2742 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, tradeHashes = { [114734841] = { "Flasks applied to you have (10-15)% increased Effect" }, } },
+ ["MutatedUniqueShieldStrInt2SocketedGemQuality"] = { affix = "", "+(20-30)% to Quality of Socketed Gems", statOrder = { 204 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, tradeHashes = { [3828613551] = { "+(20-30)% to Quality of Socketed Gems" }, } },
+ ["MutatedUniqueBodyInt1SupportedByLivingLightning"] = { affix = "", "Socketed Gems are Supported by Level 20 Living Lightning", statOrder = { 327 }, level = 1, group = "SupportedByLivingLightning", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4096329121] = { "Socketed Gems are Supported by Level 20 Living Lightning" }, } },
+ ["MutatedUniqueBow5UnholyMightOnCritChance"] = { affix = "", "25% chance to gain Unholy Might for 4 seconds on Critical Strike", statOrder = { 5700 }, level = 1, group = "UnholyMightOnCritChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, tradeHashes = { [2807857784] = { "25% chance to gain Unholy Might for 4 seconds on Critical Strike" }, } },
+ ["MutatedUniqueShieldStrInt4DamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6021 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2670993553] = { "Damage cannot be Reflected" }, } },
+ ["MutatedUniqueGlovesDexInt3HeraldOfThunderBuffEffect"] = { affix = "", "Herald of Thunder has 100% increased Buff Effect", statOrder = { 7125 }, level = 1, group = "HeraldOfThunderBuffEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3814686091] = { "Herald of Thunder has 100% increased Buff Effect" }, } },
+ ["MutatedUniqueWand3AreaOfEffectPerPowerCharge"] = { affix = "", "3% increased Area of Effect per Power Charge", statOrder = { 2129 }, level = 1, group = "AreaOfEffectPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3094501804] = { "3% increased Area of Effect per Power Charge" }, } },
+ ["MutatedUniqueRing12AdditionalVaalSoulOnKill"] = { affix = "", "(20-40)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3104 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "vaal" }, tradeHashes = { [1962922582] = { "(20-40)% chance to gain an additional Vaal Soul on Kill" }, } },
+ ["MutatedUniqueBelt6TrapAreaOfEffect"] = { affix = "", "Skills used by Traps have (40-60)% increased Area of Effect", statOrder = { 3479 }, level = 47, group = "TrapAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [4050593908] = { "Skills used by Traps have (40-60)% increased Area of Effect" }, } },
+ ["MutatedUniqueHelmetDexInt3MaximumLifeConvertedToEnergyShield"] = { affix = "", "(15-20)% of Maximum Life Converted to Energy Shield", statOrder = { 9161 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, tradeHashes = { [2458962764] = { "(15-20)% of Maximum Life Converted to Energy Shield" }, } },
+ ["MutatedUniqueGlovesStr4SapChance"] = { affix = "", "30% chance to Sap Enemies", statOrder = { 2034 }, level = 1, group = "SapChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [532324017] = { "30% chance to Sap Enemies" }, } },
+ ["MutatedUniqueQuiver10ChanceToAggravateBleed"] = { affix = "", "(30-50)% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 1, group = "ChanceToAggravateBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "mutatedunique", "physical", "attack", "ailment" }, tradeHashes = { [2705185939] = { "(30-50)% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } },
+ ["MutatedUniqueOneHandSword21IncreasedWeaponElementalDamagePercent"] = { affix = "", "(80-120)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(80-120)% increased Elemental Damage with Attack Skills" }, } },
+ ["MutatedUniqueBodyDexInt6PurityOfLightningNoReservation"] = { affix = "", "Purity of Lightning has no Reservation", statOrder = { 9776 }, level = 1, group = "PurityOfLightningNoReservation", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura" }, tradeHashes = { [2308225900] = { "Purity of Lightning has no Reservation" }, } },
+ ["MutatedUniqueWand18SpellAddedPhysicalDamagePerLevel"] = { affix = "", "Adds 3 to 5 Physical Damage to Spells per 3 Player Levels", statOrder = { 1270 }, level = 1, group = "SpellAddedPhysicalDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "caster" }, tradeHashes = { [1092545959] = { "Adds 3 to 5 Physical Damage to Spells per 3 Player Levels" }, } },
+ ["MutatedUniqueBodyStr9SpellBlockPer50Strength"] = { affix = "", "+1% Chance to Block Spell Damage per 50 Strength", statOrder = { 1153 }, level = 1, group = "SpellBlockPer50Strength", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [1114429046] = { "+1% Chance to Block Spell Damage per 50 Strength" }, } },
+ ["MutatedUniqueBodyStr9AttackBlockLuck"] = { affix = "", "Chance to Block Attack Damage is Unlucky", statOrder = { 4991 }, level = 1, group = "AttackBlockLuck", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, tradeHashes = { [3776150692] = { "Chance to Block Attack Damage is Unlucky" }, } },
+ ["MutatedUniqueQuiver15SupportedByArrowNova"] = { affix = "", "Socketed Gems are Supported by Level 25 Arrow Nova", statOrder = { 361 }, level = 1, group = "SupportedByArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, tradeHashes = { [1331336999] = { "Socketed Gems are Supported by Level 25 Arrow Nova" }, } },
+ ["MutatedUniqueAmulet57MovementVelocityPerFrenzyCharge"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [1541516339] = { "2% increased Movement Speed per Frenzy Charge" }, } },
+ ["MutatedUniqueRing63MaximumLifeIncreasePercent"] = { affix = "", "(40-50)% reduced maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [983749596] = { "(40-50)% reduced maximum Life" }, } },
+ ["MutatedUniqueRing64GlobalEnergyShieldPercent"] = { affix = "", "(40-50)% reduced maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(40-50)% reduced maximum Energy Shield" }, } },
+ ["MutatedUniqueShieldStrInt13LocalMaximumQuality"] = { affix = "", "+20% to Maximum Quality", statOrder = { 7996 }, level = 1, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2039822488] = { "+20% to Maximum Quality" }, } },
+ ["MutatedUniqueRing75CurseDuration"] = { affix = "", "Curse Skills have (-30-30)% reduced Skill Effect Duration", statOrder = { 6000 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have (-30-30)% reduced Skill Effect Duration" }, } },
+ ["MutatedUniqueBodyStrInt15NonChaosDamageBypassEnergyShieldPercent"] = { affix = "", "40% of Non-Chaos Damage taken bypasses Energy Shield", statOrder = { 644 }, level = 1, group = "NonChaosDamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [3379724776] = { "40% of Non-Chaos Damage taken bypasses Energy Shield" }, } },
+ ["MutatedUniqueSceptre25MinionCriticalStrikeMultiplier"] = { affix = "", "Minions have +(20-40)% to Critical Strike Multiplier", statOrder = { 9290 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have +(20-40)% to Critical Strike Multiplier" }, } },
+ ["MutatedUniqueBodyStr13MaximumEnergyShieldIfNoDefenceModifiersOnEquipment"] = { affix = "", "+(1200-1800) to maximum Energy Shield if there are no Defence Modifiers on other Equipped Items", statOrder = { 9132 }, level = 1, group = "MaximumEnergyShieldIfNoDefenceModifiersOnEquipment", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [2236622399] = { "+(1200-1800) to maximum Energy Shield if there are no Defence Modifiers on other Equipped Items" }, } },
+ ["MutatedUniqueGlovesInt3PunishmentOnHit"] = { affix = "", "Curse Enemies with Punishment on Hit", statOrder = { 6002 }, level = 1, group = "PunishmentOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, tradeHashes = { [2950697759] = { "Curse Enemies with Punishment on Hit" }, } },
+ ["MutatedUniqueBodyInt20MinionLeechEnergyShieldFromElementalDamage"] = { affix = "", "Minions Leech 5% of Elemental Damage as Energy Shield", statOrder = { 9302 }, level = 1, group = "MinionLeechEnergyShieldFromElementalDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "minion" }, tradeHashes = { [2809815072] = { "Minions Leech 5% of Elemental Damage as Energy Shield" }, } },
+ ["MutatedUniqueSceptre10PowerChargeOnStunUniqueSceptre10"] = { affix = "", "Gain Chaotic Might for 4 seconds on Critical Strike", statOrder = { 5684 }, level = 1, group = "ChaoticMightOnCritChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "critical" }, tradeHashes = { [1183009081] = { "Gain Chaotic Might for 4 seconds on Critical Strike" }, } },
+ ["MutatedUniqueGlovesStr7CannotBeIgnitedAtMaxEnduranceCharges"] = { affix = "", "Cannot be Ignited while at maximum Endurance Charges", statOrder = { 5405 }, level = 1, group = "CannotBeIgnitedAtMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire" }, tradeHashes = { [2420971151] = { "Cannot be Ignited while at maximum Endurance Charges" }, } },
+ ["MutatedUniqueBootsDex5ActionSpeedReduction"] = { affix = "", "15% increased Action Speed", statOrder = { 4527 }, level = 1, group = "ActionSpeedReduction", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [2878959938] = { "15% increased Action Speed" }, } },
+ ["MutatedUniqueAmulet76GainMissingManaPercentWhenHit"] = { affix = "", "Gain (15-30)% of Missing Unreserved Mana before being Hit by an Enemy", statOrder = { 9378 }, level = 62, group = "GainMissingManaPercentWhenHit", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [1441107401] = { "Gain (15-30)% of Missing Unreserved Mana before being Hit by an Enemy" }, } },
+ ["MutatedUniqueBootsStrInt3MovementVelocityWhileIgnited"] = { affix = "", "(25-50)% increased Movement Speed while Ignited", statOrder = { 2805 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, tradeHashes = { [581625445] = { "(25-50)% increased Movement Speed while Ignited" }, } },
+ ["MutatedUniqueClaw7RecoverEnergyShieldFromEvasionOnBlock"] = { affix = "", "Recover Energy Shield equal to 1% of Evasion Rating when you Block", statOrder = { 6423 }, level = 1, group = "RecoverEnergyShieldFromEvasionOnBlock", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, tradeHashes = { [3495989808] = { "Recover Energy Shield equal to 1% of Evasion Rating when you Block" }, } },
+ ["MutatedUniqueBodyInt8ProfaneGroundInsteadOfConsecratedGround"] = { affix = "", "Create Profane Ground instead of Consecrated Ground", statOrder = { 5908 }, level = 1, group = "ProfaneGroundInsteadOfConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1243613350] = { "Create Profane Ground instead of Consecrated Ground" }, } },
+ ["MutatedUniqueBelt7RareAndUniqueEnemiesHaveIcons"] = { affix = "", "Rare and Unique Enemies within 120 metres have Minimap Icons", statOrder = { 10583 }, level = 1, group = "RareAndUniqueEnemiesHaveIcons", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2543266731] = { "Rare and Unique Enemies within 120 metres have Minimap Icons" }, } },
+ ["MutatedUniqueHelmetStr6ZombiesLeechEnergyShieldToYouAt1000Intelligence"] = { affix = "", "With at least 1000 Intelligence, (1.5-2)% of Damage dealt by your Raised Zombies is Leeched to you as Energy Shield", statOrder = { 10753 }, level = 1, group = "ZombiesLeechEnergyShieldToYouAt1000Intelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "minion" }, tradeHashes = { [1919087214] = { "With at least 1000 Intelligence, (1.5-2)% of Damage dealt by your Raised Zombies is Leeched to you as Energy Shield" }, } },
+ ["MutatedUniqueHelmetStr6AdditionalZombiesPerXIntelligence"] = { affix = "", "+1 to maximum number of Raised Zombies per 500 Intelligence", statOrder = { 9539 }, level = 1, group = "AdditionalZombiesPerXIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, tradeHashes = { [900892599] = { "+1 to maximum number of Raised Zombies per 500 Intelligence" }, } },
+ ["MutatedUniqueBelt43MagicUtilityFlasksAlwaysApplyRightmost"] = { affix = "", "Rightmost (2-4) Magic Utility Flasks constantly apply their Flask Effects to you", statOrder = { 4422 }, level = 56, group = "MagicUtilityFlasksAlwaysApplyRightmost", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, tradeHashes = { [2651470813] = { "Rightmost (2-4) Magic Utility Flasks constantly apply their Flask Effects to you" }, } },
+ ["MutatedUniqueUniqueBelt52AvoidPoison"] = { affix = "", "(40-60)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "chaos", "ailment" }, tradeHashes = { [4053951709] = { "(40-60)% chance to Avoid being Poisoned" }, } },
+ ["MutatedUniqueUniqueBelt52ChaosDamage"] = { affix = "", "(30-50)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos" }, tradeHashes = { [736967255] = { "(30-50)% increased Chaos Damage" }, } },
+ ["MutatedUniqueUniqueBelt55FireDamage"] = { affix = "", "(30-50)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(30-50)% increased Fire Damage" }, } },
+ ["MutatedUniqueUniqueBelt55IgniteDurationOnYou"] = { affix = "", "(40-60)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(40-60)% reduced Ignite Duration on you" }, } },
+ ["MutatedUniqueUniqueBow27ImpalesChanceToLastAdditionalHit"] = { affix = "", "(10-15)% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit", statOrder = { 7256 }, level = 1, group = "ChanceImpaleLastsAdditionalHits", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical" }, tradeHashes = { [220868259] = { "(10-15)% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit" }, } },
+ ["MutatedUniqueUniqueBow27AttackSpeed"] = { affix = "", "(14-18)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(14-18)% increased Attack Speed" }, } },
+ ["MutatedUniqueUniqueBow26LocalCriticalStrikeChance"] = { affix = "", "(30-34)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "critical" }, tradeHashes = { [2375316951] = { "(30-34)% increased Critical Strike Chance" }, } },
+ ["MutatedUniqueUniqueBow26FireDamageOverTimeMultiplier"] = { affix = "", "+(28-35)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(28-35)% to Fire Damage over Time Multiplier" }, } },
+ ["MutatedUniqueUniqueTwoHandSword18FasterDamagingAilments"] = { affix = "", "Damaging Ailments deal damage (20-40)% faster", statOrder = { 6127 }, level = 1, group = "FasterAilmentDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (20-40)% faster" }, } },
+ ["MutatedUniqueUniqueTwoHandSword18LocalAttackSpeed"] = { affix = "", "(25-27)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(25-27)% increased Attack Speed" }, } },
+ ["MutatedUniqueUniqueTwoHandSword19AilmentDuration"] = { affix = "", "(30-35)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, tradeHashes = { [2419712247] = { "(30-35)% increased Duration of Ailments on Enemies" }, } },
+ ["MutatedUniqueUniqueTwoHandSword19LocalAttackSpeed"] = { affix = "", "(25-27)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(25-27)% increased Attack Speed" }, } },
+ ["MutatedUniqueUniqueTwoHandMace16LocalAttackSpeed"] = { affix = "", "(20-22)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(20-22)% increased Attack Speed" }, } },
+ ["MutatedUniqueUniqueTwoHandMace16ChaosResistance"] = { affix = "", "+(25-30)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(25-30)% to Chaos Resistance" }, } },
+ ["MutatedUniqueUniqueTwoHandMace16PhysicalAddedAsChaos"] = { affix = "", "Gain (35-45)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 1, group = "PhysicalAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "mutatedunique", "damage", "physical", "chaos" }, tradeHashes = { [3319896421] = { "Gain (35-45)% of Physical Damage as Extra Chaos Damage" }, } },
+ ["MutatedUniqueUniqueTwoHandMace15LocalAttackSpeed"] = { affix = "", "(20-22)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, tradeHashes = { [210067635] = { "(20-22)% increased Attack Speed" }, } },
+ ["MutatedUniqueUniqueTwoHandMace15PhysicalAddedAsFire"] = { affix = "", "Gain (20-25)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 1, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "mutatedunique", "damage", "physical", "elemental", "fire" }, tradeHashes = { [369494213] = { "Gain (20-25)% of Physical Damage as Extra Fire Damage" }, } },
+ ["MutatedUniqueUniqueTwoHandMace15PhysicalAddedAsCold"] = { affix = "", "Gain (20-25)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "mutatedunique", "damage", "physical", "elemental", "cold" }, tradeHashes = { [979246511] = { "Gain (20-25)% of Physical Damage as Extra Cold Damage" }, } },
+ ["MutatedUniqueUniqueTwoHandMace15PhysicalAddedAsLightning"] = { affix = "", "Gain (20-25)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 1, group = "PhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "mutatedunique", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [219391121] = { "Gain (20-25)% of Physical Damage as Extra Lightning Damage" }, } },
+ ["MutatedUniqueUniqueAmulet85PercentIncreasedLife"] = { affix = "", "(8-10)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, } },
+ ["MutatedUniqueUniqueAmulet85LifeFlaskChargesEvery3Seconds"] = { affix = "", "Life Flasks gain (1-3) Charge every 3 seconds", statOrder = { 7347 }, level = 1, group = "LifeFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [2592686757] = { "Life Flasks gain (1-3) Charge every 3 seconds" }, } },
+ ["MutatedUniqueUniqueAmulet81PercentIncreasedMana"] = { affix = "", "(12-14)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [2748665614] = { "(12-14)% increased maximum Mana" }, } },
+ ["MutatedUniqueUniqueAmulet81ManaFlaskChargesEvery3Seconds"] = { affix = "", "Mana Flasks gain (1-3) Charge every 3 seconds", statOrder = { 8175 }, level = 1, group = "ManaFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [1193925814] = { "Mana Flasks gain (1-3) Charge every 3 seconds" }, } },
+ ["MutatedUniqueUniqueAmulet6ReducedMaximumMana"] = { affix = "", "20% reduced maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, tradeHashes = { [2748665614] = { "20% reduced maximum Mana" }, } },
+ ["MutatedUniqueUniqueAmulet6IncreasedGoldFound"] = { affix = "", "20% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7303 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, tradeHashes = { [253956903] = { "20% increased Quantity of Gold Dropped by Slain Enemies" }, } },
}
\ No newline at end of file
diff --git a/src/Data/ModGraft.lua b/src/Data/ModGraft.lua
index ba3065fd7b5..d382cdb70c0 100644
--- a/src/Data/ModGraft.lua
+++ b/src/Data/ModGraft.lua
@@ -2,489 +2,489 @@
-- Item data (c) Grinding Gear Games
return {
- ["GraftPrefixUulnetolFlatAddedPhysical1"] = { type = "Prefix", affix = "Blunt", "Adds 1 to (3-5) Physical Damage", statOrder = { 1270 }, level = 1, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [960081730] = { "Adds 1 to (3-5) Physical Damage" }, } },
- ["GraftPrefixUulnetolFlatAddedPhysical2"] = { type = "Prefix", affix = "Heavy", "Adds (1-3) to (6-9) Physical Damage", statOrder = { 1270 }, level = 22, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [960081730] = { "Adds (1-3) to (6-9) Physical Damage" }, } },
- ["GraftPrefixUulnetolFlatAddedPhysical3"] = { type = "Prefix", affix = "Weighted", "Adds (2-3) to (10-12) Physical Damage", statOrder = { 1270 }, level = 44, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [960081730] = { "Adds (2-3) to (10-12) Physical Damage" }, } },
- ["GraftPrefixUulnetolFlatAddedPhysical4"] = { type = "Prefix", affix = "Dense", "Adds (2-4) to (13-15) Physical Damage", statOrder = { 1270 }, level = 66, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [960081730] = { "Adds (2-4) to (13-15) Physical Damage" }, } },
- ["GraftPrefixUulnetolFlatAddedPhysical5"] = { type = "Prefix", affix = "Hefty", "Adds (3-5) to (14-18) Physical Damage", statOrder = { 1270 }, level = 82, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [960081730] = { "Adds (3-5) to (14-18) Physical Damage" }, } },
- ["GraftPrefixUulnetolBleedChance1"] = { type = "Prefix", affix = "Pointed", "Attacks have (5-9)% chance to cause Bleeding", statOrder = { 2494 }, level = 1, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3204820200] = { "Attacks have (5-9)% chance to cause Bleeding" }, } },
- ["GraftPrefixUulnetolBleedChance2"] = { type = "Prefix", affix = "Needling", "Attacks have (10-14)% chance to cause Bleeding", statOrder = { 2494 }, level = 22, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3204820200] = { "Attacks have (10-14)% chance to cause Bleeding" }, } },
- ["GraftPrefixUulnetolBleedChance3"] = { type = "Prefix", affix = "Cutting", "Attacks have (15-19)% chance to cause Bleeding", statOrder = { 2494 }, level = 44, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3204820200] = { "Attacks have (15-19)% chance to cause Bleeding" }, } },
- ["GraftPrefixUulnetolBleedChance4"] = { type = "Prefix", affix = "Biting", "Attacks have (20-24)% chance to cause Bleeding", statOrder = { 2494 }, level = 66, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3204820200] = { "Attacks have (20-24)% chance to cause Bleeding" }, } },
- ["GraftPrefixUulnetolBleedChance5"] = { type = "Prefix", affix = "Incisive", "Attacks have (25-30)% chance to cause Bleeding", statOrder = { 2494 }, level = 82, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3204820200] = { "Attacks have (25-30)% chance to cause Bleeding" }, } },
- ["GraftPrefixUulnetolDamageOverTimeMultiplier1"] = { type = "Prefix", affix = "Putrefying", "+(5-9)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 22, group = "GraftPrefixUulnetolDamageOverTimeMultiplier", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3988349707] = { "+(5-9)% to Damage over Time Multiplier" }, } },
- ["GraftPrefixUulnetolDamageOverTimeMultiplier2"] = { type = "Prefix", affix = "Sickening", "+(10-14)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 66, group = "GraftPrefixUulnetolDamageOverTimeMultiplier", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3988349707] = { "+(10-14)% to Damage over Time Multiplier" }, } },
- ["GraftPrefixUulnetolDamageOverTimeMultiplier3"] = { type = "Prefix", affix = "Repugnant", "+(15-20)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 82, group = "GraftPrefixUulnetolDamageOverTimeMultiplier", weightKey = { "graft_uulnetol", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [3988349707] = { "+(15-20)% to Damage over Time Multiplier" }, } },
- ["GraftPrefixUulnetolKnockback1"] = { type = "Prefix", affix = "Swatting", "(5-9)% chance to Knock Enemies Back on hit", "10% increased Knockback Distance", statOrder = { 2000, 2007 }, level = 22, group = "GraftPrefixUulnetolKnockback", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [565784293] = { "10% increased Knockback Distance" }, [977908611] = { "(5-9)% chance to Knock Enemies Back on hit" }, } },
- ["GraftPrefixUulnetolKnockback2"] = { type = "Prefix", affix = "Bashing", "(10-14)% chance to Knock Enemies Back on hit", "20% increased Knockback Distance", statOrder = { 2000, 2007 }, level = 66, group = "GraftPrefixUulnetolKnockback", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [565784293] = { "20% increased Knockback Distance" }, [977908611] = { "(10-14)% chance to Knock Enemies Back on hit" }, } },
- ["GraftPrefixUulnetolKnockback3"] = { type = "Prefix", affix = "Walloping", "(15-20)% chance to Knock Enemies Back on hit", "30% increased Knockback Distance", statOrder = { 2000, 2007 }, level = 82, group = "GraftPrefixUulnetolKnockback", weightKey = { "graft_uulnetol", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [565784293] = { "30% increased Knockback Distance" }, [977908611] = { "(15-20)% chance to Knock Enemies Back on hit" }, } },
- ["GraftPrefixUulnetolReducedEnemyStunThreshold1"] = { type = "Prefix", affix = "Inundating", "(3-6)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 1, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(3-6)% reduced Enemy Stun Threshold" }, } },
- ["GraftPrefixUulnetolReducedEnemyStunThreshold2"] = { type = "Prefix", affix = "Devastating", "(7-8)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 22, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(7-8)% reduced Enemy Stun Threshold" }, } },
- ["GraftPrefixUulnetolReducedEnemyStunThreshold3"] = { type = "Prefix", affix = "Stunning", "(9-10)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 44, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(9-10)% reduced Enemy Stun Threshold" }, } },
- ["GraftPrefixUulnetolReducedEnemyStunThreshold4"] = { type = "Prefix", affix = "Overpowering", "(11-12)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 66, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(11-12)% reduced Enemy Stun Threshold" }, } },
- ["GraftPrefixUulnetolReducedEnemyStunThreshold5"] = { type = "Prefix", affix = "Overwhelming", "(13-14)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 82, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(13-14)% reduced Enemy Stun Threshold" }, } },
- ["GraftPrefixUulnetolStunDuration1"] = { type = "Prefix", affix = "Smashing", "(7-10)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 1, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(7-10)% increased Stun Duration on Enemies" }, } },
- ["GraftPrefixUulnetolStunDuration2"] = { type = "Prefix", affix = "Thundering", "(11-14)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 22, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(11-14)% increased Stun Duration on Enemies" }, } },
- ["GraftPrefixUulnetolStunDuration3"] = { type = "Prefix", affix = "Brutish", "(14-17)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 44, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(14-17)% increased Stun Duration on Enemies" }, } },
- ["GraftPrefixUulnetolStunDuration4"] = { type = "Prefix", affix = "Sweeping", "(18-21)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 66, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(18-21)% increased Stun Duration on Enemies" }, } },
- ["GraftPrefixUulnetolStunDuration5"] = { type = "Prefix", affix = "Thudding", "(21-24)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 82, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(21-24)% increased Stun Duration on Enemies" }, } },
- ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage1"] = { type = "Prefix", affix = "Squire's", "(5-9)% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(5-9)% increased Global Physical Damage" }, } },
- ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage2"] = { type = "Prefix", affix = "Journeyman's", "(10-14)% increased Global Physical Damage", statOrder = { 1236 }, level = 11, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(10-14)% increased Global Physical Damage" }, } },
- ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage3"] = { type = "Prefix", affix = "Reaver's", "(15-19)% increased Global Physical Damage", statOrder = { 1236 }, level = 22, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(15-19)% increased Global Physical Damage" }, } },
- ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage4"] = { type = "Prefix", affix = "Mercenary's", "(20-24)% increased Global Physical Damage", statOrder = { 1236 }, level = 33, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(20-24)% increased Global Physical Damage" }, } },
- ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage5"] = { type = "Prefix", affix = "Champion's", "(25-29)% increased Global Physical Damage", statOrder = { 1236 }, level = 44, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(25-29)% increased Global Physical Damage" }, } },
- ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage6"] = { type = "Prefix", affix = "Conqueror's", "(30-34)% increased Global Physical Damage", statOrder = { 1236 }, level = 55, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(30-34)% increased Global Physical Damage" }, } },
- ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage7"] = { type = "Prefix", affix = "Slayer's", "(35-39)% increased Global Physical Damage", statOrder = { 1236 }, level = 66, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(35-39)% increased Global Physical Damage" }, } },
- ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage8"] = { type = "Prefix", affix = "General's", "(40-44)% increased Global Physical Damage", statOrder = { 1236 }, level = 74, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(40-44)% increased Global Physical Damage" }, } },
- ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage9"] = { type = "Prefix", affix = "Emperor's", "(45-49)% increased Global Physical Damage", statOrder = { 1236 }, level = 82, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(45-49)% increased Global Physical Damage" }, } },
- ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage10"] = { type = "Prefix", affix = "Dictator's", "(50-55)% increased Global Physical Damage", statOrder = { 1236 }, level = 85, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(50-55)% increased Global Physical Damage" }, } },
- ["GraftPrefixUulnetolImpaleChance1"] = { type = "Prefix", affix = "Brutal", "(3-5)% chance to Impale Enemies on Hit", statOrder = { 7257 }, level = 1, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3752938727] = { "(3-5)% chance to Impale Enemies on Hit" }, } },
- ["GraftPrefixUulnetolImpaleChance2"] = { type = "Prefix", affix = "Unforgiving", "(6-10)% chance to Impale Enemies on Hit", statOrder = { 7257 }, level = 22, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3752938727] = { "(6-10)% chance to Impale Enemies on Hit" }, } },
- ["GraftPrefixUulnetolImpaleChance3"] = { type = "Prefix", affix = "Unrelenting", "(11-15)% chance to Impale Enemies on Hit", statOrder = { 7257 }, level = 44, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3752938727] = { "(11-15)% chance to Impale Enemies on Hit" }, } },
- ["GraftPrefixUulnetolImpaleChance4"] = { type = "Prefix", affix = "Grim", "(16-20)% chance to Impale Enemies on Hit", statOrder = { 7257 }, level = 66, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3752938727] = { "(16-20)% chance to Impale Enemies on Hit" }, } },
- ["GraftPrefixUulnetolImpaleChance5"] = { type = "Prefix", affix = "Impaling", "(21-25)% chance to Impale Enemies on Hit", statOrder = { 7257 }, level = 82, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3752938727] = { "(21-25)% chance to Impale Enemies on Hit" }, } },
- ["GraftPrefixUulnetolImpaleEffect1"] = { type = "Prefix", affix = "Cruel", "(10-14)% increased Impale Effect", statOrder = { 7247 }, level = 44, group = "GraftPrefixUulnetolImpaleEffect", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [298173317] = { "(10-14)% increased Impale Effect" }, } },
- ["GraftPrefixUulnetolImpaleEffect2"] = { type = "Prefix", affix = "Wicked", "(15-19)% increased Impale Effect", statOrder = { 7247 }, level = 66, group = "GraftPrefixUulnetolImpaleEffect", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [298173317] = { "(15-19)% increased Impale Effect" }, } },
- ["GraftPrefixUulnetolImpaleEffect3"] = { type = "Prefix", affix = "Vicious", "(20-24)% increased Impale Effect", statOrder = { 7247 }, level = 82, group = "GraftPrefixUulnetolImpaleEffect", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [298173317] = { "(20-24)% increased Impale Effect" }, } },
- ["GraftPrefixUulnetolEnduranceChargeWhenHit1"] = { type = "Prefix", affix = "Stoic", "(10-20)% chance to gain an Endurance Charge when you are Hit", statOrder = { 2756 }, level = 66, group = "GraftPrefixUulnetolEnduranceChargeWhenHit", weightKey = { "graft_uulnetol", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1514657588] = { "(10-20)% chance to gain an Endurance Charge when you are Hit" }, } },
- ["GraftPrefixUulnetolStunThreshold1"] = { type = "Prefix", affix = "Steadfast", "(15-17)% increased Stun Threshold", statOrder = { 3277 }, level = 1, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(15-17)% increased Stun Threshold" }, } },
- ["GraftPrefixUulnetolStunThreshold2"] = { type = "Prefix", affix = "Staunch", "(18-20)% increased Stun Threshold", statOrder = { 3277 }, level = 22, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(18-20)% increased Stun Threshold" }, } },
- ["GraftPrefixUulnetolStunThreshold3"] = { type = "Prefix", affix = "Steady", "(21-23)% increased Stun Threshold", statOrder = { 3277 }, level = 44, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(21-23)% increased Stun Threshold" }, } },
- ["GraftPrefixUulnetolStunThreshold4"] = { type = "Prefix", affix = "Unwavering", "(24-26)% increased Stun Threshold", statOrder = { 3277 }, level = 66, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(24-26)% increased Stun Threshold" }, } },
- ["GraftPrefixUulnetolStunThreshold5"] = { type = "Prefix", affix = "Unmoving", "(27-29)% increased Stun Threshold", statOrder = { 3277 }, level = 82, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(27-29)% increased Stun Threshold" }, } },
- ["GraftPrefixUulnetolMaximumLife1"] = { type = "Prefix", affix = "Lively", "(3-4)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [983749596] = { "(3-4)% increased maximum Life" }, } },
- ["GraftPrefixUulnetolMaximumLife2"] = { type = "Prefix", affix = "Vigorous", "(5-6)% increased maximum Life", statOrder = { 1576 }, level = 22, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [983749596] = { "(5-6)% increased maximum Life" }, } },
- ["GraftPrefixUulnetolMaximumLife3"] = { type = "Prefix", affix = "Healthy", "(7-9)% increased maximum Life", statOrder = { 1576 }, level = 44, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [983749596] = { "(7-9)% increased maximum Life" }, } },
- ["GraftPrefixUulnetolMaximumLife4"] = { type = "Prefix", affix = "Robust", "(10-12)% increased maximum Life", statOrder = { 1576 }, level = 66, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [983749596] = { "(10-12)% increased maximum Life" }, } },
- ["GraftPrefixUulnetolMaximumLife5"] = { type = "Prefix", affix = "Hale", "(13-15)% increased maximum Life", statOrder = { 1576 }, level = 82, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [983749596] = { "(13-15)% increased maximum Life" }, } },
- ["GraftPrefixUulnetolLifeLeech1"] = { type = "Prefix", affix = "Vampiric", "(10-20)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1736 }, level = 44, group = "GraftPrefixUulnetolLifeLeech", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4118987751] = { "(10-20)% increased Maximum total Life Recovery per second from Leech" }, } },
- ["GraftPrefixXophFasterAilments1"] = { type = "Prefix", affix = "Wasting", "Damaging Ailments deal damage (3-5)% faster", statOrder = { 6132 }, level = 44, group = "GraftPrefixXophFasterAilments", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (3-5)% faster" }, } },
- ["GraftPrefixXophFasterAilments2"] = { type = "Prefix", affix = "Wilting", "Damaging Ailments deal damage (6-8)% faster", statOrder = { 6132 }, level = 66, group = "GraftPrefixXophFasterAilments", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (6-8)% faster" }, } },
- ["GraftPrefixXophFasterAilments3"] = { type = "Prefix", affix = "Deteriorating", "Damaging Ailments deal damage (9-11)% faster", statOrder = { 6132 }, level = 82, group = "GraftPrefixXophFasterAilments", weightKey = { "graft_xoph", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (9-11)% faster" }, } },
- ["GraftPrefixXophIgniteChance1"] = { type = "Prefix", affix = "Alight", "(4-10)% chance to Ignite", statOrder = { 2031 }, level = 1, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1335054179] = { "(4-10)% chance to Ignite" }, } },
- ["GraftPrefixXophIgniteChance2"] = { type = "Prefix", affix = "Smouldering", "(11-17)% chance to Ignite", statOrder = { 2031 }, level = 22, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1335054179] = { "(11-17)% chance to Ignite" }, } },
- ["GraftPrefixXophIgniteChance3"] = { type = "Prefix", affix = "Burning", "(18-24)% chance to Ignite", statOrder = { 2031 }, level = 44, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1335054179] = { "(18-24)% chance to Ignite" }, } },
- ["GraftPrefixXophIgniteChance4"] = { type = "Prefix", affix = "Fiery", "(25-30)% chance to Ignite", statOrder = { 2031 }, level = 66, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1335054179] = { "(25-30)% chance to Ignite" }, } },
- ["GraftPrefixXophIgniteChance5"] = { type = "Prefix", affix = "Blazing", "(31-40)% chance to Ignite", statOrder = { 2031 }, level = 82, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1335054179] = { "(31-40)% chance to Ignite" }, } },
- ["GraftPrefixXophFlatAddedFire1"] = { type = "Prefix", affix = "Heated", "Adds (3-4) to (6-8) Fire Damage", statOrder = { 1364 }, level = 1, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [321077055] = { "Adds (3-4) to (6-8) Fire Damage" }, } },
- ["GraftPrefixXophFlatAddedFire2"] = { type = "Prefix", affix = "Fierce", "Adds (4-7) to (11-15) Fire Damage", statOrder = { 1364 }, level = 22, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [321077055] = { "Adds (4-7) to (11-15) Fire Damage" }, } },
- ["GraftPrefixXophFlatAddedFire3"] = { type = "Prefix", affix = "Fervent", "Adds (10-12) to (15-19) Fire Damage", statOrder = { 1364 }, level = 44, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [321077055] = { "Adds (10-12) to (15-19) Fire Damage" }, } },
- ["GraftPrefixXophFlatAddedFire4"] = { type = "Prefix", affix = "Torrid", "Adds (14-17) to (21-25) Fire Damage", statOrder = { 1364 }, level = 66, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [321077055] = { "Adds (14-17) to (21-25) Fire Damage" }, } },
- ["GraftPrefixXophFlatAddedFire5"] = { type = "Prefix", affix = "Magmatic", "Adds (20-23) to (26-32) Fire Damage", statOrder = { 1364 }, level = 82, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [321077055] = { "Adds (20-23) to (26-32) Fire Damage" }, } },
- ["GraftPrefixXophGlobalIncreasedFireDamage1"] = { type = "Prefix", affix = "Hellish", "(5-9)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(5-9)% increased Fire Damage" }, } },
- ["GraftPrefixXophGlobalIncreasedFireDamage2"] = { type = "Prefix", affix = "Damnable", "(10-14)% increased Fire Damage", statOrder = { 1362 }, level = 11, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(10-14)% increased Fire Damage" }, } },
- ["GraftPrefixXophGlobalIncreasedFireDamage3"] = { type = "Prefix", affix = "Devil's", "(15-19)% increased Fire Damage", statOrder = { 1362 }, level = 22, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(15-19)% increased Fire Damage" }, } },
- ["GraftPrefixXophGlobalIncreasedFireDamage4"] = { type = "Prefix", affix = "Imps'", "(20-24)% increased Fire Damage", statOrder = { 1362 }, level = 33, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(20-24)% increased Fire Damage" }, } },
- ["GraftPrefixXophGlobalIncreasedFireDamage5"] = { type = "Prefix", affix = "Fiend's", "(25-29)% increased Fire Damage", statOrder = { 1362 }, level = 44, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(25-29)% increased Fire Damage" }, } },
- ["GraftPrefixXophGlobalIncreasedFireDamage6"] = { type = "Prefix", affix = "Demon's", "(30-34)% increased Fire Damage", statOrder = { 1362 }, level = 55, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(30-34)% increased Fire Damage" }, } },
- ["GraftPrefixXophGlobalIncreasedFireDamage7"] = { type = "Prefix", affix = "Tartarean", "(35-39)% increased Fire Damage", statOrder = { 1362 }, level = 66, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(35-39)% increased Fire Damage" }, } },
- ["GraftPrefixXophGlobalIncreasedFireDamage8"] = { type = "Prefix", affix = "Stygian", "(40-44)% increased Fire Damage", statOrder = { 1362 }, level = 74, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(40-44)% increased Fire Damage" }, } },
- ["GraftPrefixXophGlobalIncreasedFireDamage9"] = { type = "Prefix", affix = "Hadean", "(45-49)% increased Fire Damage", statOrder = { 1362 }, level = 82, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(45-49)% increased Fire Damage" }, } },
- ["GraftPrefixXophGlobalIncreasedFireDamage10"] = { type = "Prefix", affix = "Infernal", "(50-55)% increased Fire Damage", statOrder = { 1362 }, level = 85, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(50-55)% increased Fire Damage" }, } },
- ["GraftPrefixXophIgniteDuration1"] = { type = "Prefix", affix = "Unquenchable", "(10-14)% increased Ignite Duration on Enemies", statOrder = { 1864 }, level = 44, group = "GraftPrefixXophIgniteDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1086147743] = { "(10-14)% increased Ignite Duration on Enemies" }, } },
- ["GraftPrefixXophIgniteDuration2"] = { type = "Prefix", affix = "Everburning", "(15-19)% increased Ignite Duration on Enemies", statOrder = { 1864 }, level = 66, group = "GraftPrefixXophIgniteDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1086147743] = { "(15-19)% increased Ignite Duration on Enemies" }, } },
- ["GraftPrefixXophIgniteDuration3"] = { type = "Prefix", affix = "Inextinguishable", "(20-25)% increased Ignite Duration on Enemies", statOrder = { 1864 }, level = 82, group = "GraftPrefixXophIgniteDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1086147743] = { "(20-25)% increased Ignite Duration on Enemies" }, } },
- ["GraftPrefixXophWarcryCooldown1"] = { type = "Prefix", affix = "Howling", "(12-17)% increased Warcry Cooldown Recovery Rate", statOrder = { 3334 }, level = 44, group = "GraftPrefixXophWarcryCooldown", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(12-17)% increased Warcry Cooldown Recovery Rate" }, } },
- ["GraftPrefixXophWarcryCooldown2"] = { type = "Prefix", affix = "Screaming", "(18-22)% increased Warcry Cooldown Recovery Rate", statOrder = { 3334 }, level = 82, group = "GraftPrefixXophWarcryCooldown", weightKey = { "graft_xoph", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(18-22)% increased Warcry Cooldown Recovery Rate" }, } },
- ["GraftPrefixXophAreaOfEffect1"] = { type = "Prefix", affix = "Snatching", "(5-6)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(5-6)% increased Area of Effect" }, } },
- ["GraftPrefixXophAreaOfEffect2"] = { type = "Prefix", affix = "Grasping", "(7-8)% increased Area of Effect", statOrder = { 1885 }, level = 22, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(7-8)% increased Area of Effect" }, } },
- ["GraftPrefixXophAreaOfEffect3"] = { type = "Prefix", affix = "Clutching", "(9-10)% increased Area of Effect", statOrder = { 1885 }, level = 44, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(9-10)% increased Area of Effect" }, } },
- ["GraftPrefixXophAreaOfEffect4"] = { type = "Prefix", affix = "Siezing", "(11-12)% increased Area of Effect", statOrder = { 1885 }, level = 66, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(11-12)% increased Area of Effect" }, } },
- ["GraftPrefixXophAreaOfEffect5"] = { type = "Prefix", affix = "Reaching", "(13-14)% increased Area of Effect", statOrder = { 1885 }, level = 82, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(13-14)% increased Area of Effect" }, } },
- ["GraftPrefixXophStrength1"] = { type = "Prefix", affix = "Brawny", "+(3-5) to Strength", statOrder = { 1182 }, level = 1, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4080418644] = { "+(3-5) to Strength" }, } },
- ["GraftPrefixXophStrength2"] = { type = "Prefix", affix = "Powerful", "+(6-8) to Strength", statOrder = { 1182 }, level = 22, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4080418644] = { "+(6-8) to Strength" }, } },
- ["GraftPrefixXophStrength3"] = { type = "Prefix", affix = "Burly", "+(9-11) to Strength", statOrder = { 1182 }, level = 44, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [4080418644] = { "+(9-11) to Strength" }, } },
- ["GraftPrefixXophStrength4"] = { type = "Prefix", affix = "Muscular", "+(12-14) to Strength", statOrder = { 1182 }, level = 66, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4080418644] = { "+(12-14) to Strength" }, } },
- ["GraftPrefixXophStrength5"] = { type = "Prefix", affix = "Beefy", "+(15-17) to Strength", statOrder = { 1182 }, level = 82, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4080418644] = { "+(15-17) to Strength" }, } },
- ["GraftPrefixXophPercentageStrength1"] = { type = "Prefix", affix = "Brutish", "(2-4)% increased Strength", statOrder = { 1189 }, level = 74, group = "GraftPrefixXophPercentageStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [734614379] = { "(2-4)% increased Strength" }, } },
- ["GraftPrefixXophPercentageArmour1"] = { type = "Prefix", affix = "Carapaced", "(15-18)% increased Armour", statOrder = { 1546 }, level = 1, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2866361420] = { "(15-18)% increased Armour" }, } },
- ["GraftPrefixXophPercentageArmour2"] = { type = "Prefix", affix = "Clad", "(19-22)% increased Armour", statOrder = { 1546 }, level = 22, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2866361420] = { "(19-22)% increased Armour" }, } },
- ["GraftPrefixXophPercentageArmour3"] = { type = "Prefix", affix = "Reinforced", "(23-26)% increased Armour", statOrder = { 1546 }, level = 44, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2866361420] = { "(23-26)% increased Armour" }, } },
- ["GraftPrefixXophPercentageArmour4"] = { type = "Prefix", affix = "Plated", "(27-30)% increased Armour", statOrder = { 1546 }, level = 66, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2866361420] = { "(27-30)% increased Armour" }, } },
- ["GraftPrefixXophPercentageArmour5"] = { type = "Prefix", affix = "Iron", "(30-35)% increased Armour", statOrder = { 1546 }, level = 82, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2866361420] = { "(30-35)% increased Armour" }, } },
- ["GraftPrefixXophFireResistance1"] = { type = "Prefix", affix = "Thermal", "+(5-12)% to Fire Resistance", statOrder = { 1630 }, level = 44, group = "GraftPrefixXophFireResistance", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3372524247] = { "+(5-12)% to Fire Resistance" }, } },
- ["GraftPrefixXophFireResistance2"] = { type = "Prefix", affix = "Refractory", "+(13-20)% to Fire Resistance", statOrder = { 1630 }, level = 66, group = "GraftPrefixXophFireResistance", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3372524247] = { "+(13-20)% to Fire Resistance" }, } },
- ["GraftPrefixXophFireResistance3"] = { type = "Prefix", affix = "Heatproof", "+(21-28)% to Fire Resistance", statOrder = { 1630 }, level = 82, group = "GraftPrefixXophFireResistance", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3372524247] = { "+(21-28)% to Fire Resistance" }, } },
- ["GraftPrefixXophFirePenetration1"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (6-10)% Fire Resistance", statOrder = { 2986 }, level = 66, group = "GraftPrefixXophFirePenetration", weightKey = { "graft_xoph", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [2653955271] = { "Damage Penetrates (6-10)% Fire Resistance" }, } },
- ["GraftPrefixXophMaximumFireResistance1"] = { type = "Prefix", affix = "Fireproof", "+(1-2)% to maximum Fire Resistance", statOrder = { 1628 }, level = 74, group = "GraftPrefixXophMaximumFireResistance", weightKey = { "graft_xoph", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+(1-2)% to maximum Fire Resistance" }, } },
- ["GraftPrefixXophGlobalIncreasedAttackDamage1"] = { type = "Prefix", affix = "Combatant's", "(5-9)% increased Attack Damage", statOrder = { 1203 }, level = 1, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(5-9)% increased Attack Damage" }, } },
- ["GraftPrefixXophGlobalIncreasedAttackDamage2"] = { type = "Prefix", affix = "Warrior's", "(10-14)% increased Attack Damage", statOrder = { 1203 }, level = 11, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(10-14)% increased Attack Damage" }, } },
- ["GraftPrefixXophGlobalIncreasedAttackDamage3"] = { type = "Prefix", affix = "Fighter's", "(15-19)% increased Attack Damage", statOrder = { 1203 }, level = 22, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(15-19)% increased Attack Damage" }, } },
- ["GraftPrefixXophGlobalIncreasedAttackDamage4"] = { type = "Prefix", affix = "Brawler's", "(20-24)% increased Attack Damage", statOrder = { 1203 }, level = 33, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(20-24)% increased Attack Damage" }, } },
- ["GraftPrefixXophGlobalIncreasedAttackDamage5"] = { type = "Prefix", affix = "Soldier's", "(25-29)% increased Attack Damage", statOrder = { 1203 }, level = 44, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(25-29)% increased Attack Damage" }, } },
- ["GraftPrefixXophGlobalIncreasedAttackDamage6"] = { type = "Prefix", affix = "Veteran's", "(30-34)% increased Attack Damage", statOrder = { 1203 }, level = 55, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(30-34)% increased Attack Damage" }, } },
- ["GraftPrefixXophGlobalIncreasedAttackDamage7"] = { type = "Prefix", affix = "Assailant's", "(35-39)% increased Attack Damage", statOrder = { 1203 }, level = 66, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(35-39)% increased Attack Damage" }, } },
- ["GraftPrefixXophGlobalIncreasedAttackDamage8"] = { type = "Prefix", affix = "Gladiator's", "(40-44)% increased Attack Damage", statOrder = { 1203 }, level = 74, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(40-44)% increased Attack Damage" }, } },
- ["GraftPrefixXophGlobalIncreasedAttackDamage9"] = { type = "Prefix", affix = "Prizefighter's", "(45-49)% increased Attack Damage", statOrder = { 1203 }, level = 82, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(45-49)% increased Attack Damage" }, } },
- ["GraftPrefixXophGlobalIncreasedAttackDamage10"] = { type = "Prefix", affix = "Pitfighter's", "(50-55)% increased Attack Damage", statOrder = { 1203 }, level = 85, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(50-55)% increased Attack Damage" }, } },
- ["GraftPrefixXophMinionDuration1"] = { type = "Prefix", affix = "Lingering", "(10-12)% increased Minion Duration", statOrder = { 5037 }, level = 44, group = "GraftPrefixXophMinionDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [999511066] = { "(10-12)% increased Minion Duration" }, } },
- ["GraftPrefixXophMinionDuration2"] = { type = "Prefix", affix = "Abiding", "(13-15)% increased Minion Duration", statOrder = { 5037 }, level = 66, group = "GraftPrefixXophMinionDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [999511066] = { "(13-15)% increased Minion Duration" }, } },
- ["GraftPrefixXophMinionDuration3"] = { type = "Prefix", affix = "Undying", "(16-18)% increased Minion Duration", statOrder = { 5037 }, level = 82, group = "GraftPrefixXophMinionDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [999511066] = { "(16-18)% increased Minion Duration" }, } },
- ["GraftPrefixEshShockChance1"] = { type = "Prefix", affix = "Jolting", "(3-5)% chance to Shock", statOrder = { 2038 }, level = 1, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1538773178] = { "(3-5)% chance to Shock" }, } },
- ["GraftPrefixEshShockChance2"] = { type = "Prefix", affix = "Enervating", "(6-8)% chance to Shock", statOrder = { 2038 }, level = 22, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1538773178] = { "(6-8)% chance to Shock" }, } },
- ["GraftPrefixEshShockChance3"] = { type = "Prefix", affix = "Sparking", "(9-11)% chance to Shock", statOrder = { 2038 }, level = 44, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [1538773178] = { "(9-11)% chance to Shock" }, } },
- ["GraftPrefixEshShockChance4"] = { type = "Prefix", affix = "Zapping", "(12-14)% chance to Shock", statOrder = { 2038 }, level = 66, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [1538773178] = { "(12-14)% chance to Shock" }, } },
- ["GraftPrefixEshShockChance5"] = { type = "Prefix", affix = "Shocking", "(15-17)% chance to Shock", statOrder = { 2038 }, level = 82, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [1538773178] = { "(15-17)% chance to Shock" }, } },
- ["GraftPrefixEshShockDuration1"] = { type = "Prefix", affix = "Sustained", "(15-24)% increased Shock Duration on Enemies", statOrder = { 1862 }, level = 44, group = "GraftPrefixEshShockDuration", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [3668351662] = { "(15-24)% increased Shock Duration on Enemies" }, } },
- ["GraftPrefixEshShockDuration2"] = { type = "Prefix", affix = "Lasting", "(25-34)% increased Shock Duration on Enemies", statOrder = { 1862 }, level = 66, group = "GraftPrefixEshShockDuration", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [3668351662] = { "(25-34)% increased Shock Duration on Enemies" }, } },
- ["GraftPrefixEshShockDuration3"] = { type = "Prefix", affix = "Perpetual", "(35-45)% increased Shock Duration on Enemies", statOrder = { 1862 }, level = 82, group = "GraftPrefixEshShockDuration", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [3668351662] = { "(35-45)% increased Shock Duration on Enemies" }, } },
- ["GraftPrefixEshLightningDamage1"] = { type = "Prefix", affix = "Flashing", "(5-9)% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(5-9)% increased Lightning Damage" }, } },
- ["GraftPrefixEshLightningDamage2"] = { type = "Prefix", affix = "Bright", "(10-14)% increased Lightning Damage", statOrder = { 1382 }, level = 11, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(10-14)% increased Lightning Damage" }, } },
- ["GraftPrefixEshLightningDamage3"] = { type = "Prefix", affix = "Bolting", "(15-19)% increased Lightning Damage", statOrder = { 1382 }, level = 22, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(15-19)% increased Lightning Damage" }, } },
- ["GraftPrefixEshLightningDamage4"] = { type = "Prefix", affix = "Discharging", "(20-24)% increased Lightning Damage", statOrder = { 1382 }, level = 33, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(20-24)% increased Lightning Damage" }, } },
- ["GraftPrefixEshLightningDamage5"] = { type = "Prefix", affix = "Stormrider's", "(25-29)% increased Lightning Damage", statOrder = { 1382 }, level = 44, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(25-29)% increased Lightning Damage" }, } },
- ["GraftPrefixEshLightningDamage6"] = { type = "Prefix", affix = "Thunderbolt's", "(30-34)% increased Lightning Damage", statOrder = { 1382 }, level = 55, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(30-34)% increased Lightning Damage" }, } },
- ["GraftPrefixEshLightningDamage7"] = { type = "Prefix", affix = "Stormcaller's", "(35-39)% increased Lightning Damage", statOrder = { 1382 }, level = 66, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(35-39)% increased Lightning Damage" }, } },
- ["GraftPrefixEshLightningDamage8"] = { type = "Prefix", affix = "Invoker's", "(40-44)% increased Lightning Damage", statOrder = { 1382 }, level = 74, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(40-44)% increased Lightning Damage" }, } },
- ["GraftPrefixEshLightningDamage9"] = { type = "Prefix", affix = "Stormweaver's", "(45-49)% increased Lightning Damage", statOrder = { 1382 }, level = 82, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(45-49)% increased Lightning Damage" }, } },
- ["GraftPrefixEshLightningDamage10"] = { type = "Prefix", affix = "Esh's", "(50-55)% increased Lightning Damage", statOrder = { 1382 }, level = 85, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(50-55)% increased Lightning Damage" }, } },
- ["GraftPrefixEshFlatAddedLightning1"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (5-7) Lightning Damage", statOrder = { 1384 }, level = 1, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1334060246] = { "Adds (1-2) to (5-7) Lightning Damage" }, } },
- ["GraftPrefixEshFlatAddedLightning2"] = { type = "Prefix", affix = "Empowered", "Adds (1-2) to (8-16) Lightning Damage", statOrder = { 1384 }, level = 22, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1334060246] = { "Adds (1-2) to (8-16) Lightning Damage" }, } },
- ["GraftPrefixEshFlatAddedLightning3"] = { type = "Prefix", affix = "Flashing", "Adds (1-3) to (20-24) Lightning Damage", statOrder = { 1384 }, level = 44, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1334060246] = { "Adds (1-3) to (20-24) Lightning Damage" }, } },
- ["GraftPrefixEshFlatAddedLightning4"] = { type = "Prefix", affix = "Fulminating", "Adds (2-4) to (33-41) Lightning Damage", statOrder = { 1384 }, level = 66, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1334060246] = { "Adds (2-4) to (33-41) Lightning Damage" }, } },
- ["GraftPrefixEshFlatAddedLightning5"] = { type = "Prefix", affix = "Static", "Adds (4-6) to (54-60) Lightning Damage", statOrder = { 1384 }, level = 82, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1334060246] = { "Adds (4-6) to (54-60) Lightning Damage" }, } },
- ["GraftPrefixEshCriticalChanceVSShocked1"] = { type = "Prefix", affix = "Convulsive", "(30-49)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5918 }, level = 66, group = "GraftPrefixEshCriticalChanceVSShocked", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [276103140] = { "(30-49)% increased Critical Strike Chance against Shocked Enemies" }, } },
- ["GraftPrefixEshCriticalChanceVSShocked2"] = { type = "Prefix", affix = "Fulgurating", "(50-65)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5918 }, level = 82, group = "GraftPrefixEshCriticalChanceVSShocked", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [276103140] = { "(50-65)% increased Critical Strike Chance against Shocked Enemies" }, } },
- ["GraftPrefixEshAttackAndCastSpeed1"] = { type = "Prefix", affix = "Rapid", "(4-6)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 44, group = "GraftPrefixEshAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2672805335] = { "(4-6)% increased Attack and Cast Speed" }, } },
- ["GraftPrefixEshAttackAndCastSpeed2"] = { type = "Prefix", affix = "Fleet", "(8-10)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 66, group = "GraftPrefixEshAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [2672805335] = { "(8-10)% increased Attack and Cast Speed" }, } },
- ["GraftPrefixEshAttackAndCastSpeed3"] = { type = "Prefix", affix = "Quickening", "(12-14)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 82, group = "GraftPrefixEshAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [2672805335] = { "(12-14)% increased Attack and Cast Speed" }, } },
- ["GraftPrefixEshMinionDamage1"] = { type = "Prefix", affix = "Noble", "Minions deal (5-9)% increased Damage", statOrder = { 1978 }, level = 1, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (5-9)% increased Damage" }, } },
- ["GraftPrefixEshMinionDamage2"] = { type = "Prefix", affix = "Regal", "Minions deal (10-14)% increased Damage", statOrder = { 1978 }, level = 11, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (10-14)% increased Damage" }, } },
- ["GraftPrefixEshMinionDamage3"] = { type = "Prefix", affix = "Lord's", "Minions deal (15-19)% increased Damage", statOrder = { 1978 }, level = 22, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (15-19)% increased Damage" }, } },
- ["GraftPrefixEshMinionDamage4"] = { type = "Prefix", affix = "Lady's", "Minions deal (20-24)% increased Damage", statOrder = { 1978 }, level = 33, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (20-24)% increased Damage" }, } },
- ["GraftPrefixEshMinionDamage5"] = { type = "Prefix", affix = "Baron's", "Minions deal (25-29)% increased Damage", statOrder = { 1978 }, level = 44, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (25-29)% increased Damage" }, } },
- ["GraftPrefixEshMinionDamage6"] = { type = "Prefix", affix = "Duke's", "Minions deal (30-34)% increased Damage", statOrder = { 1978 }, level = 55, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (30-34)% increased Damage" }, } },
- ["GraftPrefixEshMinionDamage7"] = { type = "Prefix", affix = "Aristocrat's", "Minions deal (35-39)% increased Damage", statOrder = { 1978 }, level = 66, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (35-39)% increased Damage" }, } },
- ["GraftPrefixEshMinionDamage8"] = { type = "Prefix", affix = "Elite", "Minions deal (40-44)% increased Damage", statOrder = { 1978 }, level = 74, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (40-44)% increased Damage" }, } },
- ["GraftPrefixEshMinionDamage9"] = { type = "Prefix", affix = "Prince's", "Minions deal (45-49)% increased Damage", statOrder = { 1978 }, level = 82, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (45-49)% increased Damage" }, } },
- ["GraftPrefixEshMinionDamage10"] = { type = "Prefix", affix = "Monarch's", "Minions deal (50-55)% increased Damage", statOrder = { 1978 }, level = 85, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (50-55)% increased Damage" }, } },
- ["GraftPrefixEshMinionAttackAndCastSpeed1"] = { type = "Prefix", affix = "Feverish", "Minions have (4-6)% increased Attack and Cast Speed", statOrder = { 9273 }, level = 44, group = "GraftPrefixEshMinionAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [3091578504] = { "Minions have (4-6)% increased Attack and Cast Speed" }, } },
- ["GraftPrefixEshMinionAttackAndCastSpeed2"] = { type = "Prefix", affix = "Manic", "Minions have (8-10)% increased Attack and Cast Speed", statOrder = { 9273 }, level = 66, group = "GraftPrefixEshMinionAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [3091578504] = { "Minions have (8-10)% increased Attack and Cast Speed" }, } },
- ["GraftPrefixEshMinionAttackAndCastSpeed3"] = { type = "Prefix", affix = "Frenetic", "Minions have (12-14)% increased Attack and Cast Speed", statOrder = { 9273 }, level = 82, group = "GraftPrefixEshMinionAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [3091578504] = { "Minions have (12-14)% increased Attack and Cast Speed" }, } },
- ["GraftPrefixEshGlobalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Protective", "(3-5)% increased maximum Energy Shield", statOrder = { 1566 }, level = 1, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2482852589] = { "(3-5)% increased maximum Energy Shield" }, } },
- ["GraftPrefixEshGlobalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Bolstered", "(6-8)% increased maximum Energy Shield", statOrder = { 1566 }, level = 11, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2482852589] = { "(6-8)% increased maximum Energy Shield" }, } },
- ["GraftPrefixEshGlobalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Barrier", "(9-11)% increased maximum Energy Shield", statOrder = { 1566 }, level = 33, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [2482852589] = { "(9-11)% increased maximum Energy Shield" }, } },
- ["GraftPrefixEshGlobalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Reinforced", "(12-13)% increased maximum Energy Shield", statOrder = { 1566 }, level = 54, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [2482852589] = { "(12-13)% increased maximum Energy Shield" }, } },
- ["GraftPrefixEshGlobalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Buttressed", "(14-16)% increased maximum Energy Shield", statOrder = { 1566 }, level = 66, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [2482852589] = { "(14-16)% increased maximum Energy Shield" }, } },
- ["GraftPrefixEshLightningResistance1"] = { type = "Prefix", affix = "Grounded", "+(5-12)% to Lightning Resistance", statOrder = { 1641 }, level = 22, group = "GraftPrefixEshLightningResistance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1671376347] = { "+(5-12)% to Lightning Resistance" }, } },
- ["GraftPrefixEshLightningResistance2"] = { type = "Prefix", affix = "Insulated", "+(13-20)% to Lightning Resistance", statOrder = { 1641 }, level = 66, group = "GraftPrefixEshLightningResistance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [1671376347] = { "+(13-20)% to Lightning Resistance" }, } },
- ["GraftPrefixEshLightningResistance3"] = { type = "Prefix", affix = "Absorbing", "+(21-28)% to Lightning Resistance", statOrder = { 1641 }, level = 82, group = "GraftPrefixEshLightningResistance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [1671376347] = { "+(21-28)% to Lightning Resistance" }, } },
- ["GraftPrefixEshLightningPenetration1"] = { type = "Prefix", affix = "Energetic", "Damage Penetrates (6-10)% Lightning Resistance", statOrder = { 2989 }, level = 66, group = "GraftPrefixEshLightningPenetration", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [818778753] = { "Damage Penetrates (6-10)% Lightning Resistance" }, } },
- ["GraftPrefixEshMovementSpeed1"] = { type = "Prefix", affix = "Expedient", "(3-6)% increased Movement Speed", statOrder = { 1803 }, level = 66, group = "GraftPrefixEshMovementSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 50, 0, 0 }, modTags = { }, tradeHashes = { [2250533757] = { "(3-6)% increased Movement Speed" }, } },
- ["GraftPrefixEshMaximumLightningResistance1"] = { type = "Prefix", affix = "Sequestered", "+(1-2)% to maximum Lightning Resistance", statOrder = { 1639 }, level = 74, group = "GraftPrefixEshMaximumLightningResistance", weightKey = { "graft_esh", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+(1-2)% to maximum Lightning Resistance" }, } },
- ["GraftPrefixEshIncreasedMana1"] = { type = "Prefix", affix = "Expansive", "(3-6)% increased maximum Mana", statOrder = { 1585 }, level = 22, group = "GraftPrefixEshIncreasedMana", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2748665614] = { "(3-6)% increased maximum Mana" }, } },
- ["GraftPrefixEshIncreasedMana2"] = { type = "Prefix", affix = "Unbounded", "(7-10)% increased maximum Mana", statOrder = { 1585 }, level = 66, group = "GraftPrefixEshIncreasedMana", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [2748665614] = { "(7-10)% increased maximum Mana" }, } },
- ["GraftPrefixEshIncreasedMana3"] = { type = "Prefix", affix = "Illimitable", "(11-14)% increased maximum Mana", statOrder = { 1585 }, level = 82, group = "GraftPrefixEshIncreasedMana", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [2748665614] = { "(11-14)% increased maximum Mana" }, } },
- ["GraftPrefixEshIntelligence1"] = { type = "Prefix", affix = "Controlled", "+(3-5) to Intelligence", statOrder = { 1184 }, level = 1, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 100, 0, 0 }, modTags = { }, tradeHashes = { [328541901] = { "+(3-5) to Intelligence" }, } },
- ["GraftPrefixEshIntelligence2"] = { type = "Prefix", affix = "Brilliant", "+(6-8) to Intelligence", statOrder = { 1184 }, level = 22, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [328541901] = { "+(6-8) to Intelligence" }, } },
- ["GraftPrefixEshIntelligence3"] = { type = "Prefix", affix = "Astute", "+(9-11) to Intelligence", statOrder = { 1184 }, level = 44, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [328541901] = { "+(9-11) to Intelligence" }, } },
- ["GraftPrefixEshIntelligence4"] = { type = "Prefix", affix = "Acute", "+(12-14) to Intelligence", statOrder = { 1184 }, level = 66, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [328541901] = { "+(12-14) to Intelligence" }, } },
- ["GraftPrefixEshIntelligence5"] = { type = "Prefix", affix = "Genius'", "+(15-17) to Intelligence", statOrder = { 1184 }, level = 82, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [328541901] = { "+(15-17) to Intelligence" }, } },
- ["GraftPrefixEshPercentageIntelligence1"] = { type = "Prefix", affix = "Composed", "(2-4)% increased Intelligence", statOrder = { 1191 }, level = 74, group = "GraftPrefixEshPercentageIntelligence", weightKey = { "graft_esh", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [656461285] = { "(2-4)% increased Intelligence" }, } },
- ["GraftPrefixEshSpellDamage1"] = { type = "Prefix", affix = "Arcane", "(5-9)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(5-9)% increased Spell Damage" }, } },
- ["GraftPrefixEshSpellDamage2"] = { type = "Prefix", affix = "Spelleweaving", "(10-14)% increased Spell Damage", statOrder = { 1228 }, level = 11, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(10-14)% increased Spell Damage" }, } },
- ["GraftPrefixEshSpellDamage3"] = { type = "Prefix", affix = "Caster's", "(15-19)% increased Spell Damage", statOrder = { 1228 }, level = 22, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(15-19)% increased Spell Damage" }, } },
- ["GraftPrefixEshSpellDamage4"] = { type = "Prefix", affix = "Mage's", "(20-24)% increased Spell Damage", statOrder = { 1228 }, level = 33, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(20-24)% increased Spell Damage" }, } },
- ["GraftPrefixEshSpellDamage5"] = { type = "Prefix", affix = "Scholar's", "(25-29)% increased Spell Damage", statOrder = { 1228 }, level = 44, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(25-29)% increased Spell Damage" }, } },
- ["GraftPrefixEshSpellDamage6"] = { type = "Prefix", affix = "Wizard's", "(30-34)% increased Spell Damage", statOrder = { 1228 }, level = 55, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(30-34)% increased Spell Damage" }, } },
- ["GraftPrefixEshSpellDamage7"] = { type = "Prefix", affix = "Sage's", "(35-39)% increased Spell Damage", statOrder = { 1228 }, level = 66, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(35-39)% increased Spell Damage" }, } },
- ["GraftPrefixEshSpellDamage8"] = { type = "Prefix", affix = "Sorcerer's", "(40-44)% increased Spell Damage", statOrder = { 1228 }, level = 74, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(40-44)% increased Spell Damage" }, } },
- ["GraftPrefixEshSpellDamage9"] = { type = "Prefix", affix = "Magician's", "(45-49)% increased Spell Damage", statOrder = { 1228 }, level = 82, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(45-49)% increased Spell Damage" }, } },
- ["GraftPrefixEshSpellDamage10"] = { type = "Prefix", affix = "Lich's", "(50-55)% increased Spell Damage", statOrder = { 1228 }, level = 85, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(50-55)% increased Spell Damage" }, } },
- ["GraftPrefixTulFreezeChance1"] = { type = "Prefix", affix = "Frigid", "(3-5)% chance to Freeze", statOrder = { 2034 }, level = 1, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [44571480] = { "(3-5)% chance to Freeze" }, } },
- ["GraftPrefixTulFreezeChance2"] = { type = "Prefix", affix = "Frosted", "(6-8)% chance to Freeze", statOrder = { 2034 }, level = 22, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [44571480] = { "(6-8)% chance to Freeze" }, } },
- ["GraftPrefixTulFreezeChance3"] = { type = "Prefix", affix = "Bitter", "(9-11)% chance to Freeze", statOrder = { 2034 }, level = 44, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [44571480] = { "(9-11)% chance to Freeze" }, } },
- ["GraftPrefixTulFreezeChance4"] = { type = "Prefix", affix = "Wintry", "(12-14)% chance to Freeze", statOrder = { 2034 }, level = 66, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [44571480] = { "(12-14)% chance to Freeze" }, } },
- ["GraftPrefixTulFreezeChance5"] = { type = "Prefix", affix = "Freezing", "(15-17)% chance to Freeze", statOrder = { 2034 }, level = 82, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [44571480] = { "(15-17)% chance to Freeze" }, } },
- ["GraftPrefixTulFlatAddedColdDamage1"] = { type = "Prefix", affix = "Icy", "Adds (3-4) to (6-8) Cold Damage", statOrder = { 1373 }, level = 1, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2387423236] = { "Adds (3-4) to (6-8) Cold Damage" }, } },
- ["GraftPrefixTulFlatAddedColdDamage2"] = { type = "Prefix", affix = "Cold", "Adds (4-7) to (11-15) Cold Damage", statOrder = { 1373 }, level = 22, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2387423236] = { "Adds (4-7) to (11-15) Cold Damage" }, } },
- ["GraftPrefixTulFlatAddedColdDamage3"] = { type = "Prefix", affix = "Brumal", "Adds (10-12) to (15-19) Cold Damage", statOrder = { 1373 }, level = 44, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2387423236] = { "Adds (10-12) to (15-19) Cold Damage" }, } },
- ["GraftPrefixTulFlatAddedColdDamage4"] = { type = "Prefix", affix = "Bleak", "Adds (14-17) to (21-25) Cold Damage", statOrder = { 1373 }, level = 66, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2387423236] = { "Adds (14-17) to (21-25) Cold Damage" }, } },
- ["GraftPrefixTulFlatAddedColdDamage5"] = { type = "Prefix", affix = "Frostbound", "Adds (20-23) to (26-32) Cold Damage", statOrder = { 1373 }, level = 82, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2387423236] = { "Adds (20-23) to (26-32) Cold Damage" }, } },
- ["GraftPrefixTulIncreasedColdDamage1"] = { type = "Prefix", affix = "", "(5-9)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(5-9)% increased Cold Damage" }, } },
- ["GraftPrefixTulIncreasedColdDamage2"] = { type = "Prefix", affix = "", "(10-14)% increased Cold Damage", statOrder = { 1371 }, level = 11, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(10-14)% increased Cold Damage" }, } },
- ["GraftPrefixTulIncreasedColdDamage3"] = { type = "Prefix", affix = "", "(15-19)% increased Cold Damage", statOrder = { 1371 }, level = 22, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(15-19)% increased Cold Damage" }, } },
- ["GraftPrefixTulIncreasedColdDamage4"] = { type = "Prefix", affix = "", "(20-24)% increased Cold Damage", statOrder = { 1371 }, level = 33, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(20-24)% increased Cold Damage" }, } },
- ["GraftPrefixTulIncreasedColdDamage5"] = { type = "Prefix", affix = "", "(25-29)% increased Cold Damage", statOrder = { 1371 }, level = 44, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(25-29)% increased Cold Damage" }, } },
- ["GraftPrefixTulIncreasedColdDamage6"] = { type = "Prefix", affix = "", "(30-34)% increased Cold Damage", statOrder = { 1371 }, level = 55, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(30-34)% increased Cold Damage" }, } },
- ["GraftPrefixTulIncreasedColdDamage7"] = { type = "Prefix", affix = "", "(35-39)% increased Cold Damage", statOrder = { 1371 }, level = 66, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(35-39)% increased Cold Damage" }, } },
- ["GraftPrefixTulIncreasedColdDamage8"] = { type = "Prefix", affix = "", "(40-44)% increased Cold Damage", statOrder = { 1371 }, level = 74, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(40-44)% increased Cold Damage" }, } },
- ["GraftPrefixTulIncreasedColdDamage9"] = { type = "Prefix", affix = "", "(45-49)% increased Cold Damage", statOrder = { 1371 }, level = 82, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(45-49)% increased Cold Damage" }, } },
- ["GraftPrefixTulIncreasedColdDamage10"] = { type = "Prefix", affix = "", "(50-55)% increased Cold Damage", statOrder = { 1371 }, level = 85, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(50-55)% increased Cold Damage" }, } },
- ["GraftPrefixTulStrikeRange1"] = { type = "Prefix", affix = "Extended", "+(0.1-0.3) metres to Melee Strike Range", statOrder = { 2539 }, level = 66, group = "GraftPrefixTulStrikeRange", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2264295449] = { "+(0.1-0.3) metres to Melee Strike Range" }, } },
- ["GraftPrefixTulStrikeRange2"] = { type = "Prefix", affix = "Elongated", "+0.4 metres to Melee Strike Range", statOrder = { 2539 }, level = 82, group = "GraftPrefixTulStrikeRange", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2264295449] = { "+0.4 metres to Melee Strike Range" }, } },
- ["GraftPrefixTulAdditionalStrike1"] = { type = "Prefix", affix = "Versatile", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9188 }, level = 66, group = "GraftPrefixTulAdditionalStrike", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } },
- ["GraftPrefixTulProjectileSpeed1"] = { type = "Prefix", affix = "Tossing", "(5-9)% increased Projectile Speed", statOrder = { 1801 }, level = 1, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3759663284] = { "(5-9)% increased Projectile Speed" }, } },
- ["GraftPrefixTulProjectileSpeed2"] = { type = "Prefix", affix = "Hurling", "(10-14)% increased Projectile Speed", statOrder = { 1801 }, level = 22, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3759663284] = { "(10-14)% increased Projectile Speed" }, } },
- ["GraftPrefixTulProjectileSpeed3"] = { type = "Prefix", affix = "Lobbing", "(15-19)% increased Projectile Speed", statOrder = { 1801 }, level = 44, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3759663284] = { "(15-19)% increased Projectile Speed" }, } },
- ["GraftPrefixTulProjectileSpeed4"] = { type = "Prefix", affix = "Slinging", "(20-24)% increased Projectile Speed", statOrder = { 1801 }, level = 66, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3759663284] = { "(20-24)% increased Projectile Speed" }, } },
- ["GraftPrefixTulProjectileSpeed5"] = { type = "Prefix", affix = "Propeling", "(25-30)% increased Projectile Speed", statOrder = { 1801 }, level = 82, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3759663284] = { "(25-30)% increased Projectile Speed" }, } },
- ["GraftPrefixTulGlobalIncreasedEvasion1"] = { type = "Prefix", affix = "Blurred", "(15-18)% increased Evasion Rating", statOrder = { 1554 }, level = 1, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2106365538] = { "(15-18)% increased Evasion Rating" }, } },
- ["GraftPrefixTulGlobalIncreasedEvasion2"] = { type = "Prefix", affix = "Obscuring", "(19-22)% increased Evasion Rating", statOrder = { 1554 }, level = 22, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2106365538] = { "(19-22)% increased Evasion Rating" }, } },
- ["GraftPrefixTulGlobalIncreasedEvasion3"] = { type = "Prefix", affix = "Hazy", "(23-26)% increased Evasion Rating", statOrder = { 1554 }, level = 44, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2106365538] = { "(23-26)% increased Evasion Rating" }, } },
- ["GraftPrefixTulGlobalIncreasedEvasion4"] = { type = "Prefix", affix = "Shrouded", "(27-30)% increased Evasion Rating", statOrder = { 1554 }, level = 66, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2106365538] = { "(27-30)% increased Evasion Rating" }, } },
- ["GraftPrefixTulGlobalIncreasedEvasion5"] = { type = "Prefix", affix = "Mistborn", "(30-35)% increased Evasion Rating", statOrder = { 1554 }, level = 82, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2106365538] = { "(30-35)% increased Evasion Rating" }, } },
- ["GraftPrefixTulColdResistance1"] = { type = "Prefix", affix = "Winterised", "+(5-12)% to Cold Resistance", statOrder = { 1636 }, level = 44, group = "GraftPrefixTulColdResistance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4220027924] = { "+(5-12)% to Cold Resistance" }, } },
- ["GraftPrefixTulColdResistance2"] = { type = "Prefix", affix = "Insular", "+(13-20)% to Cold Resistance", statOrder = { 1636 }, level = 66, group = "GraftPrefixTulColdResistance", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4220027924] = { "+(13-20)% to Cold Resistance" }, } },
- ["GraftPrefixTulColdResistance3"] = { type = "Prefix", affix = "Yeti's", "+(21-28)% to Cold Resistance", statOrder = { 1636 }, level = 82, group = "GraftPrefixTulColdResistance", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4220027924] = { "+(21-28)% to Cold Resistance" }, } },
- ["GraftPrefixTulColdPenetration1"] = { type = "Prefix", affix = "Biting", "Damage Penetrates (6-10)% Cold Resistance", statOrder = { 2988 }, level = 66, group = "GraftPrefixTulColdPenetration", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3417711605] = { "Damage Penetrates (6-10)% Cold Resistance" }, } },
- ["GraftPrefixTulChillEffect1"] = { type = "Prefix", affix = "Impeding", "(20-29)% increased Effect of Chill", statOrder = { 5774 }, level = 66, group = "GraftPrefixTulChillEffect", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [828179689] = { "(20-29)% increased Effect of Chill" }, } },
- ["GraftPrefixTulChillEffect2"] = { type = "Prefix", affix = "Shackling", "(30-40)% increased Effect of Chill", statOrder = { 5774 }, level = 82, group = "GraftPrefixTulChillEffect", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [828179689] = { "(30-40)% increased Effect of Chill" }, } },
- ["GraftPrefixTulCritMultiplier1"] = { type = "Prefix", affix = "Dangerous", "+(9-10)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3556824919] = { "+(9-10)% to Global Critical Strike Multiplier" }, } },
- ["GraftPrefixTulCritMultiplier2"] = { type = "Prefix", affix = "Harmful", "+(11-12)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 22, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3556824919] = { "+(11-12)% to Global Critical Strike Multiplier" }, } },
- ["GraftPrefixTulCritMultiplier3"] = { type = "Prefix", affix = "Threatening", "+(13-14)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 44, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3556824919] = { "+(13-14)% to Global Critical Strike Multiplier" }, } },
- ["GraftPrefixTulCritMultiplier4"] = { type = "Prefix", affix = "Lethal", "+(14-16)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 66, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3556824919] = { "+(14-16)% to Global Critical Strike Multiplier" }, } },
- ["GraftPrefixTulCritMultiplier5"] = { type = "Prefix", affix = "Deadly", "+(16-18)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 82, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3556824919] = { "+(16-18)% to Global Critical Strike Multiplier" }, } },
- ["GraftPrefixTulCritChance1"] = { type = "Prefix", affix = "Careful", "(10-14)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [587431675] = { "(10-14)% increased Global Critical Strike Chance" }, } },
- ["GraftPrefixTulCritChance2"] = { type = "Prefix", affix = "Exact", "(15-19)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 22, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [587431675] = { "(15-19)% increased Global Critical Strike Chance" }, } },
- ["GraftPrefixTulCritChance3"] = { type = "Prefix", affix = "Unerring", "(20-24)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 44, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [587431675] = { "(20-24)% increased Global Critical Strike Chance" }, } },
- ["GraftPrefixTulCritChance4"] = { type = "Prefix", affix = "Precise", "(25-29)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 66, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [587431675] = { "(25-29)% increased Global Critical Strike Chance" }, } },
- ["GraftPrefixTulCritChance5"] = { type = "Prefix", affix = "Pinpoint", "(30-34)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 82, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [587431675] = { "(30-34)% increased Global Critical Strike Chance" }, } },
- ["GraftPrefixTulPowerChargeOnKill1"] = { type = "Prefix", affix = "Potent", "(5-10)% chance to gain a Power Charge on Kill", statOrder = { 2638 }, level = 66, group = "GraftPrefixTulPowerChargeOnKill", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2483795307] = { "(5-10)% chance to gain a Power Charge on Kill" }, } },
- ["GraftPrefixTulFrenzyChargeOnHitVsUnique1"] = { type = "Prefix", affix = "Frenzied", "(5-10)% chance to gain a Frenzy Charge when you Hit a Unique Enemy", statOrder = { 6766 }, level = 66, group = "GraftPrefixTulFrenzyChargeOnHitVsUnique", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [4113439745] = { "(5-10)% chance to gain a Frenzy Charge when you Hit a Unique Enemy" }, } },
- ["GraftPrefixTulMaximumColdResistance1"] = { type = "Prefix", affix = "Blustering", "+(1-2)% to maximum Cold Resistance", statOrder = { 1634 }, level = 74, group = "GraftPrefixTulMaximumColdResistance", weightKey = { "graft_tul", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+(1-2)% to maximum Cold Resistance" }, } },
- ["GraftPrefixTulDexterity1"] = { type = "Prefix", affix = "Lithe", "+(3-5) to Dexterity", statOrder = { 1183 }, level = 1, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3261801346] = { "+(3-5) to Dexterity" }, } },
- ["GraftPrefixTulDexterity2"] = { type = "Prefix", affix = "Adroit", "+(6-8) to Dexterity", statOrder = { 1183 }, level = 22, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3261801346] = { "+(6-8) to Dexterity" }, } },
- ["GraftPrefixTulDexterity3"] = { type = "Prefix", affix = "Nimble", "+(9-11) to Dexterity", statOrder = { 1183 }, level = 44, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3261801346] = { "+(9-11) to Dexterity" }, } },
- ["GraftPrefixTulDexterity4"] = { type = "Prefix", affix = "Adept", "+(12-14) to Dexterity", statOrder = { 1183 }, level = 66, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3261801346] = { "+(12-14) to Dexterity" }, } },
- ["GraftPrefixTulDexterity5"] = { type = "Prefix", affix = "Dexterous", "+(15-17) to Dexterity", statOrder = { 1183 }, level = 82, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3261801346] = { "+(15-17) to Dexterity" }, } },
- ["GraftPrefixTulPercentageDexterity1"] = { type = "Prefix", affix = "Graceful", "(2-4)% increased Dexterity", statOrder = { 1190 }, level = 74, group = "GraftPrefixTulPercentageDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4139681126] = { "(2-4)% increased Dexterity" }, } },
- ["GraftPrefixTulMinionLife1"] = { type = "Prefix", affix = "Chief's", "Minions have (9-10)% increased maximum Life", statOrder = { 1771 }, level = 1, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [770672621] = { "Minions have (9-10)% increased maximum Life" }, } },
- ["GraftPrefixTulMinionLife2"] = { type = "Prefix", affix = "Ruler's", "Minions have (11-12)% increased maximum Life", statOrder = { 1771 }, level = 22, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [770672621] = { "Minions have (11-12)% increased maximum Life" }, } },
- ["GraftPrefixTulMinionLife3"] = { type = "Prefix", affix = "Despot's", "Minions have (13-14)% increased maximum Life", statOrder = { 1771 }, level = 44, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [770672621] = { "Minions have (13-14)% increased maximum Life" }, } },
- ["GraftPrefixTulMinionLife4"] = { type = "Prefix", affix = "Authoritarian's", "Minions have (15-16)% increased maximum Life", statOrder = { 1771 }, level = 66, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [770672621] = { "Minions have (15-16)% increased maximum Life" }, } },
- ["GraftPrefixTulMinionLife5"] = { type = "Prefix", affix = "Overlord's", "Minions have (17-18)% increased maximum Life", statOrder = { 1771 }, level = 82, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [770672621] = { "Minions have (17-18)% increased maximum Life" }, } },
- ["GraftPrefixTulMinionResistances1"] = { type = "Prefix", affix = "Noble's", "Minions have +(5-8)% to all Elemental Resistances", statOrder = { 2917 }, level = 22, group = "GraftPrefixTulMinionResistances", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1423639565] = { "Minions have +(5-8)% to all Elemental Resistances" }, } },
- ["GraftPrefixTulMinionResistances2"] = { type = "Prefix", affix = "Lord's", "Minions have +(9-12)% to all Elemental Resistances", statOrder = { 2917 }, level = 44, group = "GraftPrefixTulMinionResistances", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1423639565] = { "Minions have +(9-12)% to all Elemental Resistances" }, } },
- ["GraftPrefixTulMinionResistances3"] = { type = "Prefix", affix = "King's", "Minions have +(13-16)% to all Elemental Resistances", statOrder = { 2917 }, level = 66, group = "GraftPrefixTulMinionResistances", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1423639565] = { "Minions have +(13-16)% to all Elemental Resistances" }, } },
- ["GraftSuffixStunDuration1"] = { type = "Suffix", affix = "of Slamming", "Skills used by this Graft have (10-19)% increased Stun Duration", statOrder = { 10921 }, level = 44, group = "GraftSuffixStunDuration", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3150918189] = { "Skills used by this Graft have (10-19)% increased Stun Duration" }, } },
- ["GraftSuffixStunDuration2"] = { type = "Suffix", affix = "of Thudding", "Skills used by this Graft have (20-29)% increased Stun Duration", statOrder = { 10921 }, level = 66, group = "GraftSuffixStunDuration", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3150918189] = { "Skills used by this Graft have (20-29)% increased Stun Duration" }, } },
- ["GraftSuffixStunDuration3"] = { type = "Suffix", affix = "of Dazing", "Skills used by this Graft have (30-39)% increased Stun Duration", statOrder = { 10921 }, level = 82, group = "GraftSuffixStunDuration", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3150918189] = { "Skills used by this Graft have (30-39)% increased Stun Duration" }, } },
- ["GraftSuffixAreaOfEffect1"] = { type = "Suffix", affix = "of Reach", "Skills used by this Graft have (8-12)% increased Area of Effect", statOrder = { 10868 }, level = 1, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [137115575] = { "Skills used by this Graft have (8-12)% increased Area of Effect" }, } },
- ["GraftSuffixAreaOfEffect2"] = { type = "Suffix", affix = "of Grasping", "Skills used by this Graft have (14-16)% increased Area of Effect", statOrder = { 10868 }, level = 22, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [137115575] = { "Skills used by this Graft have (14-16)% increased Area of Effect" }, } },
- ["GraftSuffixAreaOfEffect3"] = { type = "Suffix", affix = "of Extension", "Skills used by this Graft have (18-22)% increased Area of Effect", statOrder = { 10868 }, level = 44, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 0 }, modTags = { }, tradeHashes = { [137115575] = { "Skills used by this Graft have (18-22)% increased Area of Effect" }, } },
- ["GraftSuffixAreaOfEffect4"] = { type = "Suffix", affix = "of Broadening", "Skills used by this Graft have (24-28)% increased Area of Effect", statOrder = { 10868 }, level = 66, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [137115575] = { "Skills used by this Graft have (24-28)% increased Area of Effect" }, } },
- ["GraftSuffixAreaOfEffect5"] = { type = "Suffix", affix = "of the Expanse", "Skills used by this Graft have (30-34)% increased Area of Effect", statOrder = { 10868 }, level = 82, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [137115575] = { "Skills used by this Graft have (30-34)% increased Area of Effect" }, } },
- ["GraftSuffixHinderOnHit1"] = { type = "Suffix", affix = "of Hindrance", "Spells used by this Graft Hinder Enemies on Hit", statOrder = { 10920 }, level = 44, group = "GraftSuffixHinderOnHit", weightKey = { "graft_tul_tornado", "graft_esh_lightning_hands", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [463925000] = { "Spells used by this Graft Hinder Enemies on Hit" }, } },
- ["GraftSuffixChainingDistance1"] = { type = "Suffix", affix = "of Ricocheting", "Skills used by this Graft have (40-69)% increased Chaining range", statOrder = { 10870 }, level = 44, group = "GraftSuffixChainingDistance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3533780673] = { "Skills used by this Graft have (40-69)% increased Chaining range" }, } },
- ["GraftSuffixChainingDistance2"] = { type = "Suffix", affix = "of Chaining", "Skills used by this Graft have (70-100)% increased Chaining range", statOrder = { 10870 }, level = 82, group = "GraftSuffixChainingDistance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [3533780673] = { "Skills used by this Graft have (70-100)% increased Chaining range" }, } },
- ["GraftSuffixAdditionalProjectiles1"] = { type = "Suffix", affix = "of Splitting", "Skills used by this Graft fire 2 additional Projectiles", statOrder = { 10911 }, level = 44, group = "GraftSuffixAdditionalProjectiles", weightKey = { "graft_xoph_molten_shell", "graft_tul_tornado", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHashes = { [2858824325] = { "Skills used by this Graft fire 2 additional Projectiles" }, } },
- ["GraftSuffixAdditionalProjectiles2"] = { type = "Suffix", affix = "of Splintering", "Skills used by this Graft fire 3 additional Projectiles", statOrder = { 10911 }, level = 82, group = "GraftSuffixAdditionalProjectiles", weightKey = { "graft_xoph_molten_shell", "graft_tul_tornado", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHashes = { [2858824325] = { "Skills used by this Graft fire 3 additional Projectiles" }, } },
- ["GraftSuffixProjectileSpeed1"] = { type = "Suffix", affix = "of Flight", "Skills used by this Graft have (8-12)% increased Projectile Speed", statOrder = { 10913 }, level = 1, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [76615773] = { "Skills used by this Graft have (8-12)% increased Projectile Speed" }, } },
- ["GraftSuffixProjectileSpeed2"] = { type = "Suffix", affix = "of Gliding", "Skills used by this Graft have (13-17)% increased Projectile Speed", statOrder = { 10913 }, level = 22, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [76615773] = { "Skills used by this Graft have (13-17)% increased Projectile Speed" }, } },
- ["GraftSuffixProjectileSpeed3"] = { type = "Suffix", affix = "of Homing", "Skills used by this Graft have (18-22)% increased Projectile Speed", statOrder = { 10913 }, level = 44, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [76615773] = { "Skills used by this Graft have (18-22)% increased Projectile Speed" }, } },
- ["GraftSuffixProjectileSpeed4"] = { type = "Suffix", affix = "of Launching", "Skills used by this Graft have (23-27)% increased Projectile Speed", statOrder = { 10913 }, level = 66, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [76615773] = { "Skills used by this Graft have (23-27)% increased Projectile Speed" }, } },
- ["GraftSuffixProjectileSpeed5"] = { type = "Suffix", affix = "of Soaring", "Skills used by this Graft have (28-32)% increased Projectile Speed", statOrder = { 10913 }, level = 82, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [76615773] = { "Skills used by this Graft have (28-32)% increased Projectile Speed" }, } },
- ["GraftSuffixIncreasedDamage1"] = { type = "Suffix", affix = "of Blasting", "Skills used by this Graft deal (10-29)% increased Damage", statOrder = { 10883 }, level = 1, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (10-29)% increased Damage" }, } },
- ["GraftSuffixIncreasedDamage2"] = { type = "Suffix", affix = "of Smashing", "Skills used by this Graft deal (30-49)% increased Damage", statOrder = { 10883 }, level = 11, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (30-49)% increased Damage" }, } },
- ["GraftSuffixIncreasedDamage3"] = { type = "Suffix", affix = "of Shattering", "Skills used by this Graft deal (50-69)% increased Damage", statOrder = { 10883 }, level = 22, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (50-69)% increased Damage" }, } },
- ["GraftSuffixIncreasedDamage4"] = { type = "Suffix", affix = "of Wrecking", "Skills used by this Graft deal (70-89)% increased Damage", statOrder = { 10883 }, level = 33, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (70-89)% increased Damage" }, } },
- ["GraftSuffixIncreasedDamage5"] = { type = "Suffix", affix = "of Destroying", "Skills used by this Graft deal (90-109)% increased Damage", statOrder = { 10883 }, level = 44, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (90-109)% increased Damage" }, } },
- ["GraftSuffixIncreasedDamage6"] = { type = "Suffix", affix = "of Crushing", "Skills used by this Graft deal (110-129)% increased Damage", statOrder = { 10883 }, level = 55, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (110-129)% increased Damage" }, } },
- ["GraftSuffixIncreasedDamage7"] = { type = "Suffix", affix = "of Disintegration", "Skills used by this Graft deal (130-149)% increased Damage", statOrder = { 10883 }, level = 66, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (130-149)% increased Damage" }, } },
- ["GraftSuffixIncreasedDamage8"] = { type = "Suffix", affix = "of Demolishing", "Skills used by this Graft deal (150-169)% increased Damage", statOrder = { 10883 }, level = 74, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (150-169)% increased Damage" }, } },
- ["GraftSuffixIncreasedDamage9"] = { type = "Suffix", affix = "of Ruination", "Skills used by this Graft deal (170-189)% increased Damage", statOrder = { 10883 }, level = 82, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (170-189)% increased Damage" }, } },
- ["GraftSuffixIncreasedDamage10"] = { type = "Suffix", affix = "of Annihilation", "Skills used by this Graft deal (190-220)% increased Damage", statOrder = { 10883 }, level = 85, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (190-220)% increased Damage" }, } },
- ["GraftSuffixIncreasedDuration1"] = { type = "Suffix", affix = "of Lingering", "Skills used by this Graft have (10-14)% increased Skill Effect Duration", statOrder = { 10886 }, level = 1, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (10-14)% increased Skill Effect Duration" }, } },
- ["GraftSuffixIncreasedDuration2"] = { type = "Suffix", affix = "of Lasting", "Skills used by this Graft have (15-20)% increased Skill Effect Duration", statOrder = { 10886 }, level = 22, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (15-20)% increased Skill Effect Duration" }, } },
- ["GraftSuffixIncreasedDuration3"] = { type = "Suffix", affix = "of the Unending", "Skills used by this Graft have (20-24)% increased Skill Effect Duration", statOrder = { 10886 }, level = 44, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (20-24)% increased Skill Effect Duration" }, } },
- ["GraftSuffixIncreasedDuration4"] = { type = "Suffix", affix = "of Permanence", "Skills used by this Graft have (25-29)% increased Skill Effect Duration", statOrder = { 10886 }, level = 66, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (25-29)% increased Skill Effect Duration" }, } },
- ["GraftSuffixIncreasedDuration5"] = { type = "Suffix", affix = "of Eternity", "Skills used by this Graft have (30-35)% increased Skill Effect Duration", statOrder = { 10886 }, level = 82, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (30-35)% increased Skill Effect Duration" }, } },
- ["GraftSuffixCooldownSpeed1"] = { type = "Suffix", affix = "of the Creek", "Skills used by this Graft have (10-14)% increased Cooldown Recovery Rate", statOrder = { 10876 }, level = 1, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have (10-14)% increased Cooldown Recovery Rate" }, } },
- ["GraftSuffixCooldownSpeed2"] = { type = "Suffix", affix = "of the Stream", "Skills used by this Graft have (15-20)% increased Cooldown Recovery Rate", statOrder = { 10876 }, level = 22, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have (15-20)% increased Cooldown Recovery Rate" }, } },
- ["GraftSuffixCooldownSpeed3"] = { type = "Suffix", affix = "of the River", "Skills used by this Graft have (20-24)% increased Cooldown Recovery Rate", statOrder = { 10876 }, level = 44, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 700, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have (20-24)% increased Cooldown Recovery Rate" }, } },
- ["GraftSuffixCooldownSpeed4"] = { type = "Suffix", affix = "of the Tide", "Skills used by this Graft have (25-29)% increased Cooldown Recovery Rate", statOrder = { 10876 }, level = 66, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have (25-29)% increased Cooldown Recovery Rate" }, } },
- ["GraftSuffixCooldownSpeed5"] = { type = "Suffix", affix = "of the Oceans", "Skills used by this Graft have (30-35)% increased Cooldown Recovery Rate", statOrder = { 10876 }, level = 82, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 300, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have (30-35)% increased Cooldown Recovery Rate" }, } },
- ["GraftSuffixSkipCooldown1"] = { type = "Suffix", affix = "of Chronomancy", "Skills used by this Graft have 25% chance to not consume a Cooldown on use", statOrder = { 10919 }, level = 66, group = "GraftSuffixSkipCooldown", weightKey = { "graft_esh_bolt_ring", "graft_uulnetol_hand_slam", "graft_xoph_cremations", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [2520970416] = { "Skills used by this Graft have 25% chance to not consume a Cooldown on use" }, } },
- ["GraftSuffixAttackSpeed1"] = { type = "Suffix", affix = "of Speed", "Skills used by this Graft have (10-24)% increased Attack Speed", statOrder = { 10869 }, level = 22, group = "GraftSuffixAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [679415175] = { "Skills used by this Graft have (10-24)% increased Attack Speed" }, } },
- ["GraftSuffixAttackSpeed2"] = { type = "Suffix", affix = "of Quickness", "Skills used by this Graft have (25-39)% increased Attack Speed", statOrder = { 10869 }, level = 44, group = "GraftSuffixAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [679415175] = { "Skills used by this Graft have (25-39)% increased Attack Speed" }, } },
- ["GraftSuffixAttackSpeed3"] = { type = "Suffix", affix = "of Agility", "Skills used by this Graft have (40-55)% increased Attack Speed", statOrder = { 10869 }, level = 66, group = "GraftSuffixAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [679415175] = { "Skills used by this Graft have (40-55)% increased Attack Speed" }, } },
- ["GraftSuffixSkillLevel1"] = { type = "Suffix", affix = "of Nobility", "+2 to level of Skills used by this Graft", statOrder = { 10902 }, level = 44, group = "GraftSuffixSkillLevel", weightKey = { "graft_tutorial", "graft", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [324804503] = { "+2 to level of Skills used by this Graft" }, } },
- ["GraftSuffixSkillLevel2"] = { type = "Suffix", affix = "of Lordship", "+3 to level of Skills used by this Graft", statOrder = { 10902 }, level = 66, group = "GraftSuffixSkillLevel", weightKey = { "graft_tutorial", "graft", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [324804503] = { "+3 to level of Skills used by this Graft" }, } },
- ["GraftSuffixSkillLevel3"] = { type = "Suffix", affix = "of Royalty", "+4 to level of Skills used by this Graft", statOrder = { 10902 }, level = 85, group = "GraftSuffixSkillLevel", weightKey = { "graft_tutorial", "graft", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [324804503] = { "+4 to level of Skills used by this Graft" }, } },
- ["GraftSuffixCriticalChance1"] = { type = "Suffix", affix = "of Incision", "Skills used by this Graft have (40-79)% increased Critical Strike Chance", "Skills used by this Graft have +(8-14)% to Critical Strike Multiplier", statOrder = { 10879, 10880 }, level = 1, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4013357916] = { "Skills used by this Graft have +(8-14)% to Critical Strike Multiplier" }, [1443956585] = { "Skills used by this Graft have (40-79)% increased Critical Strike Chance" }, } },
- ["GraftSuffixCriticalChance2"] = { type = "Suffix", affix = "of Slicing", "Skills used by this Graft have (80-119)% increased Critical Strike Chance", "Skills used by this Graft have +(15-21)% to Critical Strike Multiplier", statOrder = { 10879, 10880 }, level = 22, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4013357916] = { "Skills used by this Graft have +(15-21)% to Critical Strike Multiplier" }, [1443956585] = { "Skills used by this Graft have (80-119)% increased Critical Strike Chance" }, } },
- ["GraftSuffixCriticalChance3"] = { type = "Suffix", affix = "of Dicing", "Skills used by this Graft have (120-139)% increased Critical Strike Chance", "Skills used by this Graft have +(22-28)% to Critical Strike Multiplier", statOrder = { 10879, 10880 }, level = 44, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [4013357916] = { "Skills used by this Graft have +(22-28)% to Critical Strike Multiplier" }, [1443956585] = { "Skills used by this Graft have (120-139)% increased Critical Strike Chance" }, } },
- ["GraftSuffixCriticalChance4"] = { type = "Suffix", affix = "of Striking", "Skills used by this Graft have (140-159)% increased Critical Strike Chance", "Skills used by this Graft have +(29-35)% to Critical Strike Multiplier", statOrder = { 10879, 10880 }, level = 66, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4013357916] = { "Skills used by this Graft have +(29-35)% to Critical Strike Multiplier" }, [1443956585] = { "Skills used by this Graft have (140-159)% increased Critical Strike Chance" }, } },
- ["GraftSuffixCriticalChance5"] = { type = "Suffix", affix = "of Precision", "Skills used by this Graft have (160-200)% increased Critical Strike Chance", "Skills used by this Graft have +(36-42)% to Critical Strike Multiplier", statOrder = { 10879, 10880 }, level = 82, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4013357916] = { "Skills used by this Graft have +(36-42)% to Critical Strike Multiplier" }, [1443956585] = { "Skills used by this Graft have (160-200)% increased Critical Strike Chance" }, } },
- ["GraftSuffixFirePenetration1"] = { type = "Suffix", affix = "of Singing", "Skills used by this Graft penetrate (4-9)% Enemy Fire Resistance", statOrder = { 10915 }, level = 44, group = "GraftSuffixFirePenetration", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2425071139] = { "Skills used by this Graft penetrate (4-9)% Enemy Fire Resistance" }, } },
- ["GraftSuffixFirePenetration2"] = { type = "Suffix", affix = "of Searing", "Skills used by this Graft penetrate (10-14)% Enemy Fire Resistance", statOrder = { 10915 }, level = 66, group = "GraftSuffixFirePenetration", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [2425071139] = { "Skills used by this Graft penetrate (10-14)% Enemy Fire Resistance" }, } },
- ["GraftSuffixFirePenetration3"] = { type = "Suffix", affix = "of Blackening", "Skills used by this Graft penetrate (15-20)% Enemy Fire Resistance", statOrder = { 10915 }, level = 82, group = "GraftSuffixFirePenetration", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [2425071139] = { "Skills used by this Graft penetrate (15-20)% Enemy Fire Resistance" }, } },
- ["GraftSuffixColdPenetration1"] = { type = "Suffix", affix = "of the North", "Skills used by this Graft penetrate (4-9)% Enemy Cold Resistance", statOrder = { 10914 }, level = 44, group = "GraftSuffixColdPenetration", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4063492405] = { "Skills used by this Graft penetrate (4-9)% Enemy Cold Resistance" }, } },
- ["GraftSuffixColdPenetration2"] = { type = "Suffix", affix = "of the Boreal", "Skills used by this Graft penetrate (10-14)% Enemy Cold Resistance", statOrder = { 10914 }, level = 66, group = "GraftSuffixColdPenetration", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4063492405] = { "Skills used by this Graft penetrate (10-14)% Enemy Cold Resistance" }, } },
- ["GraftSuffixColdPenetration3"] = { type = "Suffix", affix = "of the Arctic", "Skills used by this Graft penetrate (15-20)% Enemy Cold Resistance", statOrder = { 10914 }, level = 82, group = "GraftSuffixColdPenetration", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4063492405] = { "Skills used by this Graft penetrate (15-20)% Enemy Cold Resistance" }, } },
- ["GraftSuffixLightningPenetration1"] = { type = "Suffix", affix = "of Scattered Bolts", "Skills used by this Graft penetrate (4-9)% Enemy Lightning Resistance", statOrder = { 10916 }, level = 44, group = "GraftSuffixLightningPenetration", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4236519263] = { "Skills used by this Graft penetrate (4-9)% Enemy Lightning Resistance" }, } },
- ["GraftSuffixLightningPenetration2"] = { type = "Suffix", affix = "of Striking Jolts", "Skills used by this Graft penetrate (10-14)% Enemy Lightning Resistance", statOrder = { 10916 }, level = 66, group = "GraftSuffixLightningPenetration", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4236519263] = { "Skills used by this Graft penetrate (10-14)% Enemy Lightning Resistance" }, } },
- ["GraftSuffixLightningPenetration3"] = { type = "Suffix", affix = "of Seeking Sparks", "Skills used by this Graft penetrate (15-20)% Enemy Lightning Resistance", statOrder = { 10916 }, level = 82, group = "GraftSuffixLightningPenetration", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4236519263] = { "Skills used by this Graft penetrate (15-20)% Enemy Lightning Resistance" }, } },
- ["GraftSuffixUulnetolHandSlamDamageForCDR1"] = { type = "Suffix", affix = "of Impact", "Skills used by this Graft have 20% reduced Cooldown Recovery Rate", "Skills used by this Graft deal (20-29)% more Damage", statOrder = { 10876, 10931 }, level = 44, group = "GraftSuffixUulnetolHandSlamDamageForCDR", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1662209485] = { "Skills used by this Graft deal (20-29)% more Damage" }, [1053840971] = { "Skills used by this Graft have 20% reduced Cooldown Recovery Rate" }, } },
- ["GraftSuffixUulnetolHandSlamDamageForCDR2"] = { type = "Suffix", affix = "of Cratering", "Skills used by this Graft have 25% reduced Cooldown Recovery Rate", "Skills used by this Graft deal (30-45)% more Damage", statOrder = { 10876, 10931 }, level = 82, group = "GraftSuffixUulnetolHandSlamDamageForCDR", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1662209485] = { "Skills used by this Graft deal (30-45)% more Damage" }, [1053840971] = { "Skills used by this Graft have 25% reduced Cooldown Recovery Rate" }, } },
- ["GraftSuffixUulnetolHandSlamAttackSpeedForAOE1"] = { type = "Suffix", affix = "of Earthshaking", "Skills used by this Graft have (15-24)% more Area of Effect", "Skills used by this Graft have 15% less Attack Speed", statOrder = { 10954, 10955 }, level = 44, group = "GraftSuffixUulnetolHandSlamAttackSpeedForAOE", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4285149775] = { "Skills used by this Graft have 15% less Attack Speed" }, [3364676033] = { "Skills used by this Graft have (15-24)% more Area of Effect" }, } },
- ["GraftSuffixUulnetolHandSlamAttackSpeedForAOE2"] = { type = "Suffix", affix = "of Earthshattering", "Skills used by this Graft have (25-35)% more Area of Effect", "Skills used by this Graft have 10% less Attack Speed", statOrder = { 10954, 10955 }, level = 82, group = "GraftSuffixUulnetolHandSlamAttackSpeedForAOE", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4285149775] = { "Skills used by this Graft have 10% less Attack Speed" }, [3364676033] = { "Skills used by this Graft have (25-35)% more Area of Effect" }, } },
- ["GraftSuffixUulnetolHandSlamCrushOnHit1"] = { type = "Suffix", affix = "of Pulverising", "Skills used by this Graft Crush on Hit", statOrder = { 10881 }, level = 44, group = "GraftSuffixUulnetolHandSlamCrushOnHit", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [668072950] = { "Skills used by this Graft Crush on Hit" }, } },
- ["GraftSuffixUulnetolHandSlamVulnerabilityOnHit1"] = { type = "Suffix", affix = "of Vulnerability", "Skills used by this Graft inflict Vulnerability on Hit", statOrder = { 10937 }, level = 44, group = "GraftSuffixUulnetolHandSlamVulnerabilityOnHit", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [3989101809] = { "Skills used by this Graft inflict Vulnerability on Hit" }, } },
- ["GraftSuffixUulnetolHandSlamIntimidateOnHit1"] = { type = "Suffix", affix = "of Intimidation", "Skills used by this Graft Intimidate on Hit", statOrder = { 10897 }, level = 44, group = "GraftSuffixUulnetolHandSlamIntimidateOnHit", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1790471105] = { "Skills used by this Graft Intimidate on Hit" }, } },
- ["GraftSuffixIgnorePhysMitigation1"] = { type = "Suffix", affix = "of Overwhelming", "Skills used by this Graft ignore Enemy Physical Damage Reduction", statOrder = { 10893 }, level = 44, group = "GraftSuffixIgnorePhysMitigation", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2150059749] = { "Skills used by this Graft ignore Enemy Physical Damage Reduction" }, } },
- ["GraftSuffixShockChance1"] = { type = "Suffix", affix = "of Zapping", "Skills used by this Graft have (19-57)% chance to Shock", statOrder = { 10918 }, level = 1, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2376903385] = { "Skills used by this Graft have (19-57)% chance to Shock" }, } },
- ["GraftSuffixShockChance2"] = { type = "Suffix", affix = "of Jolting", "Skills used by this Graft have (29-87)% chance to Shock", statOrder = { 10918 }, level = 22, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2376903385] = { "Skills used by this Graft have (29-87)% chance to Shock" }, } },
- ["GraftSuffixShockChance3"] = { type = "Suffix", affix = "of Blitzing", "Skills used by this Graft have (39-117)% chance to Shock", statOrder = { 10918 }, level = 44, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2376903385] = { "Skills used by this Graft have (39-117)% chance to Shock" }, } },
- ["GraftSuffixShockChance4"] = { type = "Suffix", affix = "of Electricity", "Skills used by this Graft have (49-147)% chance to Shock", statOrder = { 10918 }, level = 66, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2376903385] = { "Skills used by this Graft have (49-147)% chance to Shock" }, } },
- ["GraftSuffixShockChance5"] = { type = "Suffix", affix = "of Sublimation", "Skills used by this Graft have (60-180)% chance to Shock", statOrder = { 10918 }, level = 82, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2376903385] = { "Skills used by this Graft have (60-180)% chance to Shock" }, } },
- ["GraftSuffixIgniteChance1"] = { type = "Suffix", affix = "of Cinders", "Skills used by this Graft have (13-29)% chance to Ignite", statOrder = { 10872 }, level = 1, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [158467587] = { "Skills used by this Graft have (13-29)% chance to Ignite" }, } },
- ["GraftSuffixIgniteChance2"] = { type = "Suffix", affix = "of Coal", "Skills used by this Graft have (29-44)% chance to Ignite", statOrder = { 10872 }, level = 22, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [158467587] = { "Skills used by this Graft have (29-44)% chance to Ignite" }, } },
- ["GraftSuffixIgniteChance3"] = { type = "Suffix", affix = "of Embers", "Skills used by this Graft have (44-59)% chance to Ignite", statOrder = { 10872 }, level = 44, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 700, 700, 700, 0 }, modTags = { }, tradeHashes = { [158467587] = { "Skills used by this Graft have (44-59)% chance to Ignite" }, } },
- ["GraftSuffixIgniteChance4"] = { type = "Suffix", affix = "of Ashes", "Skills used by this Graft have (60-74)% chance to Ignite", statOrder = { 10872 }, level = 66, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [158467587] = { "Skills used by this Graft have (60-74)% chance to Ignite" }, } },
- ["GraftSuffixIgniteChance5"] = { type = "Suffix", affix = "of Glowing", "Skills used by this Graft have (75-100)% chance to Ignite", statOrder = { 10872 }, level = 82, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [158467587] = { "Skills used by this Graft have (75-100)% chance to Ignite" }, } },
- ["GraftSuffixFreezeChance1"] = { type = "Suffix", affix = "of Ice", "Skills used by this Graft have (10-19)% chance to Freeze", statOrder = { 10871 }, level = 1, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3732269294] = { "Skills used by this Graft have (10-19)% chance to Freeze" }, } },
- ["GraftSuffixFreezeChance2"] = { type = "Suffix", affix = "of Sleet", "Skills used by this Graft have (20-29)% chance to Freeze", statOrder = { 10871 }, level = 22, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3732269294] = { "Skills used by this Graft have (20-29)% chance to Freeze" }, } },
- ["GraftSuffixFreezeChance3"] = { type = "Suffix", affix = "of Snow", "Skills used by this Graft have (30-39)% chance to Freeze", statOrder = { 10871 }, level = 44, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3732269294] = { "Skills used by this Graft have (30-39)% chance to Freeze" }, } },
- ["GraftSuffixFreezeChance4"] = { type = "Suffix", affix = "of Hail", "Skills used by this Graft have (40-49)% chance to Freeze", statOrder = { 10871 }, level = 66, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3732269294] = { "Skills used by this Graft have (40-49)% chance to Freeze" }, } },
- ["GraftSuffixFreezeChance5"] = { type = "Suffix", affix = "of Glaciers", "Skills used by this Graft have (50-60)% chance to Freeze", statOrder = { 10871 }, level = 82, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3732269294] = { "Skills used by this Graft have (50-60)% chance to Freeze" }, } },
- ["GraftSuffixShockAsThoughDealingMoreDamage1"] = { type = "Suffix", affix = "of Amplification", "Skills used by this Graft Shock Enemies as though dealing 100% more Damage", statOrder = { 10917 }, level = 66, group = "GraftSuffixShockAsThoughDealingMoreDamage", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3626715014] = { "Skills used by this Graft Shock Enemies as though dealing 100% more Damage" }, } },
- ["GraftSuffixLightningGainAsChaos1"] = { type = "Suffix", affix = "of Shadowed Bolt", "Skills used by this Graft Gain (16-24)% of Lightning Damage as Extra Chaos Damage", statOrder = { 10903 }, level = 44, group = "GraftSuffixLightningGainAsChaos", weightKey = { "graft_esh_bolt_ring", "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [9906535] = { "Skills used by this Graft Gain (16-24)% of Lightning Damage as Extra Chaos Damage" }, } },
- ["GraftSuffixLightningGainAsChaos2"] = { type = "Suffix", affix = "of Twisted Thunder", "Skills used by this Graft Gain (28-32)% of Lightning Damage as Extra Chaos Damage", statOrder = { 10903 }, level = 66, group = "GraftSuffixLightningGainAsChaos", weightKey = { "graft_esh_bolt_ring", "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [9906535] = { "Skills used by this Graft Gain (28-32)% of Lightning Damage as Extra Chaos Damage" }, } },
- ["GraftSuffixLightningGainAsChaos3"] = { type = "Suffix", affix = "of Darkened Storms", "Skills used by this Graft Gain (44-56)% of Lightning Damage as Extra Chaos Damage", statOrder = { 10903 }, level = 82, group = "GraftSuffixLightningGainAsChaos", weightKey = { "graft_esh_bolt_ring", "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [9906535] = { "Skills used by this Graft Gain (44-56)% of Lightning Damage as Extra Chaos Damage" }, } },
- ["GraftSuffixFireGainAsChaos1"] = { type = "Suffix", affix = "of Shadowed Smoke", "Skills used by this Graft Gain (16-24)% of Fire Damage as Extra Chaos Damage", statOrder = { 10891 }, level = 44, group = "GraftSuffixFireGainAsChaos", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2506782284] = { "Skills used by this Graft Gain (16-24)% of Fire Damage as Extra Chaos Damage" }, } },
- ["GraftSuffixFireGainAsChaos2"] = { type = "Suffix", affix = "of Umbral Flame", "Skills used by this Graft Gain (28-32)% of Fire Damage as Extra Chaos Damage", statOrder = { 10891 }, level = 66, group = "GraftSuffixFireGainAsChaos", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [2506782284] = { "Skills used by this Graft Gain (28-32)% of Fire Damage as Extra Chaos Damage" }, } },
- ["GraftSuffixFireGainAsChaos3"] = { type = "Suffix", affix = "of Darkened Flame", "Skills used by this Graft Gain (44-56)% of Fire Damage as Extra Chaos Damage", statOrder = { 10891 }, level = 82, group = "GraftSuffixFireGainAsChaos", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [2506782284] = { "Skills used by this Graft Gain (44-56)% of Fire Damage as Extra Chaos Damage" }, } },
- ["GraftSuffixColdGainAsChaos1"] = { type = "Suffix", affix = "of Blasted Snow", "Skills used by this Graft Gain (16-24)% of Cold Damage as Extra Chaos Damage", statOrder = { 10874 }, level = 44, group = "GraftSuffixColdGainAsChaos", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2752930426] = { "Skills used by this Graft Gain (16-24)% of Cold Damage as Extra Chaos Damage" }, } },
- ["GraftSuffixColdGainAsChaos2"] = { type = "Suffix", affix = "of Blackened Ice", "Skills used by this Graft Gain (28-32)% of Cold Damage as Extra Chaos Damage", statOrder = { 10874 }, level = 66, group = "GraftSuffixColdGainAsChaos", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2752930426] = { "Skills used by this Graft Gain (28-32)% of Cold Damage as Extra Chaos Damage" }, } },
- ["GraftSuffixColdGainAsChaos3"] = { type = "Suffix", affix = "of Darkened Frost", "Skills used by this Graft Gain (44-56)% of Cold Damage as Extra Chaos Damage", statOrder = { 10874 }, level = 82, group = "GraftSuffixColdGainAsChaos", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHashes = { [2752930426] = { "Skills used by this Graft Gain (44-56)% of Cold Damage as Extra Chaos Damage" }, } },
- ["GraftSuffixCoverInFrost1"] = { type = "Suffix", affix = "of Snowdrifts", "Skills used by this Graft have (20-30)% chance to Cover Enemies in Frost on Hit", statOrder = { 10878 }, level = 66, group = "GraftSuffixCoverInFrost", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1987305786] = { "Skills used by this Graft have (20-30)% chance to Cover Enemies in Frost on Hit" }, } },
- ["GraftSuffixAilmentDuration1"] = { type = "Suffix", affix = "of Torment", "Ailments inflicted by Skills used by this Graft have (8-14)% increased duration", statOrder = { 10867 }, level = 22, group = "GraftSuffixAilmentDuration", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2184130410] = { "Ailments inflicted by Skills used by this Graft have (8-14)% increased duration" }, } },
- ["GraftSuffixAilmentDuration2"] = { type = "Suffix", affix = "of Misery", "Ailments inflicted by Skills used by this Graft have (15-23)% increased duration", statOrder = { 10867 }, level = 66, group = "GraftSuffixAilmentDuration", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2184130410] = { "Ailments inflicted by Skills used by this Graft have (15-23)% increased duration" }, } },
- ["GraftSuffixAilmentDuration3"] = { type = "Suffix", affix = "of Torture", "Ailments inflicted by Skills used by this Graft have (24-35)% increased duration", statOrder = { 10867 }, level = 82, group = "GraftSuffixAilmentDuration", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2184130410] = { "Ailments inflicted by Skills used by this Graft have (24-35)% increased duration" }, } },
- ["GraftSuffixFireExposureOnHit1"] = { type = "Suffix", affix = "of Melting", "Skills used by this Graft have (20-34)% chance to inflict Fire Exposure on Hit", statOrder = { 10895 }, level = 44, group = "GraftSuffixFireExposureOnHit", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3069466464] = { "Skills used by this Graft have (20-34)% chance to inflict Fire Exposure on Hit" }, } },
- ["GraftSuffixFireExposureOnHit2"] = { type = "Suffix", affix = "of Liquefaction", "Skills used by this Graft have (35-49)% chance to inflict Fire Exposure on Hit", statOrder = { 10895 }, level = 66, group = "GraftSuffixFireExposureOnHit", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3069466464] = { "Skills used by this Graft have (35-49)% chance to inflict Fire Exposure on Hit" }, } },
- ["GraftSuffixFireExposureOnHit3"] = { type = "Suffix", affix = "of Exposure", "Skills used by this Graft have (50-70)% chance to inflict Fire Exposure on Hit", statOrder = { 10895 }, level = 82, group = "GraftSuffixFireExposureOnHit", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [3069466464] = { "Skills used by this Graft have (50-70)% chance to inflict Fire Exposure on Hit" }, } },
- ["GraftSuffixLightningExposureOnHit1"] = { type = "Suffix", affix = "of Melting", "Skills used by this Graft have (20-34)% chance to inflict Lightning Exposure on Hit", statOrder = { 10896 }, level = 44, group = "GraftSuffixLightningExposureOnHit", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2375092881] = { "Skills used by this Graft have (20-34)% chance to inflict Lightning Exposure on Hit" }, } },
- ["GraftSuffixLightningExposureOnHit2"] = { type = "Suffix", affix = "of Liquefaction", "Skills used by this Graft have (35-49)% chance to inflict Lightning Exposure on Hit", statOrder = { 10896 }, level = 66, group = "GraftSuffixLightningExposureOnHit", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2375092881] = { "Skills used by this Graft have (35-49)% chance to inflict Lightning Exposure on Hit" }, } },
- ["GraftSuffixLightningExposureOnHit3"] = { type = "Suffix", affix = "of Exposure", "Skills used by this Graft have (50-70)% chance to inflict Lightning Exposure on Hit", statOrder = { 10896 }, level = 82, group = "GraftSuffixLightningExposureOnHit", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2375092881] = { "Skills used by this Graft have (50-70)% chance to inflict Lightning Exposure on Hit" }, } },
- ["GraftSuffixImpaleEffect1"] = { type = "Suffix", affix = "of Wringing", "Skills used by this Graft have (20-34)% increased Impale Effect", statOrder = { 10894 }, level = 44, group = "GraftSuffixImpaleEffect", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1501454660] = { "Skills used by this Graft have (20-34)% increased Impale Effect" }, } },
- ["GraftSuffixImpaleEffect2"] = { type = "Suffix", affix = "of Twisting", "Skills used by this Graft have (35-44)% increased Impale Effect", statOrder = { 10894 }, level = 66, group = "GraftSuffixImpaleEffect", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1501454660] = { "Skills used by this Graft have (35-44)% increased Impale Effect" }, } },
- ["GraftSuffixImpaleEffect3"] = { type = "Suffix", affix = "of Mangling", "Skills used by this Graft have (45-55)% increased Impale Effect", statOrder = { 10894 }, level = 82, group = "GraftSuffixImpaleEffect", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1501454660] = { "Skills used by this Graft have (45-55)% increased Impale Effect" }, } },
- ["GraftSuffixMinionDamage1"] = { type = "Suffix", affix = "of Armies", "Minions summoned by this Graft deal (10-29)% increased Damage", statOrder = { 10906 }, level = 1, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (10-29)% increased Damage" }, } },
- ["GraftSuffixMinionDamage2"] = { type = "Suffix", affix = "of Infantry", "Minions summoned by this Graft deal (30-49)% increased Damage", statOrder = { 10906 }, level = 11, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (30-49)% increased Damage" }, } },
- ["GraftSuffixMinionDamage3"] = { type = "Suffix", affix = "of Troops", "Minions summoned by this Graft deal (50-69)% increased Damage", statOrder = { 10906 }, level = 22, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (50-69)% increased Damage" }, } },
- ["GraftSuffixMinionDamage4"] = { type = "Suffix", affix = "of the Multitude", "Minions summoned by this Graft deal (70-89)% increased Damage", statOrder = { 10906 }, level = 33, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (70-89)% increased Damage" }, } },
- ["GraftSuffixMinionDamage5"] = { type = "Suffix", affix = "of Swarms", "Minions summoned by this Graft deal (90-109)% increased Damage", statOrder = { 10906 }, level = 44, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (90-109)% increased Damage" }, } },
- ["GraftSuffixMinionDamage6"] = { type = "Suffix", affix = "of Hordes", "Minions summoned by this Graft deal (110-129)% increased Damage", statOrder = { 10906 }, level = 55, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (110-129)% increased Damage" }, } },
- ["GraftSuffixMinionDamage7"] = { type = "Suffix", affix = "of Hosts", "Minions summoned by this Graft deal (130-149)% increased Damage", statOrder = { 10906 }, level = 66, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (130-149)% increased Damage" }, } },
- ["GraftSuffixMinionDamage8"] = { type = "Suffix", affix = "of Throngs", "Minions summoned by this Graft deal (150-169)% increased Damage", statOrder = { 10906 }, level = 74, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (150-169)% increased Damage" }, } },
- ["GraftSuffixMinionDamage9"] = { type = "Suffix", affix = "of Droves", "Minions summoned by this Graft deal (170-189)% increased Damage", statOrder = { 10906 }, level = 82, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (170-189)% increased Damage" }, } },
- ["GraftSuffixMinionDamage10"] = { type = "Suffix", affix = "of Legions", "Minions summoned by this Graft deal (190-220)% increased Damage", statOrder = { 10906 }, level = 85, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (190-220)% increased Damage" }, } },
- ["GraftSuffixMinionLife1"] = { type = "Suffix", affix = "of Muscle", "Minions summoned by this Graft have (32-36)% increased Life", statOrder = { 10907 }, level = 1, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4267516534] = { "Minions summoned by this Graft have (32-36)% increased Life" }, } },
- ["GraftSuffixMinionLife2"] = { type = "Suffix", affix = "of Flesh", "Minions summoned by this Graft have (38-42)% increased Life", statOrder = { 10907 }, level = 22, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4267516534] = { "Minions summoned by this Graft have (38-42)% increased Life" }, } },
- ["GraftSuffixMinionLife3"] = { type = "Suffix", affix = "of Sinew", "Minions summoned by this Graft have (44-48)% increased Life", statOrder = { 10907 }, level = 44, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [4267516534] = { "Minions summoned by this Graft have (44-48)% increased Life" }, } },
- ["GraftSuffixMinionLife4"] = { type = "Suffix", affix = "of Beef", "Minions summoned by this Graft have (50-54)% increased Life", statOrder = { 10907 }, level = 66, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4267516534] = { "Minions summoned by this Graft have (50-54)% increased Life" }, } },
- ["GraftSuffixMinionLife5"] = { type = "Suffix", affix = "of Meat", "Minions summoned by this Graft have (56-60)% increased Life", statOrder = { 10907 }, level = 82, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4267516534] = { "Minions summoned by this Graft have (56-60)% increased Life" }, } },
- ["GraftSuffixMinionAttackSpeed1"] = { type = "Suffix", affix = "of Lunacy", "Minions summoned by this Graft have (12-18)% increased Attack Speed", statOrder = { 10904 }, level = 44, group = "GraftSuffixMinionAttackSpeed", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [967852806] = { "Minions summoned by this Graft have (12-18)% increased Attack Speed" }, } },
- ["GraftSuffixMinionAttackSpeed2"] = { type = "Suffix", affix = "of Psychopathy", "Minions summoned by this Graft have (19-25)% increased Attack Speed", statOrder = { 10904 }, level = 66, group = "GraftSuffixMinionAttackSpeed", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [967852806] = { "Minions summoned by this Graft have (19-25)% increased Attack Speed" }, } },
- ["GraftSuffixMinionAttackSpeed3"] = { type = "Suffix", affix = "of Maniacism", "Minions summoned by this Graft have (26-31)% increased Attack Speed", statOrder = { 10904 }, level = 82, group = "GraftSuffixMinionAttackSpeed", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [967852806] = { "Minions summoned by this Graft have (26-31)% increased Attack Speed" }, } },
- ["GraftSuffixMinionBlindOnHit1"] = { type = "Suffix", affix = "of Blinding Snow", "Minions summoned by this Graft have (10-20)% chance to Blind on Hit", statOrder = { 10909 }, level = 66, group = "GraftSuffixMinionBlindOnHit", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2313228671] = { "Minions summoned by this Graft have (10-20)% chance to Blind on Hit" }, } },
- ["GraftSuffixMinionTauntOnHit1"] = { type = "Suffix", affix = "of Taunting", "Minions summoned by this Graft have (10-20)% chance to Taunt on Hit", statOrder = { 10905 }, level = 66, group = "GraftSuffixMinionTauntOnHit", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [131940510] = { "Minions summoned by this Graft have (10-20)% chance to Taunt on Hit" }, } },
- ["GraftSuffixMinionDamageGainAsCold1"] = { type = "Suffix", affix = "of Frozen Falls", "Minions summoned by this Graft gain (40-49)% of Physical Damage as Extra Cold Damage", statOrder = { 10908 }, level = 44, group = "GraftSuffixMinionDamageGainAsCold", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2186396714] = { "Minions summoned by this Graft gain (40-49)% of Physical Damage as Extra Cold Damage" }, } },
- ["GraftSuffixMinionDamageGainAsCold2"] = { type = "Suffix", affix = "of Winter Winds", "Minions summoned by this Graft gain (50-59)% of Physical Damage as Extra Cold Damage", statOrder = { 10908 }, level = 66, group = "GraftSuffixMinionDamageGainAsCold", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2186396714] = { "Minions summoned by this Graft gain (50-59)% of Physical Damage as Extra Cold Damage" }, } },
- ["GraftSuffixMinionDamageGainAsCold3"] = { type = "Suffix", affix = "of Sleetbound Snow", "Minions summoned by this Graft gain (60-70)% of Physical Damage as Extra Cold Damage", statOrder = { 10908 }, level = 82, group = "GraftSuffixMinionDamageGainAsCold", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2186396714] = { "Minions summoned by this Graft gain (60-70)% of Physical Damage as Extra Cold Damage" }, } },
- ["GraftSuffixFasterAilments1"] = { type = "Suffix", affix = "of Decomposition", "Damaging Ailments inflicted by Skills used by this Graft deal damage (8-14)% faster", statOrder = { 10885 }, level = 44, group = "GraftSuffixFasterAilments", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4230320163] = { "Damaging Ailments inflicted by Skills used by this Graft deal damage (8-14)% faster" }, } },
- ["GraftSuffixFasterAilments2"] = { type = "Suffix", affix = "of Festering", "Damaging Ailments inflicted by Skills used by this Graft deal damage (15-21)% faster", statOrder = { 10885 }, level = 66, group = "GraftSuffixFasterAilments", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4230320163] = { "Damaging Ailments inflicted by Skills used by this Graft deal damage (15-21)% faster" }, } },
- ["GraftSuffixFasterAilments3"] = { type = "Suffix", affix = "of Perishing", "Damaging Ailments inflicted by Skills used by this Graft deal damage (22-28)% faster", statOrder = { 10885 }, level = 82, group = "GraftSuffixFasterAilments", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4230320163] = { "Damaging Ailments inflicted by Skills used by this Graft deal damage (22-28)% faster" }, } },
- ["GraftSuffixPunishmentOnHit1"] = { type = "Suffix", affix = "of Punishment", "Skills used by this Graft inflict Punishment on Hit", statOrder = { 10882 }, level = 44, group = "GraftSuffixPunishmentOnHit", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1245902490] = { "Skills used by this Graft inflict Punishment on Hit" }, } },
- ["GraftSuffixNonDamagingAilmentEffect1"] = { type = "Suffix", affix = "of Oppression", "Skills used by this Graft have (10-19)% increased effect of Non-Damaging Ailments", statOrder = { 10910 }, level = 22, group = "GraftSuffixNonDamagingAilmentEffect", weightKey = { "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [308139248] = { "Skills used by this Graft have (10-19)% increased effect of Non-Damaging Ailments" }, } },
- ["GraftSuffixNonDamagingAilmentEffect2"] = { type = "Suffix", affix = "of Suppression", "Skills used by this Graft have (20-29)% increased effect of Non-Damaging Ailments", statOrder = { 10910 }, level = 66, group = "GraftSuffixNonDamagingAilmentEffect", weightKey = { "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [308139248] = { "Skills used by this Graft have (20-29)% increased effect of Non-Damaging Ailments" }, } },
- ["GraftSuffixNonDamagingAilmentEffect3"] = { type = "Suffix", affix = "of Persecution", "Skills used by this Graft have (30-40)% increased effect of Non-Damaging Ailments", statOrder = { 10910 }, level = 82, group = "GraftSuffixNonDamagingAilmentEffect", weightKey = { "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHashes = { [308139248] = { "Skills used by this Graft have (30-40)% increased effect of Non-Damaging Ailments" }, } },
- ["GraftSuffixIncreasedDamageVsIgnited1"] = { type = "Suffix", affix = "of Aggravation", "Skills used by this Graft deal (117-152)% increased Damage against Ignited Enemies", statOrder = { 10884 }, level = 44, group = "GraftSuffixIncreasedDamageVsIgnited", weightKey = { "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3781496089] = { "Skills used by this Graft deal (117-152)% increased Damage against Ignited Enemies" }, } },
- ["GraftSuffixIncreasedDamageVsIgnited2"] = { type = "Suffix", affix = "of Exacerbation", "Skills used by this Graft deal (169-194)% increased Damage against Ignited Enemies", statOrder = { 10884 }, level = 66, group = "GraftSuffixIncreasedDamageVsIgnited", weightKey = { "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3781496089] = { "Skills used by this Graft deal (169-194)% increased Damage against Ignited Enemies" }, } },
- ["GraftSuffixIncreasedDamageVsIgnited3"] = { type = "Suffix", affix = "of Anguish", "Skills used by this Graft deal (221-246)% increased Damage against Ignited Enemies", statOrder = { 10884 }, level = 82, group = "GraftSuffixIncreasedDamageVsIgnited", weightKey = { "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHashes = { [3781496089] = { "Skills used by this Graft deal (221-246)% increased Damage against Ignited Enemies" }, } },
- ["GraftSuffixEshLightningRingBuffAddedLightning1"] = { type = "Suffix", affix = "of Glowing", "Radiant Ground created by Skills from this Graft grants Allies on it an additional 4 to 18 added Lightning Damage", statOrder = { 10866 }, level = 44, group = "GraftSuffixEshLightningRingBuffAddedLightning", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1993898498] = { "Radiant Ground created by Skills from this Graft grants Allies on it an additional 4 to 18 added Lightning Damage" }, } },
- ["GraftSuffixEshLightningRingBuffAddedLightning2"] = { type = "Suffix", affix = "of Shimmering", "Radiant Ground created by Skills from this Graft grants Allies on it an additional 5 to 24 added Lightning Damage", statOrder = { 10866 }, level = 66, group = "GraftSuffixEshLightningRingBuffAddedLightning", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1993898498] = { "Radiant Ground created by Skills from this Graft grants Allies on it an additional 5 to 24 added Lightning Damage" }, } },
- ["GraftSuffixEshLightningRingBuffAddedLightning3"] = { type = "Suffix", affix = "of Radiance", "Radiant Ground created by Skills from this Graft grants Allies on it an additional 6 to 30 added Lightning Damage", statOrder = { 10866 }, level = 82, group = "GraftSuffixEshLightningRingBuffAddedLightning", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1993898498] = { "Radiant Ground created by Skills from this Graft grants Allies on it an additional 6 to 30 added Lightning Damage" }, } },
- ["GraftSuffixEshLightningRingConductivityOnHit"] = { type = "Suffix", affix = "of Conductivity", "Skills used by this Graft inflict Conductivity on Hit", statOrder = { 10875 }, level = 66, group = "GraftSuffixEshLightningRingConductivityOnHit", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3285341404] = { "Skills used by this Graft inflict Conductivity on Hit" }, } },
- ["GraftSuffixEshLightningRingNumberOfBolts1"] = { type = "Suffix", affix = "of Bolts", "Skills used by this Graft cause 4 additional lightning bolt strikes", statOrder = { 10889 }, level = 44, group = "GraftSuffixEshLightningRingNumberOfBolts", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2810785117] = { "Skills used by this Graft cause 4 additional lightning bolt strikes" }, } },
- ["GraftSuffixEshLightningRingNumberOfBolts2"] = { type = "Suffix", affix = "of Thunderclaps", "Skills used by this Graft cause 6 additional lightning bolt strikes", statOrder = { 10889 }, level = 82, group = "GraftSuffixEshLightningRingNumberOfBolts", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2810785117] = { "Skills used by this Graft cause 6 additional lightning bolt strikes" }, } },
- ["GraftSuffixXophMoltenShellShieldAmount1"] = { type = "Suffix", affix = "of the Core", "Heart of Flame Buff used by this Graft can take an additional (150-250) Damage", statOrder = { 10945 }, level = 44, group = "GraftSuffixXophMoltenShellShieldAmount", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [602627011] = { "Heart of Flame Buff used by this Graft can take an additional (150-250) Damage" }, } },
- ["GraftSuffixXophMoltenShellShieldAmount2"] = { type = "Suffix", affix = "of the Crux", "Heart of Flame Buff used by this Graft can take an additional (300-550) Damage", statOrder = { 10945 }, level = 66, group = "GraftSuffixXophMoltenShellShieldAmount", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [602627011] = { "Heart of Flame Buff used by this Graft can take an additional (300-550) Damage" }, } },
- ["GraftSuffixXophMoltenShellShieldAmount3"] = { type = "Suffix", affix = "of the Heart", "Heart of Flame Buff used by this Graft can take an additional (600-750) Damage", statOrder = { 10945 }, level = 82, group = "GraftSuffixXophMoltenShellShieldAmount", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [602627011] = { "Heart of Flame Buff used by this Graft can take an additional (600-750) Damage" }, } },
- ["GraftSuffixXophMoltenShellCoverInAsh1"] = { type = "Suffix", affix = "of Ashen Flame", "Skills used by this Graft Cover Enemies in Ash on Hit", statOrder = { 10877 }, level = 66, group = "GraftSuffixXophMoltenShellCoverInAsh", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [613591578] = { "Skills used by this Graft Cover Enemies in Ash on Hit" }, } },
- ["GraftSuffixXophMoltenShellArmourDuringBuff1"] = { type = "Suffix", affix = "of Flameplating", "Heart of Flame Buff used by this Graft grants (20-49)% increased Armour", statOrder = { 10946 }, level = 44, group = "GraftSuffixXophMoltenShellArmourDuringBuff", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2057803518] = { "Heart of Flame Buff used by this Graft grants (20-49)% increased Armour" }, } },
- ["GraftSuffixXophMoltenShellArmourDuringBuff2"] = { type = "Suffix", affix = "of Fiery Buttresses", "Heart of Flame Buff used by this Graft grants (50-75)% increased Armour", statOrder = { 10946 }, level = 82, group = "GraftSuffixXophMoltenShellArmourDuringBuff", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2057803518] = { "Heart of Flame Buff used by this Graft grants (50-75)% increased Armour" }, } },
- ["GraftSuffixXophMoltenShellPercentTakenByBuff1"] = { type = "Suffix", affix = "of the Fireheart", "An additional (5-10)% of Damage from Hits is taken from Heart of Flame Buff used by this Graft before Life or Energy Shield", statOrder = { 10947 }, level = 66, group = "GraftSuffixXophMoltenShellPercentTakenByBuff", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2664271989] = { "An additional (5-10)% of Damage from Hits is taken from Heart of Flame Buff used by this Graft before Life or Energy Shield" }, } },
- ["GraftSuffixXophMoltenShellLessShieldIncreasedCDR1"] = { type = "Suffix", affix = "of Hasty Reconstruction", "Skills used by this Graft have 40% increased Cooldown Recovery Rate", "Heart of Flame Buff used by this Graft can take 30% less Damage", statOrder = { 10876, 10948 }, level = 44, group = "GraftSuffixXophMoltenShellLessShieldIncreasedCDR", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have 40% increased Cooldown Recovery Rate" }, [2338032775] = { "Heart of Flame Buff used by this Graft can take 30% less Damage" }, } },
- ["GraftSuffixFrostbiteOnHit1"] = { type = "Suffix", affix = "of Frostbite", "Skills used by this Graft inflict Frostbite on Hit", statOrder = { 10892 }, level = 44, group = "GraftSuffixFrostbiteOnHit", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHashes = { [1593675162] = { "Skills used by this Graft inflict Frostbite on Hit" }, } },
- ["GraftSuffixTulTornadoProjectileDamageAfterPierce1"] = { type = "Suffix", affix = "of Boring", "Projectiles created by this Graft that have Pierced deal (20-30)% more Damage", statOrder = { 10912 }, level = 66, group = "GraftSuffixTulTornadoProjectileDamageAfterPierce", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [793704702] = { "Projectiles created by this Graft that have Pierced deal (20-30)% more Damage" }, } },
- ["GraftSuffixTulTornadoAdditionalTornado1"] = { type = "Suffix", affix = "of Whirlwinds", "Skills used by this Graft deal 40% less Damage", "Dance in the White used by this Graft creates an additional Tornado", "Dance in the White used by this Graft has +1 to maximum Tornados", statOrder = { 10927, 10928, 10929 }, level = 66, group = "GraftSuffixTulTornadoAdditionalTornado", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [4064732043] = { "Skills used by this Graft deal 40% less Damage" }, [1180345918] = { "Dance in the White used by this Graft has +1 to maximum Tornados" }, [2372432170] = { "Dance in the White used by this Graft creates an additional Tornado" }, } },
- ["GraftSuffixXophGeysersAdditionalGeyser1"] = { type = "Suffix", affix = "of Eruption", "His Burning Message used by this Graft creates an additional geyser", statOrder = { 10943 }, level = 44, group = "GraftSuffixXophGeysersAdditionalGeyser", weightKey = { "graft_xoph_cremations", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2610093703] = { "His Burning Message used by this Graft creates an additional geyser" }, } },
- ["GraftSuffixXophGeysersAdditionalGeyser2"] = { type = "Suffix", affix = "of Geysers", "His Burning Message used by this Graft creates 2 additional geysers", statOrder = { 10943 }, level = 82, group = "GraftSuffixXophGeysersAdditionalGeyser", weightKey = { "graft_xoph_cremations", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2610093703] = { "His Burning Message used by this Graft creates 2 additional geysers" }, } },
- ["GraftSuffixXophGeysersAdditionalWarcyProjectiles1"] = { type = "Suffix", affix = "of Deafening", "Geysers created by this Graft fire 2 additional Projectiles when you Warcry", statOrder = { 10944 }, level = 66, group = "GraftSuffixXophGeysersAdditionalWarcyProjectiles", weightKey = { "graft_xoph_cremations", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4169460025] = { "Geysers created by this Graft fire 2 additional Projectiles when you Warcry" }, } },
- ["GraftSuffixJoltBuffMaximumJoltBuffCount1"] = { type = "Suffix", affix = "of Trembling", "Overcharged Sinews used by this Graft can apply +(1-2) maximum Jolt Buffs", statOrder = { 10900 }, level = 44, group = "GraftSuffixJoltBuffMaximumJoltBuffCount", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1601123381] = { "Overcharged Sinews used by this Graft can apply +(1-2) maximum Jolt Buffs" }, } },
- ["GraftSuffixJoltBuffMaximumJoltBuffCount2"] = { type = "Suffix", affix = "of Shuddering", "Overcharged Sinews used by this Graft can apply +(3-4) maximum Jolt Buffs", statOrder = { 10900 }, level = 82, group = "GraftSuffixJoltBuffMaximumJoltBuffCount", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1601123381] = { "Overcharged Sinews used by this Graft can apply +(3-4) maximum Jolt Buffs" }, } },
- ["GraftSuffixJoltMaxDamageAndDamageTaken1"] = { type = "Suffix", affix = "of Peril", "Jolt granted by this Graft grants +1% increased Damage taken", "Jolt granted by this Graft grants +1% more Maximum Attack Damage", statOrder = { 10887, 10888 }, level = 66, group = "GraftSuffixJoltMaxDamageAndDamageTaken", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3955143601] = { "Jolt granted by this Graft grants +1% more Maximum Attack Damage" }, [3853303544] = { "Jolt granted by this Graft grants +1% increased Damage taken" }, } },
- ["GraftSuffixJoltGrantsCriticalStrikeChance1"] = { type = "Suffix", affix = "of Heightening", "Jolt granted by this Graft grants (1-2)% increased Critical Strike Chance", statOrder = { 10898 }, level = 1, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1265046157] = { "Jolt granted by this Graft grants (1-2)% increased Critical Strike Chance" }, } },
- ["GraftSuffixJoltGrantsCriticalStrikeChance2"] = { type = "Suffix", affix = "of Sharpening", "Jolt granted by this Graft grants (2-3)% increased Critical Strike Chance", statOrder = { 10898 }, level = 22, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1265046157] = { "Jolt granted by this Graft grants (2-3)% increased Critical Strike Chance" }, } },
- ["GraftSuffixJoltGrantsCriticalStrikeChance3"] = { type = "Suffix", affix = "of Amplification", "Jolt granted by this Graft grants 4% increased Critical Strike Chance", statOrder = { 10898 }, level = 44, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1265046157] = { "Jolt granted by this Graft grants 4% increased Critical Strike Chance" }, } },
- ["GraftSuffixJoltGrantsCriticalStrikeChance4"] = { type = "Suffix", affix = "of Intensity", "Jolt granted by this Graft grants 5% increased Critical Strike Chance", statOrder = { 10898 }, level = 66, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1265046157] = { "Jolt granted by this Graft grants 5% increased Critical Strike Chance" }, } },
- ["GraftSuffixJoltGrantsCriticalStrikeChance5"] = { type = "Suffix", affix = "of Escalation", "Jolt granted by this Graft grants 6% increased Critical Strike Chance", statOrder = { 10898 }, level = 82, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1265046157] = { "Jolt granted by this Graft grants 6% increased Critical Strike Chance" }, } },
- ["GraftSuffixJoltGrantsCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Pins", "Jolt granted by this Graft grants +(1-2)% to Critical Strike Multiplier", statOrder = { 10899 }, level = 44, group = "GraftSuffixJoltGrantsCriticalStrikeMultiplier", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3905327148] = { "Jolt granted by this Graft grants +(1-2)% to Critical Strike Multiplier" }, } },
- ["GraftSuffixJoltGrantsCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Blades", "Jolt granted by this Graft grants +(2-3)% to Critical Strike Multiplier", statOrder = { 10899 }, level = 66, group = "GraftSuffixJoltGrantsCriticalStrikeMultiplier", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3905327148] = { "Jolt granted by this Graft grants +(2-3)% to Critical Strike Multiplier" }, } },
- ["GraftSuffixJoltGrantsCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Daggers", "Jolt granted by this Graft grants +4% to Critical Strike Multiplier", statOrder = { 10899 }, level = 82, group = "GraftSuffixJoltGrantsCriticalStrikeMultiplier", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3905327148] = { "Jolt granted by this Graft grants +4% to Critical Strike Multiplier" }, } },
- ["GraftSuffixJoltGrantsMovementVelocity1"] = { type = "Suffix", affix = "of Velocity", "Jolt granted by this Graft grants 1% increased Movement Speed", statOrder = { 10901 }, level = 66, group = "GraftSuffixJoltGrantsMovementVelocity", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1945948244] = { "Jolt granted by this Graft grants 1% increased Movement Speed" }, } },
- ["GraftSuffixLightningHandsAdditionalHands1"] = { type = "Suffix", affix = "of Grasping", "Enervating Grasp used by this Graft creates (3-5) additional Hands", statOrder = { 10890 }, level = 66, group = "GraftSuffixLightningHandsAdditionalHands", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [300482938] = { "Enervating Grasp used by this Graft creates (3-5) additional Hands" }, } },
- ["GraftSuffixLightningHandsUnnerveOnHit1"] = { type = "Suffix", affix = "of Unnerving", "Skills used by this Graft Unnerve on Hit", statOrder = { 10873 }, level = 44, group = "GraftSuffixLightningHandsUnnerveOnHit", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2418139890] = { "Skills used by this Graft Unnerve on Hit" }, } },
- ["GraftSuffixUulNetolLowLifeBuffDurationForEffect1"] = { type = "Suffix", affix = "of Dilution", "Skills used by this Graft have (34-40)% increased Skill Effect Duration", "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate", statOrder = { 10886, 10951 }, level = 44, group = "GraftSuffixUulNetolLowLifeBuffDurationForEffect", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (34-40)% increased Skill Effect Duration" }, [1082722194] = { "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate" }, } },
- ["GraftSuffixUulNetolLowLifeBuffDurationForEffect2"] = { type = "Suffix", affix = "of Thinning", "Skills used by this Graft have (41-45)% increased Skill Effect Duration", "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate", statOrder = { 10886, 10951 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffDurationForEffect", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (41-45)% increased Skill Effect Duration" }, [1082722194] = { "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate" }, } },
- ["GraftSuffixUulNetolLowLifeBuffAdditionalCharge1"] = { type = "Suffix", affix = "of Endurance", "Buff granted by Tender Embrace used by this Graft grants +1 Endurance Charge when gained", statOrder = { 10952 }, level = 82, group = "GraftSuffixUulNetolLowLifeBuffAdditionalCharge", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [994844444] = { "Buff granted by Tender Embrace used by this Graft grants +1 Endurance Charge when gained" }, } },
- ["GraftSuffixUulNetolLowLifeBuffRecovery1"] = { type = "Suffix", affix = "of Recovery", "Buff granted by Tender Embrace used by this Graft grants (2-4)% more Life Recovery Rate", statOrder = { 10951 }, level = 22, group = "GraftSuffixUulNetolLowLifeBuffRecovery", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1082722194] = { "Buff granted by Tender Embrace used by this Graft grants (2-4)% more Life Recovery Rate" }, } },
- ["GraftSuffixUulNetolLowLifeBuffRecovery2"] = { type = "Suffix", affix = "of Rejuvenation", "Buff granted by Tender Embrace used by this Graft grants (5-8)% more Life Recovery Rate", statOrder = { 10951 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffRecovery", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1082722194] = { "Buff granted by Tender Embrace used by this Graft grants (5-8)% more Life Recovery Rate" }, } },
- ["GraftSuffixUulNetolLowLifeBuffRecovery3"] = { type = "Suffix", affix = "of Renewal", "Buff granted by Tender Embrace used by this Graft grants (9-12)% more Life Recovery Rate", statOrder = { 10951 }, level = 82, group = "GraftSuffixUulNetolLowLifeBuffRecovery", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1082722194] = { "Buff granted by Tender Embrace used by this Graft grants (9-12)% more Life Recovery Rate" }, } },
- ["GraftSuffixUulNetolLowLifeBuffBlockChance1"] = { type = "Suffix", affix = "of the Bulwark", "Buff granted by Tender Embrace used by this Graft grants +(2-4)% chance to Block Attack Damage", statOrder = { 10949 }, level = 22, group = "GraftSuffixUulNetolLowLifeBuffBlockChance", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2530984421] = { "Buff granted by Tender Embrace used by this Graft grants +(2-4)% chance to Block Attack Damage" }, } },
- ["GraftSuffixUulNetolLowLifeBuffBlockChance2"] = { type = "Suffix", affix = "of Shielding", "Buff granted by Tender Embrace used by this Graft grants +(5-7)% chance to Block Attack Damage", statOrder = { 10949 }, level = 44, group = "GraftSuffixUulNetolLowLifeBuffBlockChance", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2530984421] = { "Buff granted by Tender Embrace used by this Graft grants +(5-7)% chance to Block Attack Damage" }, } },
- ["GraftSuffixUulNetolLowLifeBuffBlockChance3"] = { type = "Suffix", affix = "of the Turtle", "Buff granted by Tender Embrace used by this Graft grants +(8-10)% chance to Block Attack Damage", statOrder = { 10949 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffBlockChance", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2530984421] = { "Buff granted by Tender Embrace used by this Graft grants +(8-10)% chance to Block Attack Damage" }, } },
- ["GraftSuffixUulNetolLowLifeBuffLifeLeech1"] = { type = "Suffix", affix = "of Bloodhunger", "Buff granted by Tender Embrace used by this Graft grants (0.2-0.29)% of Damage Leeched as Life", statOrder = { 10950 }, level = 44, group = "GraftSuffixUulNetolLowLifeBuffLifeLeech", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [291373897] = { "Buff granted by Tender Embrace used by this Graft grants (0.2-0.29)% of Damage Leeched as Life" }, } },
- ["GraftSuffixUulNetolLowLifeBuffLifeLeech2"] = { type = "Suffix", affix = "of Vampirism", "Buff granted by Tender Embrace used by this Graft grants (0.3-0.39)% of Damage Leeched as Life", statOrder = { 10950 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffLifeLeech", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [291373897] = { "Buff granted by Tender Embrace used by this Graft grants (0.3-0.39)% of Damage Leeched as Life" }, } },
- ["GraftSuffixUulNetolLowLifeBuffLifeLeech3"] = { type = "Suffix", affix = "of the Leech", "Buff granted by Tender Embrace used by this Graft grants (0.4-0.5)% of Damage Leeched as Life", statOrder = { 10950 }, level = 82, group = "GraftSuffixUulNetolLowLifeBuffLifeLeech", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [291373897] = { "Buff granted by Tender Embrace used by this Graft grants (0.4-0.5)% of Damage Leeched as Life" }, } },
- ["GraftSuffixUulNetolImpaleBuffImpaleEffect1"] = { type = "Suffix", affix = "of Twisting", "Violent Desire used by this Graft grants +(6-10)% increased effect of Impale", statOrder = { 10936 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffImpaleEffect", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2000483559] = { "Violent Desire used by this Graft grants +(6-10)% increased effect of Impale" }, } },
- ["GraftSuffixUulNetolImpaleBuffImpaleEffect2"] = { type = "Suffix", affix = "of Wrenching", "Violent Desire used by this Graft grants +(11-15)% increased effect of Impale", statOrder = { 10936 }, level = 82, group = "GraftSuffixUulNetolImpaleBuffImpaleEffect", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2000483559] = { "Violent Desire used by this Graft grants +(11-15)% increased effect of Impale" }, } },
- ["GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed1"] = { type = "Suffix", affix = "of the Berserker", "Violent Desire used by this Graft also grants (4-6)% increased Attack Speed", statOrder = { 10934 }, level = 44, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1570004834] = { "Violent Desire used by this Graft also grants (4-6)% increased Attack Speed" }, } },
- ["GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed2"] = { type = "Suffix", affix = "of the Maniac", "Violent Desire used by this Graft also grants (7-9)% increased Attack Speed", statOrder = { 10934 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1570004834] = { "Violent Desire used by this Graft also grants (7-9)% increased Attack Speed" }, } },
- ["GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed3"] = { type = "Suffix", affix = "of the Madman", "Violent Desire used by this Graft also grants (10-12)% increased Attack Speed", statOrder = { 10934 }, level = 82, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1570004834] = { "Violent Desire used by this Graft also grants (10-12)% increased Attack Speed" }, } },
- ["GraftSuffixUulNetolImpaleBuffGrantsAttackAOE1"] = { type = "Suffix", affix = "of Grasping", "Violent Desire used by this Graft also grants (5-7)% increased Area of Effect with Attacks", statOrder = { 10933 }, level = 44, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackAOE", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [468012134] = { "Violent Desire used by this Graft also grants (5-7)% increased Area of Effect with Attacks" }, } },
- ["GraftSuffixUulNetolImpaleBuffGrantsAttackAOE2"] = { type = "Suffix", affix = "of Clutching", "Violent Desire used by this Graft also grants (8-10)% increased Area of Effect with Attacks", statOrder = { 10933 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackAOE", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [468012134] = { "Violent Desire used by this Graft also grants (8-10)% increased Area of Effect with Attacks" }, } },
- ["GraftSuffixUulNetolImpaleBuffGrantsAttackAOE3"] = { type = "Suffix", affix = "of Siezing", "Violent Desire used by this Graft also grants (11-13)% increased Area of Effect with Attacks", statOrder = { 10933 }, level = 82, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackAOE", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [468012134] = { "Violent Desire used by this Graft also grants (11-13)% increased Area of Effect with Attacks" }, } },
- ["GraftSuffixUulNetolImpaleBuffGrantsChanceToIgnorePhysReduction1"] = { type = "Suffix", affix = "of Devastation", "Violent Desire used by this Graft also grants Hits have (30-50)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 10935 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffGrantsChanceToIgnorePhysReduction", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [3830354140] = { "Violent Desire used by this Graft also grants Hits have (30-50)% chance to ignore Enemy Physical Damage Reduction" }, } },
- ["GraftSuffixTulMortarAdditionalMortar1"] = { type = "Suffix", affix = "of Flinging", "Falling Crystals used by this Graft fires up to 1 additional mortar", statOrder = { 10926 }, level = 66, group = "GraftSuffixTulMortarAdditionalMortar", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2123039991] = { "Falling Crystals used by this Graft fires up to 1 additional mortar" }, } },
- ["GraftSuffixTulMortarMoreDamageVSFrozen1"] = { type = "Suffix", affix = "of Icebergs", "Skills used by this Graft deal (10-24)% more Damage to Frozen Enemies", statOrder = { 10925 }, level = 44, group = "GraftSuffixTulMortarMoreDamageVSFrozen", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3395681357] = { "Skills used by this Graft deal (10-24)% more Damage to Frozen Enemies" }, } },
- ["GraftSuffixTulMortarMoreDamageVSFrozen2"] = { type = "Suffix", affix = "of Floes", "Skills used by this Graft deal (25-34)% more Damage to Frozen Enemies", statOrder = { 10925 }, level = 66, group = "GraftSuffixTulMortarMoreDamageVSFrozen", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3395681357] = { "Skills used by this Graft deal (25-34)% more Damage to Frozen Enemies" }, } },
- ["GraftSuffixTulMortarMoreDamageVSFrozen3"] = { type = "Suffix", affix = "of Glaciers", "Skills used by this Graft deal (35-45)% more Damage to Frozen Enemies", statOrder = { 10925 }, level = 82, group = "GraftSuffixTulMortarMoreDamageVSFrozen", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3395681357] = { "Skills used by this Graft deal (35-45)% more Damage to Frozen Enemies" }, } },
- ["GraftSuffixUulNetolSpikesAdditionalSpikes1"] = { type = "Suffix", affix = "of Foothills", "Seize the Flesh used by this Graft creates +(1-2) Spire", statOrder = { 10930 }, level = 66, group = "GraftSuffixUulNetolSpikesAdditionalSpikes", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [385266470] = { "Seize the Flesh used by this Graft creates +(1-2) Spire" }, } },
- ["GraftSuffixUulNetolSpikesAdditionalSpikes2"] = { type = "Suffix", affix = "of Mountains", "Seize the Flesh used by this Graft creates +(3-4) Spires", statOrder = { 10930 }, level = 82, group = "GraftSuffixUulNetolSpikesAdditionalSpikes", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [385266470] = { "Seize the Flesh used by this Graft creates +(3-4) Spires" }, } },
- ["GraftSuffixXophPillarAdditionalPillar1"] = { type = "Suffix", affix = "of Pillars", "Call the Pyre used by this Graft creates +1 Ashen Pillar", statOrder = { 10942 }, level = 66, group = "GraftSuffixXophPillarAdditionalPillar", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [652310659] = { "Call the Pyre used by this Graft creates +1 Ashen Pillar" }, } },
- ["GraftSuffixXophPillarAdditionalPillar2"] = { type = "Suffix", affix = "of Obelisks", "Call the Pyre used by this Graft creates +2 Ashen Pillars", statOrder = { 10942 }, level = 66, group = "GraftSuffixXophPillarAdditionalPillar", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [652310659] = { "Call the Pyre used by this Graft creates +2 Ashen Pillars" }, } },
- ["GraftSuffixXophAilmentBuffEleGainAsChaos1"] = { type = "Suffix", affix = "of Foulness", "The Grey Wind Howls used by this Graft also grants (5-8)% of Elemental Damage gained as Extra Chaos Damage", statOrder = { 10940 }, level = 66, group = "GraftSuffixXophAilmentBuffEleGainAsChaos", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1761211254] = { "The Grey Wind Howls used by this Graft also grants (5-8)% of Elemental Damage gained as Extra Chaos Damage" }, } },
- ["GraftSuffixXophAilmentBuffEleResistances1"] = { type = "Suffix", affix = "of the Span", "The Grey Wind Howls used by this Graft also grants +(5-8)% to all Elemental Resistances", statOrder = { 10939 }, level = 44, group = "GraftSuffixXophAilmentBuffEleResistances", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [457484464] = { "The Grey Wind Howls used by this Graft also grants +(5-8)% to all Elemental Resistances" }, } },
- ["GraftSuffixXophAilmentBuffEleResistances2"] = { type = "Suffix", affix = "of Resistance", "The Grey Wind Howls used by this Graft also grants +(9-12)% to all Elemental Resistances", statOrder = { 10939 }, level = 66, group = "GraftSuffixXophAilmentBuffEleResistances", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [457484464] = { "The Grey Wind Howls used by this Graft also grants +(9-12)% to all Elemental Resistances" }, } },
- ["GraftSuffixXophAilmentBuffEleResistances3"] = { type = "Suffix", affix = "of Facets", "The Grey Wind Howls used by this Graft also grants +(13-16)% to all Elemental Resistances", statOrder = { 10939 }, level = 82, group = "GraftSuffixXophAilmentBuffEleResistances", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [457484464] = { "The Grey Wind Howls used by this Graft also grants +(13-16)% to all Elemental Resistances" }, } },
- ["GraftSuffixXophAilmentBuffElementalAilmentAvoid1"] = { type = "Suffix", affix = "of Eschewing", "The Grey Wind Howls used by this Graft also grants (20-29)% chance to Avoid Elemental Ailments", statOrder = { 10941 }, level = 44, group = "GraftSuffixXophAilmentBuffElementalAilmentAvoid", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4070390513] = { "The Grey Wind Howls used by this Graft also grants (20-29)% chance to Avoid Elemental Ailments" }, } },
- ["GraftSuffixXophAilmentBuffElementalAilmentAvoid2"] = { type = "Suffix", affix = "of Avoidance", "The Grey Wind Howls used by this Graft also grants (30-40)% chance to Avoid Elemental Ailments", statOrder = { 10941 }, level = 66, group = "GraftSuffixXophAilmentBuffElementalAilmentAvoid", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4070390513] = { "The Grey Wind Howls used by this Graft also grants (30-40)% chance to Avoid Elemental Ailments" }, } },
- ["GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra1"] = { type = "Suffix", affix = "of Prisms", "The Grey Wind Howls used by this Graft grants +(2-4)% additional Physical Damage gained as Extra Elemental Damage", statOrder = { 10938 }, level = 44, group = "GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4234527870] = { "The Grey Wind Howls used by this Graft grants +(2-4)% additional Physical Damage gained as Extra Elemental Damage" }, } },
- ["GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra2"] = { type = "Suffix", affix = "of the Spectrum", "The Grey Wind Howls used by this Graft grants +(5-7)% additional Physical Damage gained as Extra Elemental Damage", statOrder = { 10938 }, level = 66, group = "GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4234527870] = { "The Grey Wind Howls used by this Graft grants +(5-7)% additional Physical Damage gained as Extra Elemental Damage" }, } },
- ["GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra3"] = { type = "Suffix", affix = "of the Continuum", "The Grey Wind Howls used by this Graft grants +(8-10)% additional Physical Damage gained as Extra Elemental Damage", statOrder = { 10938 }, level = 82, group = "GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4234527870] = { "The Grey Wind Howls used by this Graft grants +(8-10)% additional Physical Damage gained as Extra Elemental Damage" }, } },
- ["GraftSuffixTulAegisBuffAmount1"] = { type = "Suffix", affix = "of Guarding", "Preserving Stillness used by this Graft can take (200-299) additional Damage", statOrder = { 10924 }, level = 44, group = "GraftSuffixTulAegisBuffAmount", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3725714391] = { "Preserving Stillness used by this Graft can take (200-299) additional Damage" }, } },
- ["GraftSuffixTulAegisBuffAmount2"] = { type = "Suffix", affix = "of Shelter", "Preserving Stillness used by this Graft can take (300-399) additional Damage", statOrder = { 10924 }, level = 66, group = "GraftSuffixTulAegisBuffAmount", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3725714391] = { "Preserving Stillness used by this Graft can take (300-399) additional Damage" }, } },
- ["GraftSuffixTulAegisBuffAmount3"] = { type = "Suffix", affix = "of Protection", "Preserving Stillness used by this Graft can take (400-500) additional Damage", statOrder = { 10924 }, level = 82, group = "GraftSuffixTulAegisBuffAmount", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3725714391] = { "Preserving Stillness used by this Graft can take (400-500) additional Damage" }, } },
- ["GraftSuffixTulAegisBuffMaxResistance1"] = { type = "Suffix", affix = "of the Mosaic", "Preserving Stillness used by this Graft also grants +1% to all maximum Elemental Resistances", statOrder = { 10923 }, level = 66, group = "GraftSuffixTulAegisBuffMaxResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [557952718] = { "Preserving Stillness used by this Graft also grants +1% to all maximum Elemental Resistances" }, } },
- ["GraftSuffixTulAegisBuffMaxResistance2"] = { type = "Suffix", affix = "of Hues", "Preserving Stillness used by this Graft also grants +2% to all maximum Elemental Resistances", statOrder = { 10923 }, level = 82, group = "GraftSuffixTulAegisBuffMaxResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [557952718] = { "Preserving Stillness used by this Graft also grants +2% to all maximum Elemental Resistances" }, } },
- ["GraftSuffixTulAegisBuffAdditionalResistance1"] = { type = "Suffix", affix = "of Resistance", "Preserving Stillness used by this Graft also grants +(10-14)% to all Elemental Resistances", statOrder = { 10922 }, level = 44, group = "GraftSuffixTulAegisBuffAdditionalResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2134023442] = { "Preserving Stillness used by this Graft also grants +(10-14)% to all Elemental Resistances" }, } },
- ["GraftSuffixTulAegisBuffAdditionalResistance2"] = { type = "Suffix", affix = "of Resilience", "Preserving Stillness used by this Graft also grants +(15-19)% to all Elemental Resistances", statOrder = { 10922 }, level = 66, group = "GraftSuffixTulAegisBuffAdditionalResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2134023442] = { "Preserving Stillness used by this Graft also grants +(15-19)% to all Elemental Resistances" }, } },
- ["GraftSuffixTulAegisBuffAdditionalResistance3"] = { type = "Suffix", affix = "of Mettle", "Preserving Stillness used by this Graft also grants +(20-25)% to all Elemental Resistances", statOrder = { 10922 }, level = 82, group = "GraftSuffixTulAegisBuffAdditionalResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2134023442] = { "Preserving Stillness used by this Graft also grants +(20-25)% to all Elemental Resistances" }, } },
- ["GraftCorruptionAttackSpeedPerFrenzy"] = { type = "Corrupted", affix = "", "(1-2)% increased Attack Speed per Frenzy Charge", statOrder = { 2054 }, level = 1, group = "GraftCorruptionAttackSpeedPerFrenzy", weightKey = { "graft", "default", }, weightVal = { 120, 0 }, modTags = { }, tradeHashes = { [3548561213] = { "(1-2)% increased Attack Speed per Frenzy Charge" }, } },
- ["GraftCorruptionCritChancePerPower"] = { type = "Corrupted", affix = "", "(4-8)% increased Critical Strike Chance per Power Charge", statOrder = { 3171 }, level = 1, group = "GraftCorruptionCritChancePerPower", weightKey = { "graft", "default", }, weightVal = { 120, 0 }, modTags = { }, tradeHashes = { [2102212273] = { "(4-8)% increased Critical Strike Chance per Power Charge" }, } },
- ["GraftCorruptionLifeRegenerationPerEndurance"] = { type = "Corrupted", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 1, group = "GraftCorruptionLifeRegenerationPerEndurance", weightKey = { "graft", "default", }, weightVal = { 120, 0 }, modTags = { }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } },
- ["GraftCorruptionAccuracyFromLightRadius"] = { type = "Corrupted", affix = "", "Increases and Reductions to Light Radius also apply to Accuracy", statOrder = { 7434 }, level = 1, group = "GraftCorruptionAccuracyFromLightRadius", weightKey = { "graft", "default", }, weightVal = { 80, 0 }, modTags = { }, tradeHashes = { [411986876] = { "Increases and Reductions to Light Radius also apply to Accuracy" }, } },
- ["GraftCorruptionStunThresholdFromFireResistance"] = { type = "Corrupted", affix = "", "Stun Threshold is increased by Overcapped Fire Resistance", statOrder = { 10265 }, level = 1, group = "GraftCorruptionStunThresholdFromFireResistance", weightKey = { "graft", "default", }, weightVal = { 80, 0 }, modTags = { }, tradeHashes = { [2898944747] = { "Stun Threshold is increased by Overcapped Fire Resistance" }, } },
- ["GraftCorruptionLessAreaDamageChanceFromColdResistance"] = { type = "Corrupted", affix = "", "1% chance to take 20% less Area Damage from Hits per 2% Overcapped Cold Resistance", statOrder = { 10348 }, level = 1, group = "GraftCorruptionLessAreaDamageChanceFromColdResistance", weightKey = { "graft", "default", }, weightVal = { 80, 0 }, modTags = { }, tradeHashes = { [1469603435] = { "1% chance to take 20% less Area Damage from Hits per 2% Overcapped Cold Resistance" }, } },
- ["GraftCorruptionProjectileSpeedPerStrength"] = { type = "Corrupted", affix = "", "1% increased Projectile Speed per 20 Strength", statOrder = { 9741 }, level = 66, group = "GraftCorruptionProjectileSpeedPerStrength", weightKey = { "graft", "default", }, weightVal = { 60, 0 }, modTags = { }, tradeHashes = { [1998937909] = { "1% increased Projectile Speed per 20 Strength" }, } },
- ["GraftCorruptionCastSpeedPerDexterity"] = { type = "Corrupted", affix = "", "1% increased Cast Speed per 20 Dexterity", statOrder = { 5466 }, level = 66, group = "GraftCorruptionCastSpeedPerDexterity", weightKey = { "graft", "default", }, weightVal = { 60, 0 }, modTags = { }, tradeHashes = { [1334577255] = { "1% increased Cast Speed per 20 Dexterity" }, } },
- ["GraftCorruptionMeleeDamagePerIntelligence"] = { type = "Corrupted", affix = "", "1% increased Melee Damage per 20 Intelligence", statOrder = { 9192 }, level = 66, group = "GraftCorruptionMeleeDamagePerIntelligence", weightKey = { "graft", "default", }, weightVal = { 60, 0 }, modTags = { }, tradeHashes = { [2645167381] = { "1% increased Melee Damage per 20 Intelligence" }, } },
- ["GraftCorruptionNonDamagingAilmentEffectPerBlueGem"] = { type = "Corrupted", affix = "", "2% increased Effect of Non-Damaging Ailments for each Blue Skill Gem you have socketed", statOrder = { 9496 }, level = 66, group = "GraftCorruptionNonDamagingAilmentEffectPerBlueGem", weightKey = { "graft", "default", }, weightVal = { 40, 0 }, modTags = { }, tradeHashes = { [2324668473] = { "2% increased Effect of Non-Damaging Ailments for each Blue Skill Gem you have socketed" }, } },
- ["GraftCorruptionCooldownSpeedPerGreenGem"] = { type = "Corrupted", affix = "", "2% increased Cooldown Recovery Rate for each Green Skill Gem you have socketed", statOrder = { 5876 }, level = 66, group = "GraftCorruptionCooldownSpeedPerGreenGem", weightKey = { "graft", "default", }, weightVal = { 40, 0 }, modTags = { }, tradeHashes = { [162292333] = { "2% increased Cooldown Recovery Rate for each Green Skill Gem you have socketed" }, } },
- ["GraftCorruptionSkillEffectDurationPerRedGem"] = { type = "Corrupted", affix = "", "2% increased Skill Effect Duration for each Red Skill Gem you have socketed", statOrder = { 10051 }, level = 66, group = "GraftCorruptionSkillEffectDurationPerRedGem", weightKey = { "graft", "default", }, weightVal = { 40, 0 }, modTags = { }, tradeHashes = { [1430991954] = { "2% increased Skill Effect Duration for each Red Skill Gem you have socketed" }, } },
+ ["GraftPrefixUulnetolFlatAddedPhysical1"] = { type = "Prefix", affix = "Blunt", "Adds 1 to (3-5) Physical Damage", statOrder = { 1265 }, level = 1, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [960081730] = { "Adds 1 to (3-5) Physical Damage" }, } },
+ ["GraftPrefixUulnetolFlatAddedPhysical2"] = { type = "Prefix", affix = "Heavy", "Adds (1-3) to (6-9) Physical Damage", statOrder = { 1265 }, level = 22, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [960081730] = { "Adds (1-3) to (6-9) Physical Damage" }, } },
+ ["GraftPrefixUulnetolFlatAddedPhysical3"] = { type = "Prefix", affix = "Weighted", "Adds (2-3) to (10-12) Physical Damage", statOrder = { 1265 }, level = 44, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [960081730] = { "Adds (2-3) to (10-12) Physical Damage" }, } },
+ ["GraftPrefixUulnetolFlatAddedPhysical4"] = { type = "Prefix", affix = "Dense", "Adds (2-4) to (13-15) Physical Damage", statOrder = { 1265 }, level = 66, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [960081730] = { "Adds (2-4) to (13-15) Physical Damage" }, } },
+ ["GraftPrefixUulnetolFlatAddedPhysical5"] = { type = "Prefix", affix = "Hefty", "Adds (3-5) to (14-18) Physical Damage", statOrder = { 1265 }, level = 82, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [960081730] = { "Adds (3-5) to (14-18) Physical Damage" }, } },
+ ["GraftPrefixUulnetolBleedChance1"] = { type = "Prefix", affix = "Pointed", "Attacks have (5-9)% chance to cause Bleeding", statOrder = { 2489 }, level = 1, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3204820200] = { "Attacks have (5-9)% chance to cause Bleeding" }, } },
+ ["GraftPrefixUulnetolBleedChance2"] = { type = "Prefix", affix = "Needling", "Attacks have (10-14)% chance to cause Bleeding", statOrder = { 2489 }, level = 22, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3204820200] = { "Attacks have (10-14)% chance to cause Bleeding" }, } },
+ ["GraftPrefixUulnetolBleedChance3"] = { type = "Prefix", affix = "Cutting", "Attacks have (15-19)% chance to cause Bleeding", statOrder = { 2489 }, level = 44, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3204820200] = { "Attacks have (15-19)% chance to cause Bleeding" }, } },
+ ["GraftPrefixUulnetolBleedChance4"] = { type = "Prefix", affix = "Biting", "Attacks have (20-24)% chance to cause Bleeding", statOrder = { 2489 }, level = 66, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3204820200] = { "Attacks have (20-24)% chance to cause Bleeding" }, } },
+ ["GraftPrefixUulnetolBleedChance5"] = { type = "Prefix", affix = "Incisive", "Attacks have (25-30)% chance to cause Bleeding", statOrder = { 2489 }, level = 82, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3204820200] = { "Attacks have (25-30)% chance to cause Bleeding" }, } },
+ ["GraftPrefixUulnetolDamageOverTimeMultiplier1"] = { type = "Prefix", affix = "Putrefying", "+(5-9)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 22, group = "GraftPrefixUulnetolDamageOverTimeMultiplier", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3988349707] = { "+(5-9)% to Damage over Time Multiplier" }, } },
+ ["GraftPrefixUulnetolDamageOverTimeMultiplier2"] = { type = "Prefix", affix = "Sickening", "+(10-14)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 66, group = "GraftPrefixUulnetolDamageOverTimeMultiplier", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3988349707] = { "+(10-14)% to Damage over Time Multiplier" }, } },
+ ["GraftPrefixUulnetolDamageOverTimeMultiplier3"] = { type = "Prefix", affix = "Repugnant", "+(15-20)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 82, group = "GraftPrefixUulnetolDamageOverTimeMultiplier", weightKey = { "graft_uulnetol", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [3988349707] = { "+(15-20)% to Damage over Time Multiplier" }, } },
+ ["GraftPrefixUulnetolKnockback1"] = { type = "Prefix", affix = "Swatting", "(5-9)% chance to Knock Enemies Back on hit", "10% increased Knockback Distance", statOrder = { 1995, 2002 }, level = 22, group = "GraftPrefixUulnetolKnockback", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [565784293] = { "10% increased Knockback Distance" }, [977908611] = { "(5-9)% chance to Knock Enemies Back on hit" }, } },
+ ["GraftPrefixUulnetolKnockback2"] = { type = "Prefix", affix = "Bashing", "(10-14)% chance to Knock Enemies Back on hit", "20% increased Knockback Distance", statOrder = { 1995, 2002 }, level = 66, group = "GraftPrefixUulnetolKnockback", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [565784293] = { "20% increased Knockback Distance" }, [977908611] = { "(10-14)% chance to Knock Enemies Back on hit" }, } },
+ ["GraftPrefixUulnetolKnockback3"] = { type = "Prefix", affix = "Walloping", "(15-20)% chance to Knock Enemies Back on hit", "30% increased Knockback Distance", statOrder = { 1995, 2002 }, level = 82, group = "GraftPrefixUulnetolKnockback", weightKey = { "graft_uulnetol", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [565784293] = { "30% increased Knockback Distance" }, [977908611] = { "(15-20)% chance to Knock Enemies Back on hit" }, } },
+ ["GraftPrefixUulnetolReducedEnemyStunThreshold1"] = { type = "Prefix", affix = "Inundating", "(3-6)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(3-6)% reduced Enemy Stun Threshold" }, } },
+ ["GraftPrefixUulnetolReducedEnemyStunThreshold2"] = { type = "Prefix", affix = "Devastating", "(7-8)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 22, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(7-8)% reduced Enemy Stun Threshold" }, } },
+ ["GraftPrefixUulnetolReducedEnemyStunThreshold3"] = { type = "Prefix", affix = "Stunning", "(9-10)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 44, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(9-10)% reduced Enemy Stun Threshold" }, } },
+ ["GraftPrefixUulnetolReducedEnemyStunThreshold4"] = { type = "Prefix", affix = "Overpowering", "(11-12)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 66, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(11-12)% reduced Enemy Stun Threshold" }, } },
+ ["GraftPrefixUulnetolReducedEnemyStunThreshold5"] = { type = "Prefix", affix = "Overwhelming", "(13-14)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 82, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1443060084] = { "(13-14)% reduced Enemy Stun Threshold" }, } },
+ ["GraftPrefixUulnetolStunDuration1"] = { type = "Prefix", affix = "Smashing", "(7-10)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(7-10)% increased Stun Duration on Enemies" }, } },
+ ["GraftPrefixUulnetolStunDuration2"] = { type = "Prefix", affix = "Thundering", "(11-14)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 22, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(11-14)% increased Stun Duration on Enemies" }, } },
+ ["GraftPrefixUulnetolStunDuration3"] = { type = "Prefix", affix = "Brutish", "(14-17)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 44, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(14-17)% increased Stun Duration on Enemies" }, } },
+ ["GraftPrefixUulnetolStunDuration4"] = { type = "Prefix", affix = "Sweeping", "(18-21)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 66, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(18-21)% increased Stun Duration on Enemies" }, } },
+ ["GraftPrefixUulnetolStunDuration5"] = { type = "Prefix", affix = "Thudding", "(21-24)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 82, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2517001139] = { "(21-24)% increased Stun Duration on Enemies" }, } },
+ ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage1"] = { type = "Prefix", affix = "Squire's", "(5-9)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(5-9)% increased Global Physical Damage" }, } },
+ ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage2"] = { type = "Prefix", affix = "Journeyman's", "(10-14)% increased Global Physical Damage", statOrder = { 1231 }, level = 11, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(10-14)% increased Global Physical Damage" }, } },
+ ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage3"] = { type = "Prefix", affix = "Reaver's", "(15-19)% increased Global Physical Damage", statOrder = { 1231 }, level = 22, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(15-19)% increased Global Physical Damage" }, } },
+ ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage4"] = { type = "Prefix", affix = "Mercenary's", "(20-24)% increased Global Physical Damage", statOrder = { 1231 }, level = 33, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(20-24)% increased Global Physical Damage" }, } },
+ ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage5"] = { type = "Prefix", affix = "Champion's", "(25-29)% increased Global Physical Damage", statOrder = { 1231 }, level = 44, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(25-29)% increased Global Physical Damage" }, } },
+ ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage6"] = { type = "Prefix", affix = "Conqueror's", "(30-34)% increased Global Physical Damage", statOrder = { 1231 }, level = 55, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(30-34)% increased Global Physical Damage" }, } },
+ ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage7"] = { type = "Prefix", affix = "Slayer's", "(35-39)% increased Global Physical Damage", statOrder = { 1231 }, level = 66, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(35-39)% increased Global Physical Damage" }, } },
+ ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage8"] = { type = "Prefix", affix = "General's", "(40-44)% increased Global Physical Damage", statOrder = { 1231 }, level = 74, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(40-44)% increased Global Physical Damage" }, } },
+ ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage9"] = { type = "Prefix", affix = "Emperor's", "(45-49)% increased Global Physical Damage", statOrder = { 1231 }, level = 82, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(45-49)% increased Global Physical Damage" }, } },
+ ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage10"] = { type = "Prefix", affix = "Dictator's", "(50-55)% increased Global Physical Damage", statOrder = { 1231 }, level = 85, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1310194496] = { "(50-55)% increased Global Physical Damage" }, } },
+ ["GraftPrefixUulnetolImpaleChance1"] = { type = "Prefix", affix = "Brutal", "(3-5)% chance to Impale Enemies on Hit", statOrder = { 7252 }, level = 1, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3752938727] = { "(3-5)% chance to Impale Enemies on Hit" }, } },
+ ["GraftPrefixUulnetolImpaleChance2"] = { type = "Prefix", affix = "Unforgiving", "(6-10)% chance to Impale Enemies on Hit", statOrder = { 7252 }, level = 22, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3752938727] = { "(6-10)% chance to Impale Enemies on Hit" }, } },
+ ["GraftPrefixUulnetolImpaleChance3"] = { type = "Prefix", affix = "Unrelenting", "(11-15)% chance to Impale Enemies on Hit", statOrder = { 7252 }, level = 44, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3752938727] = { "(11-15)% chance to Impale Enemies on Hit" }, } },
+ ["GraftPrefixUulnetolImpaleChance4"] = { type = "Prefix", affix = "Grim", "(16-20)% chance to Impale Enemies on Hit", statOrder = { 7252 }, level = 66, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3752938727] = { "(16-20)% chance to Impale Enemies on Hit" }, } },
+ ["GraftPrefixUulnetolImpaleChance5"] = { type = "Prefix", affix = "Impaling", "(21-25)% chance to Impale Enemies on Hit", statOrder = { 7252 }, level = 82, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3752938727] = { "(21-25)% chance to Impale Enemies on Hit" }, } },
+ ["GraftPrefixUulnetolImpaleEffect1"] = { type = "Prefix", affix = "Cruel", "(10-14)% increased Impale Effect", statOrder = { 7242 }, level = 44, group = "GraftPrefixUulnetolImpaleEffect", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [298173317] = { "(10-14)% increased Impale Effect" }, } },
+ ["GraftPrefixUulnetolImpaleEffect2"] = { type = "Prefix", affix = "Wicked", "(15-19)% increased Impale Effect", statOrder = { 7242 }, level = 66, group = "GraftPrefixUulnetolImpaleEffect", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [298173317] = { "(15-19)% increased Impale Effect" }, } },
+ ["GraftPrefixUulnetolImpaleEffect3"] = { type = "Prefix", affix = "Vicious", "(20-24)% increased Impale Effect", statOrder = { 7242 }, level = 82, group = "GraftPrefixUulnetolImpaleEffect", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [298173317] = { "(20-24)% increased Impale Effect" }, } },
+ ["GraftPrefixUulnetolEnduranceChargeWhenHit1"] = { type = "Prefix", affix = "Stoic", "(10-20)% chance to gain an Endurance Charge when you are Hit", statOrder = { 2751 }, level = 66, group = "GraftPrefixUulnetolEnduranceChargeWhenHit", weightKey = { "graft_uulnetol", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1514657588] = { "(10-20)% chance to gain an Endurance Charge when you are Hit" }, } },
+ ["GraftPrefixUulnetolStunThreshold1"] = { type = "Prefix", affix = "Steadfast", "(15-17)% increased Stun Threshold", statOrder = { 3272 }, level = 1, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(15-17)% increased Stun Threshold" }, } },
+ ["GraftPrefixUulnetolStunThreshold2"] = { type = "Prefix", affix = "Staunch", "(18-20)% increased Stun Threshold", statOrder = { 3272 }, level = 22, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(18-20)% increased Stun Threshold" }, } },
+ ["GraftPrefixUulnetolStunThreshold3"] = { type = "Prefix", affix = "Steady", "(21-23)% increased Stun Threshold", statOrder = { 3272 }, level = 44, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(21-23)% increased Stun Threshold" }, } },
+ ["GraftPrefixUulnetolStunThreshold4"] = { type = "Prefix", affix = "Unwavering", "(24-26)% increased Stun Threshold", statOrder = { 3272 }, level = 66, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(24-26)% increased Stun Threshold" }, } },
+ ["GraftPrefixUulnetolStunThreshold5"] = { type = "Prefix", affix = "Unmoving", "(27-29)% increased Stun Threshold", statOrder = { 3272 }, level = 82, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(27-29)% increased Stun Threshold" }, } },
+ ["GraftPrefixUulnetolMaximumLife1"] = { type = "Prefix", affix = "Lively", "(3-4)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [983749596] = { "(3-4)% increased maximum Life" }, } },
+ ["GraftPrefixUulnetolMaximumLife2"] = { type = "Prefix", affix = "Vigorous", "(5-6)% increased maximum Life", statOrder = { 1571 }, level = 22, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [983749596] = { "(5-6)% increased maximum Life" }, } },
+ ["GraftPrefixUulnetolMaximumLife3"] = { type = "Prefix", affix = "Healthy", "(7-9)% increased maximum Life", statOrder = { 1571 }, level = 44, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [983749596] = { "(7-9)% increased maximum Life" }, } },
+ ["GraftPrefixUulnetolMaximumLife4"] = { type = "Prefix", affix = "Robust", "(10-12)% increased maximum Life", statOrder = { 1571 }, level = 66, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [983749596] = { "(10-12)% increased maximum Life" }, } },
+ ["GraftPrefixUulnetolMaximumLife5"] = { type = "Prefix", affix = "Hale", "(13-15)% increased maximum Life", statOrder = { 1571 }, level = 82, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [983749596] = { "(13-15)% increased maximum Life" }, } },
+ ["GraftPrefixUulnetolLifeLeech1"] = { type = "Prefix", affix = "Vampiric", "(10-20)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 44, group = "GraftPrefixUulnetolLifeLeech", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4118987751] = { "(10-20)% increased Maximum total Life Recovery per second from Leech" }, } },
+ ["GraftPrefixXophFasterAilments1"] = { type = "Prefix", affix = "Wasting", "Damaging Ailments deal damage (3-5)% faster", statOrder = { 6127 }, level = 44, group = "GraftPrefixXophFasterAilments", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (3-5)% faster" }, } },
+ ["GraftPrefixXophFasterAilments2"] = { type = "Prefix", affix = "Wilting", "Damaging Ailments deal damage (6-8)% faster", statOrder = { 6127 }, level = 66, group = "GraftPrefixXophFasterAilments", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (6-8)% faster" }, } },
+ ["GraftPrefixXophFasterAilments3"] = { type = "Prefix", affix = "Deteriorating", "Damaging Ailments deal damage (9-11)% faster", statOrder = { 6127 }, level = 82, group = "GraftPrefixXophFasterAilments", weightKey = { "graft_xoph", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (9-11)% faster" }, } },
+ ["GraftPrefixXophIgniteChance1"] = { type = "Prefix", affix = "Alight", "(4-10)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1335054179] = { "(4-10)% chance to Ignite" }, } },
+ ["GraftPrefixXophIgniteChance2"] = { type = "Prefix", affix = "Smouldering", "(11-17)% chance to Ignite", statOrder = { 2026 }, level = 22, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1335054179] = { "(11-17)% chance to Ignite" }, } },
+ ["GraftPrefixXophIgniteChance3"] = { type = "Prefix", affix = "Burning", "(18-24)% chance to Ignite", statOrder = { 2026 }, level = 44, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1335054179] = { "(18-24)% chance to Ignite" }, } },
+ ["GraftPrefixXophIgniteChance4"] = { type = "Prefix", affix = "Fiery", "(25-30)% chance to Ignite", statOrder = { 2026 }, level = 66, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1335054179] = { "(25-30)% chance to Ignite" }, } },
+ ["GraftPrefixXophIgniteChance5"] = { type = "Prefix", affix = "Blazing", "(31-40)% chance to Ignite", statOrder = { 2026 }, level = 82, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1335054179] = { "(31-40)% chance to Ignite" }, } },
+ ["GraftPrefixXophFlatAddedFire1"] = { type = "Prefix", affix = "Heated", "Adds (3-4) to (6-8) Fire Damage", statOrder = { 1359 }, level = 1, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [321077055] = { "Adds (3-4) to (6-8) Fire Damage" }, } },
+ ["GraftPrefixXophFlatAddedFire2"] = { type = "Prefix", affix = "Fierce", "Adds (4-7) to (11-15) Fire Damage", statOrder = { 1359 }, level = 22, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [321077055] = { "Adds (4-7) to (11-15) Fire Damage" }, } },
+ ["GraftPrefixXophFlatAddedFire3"] = { type = "Prefix", affix = "Fervent", "Adds (10-12) to (15-19) Fire Damage", statOrder = { 1359 }, level = 44, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [321077055] = { "Adds (10-12) to (15-19) Fire Damage" }, } },
+ ["GraftPrefixXophFlatAddedFire4"] = { type = "Prefix", affix = "Torrid", "Adds (14-17) to (21-25) Fire Damage", statOrder = { 1359 }, level = 66, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [321077055] = { "Adds (14-17) to (21-25) Fire Damage" }, } },
+ ["GraftPrefixXophFlatAddedFire5"] = { type = "Prefix", affix = "Magmatic", "Adds (20-23) to (26-32) Fire Damage", statOrder = { 1359 }, level = 82, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [321077055] = { "Adds (20-23) to (26-32) Fire Damage" }, } },
+ ["GraftPrefixXophGlobalIncreasedFireDamage1"] = { type = "Prefix", affix = "Hellish", "(5-9)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(5-9)% increased Fire Damage" }, } },
+ ["GraftPrefixXophGlobalIncreasedFireDamage2"] = { type = "Prefix", affix = "Damnable", "(10-14)% increased Fire Damage", statOrder = { 1357 }, level = 11, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(10-14)% increased Fire Damage" }, } },
+ ["GraftPrefixXophGlobalIncreasedFireDamage3"] = { type = "Prefix", affix = "Devil's", "(15-19)% increased Fire Damage", statOrder = { 1357 }, level = 22, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(15-19)% increased Fire Damage" }, } },
+ ["GraftPrefixXophGlobalIncreasedFireDamage4"] = { type = "Prefix", affix = "Imps'", "(20-24)% increased Fire Damage", statOrder = { 1357 }, level = 33, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(20-24)% increased Fire Damage" }, } },
+ ["GraftPrefixXophGlobalIncreasedFireDamage5"] = { type = "Prefix", affix = "Fiend's", "(25-29)% increased Fire Damage", statOrder = { 1357 }, level = 44, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(25-29)% increased Fire Damage" }, } },
+ ["GraftPrefixXophGlobalIncreasedFireDamage6"] = { type = "Prefix", affix = "Demon's", "(30-34)% increased Fire Damage", statOrder = { 1357 }, level = 55, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(30-34)% increased Fire Damage" }, } },
+ ["GraftPrefixXophGlobalIncreasedFireDamage7"] = { type = "Prefix", affix = "Tartarean", "(35-39)% increased Fire Damage", statOrder = { 1357 }, level = 66, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(35-39)% increased Fire Damage" }, } },
+ ["GraftPrefixXophGlobalIncreasedFireDamage8"] = { type = "Prefix", affix = "Stygian", "(40-44)% increased Fire Damage", statOrder = { 1357 }, level = 74, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(40-44)% increased Fire Damage" }, } },
+ ["GraftPrefixXophGlobalIncreasedFireDamage9"] = { type = "Prefix", affix = "Hadean", "(45-49)% increased Fire Damage", statOrder = { 1357 }, level = 82, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(45-49)% increased Fire Damage" }, } },
+ ["GraftPrefixXophGlobalIncreasedFireDamage10"] = { type = "Prefix", affix = "Infernal", "(50-55)% increased Fire Damage", statOrder = { 1357 }, level = 85, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3962278098] = { "(50-55)% increased Fire Damage" }, } },
+ ["GraftPrefixXophIgniteDuration1"] = { type = "Prefix", affix = "Unquenchable", "(10-14)% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 44, group = "GraftPrefixXophIgniteDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1086147743] = { "(10-14)% increased Ignite Duration on Enemies" }, } },
+ ["GraftPrefixXophIgniteDuration2"] = { type = "Prefix", affix = "Everburning", "(15-19)% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 66, group = "GraftPrefixXophIgniteDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1086147743] = { "(15-19)% increased Ignite Duration on Enemies" }, } },
+ ["GraftPrefixXophIgniteDuration3"] = { type = "Prefix", affix = "Inextinguishable", "(20-25)% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 82, group = "GraftPrefixXophIgniteDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1086147743] = { "(20-25)% increased Ignite Duration on Enemies" }, } },
+ ["GraftPrefixXophWarcryCooldown1"] = { type = "Prefix", affix = "Howling", "(12-17)% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 44, group = "GraftPrefixXophWarcryCooldown", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(12-17)% increased Warcry Cooldown Recovery Rate" }, } },
+ ["GraftPrefixXophWarcryCooldown2"] = { type = "Prefix", affix = "Screaming", "(18-22)% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 82, group = "GraftPrefixXophWarcryCooldown", weightKey = { "graft_xoph", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(18-22)% increased Warcry Cooldown Recovery Rate" }, } },
+ ["GraftPrefixXophAreaOfEffect1"] = { type = "Prefix", affix = "Snatching", "(5-6)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(5-6)% increased Area of Effect" }, } },
+ ["GraftPrefixXophAreaOfEffect2"] = { type = "Prefix", affix = "Grasping", "(7-8)% increased Area of Effect", statOrder = { 1880 }, level = 22, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(7-8)% increased Area of Effect" }, } },
+ ["GraftPrefixXophAreaOfEffect3"] = { type = "Prefix", affix = "Clutching", "(9-10)% increased Area of Effect", statOrder = { 1880 }, level = 44, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(9-10)% increased Area of Effect" }, } },
+ ["GraftPrefixXophAreaOfEffect4"] = { type = "Prefix", affix = "Siezing", "(11-12)% increased Area of Effect", statOrder = { 1880 }, level = 66, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(11-12)% increased Area of Effect" }, } },
+ ["GraftPrefixXophAreaOfEffect5"] = { type = "Prefix", affix = "Reaching", "(13-14)% increased Area of Effect", statOrder = { 1880 }, level = 82, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(13-14)% increased Area of Effect" }, } },
+ ["GraftPrefixXophStrength1"] = { type = "Prefix", affix = "Brawny", "+(3-5) to Strength", statOrder = { 1177 }, level = 1, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4080418644] = { "+(3-5) to Strength" }, } },
+ ["GraftPrefixXophStrength2"] = { type = "Prefix", affix = "Powerful", "+(6-8) to Strength", statOrder = { 1177 }, level = 22, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4080418644] = { "+(6-8) to Strength" }, } },
+ ["GraftPrefixXophStrength3"] = { type = "Prefix", affix = "Burly", "+(9-11) to Strength", statOrder = { 1177 }, level = 44, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [4080418644] = { "+(9-11) to Strength" }, } },
+ ["GraftPrefixXophStrength4"] = { type = "Prefix", affix = "Muscular", "+(12-14) to Strength", statOrder = { 1177 }, level = 66, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4080418644] = { "+(12-14) to Strength" }, } },
+ ["GraftPrefixXophStrength5"] = { type = "Prefix", affix = "Beefy", "+(15-17) to Strength", statOrder = { 1177 }, level = 82, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4080418644] = { "+(15-17) to Strength" }, } },
+ ["GraftPrefixXophPercentageStrength1"] = { type = "Prefix", affix = "Brutish", "(2-4)% increased Strength", statOrder = { 1184 }, level = 74, group = "GraftPrefixXophPercentageStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [734614379] = { "(2-4)% increased Strength" }, } },
+ ["GraftPrefixXophPercentageArmour1"] = { type = "Prefix", affix = "Carapaced", "(15-18)% increased Armour", statOrder = { 1541 }, level = 1, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2866361420] = { "(15-18)% increased Armour" }, } },
+ ["GraftPrefixXophPercentageArmour2"] = { type = "Prefix", affix = "Clad", "(19-22)% increased Armour", statOrder = { 1541 }, level = 22, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2866361420] = { "(19-22)% increased Armour" }, } },
+ ["GraftPrefixXophPercentageArmour3"] = { type = "Prefix", affix = "Reinforced", "(23-26)% increased Armour", statOrder = { 1541 }, level = 44, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2866361420] = { "(23-26)% increased Armour" }, } },
+ ["GraftPrefixXophPercentageArmour4"] = { type = "Prefix", affix = "Plated", "(27-30)% increased Armour", statOrder = { 1541 }, level = 66, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2866361420] = { "(27-30)% increased Armour" }, } },
+ ["GraftPrefixXophPercentageArmour5"] = { type = "Prefix", affix = "Iron", "(30-35)% increased Armour", statOrder = { 1541 }, level = 82, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2866361420] = { "(30-35)% increased Armour" }, } },
+ ["GraftPrefixXophFireResistance1"] = { type = "Prefix", affix = "Thermal", "+(5-12)% to Fire Resistance", statOrder = { 1625 }, level = 44, group = "GraftPrefixXophFireResistance", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3372524247] = { "+(5-12)% to Fire Resistance" }, } },
+ ["GraftPrefixXophFireResistance2"] = { type = "Prefix", affix = "Refractory", "+(13-20)% to Fire Resistance", statOrder = { 1625 }, level = 66, group = "GraftPrefixXophFireResistance", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3372524247] = { "+(13-20)% to Fire Resistance" }, } },
+ ["GraftPrefixXophFireResistance3"] = { type = "Prefix", affix = "Heatproof", "+(21-28)% to Fire Resistance", statOrder = { 1625 }, level = 82, group = "GraftPrefixXophFireResistance", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3372524247] = { "+(21-28)% to Fire Resistance" }, } },
+ ["GraftPrefixXophFirePenetration1"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (6-10)% Fire Resistance", statOrder = { 2981 }, level = 66, group = "GraftPrefixXophFirePenetration", weightKey = { "graft_xoph", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [2653955271] = { "Damage Penetrates (6-10)% Fire Resistance" }, } },
+ ["GraftPrefixXophMaximumFireResistance1"] = { type = "Prefix", affix = "Fireproof", "+(1-2)% to maximum Fire Resistance", statOrder = { 1623 }, level = 74, group = "GraftPrefixXophMaximumFireResistance", weightKey = { "graft_xoph", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHashes = { [4095671657] = { "+(1-2)% to maximum Fire Resistance" }, } },
+ ["GraftPrefixXophGlobalIncreasedAttackDamage1"] = { type = "Prefix", affix = "Combatant's", "(5-9)% increased Attack Damage", statOrder = { 1198 }, level = 1, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(5-9)% increased Attack Damage" }, } },
+ ["GraftPrefixXophGlobalIncreasedAttackDamage2"] = { type = "Prefix", affix = "Warrior's", "(10-14)% increased Attack Damage", statOrder = { 1198 }, level = 11, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(10-14)% increased Attack Damage" }, } },
+ ["GraftPrefixXophGlobalIncreasedAttackDamage3"] = { type = "Prefix", affix = "Fighter's", "(15-19)% increased Attack Damage", statOrder = { 1198 }, level = 22, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(15-19)% increased Attack Damage" }, } },
+ ["GraftPrefixXophGlobalIncreasedAttackDamage4"] = { type = "Prefix", affix = "Brawler's", "(20-24)% increased Attack Damage", statOrder = { 1198 }, level = 33, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(20-24)% increased Attack Damage" }, } },
+ ["GraftPrefixXophGlobalIncreasedAttackDamage5"] = { type = "Prefix", affix = "Soldier's", "(25-29)% increased Attack Damage", statOrder = { 1198 }, level = 44, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(25-29)% increased Attack Damage" }, } },
+ ["GraftPrefixXophGlobalIncreasedAttackDamage6"] = { type = "Prefix", affix = "Veteran's", "(30-34)% increased Attack Damage", statOrder = { 1198 }, level = 55, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(30-34)% increased Attack Damage" }, } },
+ ["GraftPrefixXophGlobalIncreasedAttackDamage7"] = { type = "Prefix", affix = "Assailant's", "(35-39)% increased Attack Damage", statOrder = { 1198 }, level = 66, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(35-39)% increased Attack Damage" }, } },
+ ["GraftPrefixXophGlobalIncreasedAttackDamage8"] = { type = "Prefix", affix = "Gladiator's", "(40-44)% increased Attack Damage", statOrder = { 1198 }, level = 74, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(40-44)% increased Attack Damage" }, } },
+ ["GraftPrefixXophGlobalIncreasedAttackDamage9"] = { type = "Prefix", affix = "Prizefighter's", "(45-49)% increased Attack Damage", statOrder = { 1198 }, level = 82, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(45-49)% increased Attack Damage" }, } },
+ ["GraftPrefixXophGlobalIncreasedAttackDamage10"] = { type = "Prefix", affix = "Pitfighter's", "(50-55)% increased Attack Damage", statOrder = { 1198 }, level = 85, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2843214518] = { "(50-55)% increased Attack Damage" }, } },
+ ["GraftPrefixXophMinionDuration1"] = { type = "Prefix", affix = "Lingering", "(10-12)% increased Minion Duration", statOrder = { 5032 }, level = 44, group = "GraftPrefixXophMinionDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [999511066] = { "(10-12)% increased Minion Duration" }, } },
+ ["GraftPrefixXophMinionDuration2"] = { type = "Prefix", affix = "Abiding", "(13-15)% increased Minion Duration", statOrder = { 5032 }, level = 66, group = "GraftPrefixXophMinionDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [999511066] = { "(13-15)% increased Minion Duration" }, } },
+ ["GraftPrefixXophMinionDuration3"] = { type = "Prefix", affix = "Undying", "(16-18)% increased Minion Duration", statOrder = { 5032 }, level = 82, group = "GraftPrefixXophMinionDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [999511066] = { "(16-18)% increased Minion Duration" }, } },
+ ["GraftPrefixEshShockChance1"] = { type = "Prefix", affix = "Jolting", "(3-5)% chance to Shock", statOrder = { 2033 }, level = 1, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1538773178] = { "(3-5)% chance to Shock" }, } },
+ ["GraftPrefixEshShockChance2"] = { type = "Prefix", affix = "Enervating", "(6-8)% chance to Shock", statOrder = { 2033 }, level = 22, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1538773178] = { "(6-8)% chance to Shock" }, } },
+ ["GraftPrefixEshShockChance3"] = { type = "Prefix", affix = "Sparking", "(9-11)% chance to Shock", statOrder = { 2033 }, level = 44, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [1538773178] = { "(9-11)% chance to Shock" }, } },
+ ["GraftPrefixEshShockChance4"] = { type = "Prefix", affix = "Zapping", "(12-14)% chance to Shock", statOrder = { 2033 }, level = 66, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [1538773178] = { "(12-14)% chance to Shock" }, } },
+ ["GraftPrefixEshShockChance5"] = { type = "Prefix", affix = "Shocking", "(15-17)% chance to Shock", statOrder = { 2033 }, level = 82, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [1538773178] = { "(15-17)% chance to Shock" }, } },
+ ["GraftPrefixEshShockDuration1"] = { type = "Prefix", affix = "Sustained", "(15-24)% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 44, group = "GraftPrefixEshShockDuration", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [3668351662] = { "(15-24)% increased Shock Duration on Enemies" }, } },
+ ["GraftPrefixEshShockDuration2"] = { type = "Prefix", affix = "Lasting", "(25-34)% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 66, group = "GraftPrefixEshShockDuration", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [3668351662] = { "(25-34)% increased Shock Duration on Enemies" }, } },
+ ["GraftPrefixEshShockDuration3"] = { type = "Prefix", affix = "Perpetual", "(35-45)% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 82, group = "GraftPrefixEshShockDuration", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [3668351662] = { "(35-45)% increased Shock Duration on Enemies" }, } },
+ ["GraftPrefixEshLightningDamage1"] = { type = "Prefix", affix = "Flashing", "(5-9)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(5-9)% increased Lightning Damage" }, } },
+ ["GraftPrefixEshLightningDamage2"] = { type = "Prefix", affix = "Bright", "(10-14)% increased Lightning Damage", statOrder = { 1377 }, level = 11, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(10-14)% increased Lightning Damage" }, } },
+ ["GraftPrefixEshLightningDamage3"] = { type = "Prefix", affix = "Bolting", "(15-19)% increased Lightning Damage", statOrder = { 1377 }, level = 22, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(15-19)% increased Lightning Damage" }, } },
+ ["GraftPrefixEshLightningDamage4"] = { type = "Prefix", affix = "Discharging", "(20-24)% increased Lightning Damage", statOrder = { 1377 }, level = 33, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(20-24)% increased Lightning Damage" }, } },
+ ["GraftPrefixEshLightningDamage5"] = { type = "Prefix", affix = "Stormrider's", "(25-29)% increased Lightning Damage", statOrder = { 1377 }, level = 44, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(25-29)% increased Lightning Damage" }, } },
+ ["GraftPrefixEshLightningDamage6"] = { type = "Prefix", affix = "Thunderbolt's", "(30-34)% increased Lightning Damage", statOrder = { 1377 }, level = 55, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(30-34)% increased Lightning Damage" }, } },
+ ["GraftPrefixEshLightningDamage7"] = { type = "Prefix", affix = "Stormcaller's", "(35-39)% increased Lightning Damage", statOrder = { 1377 }, level = 66, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(35-39)% increased Lightning Damage" }, } },
+ ["GraftPrefixEshLightningDamage8"] = { type = "Prefix", affix = "Invoker's", "(40-44)% increased Lightning Damage", statOrder = { 1377 }, level = 74, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(40-44)% increased Lightning Damage" }, } },
+ ["GraftPrefixEshLightningDamage9"] = { type = "Prefix", affix = "Stormweaver's", "(45-49)% increased Lightning Damage", statOrder = { 1377 }, level = 82, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(45-49)% increased Lightning Damage" }, } },
+ ["GraftPrefixEshLightningDamage10"] = { type = "Prefix", affix = "Esh's", "(50-55)% increased Lightning Damage", statOrder = { 1377 }, level = 85, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2231156303] = { "(50-55)% increased Lightning Damage" }, } },
+ ["GraftPrefixEshFlatAddedLightning1"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (5-7) Lightning Damage", statOrder = { 1379 }, level = 1, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1334060246] = { "Adds (1-2) to (5-7) Lightning Damage" }, } },
+ ["GraftPrefixEshFlatAddedLightning2"] = { type = "Prefix", affix = "Empowered", "Adds (1-2) to (8-16) Lightning Damage", statOrder = { 1379 }, level = 22, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1334060246] = { "Adds (1-2) to (8-16) Lightning Damage" }, } },
+ ["GraftPrefixEshFlatAddedLightning3"] = { type = "Prefix", affix = "Flashing", "Adds (1-3) to (20-24) Lightning Damage", statOrder = { 1379 }, level = 44, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1334060246] = { "Adds (1-3) to (20-24) Lightning Damage" }, } },
+ ["GraftPrefixEshFlatAddedLightning4"] = { type = "Prefix", affix = "Fulminating", "Adds (2-4) to (33-41) Lightning Damage", statOrder = { 1379 }, level = 66, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1334060246] = { "Adds (2-4) to (33-41) Lightning Damage" }, } },
+ ["GraftPrefixEshFlatAddedLightning5"] = { type = "Prefix", affix = "Static", "Adds (4-6) to (54-60) Lightning Damage", statOrder = { 1379 }, level = 82, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1334060246] = { "Adds (4-6) to (54-60) Lightning Damage" }, } },
+ ["GraftPrefixEshCriticalChanceVSShocked1"] = { type = "Prefix", affix = "Convulsive", "(30-49)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5913 }, level = 66, group = "GraftPrefixEshCriticalChanceVSShocked", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [276103140] = { "(30-49)% increased Critical Strike Chance against Shocked Enemies" }, } },
+ ["GraftPrefixEshCriticalChanceVSShocked2"] = { type = "Prefix", affix = "Fulgurating", "(50-65)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5913 }, level = 82, group = "GraftPrefixEshCriticalChanceVSShocked", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [276103140] = { "(50-65)% increased Critical Strike Chance against Shocked Enemies" }, } },
+ ["GraftPrefixEshAttackAndCastSpeed1"] = { type = "Prefix", affix = "Rapid", "(4-6)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 44, group = "GraftPrefixEshAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2672805335] = { "(4-6)% increased Attack and Cast Speed" }, } },
+ ["GraftPrefixEshAttackAndCastSpeed2"] = { type = "Prefix", affix = "Fleet", "(8-10)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 66, group = "GraftPrefixEshAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [2672805335] = { "(8-10)% increased Attack and Cast Speed" }, } },
+ ["GraftPrefixEshAttackAndCastSpeed3"] = { type = "Prefix", affix = "Quickening", "(12-14)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 82, group = "GraftPrefixEshAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [2672805335] = { "(12-14)% increased Attack and Cast Speed" }, } },
+ ["GraftPrefixEshMinionDamage1"] = { type = "Prefix", affix = "Noble", "Minions deal (5-9)% increased Damage", statOrder = { 1973 }, level = 1, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (5-9)% increased Damage" }, } },
+ ["GraftPrefixEshMinionDamage2"] = { type = "Prefix", affix = "Regal", "Minions deal (10-14)% increased Damage", statOrder = { 1973 }, level = 11, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (10-14)% increased Damage" }, } },
+ ["GraftPrefixEshMinionDamage3"] = { type = "Prefix", affix = "Lord's", "Minions deal (15-19)% increased Damage", statOrder = { 1973 }, level = 22, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (15-19)% increased Damage" }, } },
+ ["GraftPrefixEshMinionDamage4"] = { type = "Prefix", affix = "Lady's", "Minions deal (20-24)% increased Damage", statOrder = { 1973 }, level = 33, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (20-24)% increased Damage" }, } },
+ ["GraftPrefixEshMinionDamage5"] = { type = "Prefix", affix = "Baron's", "Minions deal (25-29)% increased Damage", statOrder = { 1973 }, level = 44, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (25-29)% increased Damage" }, } },
+ ["GraftPrefixEshMinionDamage6"] = { type = "Prefix", affix = "Duke's", "Minions deal (30-34)% increased Damage", statOrder = { 1973 }, level = 55, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (30-34)% increased Damage" }, } },
+ ["GraftPrefixEshMinionDamage7"] = { type = "Prefix", affix = "Aristocrat's", "Minions deal (35-39)% increased Damage", statOrder = { 1973 }, level = 66, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (35-39)% increased Damage" }, } },
+ ["GraftPrefixEshMinionDamage8"] = { type = "Prefix", affix = "Elite", "Minions deal (40-44)% increased Damage", statOrder = { 1973 }, level = 74, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (40-44)% increased Damage" }, } },
+ ["GraftPrefixEshMinionDamage9"] = { type = "Prefix", affix = "Prince's", "Minions deal (45-49)% increased Damage", statOrder = { 1973 }, level = 82, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (45-49)% increased Damage" }, } },
+ ["GraftPrefixEshMinionDamage10"] = { type = "Prefix", affix = "Monarch's", "Minions deal (50-55)% increased Damage", statOrder = { 1973 }, level = 85, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [1589917703] = { "Minions deal (50-55)% increased Damage" }, } },
+ ["GraftPrefixEshMinionAttackAndCastSpeed1"] = { type = "Prefix", affix = "Feverish", "Minions have (4-6)% increased Attack and Cast Speed", statOrder = { 9269 }, level = 44, group = "GraftPrefixEshMinionAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [3091578504] = { "Minions have (4-6)% increased Attack and Cast Speed" }, } },
+ ["GraftPrefixEshMinionAttackAndCastSpeed2"] = { type = "Prefix", affix = "Manic", "Minions have (8-10)% increased Attack and Cast Speed", statOrder = { 9269 }, level = 66, group = "GraftPrefixEshMinionAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [3091578504] = { "Minions have (8-10)% increased Attack and Cast Speed" }, } },
+ ["GraftPrefixEshMinionAttackAndCastSpeed3"] = { type = "Prefix", affix = "Frenetic", "Minions have (12-14)% increased Attack and Cast Speed", statOrder = { 9269 }, level = 82, group = "GraftPrefixEshMinionAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [3091578504] = { "Minions have (12-14)% increased Attack and Cast Speed" }, } },
+ ["GraftPrefixEshGlobalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Protective", "(3-5)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2482852589] = { "(3-5)% increased maximum Energy Shield" }, } },
+ ["GraftPrefixEshGlobalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Bolstered", "(6-8)% increased maximum Energy Shield", statOrder = { 1561 }, level = 11, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2482852589] = { "(6-8)% increased maximum Energy Shield" }, } },
+ ["GraftPrefixEshGlobalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Barrier", "(9-11)% increased maximum Energy Shield", statOrder = { 1561 }, level = 33, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [2482852589] = { "(9-11)% increased maximum Energy Shield" }, } },
+ ["GraftPrefixEshGlobalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Reinforced", "(12-13)% increased maximum Energy Shield", statOrder = { 1561 }, level = 54, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [2482852589] = { "(12-13)% increased maximum Energy Shield" }, } },
+ ["GraftPrefixEshGlobalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Buttressed", "(14-16)% increased maximum Energy Shield", statOrder = { 1561 }, level = 66, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [2482852589] = { "(14-16)% increased maximum Energy Shield" }, } },
+ ["GraftPrefixEshLightningResistance1"] = { type = "Prefix", affix = "Grounded", "+(5-12)% to Lightning Resistance", statOrder = { 1636 }, level = 22, group = "GraftPrefixEshLightningResistance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [1671376347] = { "+(5-12)% to Lightning Resistance" }, } },
+ ["GraftPrefixEshLightningResistance2"] = { type = "Prefix", affix = "Insulated", "+(13-20)% to Lightning Resistance", statOrder = { 1636 }, level = 66, group = "GraftPrefixEshLightningResistance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [1671376347] = { "+(13-20)% to Lightning Resistance" }, } },
+ ["GraftPrefixEshLightningResistance3"] = { type = "Prefix", affix = "Absorbing", "+(21-28)% to Lightning Resistance", statOrder = { 1636 }, level = 82, group = "GraftPrefixEshLightningResistance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [1671376347] = { "+(21-28)% to Lightning Resistance" }, } },
+ ["GraftPrefixEshLightningPenetration1"] = { type = "Prefix", affix = "Energetic", "Damage Penetrates (6-10)% Lightning Resistance", statOrder = { 2984 }, level = 66, group = "GraftPrefixEshLightningPenetration", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [818778753] = { "Damage Penetrates (6-10)% Lightning Resistance" }, } },
+ ["GraftPrefixEshMovementSpeed1"] = { type = "Prefix", affix = "Expedient", "(3-6)% increased Movement Speed", statOrder = { 1798 }, level = 66, group = "GraftPrefixEshMovementSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 50, 0, 0 }, modTags = { }, tradeHashes = { [2250533757] = { "(3-6)% increased Movement Speed" }, } },
+ ["GraftPrefixEshMaximumLightningResistance1"] = { type = "Prefix", affix = "Sequestered", "+(1-2)% to maximum Lightning Resistance", statOrder = { 1634 }, level = 74, group = "GraftPrefixEshMaximumLightningResistance", weightKey = { "graft_esh", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHashes = { [1011760251] = { "+(1-2)% to maximum Lightning Resistance" }, } },
+ ["GraftPrefixEshIncreasedMana1"] = { type = "Prefix", affix = "Expansive", "(3-6)% increased maximum Mana", statOrder = { 1580 }, level = 22, group = "GraftPrefixEshIncreasedMana", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2748665614] = { "(3-6)% increased maximum Mana" }, } },
+ ["GraftPrefixEshIncreasedMana2"] = { type = "Prefix", affix = "Unbounded", "(7-10)% increased maximum Mana", statOrder = { 1580 }, level = 66, group = "GraftPrefixEshIncreasedMana", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [2748665614] = { "(7-10)% increased maximum Mana" }, } },
+ ["GraftPrefixEshIncreasedMana3"] = { type = "Prefix", affix = "Illimitable", "(11-14)% increased maximum Mana", statOrder = { 1580 }, level = 82, group = "GraftPrefixEshIncreasedMana", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [2748665614] = { "(11-14)% increased maximum Mana" }, } },
+ ["GraftPrefixEshIntelligence1"] = { type = "Prefix", affix = "Controlled", "+(3-5) to Intelligence", statOrder = { 1179 }, level = 1, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 100, 0, 0 }, modTags = { }, tradeHashes = { [328541901] = { "+(3-5) to Intelligence" }, } },
+ ["GraftPrefixEshIntelligence2"] = { type = "Prefix", affix = "Brilliant", "+(6-8) to Intelligence", statOrder = { 1179 }, level = 22, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [328541901] = { "+(6-8) to Intelligence" }, } },
+ ["GraftPrefixEshIntelligence3"] = { type = "Prefix", affix = "Astute", "+(9-11) to Intelligence", statOrder = { 1179 }, level = 44, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [328541901] = { "+(9-11) to Intelligence" }, } },
+ ["GraftPrefixEshIntelligence4"] = { type = "Prefix", affix = "Acute", "+(12-14) to Intelligence", statOrder = { 1179 }, level = 66, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [328541901] = { "+(12-14) to Intelligence" }, } },
+ ["GraftPrefixEshIntelligence5"] = { type = "Prefix", affix = "Genius'", "+(15-17) to Intelligence", statOrder = { 1179 }, level = 82, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [328541901] = { "+(15-17) to Intelligence" }, } },
+ ["GraftPrefixEshPercentageIntelligence1"] = { type = "Prefix", affix = "Composed", "(2-4)% increased Intelligence", statOrder = { 1186 }, level = 74, group = "GraftPrefixEshPercentageIntelligence", weightKey = { "graft_esh", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [656461285] = { "(2-4)% increased Intelligence" }, } },
+ ["GraftPrefixEshSpellDamage1"] = { type = "Prefix", affix = "Arcane", "(5-9)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(5-9)% increased Spell Damage" }, } },
+ ["GraftPrefixEshSpellDamage2"] = { type = "Prefix", affix = "Spelleweaving", "(10-14)% increased Spell Damage", statOrder = { 1223 }, level = 11, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(10-14)% increased Spell Damage" }, } },
+ ["GraftPrefixEshSpellDamage3"] = { type = "Prefix", affix = "Caster's", "(15-19)% increased Spell Damage", statOrder = { 1223 }, level = 22, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(15-19)% increased Spell Damage" }, } },
+ ["GraftPrefixEshSpellDamage4"] = { type = "Prefix", affix = "Mage's", "(20-24)% increased Spell Damage", statOrder = { 1223 }, level = 33, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(20-24)% increased Spell Damage" }, } },
+ ["GraftPrefixEshSpellDamage5"] = { type = "Prefix", affix = "Scholar's", "(25-29)% increased Spell Damage", statOrder = { 1223 }, level = 44, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(25-29)% increased Spell Damage" }, } },
+ ["GraftPrefixEshSpellDamage6"] = { type = "Prefix", affix = "Wizard's", "(30-34)% increased Spell Damage", statOrder = { 1223 }, level = 55, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(30-34)% increased Spell Damage" }, } },
+ ["GraftPrefixEshSpellDamage7"] = { type = "Prefix", affix = "Sage's", "(35-39)% increased Spell Damage", statOrder = { 1223 }, level = 66, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(35-39)% increased Spell Damage" }, } },
+ ["GraftPrefixEshSpellDamage8"] = { type = "Prefix", affix = "Sorcerer's", "(40-44)% increased Spell Damage", statOrder = { 1223 }, level = 74, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(40-44)% increased Spell Damage" }, } },
+ ["GraftPrefixEshSpellDamage9"] = { type = "Prefix", affix = "Magician's", "(45-49)% increased Spell Damage", statOrder = { 1223 }, level = 82, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(45-49)% increased Spell Damage" }, } },
+ ["GraftPrefixEshSpellDamage10"] = { type = "Prefix", affix = "Lich's", "(50-55)% increased Spell Damage", statOrder = { 1223 }, level = 85, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, tradeHashes = { [2974417149] = { "(50-55)% increased Spell Damage" }, } },
+ ["GraftPrefixTulFreezeChance1"] = { type = "Prefix", affix = "Frigid", "(3-5)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [44571480] = { "(3-5)% chance to Freeze" }, } },
+ ["GraftPrefixTulFreezeChance2"] = { type = "Prefix", affix = "Frosted", "(6-8)% chance to Freeze", statOrder = { 2029 }, level = 22, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [44571480] = { "(6-8)% chance to Freeze" }, } },
+ ["GraftPrefixTulFreezeChance3"] = { type = "Prefix", affix = "Bitter", "(9-11)% chance to Freeze", statOrder = { 2029 }, level = 44, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [44571480] = { "(9-11)% chance to Freeze" }, } },
+ ["GraftPrefixTulFreezeChance4"] = { type = "Prefix", affix = "Wintry", "(12-14)% chance to Freeze", statOrder = { 2029 }, level = 66, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [44571480] = { "(12-14)% chance to Freeze" }, } },
+ ["GraftPrefixTulFreezeChance5"] = { type = "Prefix", affix = "Freezing", "(15-17)% chance to Freeze", statOrder = { 2029 }, level = 82, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [44571480] = { "(15-17)% chance to Freeze" }, } },
+ ["GraftPrefixTulFlatAddedColdDamage1"] = { type = "Prefix", affix = "Icy", "Adds (3-4) to (6-8) Cold Damage", statOrder = { 1368 }, level = 1, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2387423236] = { "Adds (3-4) to (6-8) Cold Damage" }, } },
+ ["GraftPrefixTulFlatAddedColdDamage2"] = { type = "Prefix", affix = "Cold", "Adds (4-7) to (11-15) Cold Damage", statOrder = { 1368 }, level = 22, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2387423236] = { "Adds (4-7) to (11-15) Cold Damage" }, } },
+ ["GraftPrefixTulFlatAddedColdDamage3"] = { type = "Prefix", affix = "Brumal", "Adds (10-12) to (15-19) Cold Damage", statOrder = { 1368 }, level = 44, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2387423236] = { "Adds (10-12) to (15-19) Cold Damage" }, } },
+ ["GraftPrefixTulFlatAddedColdDamage4"] = { type = "Prefix", affix = "Bleak", "Adds (14-17) to (21-25) Cold Damage", statOrder = { 1368 }, level = 66, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2387423236] = { "Adds (14-17) to (21-25) Cold Damage" }, } },
+ ["GraftPrefixTulFlatAddedColdDamage5"] = { type = "Prefix", affix = "Frostbound", "Adds (20-23) to (26-32) Cold Damage", statOrder = { 1368 }, level = 82, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2387423236] = { "Adds (20-23) to (26-32) Cold Damage" }, } },
+ ["GraftPrefixTulIncreasedColdDamage1"] = { type = "Prefix", affix = "", "(5-9)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(5-9)% increased Cold Damage" }, } },
+ ["GraftPrefixTulIncreasedColdDamage2"] = { type = "Prefix", affix = "", "(10-14)% increased Cold Damage", statOrder = { 1366 }, level = 11, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(10-14)% increased Cold Damage" }, } },
+ ["GraftPrefixTulIncreasedColdDamage3"] = { type = "Prefix", affix = "", "(15-19)% increased Cold Damage", statOrder = { 1366 }, level = 22, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(15-19)% increased Cold Damage" }, } },
+ ["GraftPrefixTulIncreasedColdDamage4"] = { type = "Prefix", affix = "", "(20-24)% increased Cold Damage", statOrder = { 1366 }, level = 33, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(20-24)% increased Cold Damage" }, } },
+ ["GraftPrefixTulIncreasedColdDamage5"] = { type = "Prefix", affix = "", "(25-29)% increased Cold Damage", statOrder = { 1366 }, level = 44, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(25-29)% increased Cold Damage" }, } },
+ ["GraftPrefixTulIncreasedColdDamage6"] = { type = "Prefix", affix = "", "(30-34)% increased Cold Damage", statOrder = { 1366 }, level = 55, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(30-34)% increased Cold Damage" }, } },
+ ["GraftPrefixTulIncreasedColdDamage7"] = { type = "Prefix", affix = "", "(35-39)% increased Cold Damage", statOrder = { 1366 }, level = 66, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(35-39)% increased Cold Damage" }, } },
+ ["GraftPrefixTulIncreasedColdDamage8"] = { type = "Prefix", affix = "", "(40-44)% increased Cold Damage", statOrder = { 1366 }, level = 74, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(40-44)% increased Cold Damage" }, } },
+ ["GraftPrefixTulIncreasedColdDamage9"] = { type = "Prefix", affix = "", "(45-49)% increased Cold Damage", statOrder = { 1366 }, level = 82, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(45-49)% increased Cold Damage" }, } },
+ ["GraftPrefixTulIncreasedColdDamage10"] = { type = "Prefix", affix = "", "(50-55)% increased Cold Damage", statOrder = { 1366 }, level = 85, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3291658075] = { "(50-55)% increased Cold Damage" }, } },
+ ["GraftPrefixTulStrikeRange1"] = { type = "Prefix", affix = "Extended", "+(0.1-0.3) metres to Melee Strike Range", statOrder = { 2534 }, level = 66, group = "GraftPrefixTulStrikeRange", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2264295449] = { "+(0.1-0.3) metres to Melee Strike Range" }, } },
+ ["GraftPrefixTulStrikeRange2"] = { type = "Prefix", affix = "Elongated", "+0.4 metres to Melee Strike Range", statOrder = { 2534 }, level = 82, group = "GraftPrefixTulStrikeRange", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2264295449] = { "+0.4 metres to Melee Strike Range" }, } },
+ ["GraftPrefixTulAdditionalStrike1"] = { type = "Prefix", affix = "Versatile", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9184 }, level = 66, group = "GraftPrefixTulAdditionalStrike", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1661253443] = { "Non-Vaal Strike Skills target 1 additional nearby Enemy" }, } },
+ ["GraftPrefixTulProjectileSpeed1"] = { type = "Prefix", affix = "Tossing", "(5-9)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3759663284] = { "(5-9)% increased Projectile Speed" }, } },
+ ["GraftPrefixTulProjectileSpeed2"] = { type = "Prefix", affix = "Hurling", "(10-14)% increased Projectile Speed", statOrder = { 1796 }, level = 22, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3759663284] = { "(10-14)% increased Projectile Speed" }, } },
+ ["GraftPrefixTulProjectileSpeed3"] = { type = "Prefix", affix = "Lobbing", "(15-19)% increased Projectile Speed", statOrder = { 1796 }, level = 44, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3759663284] = { "(15-19)% increased Projectile Speed" }, } },
+ ["GraftPrefixTulProjectileSpeed4"] = { type = "Prefix", affix = "Slinging", "(20-24)% increased Projectile Speed", statOrder = { 1796 }, level = 66, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3759663284] = { "(20-24)% increased Projectile Speed" }, } },
+ ["GraftPrefixTulProjectileSpeed5"] = { type = "Prefix", affix = "Propeling", "(25-30)% increased Projectile Speed", statOrder = { 1796 }, level = 82, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3759663284] = { "(25-30)% increased Projectile Speed" }, } },
+ ["GraftPrefixTulGlobalIncreasedEvasion1"] = { type = "Prefix", affix = "Blurred", "(15-18)% increased Evasion Rating", statOrder = { 1549 }, level = 1, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2106365538] = { "(15-18)% increased Evasion Rating" }, } },
+ ["GraftPrefixTulGlobalIncreasedEvasion2"] = { type = "Prefix", affix = "Obscuring", "(19-22)% increased Evasion Rating", statOrder = { 1549 }, level = 22, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2106365538] = { "(19-22)% increased Evasion Rating" }, } },
+ ["GraftPrefixTulGlobalIncreasedEvasion3"] = { type = "Prefix", affix = "Hazy", "(23-26)% increased Evasion Rating", statOrder = { 1549 }, level = 44, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2106365538] = { "(23-26)% increased Evasion Rating" }, } },
+ ["GraftPrefixTulGlobalIncreasedEvasion4"] = { type = "Prefix", affix = "Shrouded", "(27-30)% increased Evasion Rating", statOrder = { 1549 }, level = 66, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2106365538] = { "(27-30)% increased Evasion Rating" }, } },
+ ["GraftPrefixTulGlobalIncreasedEvasion5"] = { type = "Prefix", affix = "Mistborn", "(30-35)% increased Evasion Rating", statOrder = { 1549 }, level = 82, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2106365538] = { "(30-35)% increased Evasion Rating" }, } },
+ ["GraftPrefixTulColdResistance1"] = { type = "Prefix", affix = "Winterised", "+(5-12)% to Cold Resistance", statOrder = { 1631 }, level = 44, group = "GraftPrefixTulColdResistance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4220027924] = { "+(5-12)% to Cold Resistance" }, } },
+ ["GraftPrefixTulColdResistance2"] = { type = "Prefix", affix = "Insular", "+(13-20)% to Cold Resistance", statOrder = { 1631 }, level = 66, group = "GraftPrefixTulColdResistance", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4220027924] = { "+(13-20)% to Cold Resistance" }, } },
+ ["GraftPrefixTulColdResistance3"] = { type = "Prefix", affix = "Yeti's", "+(21-28)% to Cold Resistance", statOrder = { 1631 }, level = 82, group = "GraftPrefixTulColdResistance", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4220027924] = { "+(21-28)% to Cold Resistance" }, } },
+ ["GraftPrefixTulColdPenetration1"] = { type = "Prefix", affix = "Biting", "Damage Penetrates (6-10)% Cold Resistance", statOrder = { 2983 }, level = 66, group = "GraftPrefixTulColdPenetration", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3417711605] = { "Damage Penetrates (6-10)% Cold Resistance" }, } },
+ ["GraftPrefixTulChillEffect1"] = { type = "Prefix", affix = "Impeding", "(20-29)% increased Effect of Chill", statOrder = { 5769 }, level = 66, group = "GraftPrefixTulChillEffect", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [828179689] = { "(20-29)% increased Effect of Chill" }, } },
+ ["GraftPrefixTulChillEffect2"] = { type = "Prefix", affix = "Shackling", "(30-40)% increased Effect of Chill", statOrder = { 5769 }, level = 82, group = "GraftPrefixTulChillEffect", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [828179689] = { "(30-40)% increased Effect of Chill" }, } },
+ ["GraftPrefixTulCritMultiplier1"] = { type = "Prefix", affix = "Dangerous", "+(9-10)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3556824919] = { "+(9-10)% to Global Critical Strike Multiplier" }, } },
+ ["GraftPrefixTulCritMultiplier2"] = { type = "Prefix", affix = "Harmful", "+(11-12)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 22, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3556824919] = { "+(11-12)% to Global Critical Strike Multiplier" }, } },
+ ["GraftPrefixTulCritMultiplier3"] = { type = "Prefix", affix = "Threatening", "+(13-14)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 44, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3556824919] = { "+(13-14)% to Global Critical Strike Multiplier" }, } },
+ ["GraftPrefixTulCritMultiplier4"] = { type = "Prefix", affix = "Lethal", "+(14-16)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 66, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3556824919] = { "+(14-16)% to Global Critical Strike Multiplier" }, } },
+ ["GraftPrefixTulCritMultiplier5"] = { type = "Prefix", affix = "Deadly", "+(16-18)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 82, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3556824919] = { "+(16-18)% to Global Critical Strike Multiplier" }, } },
+ ["GraftPrefixTulCritChance1"] = { type = "Prefix", affix = "Careful", "(10-14)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [587431675] = { "(10-14)% increased Global Critical Strike Chance" }, } },
+ ["GraftPrefixTulCritChance2"] = { type = "Prefix", affix = "Exact", "(15-19)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 22, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [587431675] = { "(15-19)% increased Global Critical Strike Chance" }, } },
+ ["GraftPrefixTulCritChance3"] = { type = "Prefix", affix = "Unerring", "(20-24)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 44, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [587431675] = { "(20-24)% increased Global Critical Strike Chance" }, } },
+ ["GraftPrefixTulCritChance4"] = { type = "Prefix", affix = "Precise", "(25-29)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 66, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [587431675] = { "(25-29)% increased Global Critical Strike Chance" }, } },
+ ["GraftPrefixTulCritChance5"] = { type = "Prefix", affix = "Pinpoint", "(30-34)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 82, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [587431675] = { "(30-34)% increased Global Critical Strike Chance" }, } },
+ ["GraftPrefixTulPowerChargeOnKill1"] = { type = "Prefix", affix = "Potent", "(5-10)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 66, group = "GraftPrefixTulPowerChargeOnKill", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2483795307] = { "(5-10)% chance to gain a Power Charge on Kill" }, } },
+ ["GraftPrefixTulFrenzyChargeOnHitVsUnique1"] = { type = "Prefix", affix = "Frenzied", "(5-10)% chance to gain a Frenzy Charge when you Hit a Unique Enemy", statOrder = { 6761 }, level = 66, group = "GraftPrefixTulFrenzyChargeOnHitVsUnique", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [4113439745] = { "(5-10)% chance to gain a Frenzy Charge when you Hit a Unique Enemy" }, } },
+ ["GraftPrefixTulMaximumColdResistance1"] = { type = "Prefix", affix = "Blustering", "+(1-2)% to maximum Cold Resistance", statOrder = { 1629 }, level = 74, group = "GraftPrefixTulMaximumColdResistance", weightKey = { "graft_tul", "default", }, weightVal = { 50, 0 }, modTags = { }, tradeHashes = { [3676141501] = { "+(1-2)% to maximum Cold Resistance" }, } },
+ ["GraftPrefixTulDexterity1"] = { type = "Prefix", affix = "Lithe", "+(3-5) to Dexterity", statOrder = { 1178 }, level = 1, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3261801346] = { "+(3-5) to Dexterity" }, } },
+ ["GraftPrefixTulDexterity2"] = { type = "Prefix", affix = "Adroit", "+(6-8) to Dexterity", statOrder = { 1178 }, level = 22, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3261801346] = { "+(6-8) to Dexterity" }, } },
+ ["GraftPrefixTulDexterity3"] = { type = "Prefix", affix = "Nimble", "+(9-11) to Dexterity", statOrder = { 1178 }, level = 44, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3261801346] = { "+(9-11) to Dexterity" }, } },
+ ["GraftPrefixTulDexterity4"] = { type = "Prefix", affix = "Adept", "+(12-14) to Dexterity", statOrder = { 1178 }, level = 66, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3261801346] = { "+(12-14) to Dexterity" }, } },
+ ["GraftPrefixTulDexterity5"] = { type = "Prefix", affix = "Dexterous", "+(15-17) to Dexterity", statOrder = { 1178 }, level = 82, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3261801346] = { "+(15-17) to Dexterity" }, } },
+ ["GraftPrefixTulPercentageDexterity1"] = { type = "Prefix", affix = "Graceful", "(2-4)% increased Dexterity", statOrder = { 1185 }, level = 74, group = "GraftPrefixTulPercentageDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4139681126] = { "(2-4)% increased Dexterity" }, } },
+ ["GraftPrefixTulMinionLife1"] = { type = "Prefix", affix = "Chief's", "Minions have (9-10)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [770672621] = { "Minions have (9-10)% increased maximum Life" }, } },
+ ["GraftPrefixTulMinionLife2"] = { type = "Prefix", affix = "Ruler's", "Minions have (11-12)% increased maximum Life", statOrder = { 1766 }, level = 22, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [770672621] = { "Minions have (11-12)% increased maximum Life" }, } },
+ ["GraftPrefixTulMinionLife3"] = { type = "Prefix", affix = "Despot's", "Minions have (13-14)% increased maximum Life", statOrder = { 1766 }, level = 44, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [770672621] = { "Minions have (13-14)% increased maximum Life" }, } },
+ ["GraftPrefixTulMinionLife4"] = { type = "Prefix", affix = "Authoritarian's", "Minions have (15-16)% increased maximum Life", statOrder = { 1766 }, level = 66, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [770672621] = { "Minions have (15-16)% increased maximum Life" }, } },
+ ["GraftPrefixTulMinionLife5"] = { type = "Prefix", affix = "Overlord's", "Minions have (17-18)% increased maximum Life", statOrder = { 1766 }, level = 82, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [770672621] = { "Minions have (17-18)% increased maximum Life" }, } },
+ ["GraftPrefixTulMinionResistances1"] = { type = "Prefix", affix = "Noble's", "Minions have +(5-8)% to all Elemental Resistances", statOrder = { 2912 }, level = 22, group = "GraftPrefixTulMinionResistances", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1423639565] = { "Minions have +(5-8)% to all Elemental Resistances" }, } },
+ ["GraftPrefixTulMinionResistances2"] = { type = "Prefix", affix = "Lord's", "Minions have +(9-12)% to all Elemental Resistances", statOrder = { 2912 }, level = 44, group = "GraftPrefixTulMinionResistances", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1423639565] = { "Minions have +(9-12)% to all Elemental Resistances" }, } },
+ ["GraftPrefixTulMinionResistances3"] = { type = "Prefix", affix = "King's", "Minions have +(13-16)% to all Elemental Resistances", statOrder = { 2912 }, level = 66, group = "GraftPrefixTulMinionResistances", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1423639565] = { "Minions have +(13-16)% to all Elemental Resistances" }, } },
+ ["GraftSuffixStunDuration1"] = { type = "Suffix", affix = "of Slamming", "Skills used by this Graft have (10-19)% increased Stun Duration", statOrder = { 10922 }, level = 44, group = "GraftSuffixStunDuration", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3150918189] = { "Skills used by this Graft have (10-19)% increased Stun Duration" }, } },
+ ["GraftSuffixStunDuration2"] = { type = "Suffix", affix = "of Thudding", "Skills used by this Graft have (20-29)% increased Stun Duration", statOrder = { 10922 }, level = 66, group = "GraftSuffixStunDuration", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3150918189] = { "Skills used by this Graft have (20-29)% increased Stun Duration" }, } },
+ ["GraftSuffixStunDuration3"] = { type = "Suffix", affix = "of Dazing", "Skills used by this Graft have (30-39)% increased Stun Duration", statOrder = { 10922 }, level = 82, group = "GraftSuffixStunDuration", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3150918189] = { "Skills used by this Graft have (30-39)% increased Stun Duration" }, } },
+ ["GraftSuffixAreaOfEffect1"] = { type = "Suffix", affix = "of Reach", "Skills used by this Graft have (8-12)% increased Area of Effect", statOrder = { 10869 }, level = 1, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [137115575] = { "Skills used by this Graft have (8-12)% increased Area of Effect" }, } },
+ ["GraftSuffixAreaOfEffect2"] = { type = "Suffix", affix = "of Grasping", "Skills used by this Graft have (14-16)% increased Area of Effect", statOrder = { 10869 }, level = 22, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [137115575] = { "Skills used by this Graft have (14-16)% increased Area of Effect" }, } },
+ ["GraftSuffixAreaOfEffect3"] = { type = "Suffix", affix = "of Extension", "Skills used by this Graft have (18-22)% increased Area of Effect", statOrder = { 10869 }, level = 44, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 0 }, modTags = { }, tradeHashes = { [137115575] = { "Skills used by this Graft have (18-22)% increased Area of Effect" }, } },
+ ["GraftSuffixAreaOfEffect4"] = { type = "Suffix", affix = "of Broadening", "Skills used by this Graft have (24-28)% increased Area of Effect", statOrder = { 10869 }, level = 66, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [137115575] = { "Skills used by this Graft have (24-28)% increased Area of Effect" }, } },
+ ["GraftSuffixAreaOfEffect5"] = { type = "Suffix", affix = "of the Expanse", "Skills used by this Graft have (30-34)% increased Area of Effect", statOrder = { 10869 }, level = 82, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [137115575] = { "Skills used by this Graft have (30-34)% increased Area of Effect" }, } },
+ ["GraftSuffixHinderOnHit1"] = { type = "Suffix", affix = "of Hindrance", "Spells used by this Graft Hinder Enemies on Hit", statOrder = { 10921 }, level = 44, group = "GraftSuffixHinderOnHit", weightKey = { "graft_tul_tornado", "graft_esh_lightning_hands", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [463925000] = { "Spells used by this Graft Hinder Enemies on Hit" }, } },
+ ["GraftSuffixChainingDistance1"] = { type = "Suffix", affix = "of Ricocheting", "Skills used by this Graft have (40-69)% increased Chaining range", statOrder = { 10871 }, level = 44, group = "GraftSuffixChainingDistance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3533780673] = { "Skills used by this Graft have (40-69)% increased Chaining range" }, } },
+ ["GraftSuffixChainingDistance2"] = { type = "Suffix", affix = "of Chaining", "Skills used by this Graft have (70-100)% increased Chaining range", statOrder = { 10871 }, level = 82, group = "GraftSuffixChainingDistance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [3533780673] = { "Skills used by this Graft have (70-100)% increased Chaining range" }, } },
+ ["GraftSuffixAdditionalProjectiles1"] = { type = "Suffix", affix = "of Splitting", "Skills used by this Graft fire 2 additional Projectiles", statOrder = { 10912 }, level = 44, group = "GraftSuffixAdditionalProjectiles", weightKey = { "graft_xoph_molten_shell", "graft_tul_tornado", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHashes = { [2858824325] = { "Skills used by this Graft fire 2 additional Projectiles" }, } },
+ ["GraftSuffixAdditionalProjectiles2"] = { type = "Suffix", affix = "of Splintering", "Skills used by this Graft fire 3 additional Projectiles", statOrder = { 10912 }, level = 82, group = "GraftSuffixAdditionalProjectiles", weightKey = { "graft_xoph_molten_shell", "graft_tul_tornado", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHashes = { [2858824325] = { "Skills used by this Graft fire 3 additional Projectiles" }, } },
+ ["GraftSuffixProjectileSpeed1"] = { type = "Suffix", affix = "of Flight", "Skills used by this Graft have (8-12)% increased Projectile Speed", statOrder = { 10914 }, level = 1, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [76615773] = { "Skills used by this Graft have (8-12)% increased Projectile Speed" }, } },
+ ["GraftSuffixProjectileSpeed2"] = { type = "Suffix", affix = "of Gliding", "Skills used by this Graft have (13-17)% increased Projectile Speed", statOrder = { 10914 }, level = 22, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [76615773] = { "Skills used by this Graft have (13-17)% increased Projectile Speed" }, } },
+ ["GraftSuffixProjectileSpeed3"] = { type = "Suffix", affix = "of Homing", "Skills used by this Graft have (18-22)% increased Projectile Speed", statOrder = { 10914 }, level = 44, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [76615773] = { "Skills used by this Graft have (18-22)% increased Projectile Speed" }, } },
+ ["GraftSuffixProjectileSpeed4"] = { type = "Suffix", affix = "of Launching", "Skills used by this Graft have (23-27)% increased Projectile Speed", statOrder = { 10914 }, level = 66, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [76615773] = { "Skills used by this Graft have (23-27)% increased Projectile Speed" }, } },
+ ["GraftSuffixProjectileSpeed5"] = { type = "Suffix", affix = "of Soaring", "Skills used by this Graft have (28-32)% increased Projectile Speed", statOrder = { 10914 }, level = 82, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [76615773] = { "Skills used by this Graft have (28-32)% increased Projectile Speed" }, } },
+ ["GraftSuffixIncreasedDamage1"] = { type = "Suffix", affix = "of Blasting", "Skills used by this Graft deal (10-29)% increased Damage", statOrder = { 10884 }, level = 1, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (10-29)% increased Damage" }, } },
+ ["GraftSuffixIncreasedDamage2"] = { type = "Suffix", affix = "of Smashing", "Skills used by this Graft deal (30-49)% increased Damage", statOrder = { 10884 }, level = 11, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (30-49)% increased Damage" }, } },
+ ["GraftSuffixIncreasedDamage3"] = { type = "Suffix", affix = "of Shattering", "Skills used by this Graft deal (50-69)% increased Damage", statOrder = { 10884 }, level = 22, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (50-69)% increased Damage" }, } },
+ ["GraftSuffixIncreasedDamage4"] = { type = "Suffix", affix = "of Wrecking", "Skills used by this Graft deal (70-89)% increased Damage", statOrder = { 10884 }, level = 33, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (70-89)% increased Damage" }, } },
+ ["GraftSuffixIncreasedDamage5"] = { type = "Suffix", affix = "of Destroying", "Skills used by this Graft deal (90-109)% increased Damage", statOrder = { 10884 }, level = 44, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (90-109)% increased Damage" }, } },
+ ["GraftSuffixIncreasedDamage6"] = { type = "Suffix", affix = "of Crushing", "Skills used by this Graft deal (110-129)% increased Damage", statOrder = { 10884 }, level = 55, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (110-129)% increased Damage" }, } },
+ ["GraftSuffixIncreasedDamage7"] = { type = "Suffix", affix = "of Disintegration", "Skills used by this Graft deal (130-149)% increased Damage", statOrder = { 10884 }, level = 66, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (130-149)% increased Damage" }, } },
+ ["GraftSuffixIncreasedDamage8"] = { type = "Suffix", affix = "of Demolishing", "Skills used by this Graft deal (150-169)% increased Damage", statOrder = { 10884 }, level = 74, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (150-169)% increased Damage" }, } },
+ ["GraftSuffixIncreasedDamage9"] = { type = "Suffix", affix = "of Ruination", "Skills used by this Graft deal (170-189)% increased Damage", statOrder = { 10884 }, level = 82, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (170-189)% increased Damage" }, } },
+ ["GraftSuffixIncreasedDamage10"] = { type = "Suffix", affix = "of Annihilation", "Skills used by this Graft deal (190-220)% increased Damage", statOrder = { 10884 }, level = 85, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3686635598] = { "Skills used by this Graft deal (190-220)% increased Damage" }, } },
+ ["GraftSuffixIncreasedDuration1"] = { type = "Suffix", affix = "of Lingering", "Skills used by this Graft have (10-14)% increased Skill Effect Duration", statOrder = { 10887 }, level = 1, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (10-14)% increased Skill Effect Duration" }, } },
+ ["GraftSuffixIncreasedDuration2"] = { type = "Suffix", affix = "of Lasting", "Skills used by this Graft have (15-20)% increased Skill Effect Duration", statOrder = { 10887 }, level = 22, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (15-20)% increased Skill Effect Duration" }, } },
+ ["GraftSuffixIncreasedDuration3"] = { type = "Suffix", affix = "of the Unending", "Skills used by this Graft have (20-24)% increased Skill Effect Duration", statOrder = { 10887 }, level = 44, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (20-24)% increased Skill Effect Duration" }, } },
+ ["GraftSuffixIncreasedDuration4"] = { type = "Suffix", affix = "of Permanence", "Skills used by this Graft have (25-29)% increased Skill Effect Duration", statOrder = { 10887 }, level = 66, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (25-29)% increased Skill Effect Duration" }, } },
+ ["GraftSuffixIncreasedDuration5"] = { type = "Suffix", affix = "of Eternity", "Skills used by this Graft have (30-35)% increased Skill Effect Duration", statOrder = { 10887 }, level = 82, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (30-35)% increased Skill Effect Duration" }, } },
+ ["GraftSuffixCooldownSpeed1"] = { type = "Suffix", affix = "of the Creek", "Skills used by this Graft have (10-14)% increased Cooldown Recovery Rate", statOrder = { 10877 }, level = 1, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have (10-14)% increased Cooldown Recovery Rate" }, } },
+ ["GraftSuffixCooldownSpeed2"] = { type = "Suffix", affix = "of the Stream", "Skills used by this Graft have (15-20)% increased Cooldown Recovery Rate", statOrder = { 10877 }, level = 22, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have (15-20)% increased Cooldown Recovery Rate" }, } },
+ ["GraftSuffixCooldownSpeed3"] = { type = "Suffix", affix = "of the River", "Skills used by this Graft have (20-24)% increased Cooldown Recovery Rate", statOrder = { 10877 }, level = 44, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 700, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have (20-24)% increased Cooldown Recovery Rate" }, } },
+ ["GraftSuffixCooldownSpeed4"] = { type = "Suffix", affix = "of the Tide", "Skills used by this Graft have (25-29)% increased Cooldown Recovery Rate", statOrder = { 10877 }, level = 66, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have (25-29)% increased Cooldown Recovery Rate" }, } },
+ ["GraftSuffixCooldownSpeed5"] = { type = "Suffix", affix = "of the Oceans", "Skills used by this Graft have (30-35)% increased Cooldown Recovery Rate", statOrder = { 10877 }, level = 82, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 300, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have (30-35)% increased Cooldown Recovery Rate" }, } },
+ ["GraftSuffixSkipCooldown1"] = { type = "Suffix", affix = "of Chronomancy", "Skills used by this Graft have 25% chance to not consume a Cooldown on use", statOrder = { 10920 }, level = 66, group = "GraftSuffixSkipCooldown", weightKey = { "graft_esh_bolt_ring", "graft_uulnetol_hand_slam", "graft_xoph_cremations", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [2520970416] = { "Skills used by this Graft have 25% chance to not consume a Cooldown on use" }, } },
+ ["GraftSuffixAttackSpeed1"] = { type = "Suffix", affix = "of Speed", "Skills used by this Graft have (10-24)% increased Attack Speed", statOrder = { 10870 }, level = 22, group = "GraftSuffixAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [679415175] = { "Skills used by this Graft have (10-24)% increased Attack Speed" }, } },
+ ["GraftSuffixAttackSpeed2"] = { type = "Suffix", affix = "of Quickness", "Skills used by this Graft have (25-39)% increased Attack Speed", statOrder = { 10870 }, level = 44, group = "GraftSuffixAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [679415175] = { "Skills used by this Graft have (25-39)% increased Attack Speed" }, } },
+ ["GraftSuffixAttackSpeed3"] = { type = "Suffix", affix = "of Agility", "Skills used by this Graft have (40-55)% increased Attack Speed", statOrder = { 10870 }, level = 66, group = "GraftSuffixAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [679415175] = { "Skills used by this Graft have (40-55)% increased Attack Speed" }, } },
+ ["GraftSuffixSkillLevel1"] = { type = "Suffix", affix = "of Nobility", "+2 to level of Skills used by this Graft", statOrder = { 10903 }, level = 44, group = "GraftSuffixSkillLevel", weightKey = { "graft_tutorial", "graft", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, tradeHashes = { [324804503] = { "+2 to level of Skills used by this Graft" }, } },
+ ["GraftSuffixSkillLevel2"] = { type = "Suffix", affix = "of Lordship", "+3 to level of Skills used by this Graft", statOrder = { 10903 }, level = 66, group = "GraftSuffixSkillLevel", weightKey = { "graft_tutorial", "graft", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, tradeHashes = { [324804503] = { "+3 to level of Skills used by this Graft" }, } },
+ ["GraftSuffixSkillLevel3"] = { type = "Suffix", affix = "of Royalty", "+4 to level of Skills used by this Graft", statOrder = { 10903 }, level = 85, group = "GraftSuffixSkillLevel", weightKey = { "graft_tutorial", "graft", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, tradeHashes = { [324804503] = { "+4 to level of Skills used by this Graft" }, } },
+ ["GraftSuffixCriticalChance1"] = { type = "Suffix", affix = "of Incision", "Skills used by this Graft have (40-79)% increased Critical Strike Chance", "Skills used by this Graft have +(8-14)% to Critical Strike Multiplier", statOrder = { 10880, 10881 }, level = 1, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4013357916] = { "Skills used by this Graft have +(8-14)% to Critical Strike Multiplier" }, [1443956585] = { "Skills used by this Graft have (40-79)% increased Critical Strike Chance" }, } },
+ ["GraftSuffixCriticalChance2"] = { type = "Suffix", affix = "of Slicing", "Skills used by this Graft have (80-119)% increased Critical Strike Chance", "Skills used by this Graft have +(15-21)% to Critical Strike Multiplier", statOrder = { 10880, 10881 }, level = 22, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4013357916] = { "Skills used by this Graft have +(15-21)% to Critical Strike Multiplier" }, [1443956585] = { "Skills used by this Graft have (80-119)% increased Critical Strike Chance" }, } },
+ ["GraftSuffixCriticalChance3"] = { type = "Suffix", affix = "of Dicing", "Skills used by this Graft have (120-139)% increased Critical Strike Chance", "Skills used by this Graft have +(22-28)% to Critical Strike Multiplier", statOrder = { 10880, 10881 }, level = 44, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [4013357916] = { "Skills used by this Graft have +(22-28)% to Critical Strike Multiplier" }, [1443956585] = { "Skills used by this Graft have (120-139)% increased Critical Strike Chance" }, } },
+ ["GraftSuffixCriticalChance4"] = { type = "Suffix", affix = "of Striking", "Skills used by this Graft have (140-159)% increased Critical Strike Chance", "Skills used by this Graft have +(29-35)% to Critical Strike Multiplier", statOrder = { 10880, 10881 }, level = 66, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4013357916] = { "Skills used by this Graft have +(29-35)% to Critical Strike Multiplier" }, [1443956585] = { "Skills used by this Graft have (140-159)% increased Critical Strike Chance" }, } },
+ ["GraftSuffixCriticalChance5"] = { type = "Suffix", affix = "of Precision", "Skills used by this Graft have (160-200)% increased Critical Strike Chance", "Skills used by this Graft have +(36-42)% to Critical Strike Multiplier", statOrder = { 10880, 10881 }, level = 82, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4013357916] = { "Skills used by this Graft have +(36-42)% to Critical Strike Multiplier" }, [1443956585] = { "Skills used by this Graft have (160-200)% increased Critical Strike Chance" }, } },
+ ["GraftSuffixFirePenetration1"] = { type = "Suffix", affix = "of Singing", "Skills used by this Graft penetrate (4-9)% Enemy Fire Resistance", statOrder = { 10916 }, level = 44, group = "GraftSuffixFirePenetration", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2425071139] = { "Skills used by this Graft penetrate (4-9)% Enemy Fire Resistance" }, } },
+ ["GraftSuffixFirePenetration2"] = { type = "Suffix", affix = "of Searing", "Skills used by this Graft penetrate (10-14)% Enemy Fire Resistance", statOrder = { 10916 }, level = 66, group = "GraftSuffixFirePenetration", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [2425071139] = { "Skills used by this Graft penetrate (10-14)% Enemy Fire Resistance" }, } },
+ ["GraftSuffixFirePenetration3"] = { type = "Suffix", affix = "of Blackening", "Skills used by this Graft penetrate (15-20)% Enemy Fire Resistance", statOrder = { 10916 }, level = 82, group = "GraftSuffixFirePenetration", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [2425071139] = { "Skills used by this Graft penetrate (15-20)% Enemy Fire Resistance" }, } },
+ ["GraftSuffixColdPenetration1"] = { type = "Suffix", affix = "of the North", "Skills used by this Graft penetrate (4-9)% Enemy Cold Resistance", statOrder = { 10915 }, level = 44, group = "GraftSuffixColdPenetration", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4063492405] = { "Skills used by this Graft penetrate (4-9)% Enemy Cold Resistance" }, } },
+ ["GraftSuffixColdPenetration2"] = { type = "Suffix", affix = "of the Boreal", "Skills used by this Graft penetrate (10-14)% Enemy Cold Resistance", statOrder = { 10915 }, level = 66, group = "GraftSuffixColdPenetration", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4063492405] = { "Skills used by this Graft penetrate (10-14)% Enemy Cold Resistance" }, } },
+ ["GraftSuffixColdPenetration3"] = { type = "Suffix", affix = "of the Arctic", "Skills used by this Graft penetrate (15-20)% Enemy Cold Resistance", statOrder = { 10915 }, level = 82, group = "GraftSuffixColdPenetration", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4063492405] = { "Skills used by this Graft penetrate (15-20)% Enemy Cold Resistance" }, } },
+ ["GraftSuffixLightningPenetration1"] = { type = "Suffix", affix = "of Scattered Bolts", "Skills used by this Graft penetrate (4-9)% Enemy Lightning Resistance", statOrder = { 10917 }, level = 44, group = "GraftSuffixLightningPenetration", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4236519263] = { "Skills used by this Graft penetrate (4-9)% Enemy Lightning Resistance" }, } },
+ ["GraftSuffixLightningPenetration2"] = { type = "Suffix", affix = "of Striking Jolts", "Skills used by this Graft penetrate (10-14)% Enemy Lightning Resistance", statOrder = { 10917 }, level = 66, group = "GraftSuffixLightningPenetration", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4236519263] = { "Skills used by this Graft penetrate (10-14)% Enemy Lightning Resistance" }, } },
+ ["GraftSuffixLightningPenetration3"] = { type = "Suffix", affix = "of Seeking Sparks", "Skills used by this Graft penetrate (15-20)% Enemy Lightning Resistance", statOrder = { 10917 }, level = 82, group = "GraftSuffixLightningPenetration", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4236519263] = { "Skills used by this Graft penetrate (15-20)% Enemy Lightning Resistance" }, } },
+ ["GraftSuffixUulnetolHandSlamDamageForCDR1"] = { type = "Suffix", affix = "of Impact", "Skills used by this Graft have 20% reduced Cooldown Recovery Rate", "Skills used by this Graft deal (20-29)% more Damage", statOrder = { 10877, 10932 }, level = 44, group = "GraftSuffixUulnetolHandSlamDamageForCDR", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1662209485] = { "Skills used by this Graft deal (20-29)% more Damage" }, [1053840971] = { "Skills used by this Graft have 20% reduced Cooldown Recovery Rate" }, } },
+ ["GraftSuffixUulnetolHandSlamDamageForCDR2"] = { type = "Suffix", affix = "of Cratering", "Skills used by this Graft have 25% reduced Cooldown Recovery Rate", "Skills used by this Graft deal (30-45)% more Damage", statOrder = { 10877, 10932 }, level = 82, group = "GraftSuffixUulnetolHandSlamDamageForCDR", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1662209485] = { "Skills used by this Graft deal (30-45)% more Damage" }, [1053840971] = { "Skills used by this Graft have 25% reduced Cooldown Recovery Rate" }, } },
+ ["GraftSuffixUulnetolHandSlamAttackSpeedForAOE1"] = { type = "Suffix", affix = "of Earthshaking", "Skills used by this Graft have (15-24)% more Area of Effect", "Skills used by this Graft have 15% less Attack Speed", statOrder = { 10955, 10956 }, level = 44, group = "GraftSuffixUulnetolHandSlamAttackSpeedForAOE", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4285149775] = { "Skills used by this Graft have 15% less Attack Speed" }, [3364676033] = { "Skills used by this Graft have (15-24)% more Area of Effect" }, } },
+ ["GraftSuffixUulnetolHandSlamAttackSpeedForAOE2"] = { type = "Suffix", affix = "of Earthshattering", "Skills used by this Graft have (25-35)% more Area of Effect", "Skills used by this Graft have 10% less Attack Speed", statOrder = { 10955, 10956 }, level = 82, group = "GraftSuffixUulnetolHandSlamAttackSpeedForAOE", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4285149775] = { "Skills used by this Graft have 10% less Attack Speed" }, [3364676033] = { "Skills used by this Graft have (25-35)% more Area of Effect" }, } },
+ ["GraftSuffixUulnetolHandSlamCrushOnHit1"] = { type = "Suffix", affix = "of Pulverising", "Skills used by this Graft Crush on Hit", statOrder = { 10882 }, level = 44, group = "GraftSuffixUulnetolHandSlamCrushOnHit", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [668072950] = { "Skills used by this Graft Crush on Hit" }, } },
+ ["GraftSuffixUulnetolHandSlamVulnerabilityOnHit1"] = { type = "Suffix", affix = "of Vulnerability", "Skills used by this Graft inflict Vulnerability on Hit", statOrder = { 10938 }, level = 44, group = "GraftSuffixUulnetolHandSlamVulnerabilityOnHit", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [3989101809] = { "Skills used by this Graft inflict Vulnerability on Hit" }, } },
+ ["GraftSuffixUulnetolHandSlamIntimidateOnHit1"] = { type = "Suffix", affix = "of Intimidation", "Skills used by this Graft Intimidate on Hit", statOrder = { 10898 }, level = 44, group = "GraftSuffixUulnetolHandSlamIntimidateOnHit", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1790471105] = { "Skills used by this Graft Intimidate on Hit" }, } },
+ ["GraftSuffixIgnorePhysMitigation1"] = { type = "Suffix", affix = "of Overwhelming", "Skills used by this Graft ignore Enemy Physical Damage Reduction", statOrder = { 10894 }, level = 44, group = "GraftSuffixIgnorePhysMitigation", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2150059749] = { "Skills used by this Graft ignore Enemy Physical Damage Reduction" }, } },
+ ["GraftSuffixShockChance1"] = { type = "Suffix", affix = "of Zapping", "Skills used by this Graft have (19-57)% chance to Shock", statOrder = { 10919 }, level = 1, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2376903385] = { "Skills used by this Graft have (19-57)% chance to Shock" }, } },
+ ["GraftSuffixShockChance2"] = { type = "Suffix", affix = "of Jolting", "Skills used by this Graft have (29-87)% chance to Shock", statOrder = { 10919 }, level = 22, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2376903385] = { "Skills used by this Graft have (29-87)% chance to Shock" }, } },
+ ["GraftSuffixShockChance3"] = { type = "Suffix", affix = "of Blitzing", "Skills used by this Graft have (39-117)% chance to Shock", statOrder = { 10919 }, level = 44, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [2376903385] = { "Skills used by this Graft have (39-117)% chance to Shock" }, } },
+ ["GraftSuffixShockChance4"] = { type = "Suffix", affix = "of Electricity", "Skills used by this Graft have (49-147)% chance to Shock", statOrder = { 10919 }, level = 66, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2376903385] = { "Skills used by this Graft have (49-147)% chance to Shock" }, } },
+ ["GraftSuffixShockChance5"] = { type = "Suffix", affix = "of Sublimation", "Skills used by this Graft have (60-180)% chance to Shock", statOrder = { 10919 }, level = 82, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2376903385] = { "Skills used by this Graft have (60-180)% chance to Shock" }, } },
+ ["GraftSuffixIgniteChance1"] = { type = "Suffix", affix = "of Cinders", "Skills used by this Graft have (13-29)% chance to Ignite", statOrder = { 10873 }, level = 1, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [158467587] = { "Skills used by this Graft have (13-29)% chance to Ignite" }, } },
+ ["GraftSuffixIgniteChance2"] = { type = "Suffix", affix = "of Coal", "Skills used by this Graft have (29-44)% chance to Ignite", statOrder = { 10873 }, level = 22, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [158467587] = { "Skills used by this Graft have (29-44)% chance to Ignite" }, } },
+ ["GraftSuffixIgniteChance3"] = { type = "Suffix", affix = "of Embers", "Skills used by this Graft have (44-59)% chance to Ignite", statOrder = { 10873 }, level = 44, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 700, 700, 700, 0 }, modTags = { }, tradeHashes = { [158467587] = { "Skills used by this Graft have (44-59)% chance to Ignite" }, } },
+ ["GraftSuffixIgniteChance4"] = { type = "Suffix", affix = "of Ashes", "Skills used by this Graft have (60-74)% chance to Ignite", statOrder = { 10873 }, level = 66, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [158467587] = { "Skills used by this Graft have (60-74)% chance to Ignite" }, } },
+ ["GraftSuffixIgniteChance5"] = { type = "Suffix", affix = "of Glowing", "Skills used by this Graft have (75-100)% chance to Ignite", statOrder = { 10873 }, level = 82, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [158467587] = { "Skills used by this Graft have (75-100)% chance to Ignite" }, } },
+ ["GraftSuffixFreezeChance1"] = { type = "Suffix", affix = "of Ice", "Skills used by this Graft have (10-19)% chance to Freeze", statOrder = { 10872 }, level = 1, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3732269294] = { "Skills used by this Graft have (10-19)% chance to Freeze" }, } },
+ ["GraftSuffixFreezeChance2"] = { type = "Suffix", affix = "of Sleet", "Skills used by this Graft have (20-29)% chance to Freeze", statOrder = { 10872 }, level = 22, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3732269294] = { "Skills used by this Graft have (20-29)% chance to Freeze" }, } },
+ ["GraftSuffixFreezeChance3"] = { type = "Suffix", affix = "of Snow", "Skills used by this Graft have (30-39)% chance to Freeze", statOrder = { 10872 }, level = 44, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3732269294] = { "Skills used by this Graft have (30-39)% chance to Freeze" }, } },
+ ["GraftSuffixFreezeChance4"] = { type = "Suffix", affix = "of Hail", "Skills used by this Graft have (40-49)% chance to Freeze", statOrder = { 10872 }, level = 66, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3732269294] = { "Skills used by this Graft have (40-49)% chance to Freeze" }, } },
+ ["GraftSuffixFreezeChance5"] = { type = "Suffix", affix = "of Glaciers", "Skills used by this Graft have (50-60)% chance to Freeze", statOrder = { 10872 }, level = 82, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3732269294] = { "Skills used by this Graft have (50-60)% chance to Freeze" }, } },
+ ["GraftSuffixShockAsThoughDealingMoreDamage1"] = { type = "Suffix", affix = "of Amplification", "Skills used by this Graft Shock Enemies as though dealing 100% more Damage", statOrder = { 10918 }, level = 66, group = "GraftSuffixShockAsThoughDealingMoreDamage", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3626715014] = { "Skills used by this Graft Shock Enemies as though dealing 100% more Damage" }, } },
+ ["GraftSuffixLightningGainAsChaos1"] = { type = "Suffix", affix = "of Shadowed Bolt", "Skills used by this Graft Gain (16-24)% of Lightning Damage as Extra Chaos Damage", statOrder = { 10904 }, level = 44, group = "GraftSuffixLightningGainAsChaos", weightKey = { "graft_esh_bolt_ring", "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [9906535] = { "Skills used by this Graft Gain (16-24)% of Lightning Damage as Extra Chaos Damage" }, } },
+ ["GraftSuffixLightningGainAsChaos2"] = { type = "Suffix", affix = "of Twisted Thunder", "Skills used by this Graft Gain (28-32)% of Lightning Damage as Extra Chaos Damage", statOrder = { 10904 }, level = 66, group = "GraftSuffixLightningGainAsChaos", weightKey = { "graft_esh_bolt_ring", "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [9906535] = { "Skills used by this Graft Gain (28-32)% of Lightning Damage as Extra Chaos Damage" }, } },
+ ["GraftSuffixLightningGainAsChaos3"] = { type = "Suffix", affix = "of Darkened Storms", "Skills used by this Graft Gain (44-56)% of Lightning Damage as Extra Chaos Damage", statOrder = { 10904 }, level = 82, group = "GraftSuffixLightningGainAsChaos", weightKey = { "graft_esh_bolt_ring", "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [9906535] = { "Skills used by this Graft Gain (44-56)% of Lightning Damage as Extra Chaos Damage" }, } },
+ ["GraftSuffixFireGainAsChaos1"] = { type = "Suffix", affix = "of Shadowed Smoke", "Skills used by this Graft Gain (16-24)% of Fire Damage as Extra Chaos Damage", statOrder = { 10892 }, level = 44, group = "GraftSuffixFireGainAsChaos", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2506782284] = { "Skills used by this Graft Gain (16-24)% of Fire Damage as Extra Chaos Damage" }, } },
+ ["GraftSuffixFireGainAsChaos2"] = { type = "Suffix", affix = "of Umbral Flame", "Skills used by this Graft Gain (28-32)% of Fire Damage as Extra Chaos Damage", statOrder = { 10892 }, level = 66, group = "GraftSuffixFireGainAsChaos", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, tradeHashes = { [2506782284] = { "Skills used by this Graft Gain (28-32)% of Fire Damage as Extra Chaos Damage" }, } },
+ ["GraftSuffixFireGainAsChaos3"] = { type = "Suffix", affix = "of Darkened Flame", "Skills used by this Graft Gain (44-56)% of Fire Damage as Extra Chaos Damage", statOrder = { 10892 }, level = 82, group = "GraftSuffixFireGainAsChaos", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, tradeHashes = { [2506782284] = { "Skills used by this Graft Gain (44-56)% of Fire Damage as Extra Chaos Damage" }, } },
+ ["GraftSuffixColdGainAsChaos1"] = { type = "Suffix", affix = "of Blasted Snow", "Skills used by this Graft Gain (16-24)% of Cold Damage as Extra Chaos Damage", statOrder = { 10875 }, level = 44, group = "GraftSuffixColdGainAsChaos", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [2752930426] = { "Skills used by this Graft Gain (16-24)% of Cold Damage as Extra Chaos Damage" }, } },
+ ["GraftSuffixColdGainAsChaos2"] = { type = "Suffix", affix = "of Blackened Ice", "Skills used by this Graft Gain (28-32)% of Cold Damage as Extra Chaos Damage", statOrder = { 10875 }, level = 66, group = "GraftSuffixColdGainAsChaos", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [2752930426] = { "Skills used by this Graft Gain (28-32)% of Cold Damage as Extra Chaos Damage" }, } },
+ ["GraftSuffixColdGainAsChaos3"] = { type = "Suffix", affix = "of Darkened Frost", "Skills used by this Graft Gain (44-56)% of Cold Damage as Extra Chaos Damage", statOrder = { 10875 }, level = 82, group = "GraftSuffixColdGainAsChaos", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHashes = { [2752930426] = { "Skills used by this Graft Gain (44-56)% of Cold Damage as Extra Chaos Damage" }, } },
+ ["GraftSuffixCoverInFrost1"] = { type = "Suffix", affix = "of Snowdrifts", "Skills used by this Graft have (20-30)% chance to Cover Enemies in Frost on Hit", statOrder = { 10879 }, level = 66, group = "GraftSuffixCoverInFrost", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1987305786] = { "Skills used by this Graft have (20-30)% chance to Cover Enemies in Frost on Hit" }, } },
+ ["GraftSuffixAilmentDuration1"] = { type = "Suffix", affix = "of Torment", "Ailments inflicted by Skills used by this Graft have (8-14)% increased duration", statOrder = { 10868 }, level = 22, group = "GraftSuffixAilmentDuration", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2184130410] = { "Ailments inflicted by Skills used by this Graft have (8-14)% increased duration" }, } },
+ ["GraftSuffixAilmentDuration2"] = { type = "Suffix", affix = "of Misery", "Ailments inflicted by Skills used by this Graft have (15-23)% increased duration", statOrder = { 10868 }, level = 66, group = "GraftSuffixAilmentDuration", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2184130410] = { "Ailments inflicted by Skills used by this Graft have (15-23)% increased duration" }, } },
+ ["GraftSuffixAilmentDuration3"] = { type = "Suffix", affix = "of Torture", "Ailments inflicted by Skills used by this Graft have (24-35)% increased duration", statOrder = { 10868 }, level = 82, group = "GraftSuffixAilmentDuration", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2184130410] = { "Ailments inflicted by Skills used by this Graft have (24-35)% increased duration" }, } },
+ ["GraftSuffixFireExposureOnHit1"] = { type = "Suffix", affix = "of Melting", "Skills used by this Graft have (20-34)% chance to inflict Fire Exposure on Hit", statOrder = { 10896 }, level = 44, group = "GraftSuffixFireExposureOnHit", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3069466464] = { "Skills used by this Graft have (20-34)% chance to inflict Fire Exposure on Hit" }, } },
+ ["GraftSuffixFireExposureOnHit2"] = { type = "Suffix", affix = "of Liquefaction", "Skills used by this Graft have (35-49)% chance to inflict Fire Exposure on Hit", statOrder = { 10896 }, level = 66, group = "GraftSuffixFireExposureOnHit", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3069466464] = { "Skills used by this Graft have (35-49)% chance to inflict Fire Exposure on Hit" }, } },
+ ["GraftSuffixFireExposureOnHit3"] = { type = "Suffix", affix = "of Exposure", "Skills used by this Graft have (50-70)% chance to inflict Fire Exposure on Hit", statOrder = { 10896 }, level = 82, group = "GraftSuffixFireExposureOnHit", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [3069466464] = { "Skills used by this Graft have (50-70)% chance to inflict Fire Exposure on Hit" }, } },
+ ["GraftSuffixLightningExposureOnHit1"] = { type = "Suffix", affix = "of Melting", "Skills used by this Graft have (20-34)% chance to inflict Lightning Exposure on Hit", statOrder = { 10897 }, level = 44, group = "GraftSuffixLightningExposureOnHit", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2375092881] = { "Skills used by this Graft have (20-34)% chance to inflict Lightning Exposure on Hit" }, } },
+ ["GraftSuffixLightningExposureOnHit2"] = { type = "Suffix", affix = "of Liquefaction", "Skills used by this Graft have (35-49)% chance to inflict Lightning Exposure on Hit", statOrder = { 10897 }, level = 66, group = "GraftSuffixLightningExposureOnHit", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2375092881] = { "Skills used by this Graft have (35-49)% chance to inflict Lightning Exposure on Hit" }, } },
+ ["GraftSuffixLightningExposureOnHit3"] = { type = "Suffix", affix = "of Exposure", "Skills used by this Graft have (50-70)% chance to inflict Lightning Exposure on Hit", statOrder = { 10897 }, level = 82, group = "GraftSuffixLightningExposureOnHit", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2375092881] = { "Skills used by this Graft have (50-70)% chance to inflict Lightning Exposure on Hit" }, } },
+ ["GraftSuffixImpaleEffect1"] = { type = "Suffix", affix = "of Wringing", "Skills used by this Graft have (20-34)% increased Impale Effect", statOrder = { 10895 }, level = 44, group = "GraftSuffixImpaleEffect", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1501454660] = { "Skills used by this Graft have (20-34)% increased Impale Effect" }, } },
+ ["GraftSuffixImpaleEffect2"] = { type = "Suffix", affix = "of Twisting", "Skills used by this Graft have (35-44)% increased Impale Effect", statOrder = { 10895 }, level = 66, group = "GraftSuffixImpaleEffect", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1501454660] = { "Skills used by this Graft have (35-44)% increased Impale Effect" }, } },
+ ["GraftSuffixImpaleEffect3"] = { type = "Suffix", affix = "of Mangling", "Skills used by this Graft have (45-55)% increased Impale Effect", statOrder = { 10895 }, level = 82, group = "GraftSuffixImpaleEffect", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1501454660] = { "Skills used by this Graft have (45-55)% increased Impale Effect" }, } },
+ ["GraftSuffixMinionDamage1"] = { type = "Suffix", affix = "of Armies", "Minions summoned by this Graft deal (10-29)% increased Damage", statOrder = { 10907 }, level = 1, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (10-29)% increased Damage" }, } },
+ ["GraftSuffixMinionDamage2"] = { type = "Suffix", affix = "of Infantry", "Minions summoned by this Graft deal (30-49)% increased Damage", statOrder = { 10907 }, level = 11, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (30-49)% increased Damage" }, } },
+ ["GraftSuffixMinionDamage3"] = { type = "Suffix", affix = "of Troops", "Minions summoned by this Graft deal (50-69)% increased Damage", statOrder = { 10907 }, level = 22, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (50-69)% increased Damage" }, } },
+ ["GraftSuffixMinionDamage4"] = { type = "Suffix", affix = "of the Multitude", "Minions summoned by this Graft deal (70-89)% increased Damage", statOrder = { 10907 }, level = 33, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (70-89)% increased Damage" }, } },
+ ["GraftSuffixMinionDamage5"] = { type = "Suffix", affix = "of Swarms", "Minions summoned by this Graft deal (90-109)% increased Damage", statOrder = { 10907 }, level = 44, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (90-109)% increased Damage" }, } },
+ ["GraftSuffixMinionDamage6"] = { type = "Suffix", affix = "of Hordes", "Minions summoned by this Graft deal (110-129)% increased Damage", statOrder = { 10907 }, level = 55, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (110-129)% increased Damage" }, } },
+ ["GraftSuffixMinionDamage7"] = { type = "Suffix", affix = "of Hosts", "Minions summoned by this Graft deal (130-149)% increased Damage", statOrder = { 10907 }, level = 66, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (130-149)% increased Damage" }, } },
+ ["GraftSuffixMinionDamage8"] = { type = "Suffix", affix = "of Throngs", "Minions summoned by this Graft deal (150-169)% increased Damage", statOrder = { 10907 }, level = 74, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (150-169)% increased Damage" }, } },
+ ["GraftSuffixMinionDamage9"] = { type = "Suffix", affix = "of Droves", "Minions summoned by this Graft deal (170-189)% increased Damage", statOrder = { 10907 }, level = 82, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (170-189)% increased Damage" }, } },
+ ["GraftSuffixMinionDamage10"] = { type = "Suffix", affix = "of Legions", "Minions summoned by this Graft deal (190-220)% increased Damage", statOrder = { 10907 }, level = 85, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3690025845] = { "Minions summoned by this Graft deal (190-220)% increased Damage" }, } },
+ ["GraftSuffixMinionLife1"] = { type = "Suffix", affix = "of Muscle", "Minions summoned by this Graft have (32-36)% increased Life", statOrder = { 10908 }, level = 1, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4267516534] = { "Minions summoned by this Graft have (32-36)% increased Life" }, } },
+ ["GraftSuffixMinionLife2"] = { type = "Suffix", affix = "of Flesh", "Minions summoned by this Graft have (38-42)% increased Life", statOrder = { 10908 }, level = 22, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4267516534] = { "Minions summoned by this Graft have (38-42)% increased Life" }, } },
+ ["GraftSuffixMinionLife3"] = { type = "Suffix", affix = "of Sinew", "Minions summoned by this Graft have (44-48)% increased Life", statOrder = { 10908 }, level = 44, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [4267516534] = { "Minions summoned by this Graft have (44-48)% increased Life" }, } },
+ ["GraftSuffixMinionLife4"] = { type = "Suffix", affix = "of Beef", "Minions summoned by this Graft have (50-54)% increased Life", statOrder = { 10908 }, level = 66, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4267516534] = { "Minions summoned by this Graft have (50-54)% increased Life" }, } },
+ ["GraftSuffixMinionLife5"] = { type = "Suffix", affix = "of Meat", "Minions summoned by this Graft have (56-60)% increased Life", statOrder = { 10908 }, level = 82, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4267516534] = { "Minions summoned by this Graft have (56-60)% increased Life" }, } },
+ ["GraftSuffixMinionAttackSpeed1"] = { type = "Suffix", affix = "of Lunacy", "Minions summoned by this Graft have (12-18)% increased Attack Speed", statOrder = { 10905 }, level = 44, group = "GraftSuffixMinionAttackSpeed", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [967852806] = { "Minions summoned by this Graft have (12-18)% increased Attack Speed" }, } },
+ ["GraftSuffixMinionAttackSpeed2"] = { type = "Suffix", affix = "of Psychopathy", "Minions summoned by this Graft have (19-25)% increased Attack Speed", statOrder = { 10905 }, level = 66, group = "GraftSuffixMinionAttackSpeed", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [967852806] = { "Minions summoned by this Graft have (19-25)% increased Attack Speed" }, } },
+ ["GraftSuffixMinionAttackSpeed3"] = { type = "Suffix", affix = "of Maniacism", "Minions summoned by this Graft have (26-31)% increased Attack Speed", statOrder = { 10905 }, level = 82, group = "GraftSuffixMinionAttackSpeed", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [967852806] = { "Minions summoned by this Graft have (26-31)% increased Attack Speed" }, } },
+ ["GraftSuffixMinionBlindOnHit1"] = { type = "Suffix", affix = "of Blinding Snow", "Minions summoned by this Graft have (10-20)% chance to Blind on Hit", statOrder = { 10910 }, level = 66, group = "GraftSuffixMinionBlindOnHit", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2313228671] = { "Minions summoned by this Graft have (10-20)% chance to Blind on Hit" }, } },
+ ["GraftSuffixMinionTauntOnHit1"] = { type = "Suffix", affix = "of Taunting", "Minions summoned by this Graft have (10-20)% chance to Taunt on Hit", statOrder = { 10906 }, level = 66, group = "GraftSuffixMinionTauntOnHit", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [131940510] = { "Minions summoned by this Graft have (10-20)% chance to Taunt on Hit" }, } },
+ ["GraftSuffixMinionDamageGainAsCold1"] = { type = "Suffix", affix = "of Frozen Falls", "Minions summoned by this Graft gain (40-49)% of Physical Damage as Extra Cold Damage", statOrder = { 10909 }, level = 44, group = "GraftSuffixMinionDamageGainAsCold", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2186396714] = { "Minions summoned by this Graft gain (40-49)% of Physical Damage as Extra Cold Damage" }, } },
+ ["GraftSuffixMinionDamageGainAsCold2"] = { type = "Suffix", affix = "of Winter Winds", "Minions summoned by this Graft gain (50-59)% of Physical Damage as Extra Cold Damage", statOrder = { 10909 }, level = 66, group = "GraftSuffixMinionDamageGainAsCold", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2186396714] = { "Minions summoned by this Graft gain (50-59)% of Physical Damage as Extra Cold Damage" }, } },
+ ["GraftSuffixMinionDamageGainAsCold3"] = { type = "Suffix", affix = "of Sleetbound Snow", "Minions summoned by this Graft gain (60-70)% of Physical Damage as Extra Cold Damage", statOrder = { 10909 }, level = 82, group = "GraftSuffixMinionDamageGainAsCold", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2186396714] = { "Minions summoned by this Graft gain (60-70)% of Physical Damage as Extra Cold Damage" }, } },
+ ["GraftSuffixFasterAilments1"] = { type = "Suffix", affix = "of Decomposition", "Damaging Ailments inflicted by Skills used by this Graft deal damage (8-14)% faster", statOrder = { 10886 }, level = 44, group = "GraftSuffixFasterAilments", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4230320163] = { "Damaging Ailments inflicted by Skills used by this Graft deal damage (8-14)% faster" }, } },
+ ["GraftSuffixFasterAilments2"] = { type = "Suffix", affix = "of Festering", "Damaging Ailments inflicted by Skills used by this Graft deal damage (15-21)% faster", statOrder = { 10886 }, level = 66, group = "GraftSuffixFasterAilments", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4230320163] = { "Damaging Ailments inflicted by Skills used by this Graft deal damage (15-21)% faster" }, } },
+ ["GraftSuffixFasterAilments3"] = { type = "Suffix", affix = "of Perishing", "Damaging Ailments inflicted by Skills used by this Graft deal damage (22-28)% faster", statOrder = { 10886 }, level = 82, group = "GraftSuffixFasterAilments", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4230320163] = { "Damaging Ailments inflicted by Skills used by this Graft deal damage (22-28)% faster" }, } },
+ ["GraftSuffixPunishmentOnHit1"] = { type = "Suffix", affix = "of Punishment", "Skills used by this Graft inflict Punishment on Hit", statOrder = { 10883 }, level = 44, group = "GraftSuffixPunishmentOnHit", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1245902490] = { "Skills used by this Graft inflict Punishment on Hit" }, } },
+ ["GraftSuffixNonDamagingAilmentEffect1"] = { type = "Suffix", affix = "of Oppression", "Skills used by this Graft have (10-19)% increased effect of Non-Damaging Ailments", statOrder = { 10911 }, level = 22, group = "GraftSuffixNonDamagingAilmentEffect", weightKey = { "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [308139248] = { "Skills used by this Graft have (10-19)% increased effect of Non-Damaging Ailments" }, } },
+ ["GraftSuffixNonDamagingAilmentEffect2"] = { type = "Suffix", affix = "of Suppression", "Skills used by this Graft have (20-29)% increased effect of Non-Damaging Ailments", statOrder = { 10911 }, level = 66, group = "GraftSuffixNonDamagingAilmentEffect", weightKey = { "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [308139248] = { "Skills used by this Graft have (20-29)% increased effect of Non-Damaging Ailments" }, } },
+ ["GraftSuffixNonDamagingAilmentEffect3"] = { type = "Suffix", affix = "of Persecution", "Skills used by this Graft have (30-40)% increased effect of Non-Damaging Ailments", statOrder = { 10911 }, level = 82, group = "GraftSuffixNonDamagingAilmentEffect", weightKey = { "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHashes = { [308139248] = { "Skills used by this Graft have (30-40)% increased effect of Non-Damaging Ailments" }, } },
+ ["GraftSuffixIncreasedDamageVsIgnited1"] = { type = "Suffix", affix = "of Aggravation", "Skills used by this Graft deal (117-152)% increased Damage against Ignited Enemies", statOrder = { 10885 }, level = 44, group = "GraftSuffixIncreasedDamageVsIgnited", weightKey = { "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, tradeHashes = { [3781496089] = { "Skills used by this Graft deal (117-152)% increased Damage against Ignited Enemies" }, } },
+ ["GraftSuffixIncreasedDamageVsIgnited2"] = { type = "Suffix", affix = "of Exacerbation", "Skills used by this Graft deal (169-194)% increased Damage against Ignited Enemies", statOrder = { 10885 }, level = 66, group = "GraftSuffixIncreasedDamageVsIgnited", weightKey = { "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, tradeHashes = { [3781496089] = { "Skills used by this Graft deal (169-194)% increased Damage against Ignited Enemies" }, } },
+ ["GraftSuffixIncreasedDamageVsIgnited3"] = { type = "Suffix", affix = "of Anguish", "Skills used by this Graft deal (221-246)% increased Damage against Ignited Enemies", statOrder = { 10885 }, level = 82, group = "GraftSuffixIncreasedDamageVsIgnited", weightKey = { "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, tradeHashes = { [3781496089] = { "Skills used by this Graft deal (221-246)% increased Damage against Ignited Enemies" }, } },
+ ["GraftSuffixEshLightningRingBuffAddedLightning1"] = { type = "Suffix", affix = "of Glowing", "Radiant Ground created by Skills from this Graft grants Allies on it an additional 4 to 18 added Lightning Damage", statOrder = { 10867 }, level = 44, group = "GraftSuffixEshLightningRingBuffAddedLightning", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1993898498] = { "Radiant Ground created by Skills from this Graft grants Allies on it an additional 4 to 18 added Lightning Damage" }, } },
+ ["GraftSuffixEshLightningRingBuffAddedLightning2"] = { type = "Suffix", affix = "of Shimmering", "Radiant Ground created by Skills from this Graft grants Allies on it an additional 5 to 24 added Lightning Damage", statOrder = { 10867 }, level = 66, group = "GraftSuffixEshLightningRingBuffAddedLightning", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1993898498] = { "Radiant Ground created by Skills from this Graft grants Allies on it an additional 5 to 24 added Lightning Damage" }, } },
+ ["GraftSuffixEshLightningRingBuffAddedLightning3"] = { type = "Suffix", affix = "of Radiance", "Radiant Ground created by Skills from this Graft grants Allies on it an additional 6 to 30 added Lightning Damage", statOrder = { 10867 }, level = 82, group = "GraftSuffixEshLightningRingBuffAddedLightning", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1993898498] = { "Radiant Ground created by Skills from this Graft grants Allies on it an additional 6 to 30 added Lightning Damage" }, } },
+ ["GraftSuffixEshLightningRingConductivityOnHit"] = { type = "Suffix", affix = "of Conductivity", "Skills used by this Graft inflict Conductivity on Hit", statOrder = { 10876 }, level = 66, group = "GraftSuffixEshLightningRingConductivityOnHit", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3285341404] = { "Skills used by this Graft inflict Conductivity on Hit" }, } },
+ ["GraftSuffixEshLightningRingNumberOfBolts1"] = { type = "Suffix", affix = "of Bolts", "Skills used by this Graft cause 4 additional lightning bolt strikes", statOrder = { 10890 }, level = 44, group = "GraftSuffixEshLightningRingNumberOfBolts", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2810785117] = { "Skills used by this Graft cause 4 additional lightning bolt strikes" }, } },
+ ["GraftSuffixEshLightningRingNumberOfBolts2"] = { type = "Suffix", affix = "of Thunderclaps", "Skills used by this Graft cause 6 additional lightning bolt strikes", statOrder = { 10890 }, level = 82, group = "GraftSuffixEshLightningRingNumberOfBolts", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2810785117] = { "Skills used by this Graft cause 6 additional lightning bolt strikes" }, } },
+ ["GraftSuffixXophMoltenShellShieldAmount1"] = { type = "Suffix", affix = "of the Core", "Heart of Flame Buff used by this Graft can take an additional (150-250) Damage", statOrder = { 10946 }, level = 44, group = "GraftSuffixXophMoltenShellShieldAmount", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [602627011] = { "Heart of Flame Buff used by this Graft can take an additional (150-250) Damage" }, } },
+ ["GraftSuffixXophMoltenShellShieldAmount2"] = { type = "Suffix", affix = "of the Crux", "Heart of Flame Buff used by this Graft can take an additional (300-550) Damage", statOrder = { 10946 }, level = 66, group = "GraftSuffixXophMoltenShellShieldAmount", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [602627011] = { "Heart of Flame Buff used by this Graft can take an additional (300-550) Damage" }, } },
+ ["GraftSuffixXophMoltenShellShieldAmount3"] = { type = "Suffix", affix = "of the Heart", "Heart of Flame Buff used by this Graft can take an additional (600-750) Damage", statOrder = { 10946 }, level = 82, group = "GraftSuffixXophMoltenShellShieldAmount", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [602627011] = { "Heart of Flame Buff used by this Graft can take an additional (600-750) Damage" }, } },
+ ["GraftSuffixXophMoltenShellCoverInAsh1"] = { type = "Suffix", affix = "of Ashen Flame", "Skills used by this Graft Cover Enemies in Ash on Hit", statOrder = { 10878 }, level = 66, group = "GraftSuffixXophMoltenShellCoverInAsh", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [613591578] = { "Skills used by this Graft Cover Enemies in Ash on Hit" }, } },
+ ["GraftSuffixXophMoltenShellArmourDuringBuff1"] = { type = "Suffix", affix = "of Flameplating", "Heart of Flame Buff used by this Graft grants (20-49)% increased Armour", statOrder = { 10947 }, level = 44, group = "GraftSuffixXophMoltenShellArmourDuringBuff", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2057803518] = { "Heart of Flame Buff used by this Graft grants (20-49)% increased Armour" }, } },
+ ["GraftSuffixXophMoltenShellArmourDuringBuff2"] = { type = "Suffix", affix = "of Fiery Buttresses", "Heart of Flame Buff used by this Graft grants (50-75)% increased Armour", statOrder = { 10947 }, level = 82, group = "GraftSuffixXophMoltenShellArmourDuringBuff", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2057803518] = { "Heart of Flame Buff used by this Graft grants (50-75)% increased Armour" }, } },
+ ["GraftSuffixXophMoltenShellPercentTakenByBuff1"] = { type = "Suffix", affix = "of the Fireheart", "An additional (5-10)% of Damage from Hits is taken from Heart of Flame Buff used by this Graft before Life or Energy Shield", statOrder = { 10948 }, level = 66, group = "GraftSuffixXophMoltenShellPercentTakenByBuff", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2664271989] = { "An additional (5-10)% of Damage from Hits is taken from Heart of Flame Buff used by this Graft before Life or Energy Shield" }, } },
+ ["GraftSuffixXophMoltenShellLessShieldIncreasedCDR1"] = { type = "Suffix", affix = "of Hasty Reconstruction", "Skills used by this Graft have 40% increased Cooldown Recovery Rate", "Heart of Flame Buff used by this Graft can take 30% less Damage", statOrder = { 10877, 10949 }, level = 44, group = "GraftSuffixXophMoltenShellLessShieldIncreasedCDR", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 100, 0 }, modTags = { }, tradeHashes = { [1053840971] = { "Skills used by this Graft have 40% increased Cooldown Recovery Rate" }, [2338032775] = { "Heart of Flame Buff used by this Graft can take 30% less Damage" }, } },
+ ["GraftSuffixFrostbiteOnHit1"] = { type = "Suffix", affix = "of Frostbite", "Skills used by this Graft inflict Frostbite on Hit", statOrder = { 10893 }, level = 44, group = "GraftSuffixFrostbiteOnHit", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, tradeHashes = { [1593675162] = { "Skills used by this Graft inflict Frostbite on Hit" }, } },
+ ["GraftSuffixTulTornadoProjectileDamageAfterPierce1"] = { type = "Suffix", affix = "of Boring", "Projectiles created by this Graft that have Pierced deal (20-30)% more Damage", statOrder = { 10913 }, level = 66, group = "GraftSuffixTulTornadoProjectileDamageAfterPierce", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [793704702] = { "Projectiles created by this Graft that have Pierced deal (20-30)% more Damage" }, } },
+ ["GraftSuffixTulTornadoAdditionalTornado1"] = { type = "Suffix", affix = "of Whirlwinds", "Skills used by this Graft deal 40% less Damage", "Dance in the White used by this Graft creates an additional Tornado", "Dance in the White used by this Graft has +1 to maximum Tornados", statOrder = { 10928, 10929, 10930 }, level = 66, group = "GraftSuffixTulTornadoAdditionalTornado", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [4064732043] = { "Skills used by this Graft deal 40% less Damage" }, [1180345918] = { "Dance in the White used by this Graft has +1 to maximum Tornados" }, [2372432170] = { "Dance in the White used by this Graft creates an additional Tornado" }, } },
+ ["GraftSuffixXophGeysersAdditionalGeyser1"] = { type = "Suffix", affix = "of Eruption", "His Burning Message used by this Graft creates an additional geyser", statOrder = { 10944 }, level = 44, group = "GraftSuffixXophGeysersAdditionalGeyser", weightKey = { "graft_xoph_cremations", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2610093703] = { "His Burning Message used by this Graft creates an additional geyser" }, } },
+ ["GraftSuffixXophGeysersAdditionalGeyser2"] = { type = "Suffix", affix = "of Geysers", "His Burning Message used by this Graft creates 2 additional geysers", statOrder = { 10944 }, level = 82, group = "GraftSuffixXophGeysersAdditionalGeyser", weightKey = { "graft_xoph_cremations", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2610093703] = { "His Burning Message used by this Graft creates 2 additional geysers" }, } },
+ ["GraftSuffixXophGeysersAdditionalWarcyProjectiles1"] = { type = "Suffix", affix = "of Deafening", "Geysers created by this Graft fire 2 additional Projectiles when you Warcry", statOrder = { 10945 }, level = 66, group = "GraftSuffixXophGeysersAdditionalWarcyProjectiles", weightKey = { "graft_xoph_cremations", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4169460025] = { "Geysers created by this Graft fire 2 additional Projectiles when you Warcry" }, } },
+ ["GraftSuffixJoltBuffMaximumJoltBuffCount1"] = { type = "Suffix", affix = "of Trembling", "Overcharged Sinews used by this Graft can apply +(1-2) maximum Jolt Buffs", statOrder = { 10901 }, level = 44, group = "GraftSuffixJoltBuffMaximumJoltBuffCount", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1601123381] = { "Overcharged Sinews used by this Graft can apply +(1-2) maximum Jolt Buffs" }, } },
+ ["GraftSuffixJoltBuffMaximumJoltBuffCount2"] = { type = "Suffix", affix = "of Shuddering", "Overcharged Sinews used by this Graft can apply +(3-4) maximum Jolt Buffs", statOrder = { 10901 }, level = 82, group = "GraftSuffixJoltBuffMaximumJoltBuffCount", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1601123381] = { "Overcharged Sinews used by this Graft can apply +(3-4) maximum Jolt Buffs" }, } },
+ ["GraftSuffixJoltMaxDamageAndDamageTaken1"] = { type = "Suffix", affix = "of Peril", "Jolt granted by this Graft grants +1% increased Damage taken", "Jolt granted by this Graft grants +1% more Maximum Attack Damage", statOrder = { 10888, 10889 }, level = 66, group = "GraftSuffixJoltMaxDamageAndDamageTaken", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3955143601] = { "Jolt granted by this Graft grants +1% more Maximum Attack Damage" }, [3853303544] = { "Jolt granted by this Graft grants +1% increased Damage taken" }, } },
+ ["GraftSuffixJoltGrantsCriticalStrikeChance1"] = { type = "Suffix", affix = "of Heightening", "Jolt granted by this Graft grants (1-2)% increased Critical Strike Chance", statOrder = { 10899 }, level = 1, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1265046157] = { "Jolt granted by this Graft grants (1-2)% increased Critical Strike Chance" }, } },
+ ["GraftSuffixJoltGrantsCriticalStrikeChance2"] = { type = "Suffix", affix = "of Sharpening", "Jolt granted by this Graft grants (2-3)% increased Critical Strike Chance", statOrder = { 10899 }, level = 22, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1265046157] = { "Jolt granted by this Graft grants (2-3)% increased Critical Strike Chance" }, } },
+ ["GraftSuffixJoltGrantsCriticalStrikeChance3"] = { type = "Suffix", affix = "of Amplification", "Jolt granted by this Graft grants 4% increased Critical Strike Chance", statOrder = { 10899 }, level = 44, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 700, 0 }, modTags = { }, tradeHashes = { [1265046157] = { "Jolt granted by this Graft grants 4% increased Critical Strike Chance" }, } },
+ ["GraftSuffixJoltGrantsCriticalStrikeChance4"] = { type = "Suffix", affix = "of Intensity", "Jolt granted by this Graft grants 5% increased Critical Strike Chance", statOrder = { 10899 }, level = 66, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1265046157] = { "Jolt granted by this Graft grants 5% increased Critical Strike Chance" }, } },
+ ["GraftSuffixJoltGrantsCriticalStrikeChance5"] = { type = "Suffix", affix = "of Escalation", "Jolt granted by this Graft grants 6% increased Critical Strike Chance", statOrder = { 10899 }, level = 82, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1265046157] = { "Jolt granted by this Graft grants 6% increased Critical Strike Chance" }, } },
+ ["GraftSuffixJoltGrantsCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Pins", "Jolt granted by this Graft grants +(1-2)% to Critical Strike Multiplier", statOrder = { 10900 }, level = 44, group = "GraftSuffixJoltGrantsCriticalStrikeMultiplier", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3905327148] = { "Jolt granted by this Graft grants +(1-2)% to Critical Strike Multiplier" }, } },
+ ["GraftSuffixJoltGrantsCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Blades", "Jolt granted by this Graft grants +(2-3)% to Critical Strike Multiplier", statOrder = { 10900 }, level = 66, group = "GraftSuffixJoltGrantsCriticalStrikeMultiplier", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3905327148] = { "Jolt granted by this Graft grants +(2-3)% to Critical Strike Multiplier" }, } },
+ ["GraftSuffixJoltGrantsCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Daggers", "Jolt granted by this Graft grants +4% to Critical Strike Multiplier", statOrder = { 10900 }, level = 82, group = "GraftSuffixJoltGrantsCriticalStrikeMultiplier", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3905327148] = { "Jolt granted by this Graft grants +4% to Critical Strike Multiplier" }, } },
+ ["GraftSuffixJoltGrantsMovementVelocity1"] = { type = "Suffix", affix = "of Velocity", "Jolt granted by this Graft grants 1% increased Movement Speed", statOrder = { 10902 }, level = 66, group = "GraftSuffixJoltGrantsMovementVelocity", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1945948244] = { "Jolt granted by this Graft grants 1% increased Movement Speed" }, } },
+ ["GraftSuffixLightningHandsAdditionalHands1"] = { type = "Suffix", affix = "of Grasping", "Enervating Grasp used by this Graft creates (3-5) additional Hands", statOrder = { 10891 }, level = 66, group = "GraftSuffixLightningHandsAdditionalHands", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [300482938] = { "Enervating Grasp used by this Graft creates (3-5) additional Hands" }, } },
+ ["GraftSuffixLightningHandsUnnerveOnHit1"] = { type = "Suffix", affix = "of Unnerving", "Skills used by this Graft Unnerve on Hit", statOrder = { 10874 }, level = 44, group = "GraftSuffixLightningHandsUnnerveOnHit", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2418139890] = { "Skills used by this Graft Unnerve on Hit" }, } },
+ ["GraftSuffixUulNetolLowLifeBuffDurationForEffect1"] = { type = "Suffix", affix = "of Dilution", "Skills used by this Graft have (34-40)% increased Skill Effect Duration", "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate", statOrder = { 10887, 10952 }, level = 44, group = "GraftSuffixUulNetolLowLifeBuffDurationForEffect", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (34-40)% increased Skill Effect Duration" }, [1082722194] = { "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate" }, } },
+ ["GraftSuffixUulNetolLowLifeBuffDurationForEffect2"] = { type = "Suffix", affix = "of Thinning", "Skills used by this Graft have (41-45)% increased Skill Effect Duration", "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate", statOrder = { 10887, 10952 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffDurationForEffect", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [261121382] = { "Skills used by this Graft have (41-45)% increased Skill Effect Duration" }, [1082722194] = { "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate" }, } },
+ ["GraftSuffixUulNetolLowLifeBuffAdditionalCharge1"] = { type = "Suffix", affix = "of Endurance", "Buff granted by Tender Embrace used by this Graft grants +1 Endurance Charge when gained", statOrder = { 10953 }, level = 82, group = "GraftSuffixUulNetolLowLifeBuffAdditionalCharge", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [994844444] = { "Buff granted by Tender Embrace used by this Graft grants +1 Endurance Charge when gained" }, } },
+ ["GraftSuffixUulNetolLowLifeBuffRecovery1"] = { type = "Suffix", affix = "of Recovery", "Buff granted by Tender Embrace used by this Graft grants (2-4)% more Life Recovery Rate", statOrder = { 10952 }, level = 22, group = "GraftSuffixUulNetolLowLifeBuffRecovery", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1082722194] = { "Buff granted by Tender Embrace used by this Graft grants (2-4)% more Life Recovery Rate" }, } },
+ ["GraftSuffixUulNetolLowLifeBuffRecovery2"] = { type = "Suffix", affix = "of Rejuvenation", "Buff granted by Tender Embrace used by this Graft grants (5-8)% more Life Recovery Rate", statOrder = { 10952 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffRecovery", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1082722194] = { "Buff granted by Tender Embrace used by this Graft grants (5-8)% more Life Recovery Rate" }, } },
+ ["GraftSuffixUulNetolLowLifeBuffRecovery3"] = { type = "Suffix", affix = "of Renewal", "Buff granted by Tender Embrace used by this Graft grants (9-12)% more Life Recovery Rate", statOrder = { 10952 }, level = 82, group = "GraftSuffixUulNetolLowLifeBuffRecovery", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1082722194] = { "Buff granted by Tender Embrace used by this Graft grants (9-12)% more Life Recovery Rate" }, } },
+ ["GraftSuffixUulNetolLowLifeBuffBlockChance1"] = { type = "Suffix", affix = "of the Bulwark", "Buff granted by Tender Embrace used by this Graft grants +(2-4)% chance to Block Attack Damage", statOrder = { 10950 }, level = 22, group = "GraftSuffixUulNetolLowLifeBuffBlockChance", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2530984421] = { "Buff granted by Tender Embrace used by this Graft grants +(2-4)% chance to Block Attack Damage" }, } },
+ ["GraftSuffixUulNetolLowLifeBuffBlockChance2"] = { type = "Suffix", affix = "of Shielding", "Buff granted by Tender Embrace used by this Graft grants +(5-7)% chance to Block Attack Damage", statOrder = { 10950 }, level = 44, group = "GraftSuffixUulNetolLowLifeBuffBlockChance", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2530984421] = { "Buff granted by Tender Embrace used by this Graft grants +(5-7)% chance to Block Attack Damage" }, } },
+ ["GraftSuffixUulNetolLowLifeBuffBlockChance3"] = { type = "Suffix", affix = "of the Turtle", "Buff granted by Tender Embrace used by this Graft grants +(8-10)% chance to Block Attack Damage", statOrder = { 10950 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffBlockChance", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2530984421] = { "Buff granted by Tender Embrace used by this Graft grants +(8-10)% chance to Block Attack Damage" }, } },
+ ["GraftSuffixUulNetolLowLifeBuffLifeLeech1"] = { type = "Suffix", affix = "of Bloodhunger", "Buff granted by Tender Embrace used by this Graft grants (0.2-0.29)% of Damage Leeched as Life", statOrder = { 10951 }, level = 44, group = "GraftSuffixUulNetolLowLifeBuffLifeLeech", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [291373897] = { "Buff granted by Tender Embrace used by this Graft grants (0.2-0.29)% of Damage Leeched as Life" }, } },
+ ["GraftSuffixUulNetolLowLifeBuffLifeLeech2"] = { type = "Suffix", affix = "of Vampirism", "Buff granted by Tender Embrace used by this Graft grants (0.3-0.39)% of Damage Leeched as Life", statOrder = { 10951 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffLifeLeech", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [291373897] = { "Buff granted by Tender Embrace used by this Graft grants (0.3-0.39)% of Damage Leeched as Life" }, } },
+ ["GraftSuffixUulNetolLowLifeBuffLifeLeech3"] = { type = "Suffix", affix = "of the Leech", "Buff granted by Tender Embrace used by this Graft grants (0.4-0.5)% of Damage Leeched as Life", statOrder = { 10951 }, level = 82, group = "GraftSuffixUulNetolLowLifeBuffLifeLeech", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [291373897] = { "Buff granted by Tender Embrace used by this Graft grants (0.4-0.5)% of Damage Leeched as Life" }, } },
+ ["GraftSuffixUulNetolImpaleBuffImpaleEffect1"] = { type = "Suffix", affix = "of Twisting", "Violent Desire used by this Graft grants +(6-10)% increased effect of Impale", statOrder = { 10937 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffImpaleEffect", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2000483559] = { "Violent Desire used by this Graft grants +(6-10)% increased effect of Impale" }, } },
+ ["GraftSuffixUulNetolImpaleBuffImpaleEffect2"] = { type = "Suffix", affix = "of Wrenching", "Violent Desire used by this Graft grants +(11-15)% increased effect of Impale", statOrder = { 10937 }, level = 82, group = "GraftSuffixUulNetolImpaleBuffImpaleEffect", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2000483559] = { "Violent Desire used by this Graft grants +(11-15)% increased effect of Impale" }, } },
+ ["GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed1"] = { type = "Suffix", affix = "of the Berserker", "Violent Desire used by this Graft also grants (4-6)% increased Attack Speed", statOrder = { 10935 }, level = 44, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [1570004834] = { "Violent Desire used by this Graft also grants (4-6)% increased Attack Speed" }, } },
+ ["GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed2"] = { type = "Suffix", affix = "of the Maniac", "Violent Desire used by this Graft also grants (7-9)% increased Attack Speed", statOrder = { 10935 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [1570004834] = { "Violent Desire used by this Graft also grants (7-9)% increased Attack Speed" }, } },
+ ["GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed3"] = { type = "Suffix", affix = "of the Madman", "Violent Desire used by this Graft also grants (10-12)% increased Attack Speed", statOrder = { 10935 }, level = 82, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [1570004834] = { "Violent Desire used by this Graft also grants (10-12)% increased Attack Speed" }, } },
+ ["GraftSuffixUulNetolImpaleBuffGrantsAttackAOE1"] = { type = "Suffix", affix = "of Grasping", "Violent Desire used by this Graft also grants (5-7)% increased Area of Effect with Attacks", statOrder = { 10934 }, level = 44, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackAOE", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [468012134] = { "Violent Desire used by this Graft also grants (5-7)% increased Area of Effect with Attacks" }, } },
+ ["GraftSuffixUulNetolImpaleBuffGrantsAttackAOE2"] = { type = "Suffix", affix = "of Clutching", "Violent Desire used by this Graft also grants (8-10)% increased Area of Effect with Attacks", statOrder = { 10934 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackAOE", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [468012134] = { "Violent Desire used by this Graft also grants (8-10)% increased Area of Effect with Attacks" }, } },
+ ["GraftSuffixUulNetolImpaleBuffGrantsAttackAOE3"] = { type = "Suffix", affix = "of Siezing", "Violent Desire used by this Graft also grants (11-13)% increased Area of Effect with Attacks", statOrder = { 10934 }, level = 82, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackAOE", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [468012134] = { "Violent Desire used by this Graft also grants (11-13)% increased Area of Effect with Attacks" }, } },
+ ["GraftSuffixUulNetolImpaleBuffGrantsChanceToIgnorePhysReduction1"] = { type = "Suffix", affix = "of Devastation", "Violent Desire used by this Graft also grants Hits have (30-50)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 10936 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffGrantsChanceToIgnorePhysReduction", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [3830354140] = { "Violent Desire used by this Graft also grants Hits have (30-50)% chance to ignore Enemy Physical Damage Reduction" }, } },
+ ["GraftSuffixTulMortarAdditionalMortar1"] = { type = "Suffix", affix = "of Flinging", "Falling Crystals used by this Graft fires up to 1 additional mortar", statOrder = { 10927 }, level = 66, group = "GraftSuffixTulMortarAdditionalMortar", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [2123039991] = { "Falling Crystals used by this Graft fires up to 1 additional mortar" }, } },
+ ["GraftSuffixTulMortarMoreDamageVSFrozen1"] = { type = "Suffix", affix = "of Icebergs", "Skills used by this Graft deal (10-24)% more Damage to Frozen Enemies", statOrder = { 10926 }, level = 44, group = "GraftSuffixTulMortarMoreDamageVSFrozen", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3395681357] = { "Skills used by this Graft deal (10-24)% more Damage to Frozen Enemies" }, } },
+ ["GraftSuffixTulMortarMoreDamageVSFrozen2"] = { type = "Suffix", affix = "of Floes", "Skills used by this Graft deal (25-34)% more Damage to Frozen Enemies", statOrder = { 10926 }, level = 66, group = "GraftSuffixTulMortarMoreDamageVSFrozen", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3395681357] = { "Skills used by this Graft deal (25-34)% more Damage to Frozen Enemies" }, } },
+ ["GraftSuffixTulMortarMoreDamageVSFrozen3"] = { type = "Suffix", affix = "of Glaciers", "Skills used by this Graft deal (35-45)% more Damage to Frozen Enemies", statOrder = { 10926 }, level = 82, group = "GraftSuffixTulMortarMoreDamageVSFrozen", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3395681357] = { "Skills used by this Graft deal (35-45)% more Damage to Frozen Enemies" }, } },
+ ["GraftSuffixUulNetolSpikesAdditionalSpikes1"] = { type = "Suffix", affix = "of Foothills", "Seize the Flesh used by this Graft creates +(1-2) Spire", statOrder = { 10931 }, level = 66, group = "GraftSuffixUulNetolSpikesAdditionalSpikes", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [385266470] = { "Seize the Flesh used by this Graft creates +(1-2) Spire" }, } },
+ ["GraftSuffixUulNetolSpikesAdditionalSpikes2"] = { type = "Suffix", affix = "of Mountains", "Seize the Flesh used by this Graft creates +(3-4) Spires", statOrder = { 10931 }, level = 82, group = "GraftSuffixUulNetolSpikesAdditionalSpikes", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [385266470] = { "Seize the Flesh used by this Graft creates +(3-4) Spires" }, } },
+ ["GraftSuffixXophPillarAdditionalPillar1"] = { type = "Suffix", affix = "of Pillars", "Call the Pyre used by this Graft creates +1 Ashen Pillar", statOrder = { 10943 }, level = 66, group = "GraftSuffixXophPillarAdditionalPillar", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [652310659] = { "Call the Pyre used by this Graft creates +1 Ashen Pillar" }, } },
+ ["GraftSuffixXophPillarAdditionalPillar2"] = { type = "Suffix", affix = "of Obelisks", "Call the Pyre used by this Graft creates +2 Ashen Pillars", statOrder = { 10943 }, level = 66, group = "GraftSuffixXophPillarAdditionalPillar", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [652310659] = { "Call the Pyre used by this Graft creates +2 Ashen Pillars" }, } },
+ ["GraftSuffixXophAilmentBuffEleGainAsChaos1"] = { type = "Suffix", affix = "of Foulness", "The Grey Wind Howls used by this Graft also grants (5-8)% of Elemental Damage gained as Extra Chaos Damage", statOrder = { 10941 }, level = 66, group = "GraftSuffixXophAilmentBuffEleGainAsChaos", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [1761211254] = { "The Grey Wind Howls used by this Graft also grants (5-8)% of Elemental Damage gained as Extra Chaos Damage" }, } },
+ ["GraftSuffixXophAilmentBuffEleResistances1"] = { type = "Suffix", affix = "of the Span", "The Grey Wind Howls used by this Graft also grants +(5-8)% to all Elemental Resistances", statOrder = { 10940 }, level = 44, group = "GraftSuffixXophAilmentBuffEleResistances", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [457484464] = { "The Grey Wind Howls used by this Graft also grants +(5-8)% to all Elemental Resistances" }, } },
+ ["GraftSuffixXophAilmentBuffEleResistances2"] = { type = "Suffix", affix = "of Resistance", "The Grey Wind Howls used by this Graft also grants +(9-12)% to all Elemental Resistances", statOrder = { 10940 }, level = 66, group = "GraftSuffixXophAilmentBuffEleResistances", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [457484464] = { "The Grey Wind Howls used by this Graft also grants +(9-12)% to all Elemental Resistances" }, } },
+ ["GraftSuffixXophAilmentBuffEleResistances3"] = { type = "Suffix", affix = "of Facets", "The Grey Wind Howls used by this Graft also grants +(13-16)% to all Elemental Resistances", statOrder = { 10940 }, level = 82, group = "GraftSuffixXophAilmentBuffEleResistances", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [457484464] = { "The Grey Wind Howls used by this Graft also grants +(13-16)% to all Elemental Resistances" }, } },
+ ["GraftSuffixXophAilmentBuffElementalAilmentAvoid1"] = { type = "Suffix", affix = "of Eschewing", "The Grey Wind Howls used by this Graft also grants (20-29)% chance to Avoid Elemental Ailments", statOrder = { 10942 }, level = 44, group = "GraftSuffixXophAilmentBuffElementalAilmentAvoid", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4070390513] = { "The Grey Wind Howls used by this Graft also grants (20-29)% chance to Avoid Elemental Ailments" }, } },
+ ["GraftSuffixXophAilmentBuffElementalAilmentAvoid2"] = { type = "Suffix", affix = "of Avoidance", "The Grey Wind Howls used by this Graft also grants (30-40)% chance to Avoid Elemental Ailments", statOrder = { 10942 }, level = 66, group = "GraftSuffixXophAilmentBuffElementalAilmentAvoid", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4070390513] = { "The Grey Wind Howls used by this Graft also grants (30-40)% chance to Avoid Elemental Ailments" }, } },
+ ["GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra1"] = { type = "Suffix", affix = "of Prisms", "The Grey Wind Howls used by this Graft grants +(2-4)% additional Physical Damage gained as Extra Elemental Damage", statOrder = { 10939 }, level = 44, group = "GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [4234527870] = { "The Grey Wind Howls used by this Graft grants +(2-4)% additional Physical Damage gained as Extra Elemental Damage" }, } },
+ ["GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra2"] = { type = "Suffix", affix = "of the Spectrum", "The Grey Wind Howls used by this Graft grants +(5-7)% additional Physical Damage gained as Extra Elemental Damage", statOrder = { 10939 }, level = 66, group = "GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [4234527870] = { "The Grey Wind Howls used by this Graft grants +(5-7)% additional Physical Damage gained as Extra Elemental Damage" }, } },
+ ["GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra3"] = { type = "Suffix", affix = "of the Continuum", "The Grey Wind Howls used by this Graft grants +(8-10)% additional Physical Damage gained as Extra Elemental Damage", statOrder = { 10939 }, level = 82, group = "GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [4234527870] = { "The Grey Wind Howls used by this Graft grants +(8-10)% additional Physical Damage gained as Extra Elemental Damage" }, } },
+ ["GraftSuffixTulAegisBuffAmount1"] = { type = "Suffix", affix = "of Guarding", "Preserving Stillness used by this Graft can take (200-299) additional Damage", statOrder = { 10925 }, level = 44, group = "GraftSuffixTulAegisBuffAmount", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [3725714391] = { "Preserving Stillness used by this Graft can take (200-299) additional Damage" }, } },
+ ["GraftSuffixTulAegisBuffAmount2"] = { type = "Suffix", affix = "of Shelter", "Preserving Stillness used by this Graft can take (300-399) additional Damage", statOrder = { 10925 }, level = 66, group = "GraftSuffixTulAegisBuffAmount", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [3725714391] = { "Preserving Stillness used by this Graft can take (300-399) additional Damage" }, } },
+ ["GraftSuffixTulAegisBuffAmount3"] = { type = "Suffix", affix = "of Protection", "Preserving Stillness used by this Graft can take (400-500) additional Damage", statOrder = { 10925 }, level = 82, group = "GraftSuffixTulAegisBuffAmount", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [3725714391] = { "Preserving Stillness used by this Graft can take (400-500) additional Damage" }, } },
+ ["GraftSuffixTulAegisBuffMaxResistance1"] = { type = "Suffix", affix = "of the Mosaic", "Preserving Stillness used by this Graft also grants +1% to all maximum Elemental Resistances", statOrder = { 10924 }, level = 66, group = "GraftSuffixTulAegisBuffMaxResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [557952718] = { "Preserving Stillness used by this Graft also grants +1% to all maximum Elemental Resistances" }, } },
+ ["GraftSuffixTulAegisBuffMaxResistance2"] = { type = "Suffix", affix = "of Hues", "Preserving Stillness used by this Graft also grants +2% to all maximum Elemental Resistances", statOrder = { 10924 }, level = 82, group = "GraftSuffixTulAegisBuffMaxResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 150, 0 }, modTags = { }, tradeHashes = { [557952718] = { "Preserving Stillness used by this Graft also grants +2% to all maximum Elemental Resistances" }, } },
+ ["GraftSuffixTulAegisBuffAdditionalResistance1"] = { type = "Suffix", affix = "of Resistance", "Preserving Stillness used by this Graft also grants +(10-14)% to all Elemental Resistances", statOrder = { 10923 }, level = 44, group = "GraftSuffixTulAegisBuffAdditionalResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 1000, 0 }, modTags = { }, tradeHashes = { [2134023442] = { "Preserving Stillness used by this Graft also grants +(10-14)% to all Elemental Resistances" }, } },
+ ["GraftSuffixTulAegisBuffAdditionalResistance2"] = { type = "Suffix", affix = "of Resilience", "Preserving Stillness used by this Graft also grants +(15-19)% to all Elemental Resistances", statOrder = { 10923 }, level = 66, group = "GraftSuffixTulAegisBuffAdditionalResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 500, 0 }, modTags = { }, tradeHashes = { [2134023442] = { "Preserving Stillness used by this Graft also grants +(15-19)% to all Elemental Resistances" }, } },
+ ["GraftSuffixTulAegisBuffAdditionalResistance3"] = { type = "Suffix", affix = "of Mettle", "Preserving Stillness used by this Graft also grants +(20-25)% to all Elemental Resistances", statOrder = { 10923 }, level = 82, group = "GraftSuffixTulAegisBuffAdditionalResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 300, 0 }, modTags = { }, tradeHashes = { [2134023442] = { "Preserving Stillness used by this Graft also grants +(20-25)% to all Elemental Resistances" }, } },
+ ["GraftCorruptionAttackSpeedPerFrenzy"] = { type = "Corrupted", affix = "", "(1-2)% increased Attack Speed per Frenzy Charge", statOrder = { 2049 }, level = 1, group = "GraftCorruptionAttackSpeedPerFrenzy", weightKey = { "graft", "default", }, weightVal = { 120, 0 }, modTags = { }, tradeHashes = { [3548561213] = { "(1-2)% increased Attack Speed per Frenzy Charge" }, } },
+ ["GraftCorruptionCritChancePerPower"] = { type = "Corrupted", affix = "", "(4-8)% increased Critical Strike Chance per Power Charge", statOrder = { 3166 }, level = 1, group = "GraftCorruptionCritChancePerPower", weightKey = { "graft", "default", }, weightVal = { 120, 0 }, modTags = { }, tradeHashes = { [2102212273] = { "(4-8)% increased Critical Strike Chance per Power Charge" }, } },
+ ["GraftCorruptionLifeRegenerationPerEndurance"] = { type = "Corrupted", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 1, group = "GraftCorruptionLifeRegenerationPerEndurance", weightKey = { "graft", "default", }, weightVal = { 120, 0 }, modTags = { }, tradeHashes = { [989800292] = { "Regenerate 0.2% of Life per second per Endurance Charge" }, } },
+ ["GraftCorruptionAccuracyFromLightRadius"] = { type = "Corrupted", affix = "", "Increases and Reductions to Light Radius also apply to Accuracy", statOrder = { 7429 }, level = 1, group = "GraftCorruptionAccuracyFromLightRadius", weightKey = { "graft", "default", }, weightVal = { 80, 0 }, modTags = { }, tradeHashes = { [411986876] = { "Increases and Reductions to Light Radius also apply to Accuracy" }, } },
+ ["GraftCorruptionStunThresholdFromFireResistance"] = { type = "Corrupted", affix = "", "Stun Threshold is increased by Overcapped Fire Resistance", statOrder = { 10266 }, level = 1, group = "GraftCorruptionStunThresholdFromFireResistance", weightKey = { "graft", "default", }, weightVal = { 80, 0 }, modTags = { }, tradeHashes = { [2898944747] = { "Stun Threshold is increased by Overcapped Fire Resistance" }, } },
+ ["GraftCorruptionLessAreaDamageChanceFromColdResistance"] = { type = "Corrupted", affix = "", "1% chance to take 20% less Area Damage from Hits per 2% Overcapped Cold Resistance", statOrder = { 10349 }, level = 1, group = "GraftCorruptionLessAreaDamageChanceFromColdResistance", weightKey = { "graft", "default", }, weightVal = { 80, 0 }, modTags = { }, tradeHashes = { [1469603435] = { "1% chance to take 20% less Area Damage from Hits per 2% Overcapped Cold Resistance" }, } },
+ ["GraftCorruptionProjectileSpeedPerStrength"] = { type = "Corrupted", affix = "", "1% increased Projectile Speed per 20 Strength", statOrder = { 9742 }, level = 66, group = "GraftCorruptionProjectileSpeedPerStrength", weightKey = { "graft", "default", }, weightVal = { 60, 0 }, modTags = { }, tradeHashes = { [1998937909] = { "1% increased Projectile Speed per 20 Strength" }, } },
+ ["GraftCorruptionCastSpeedPerDexterity"] = { type = "Corrupted", affix = "", "1% increased Cast Speed per 20 Dexterity", statOrder = { 5461 }, level = 66, group = "GraftCorruptionCastSpeedPerDexterity", weightKey = { "graft", "default", }, weightVal = { 60, 0 }, modTags = { }, tradeHashes = { [1334577255] = { "1% increased Cast Speed per 20 Dexterity" }, } },
+ ["GraftCorruptionMeleeDamagePerIntelligence"] = { type = "Corrupted", affix = "", "1% increased Melee Damage per 20 Intelligence", statOrder = { 9188 }, level = 66, group = "GraftCorruptionMeleeDamagePerIntelligence", weightKey = { "graft", "default", }, weightVal = { 60, 0 }, modTags = { }, tradeHashes = { [2645167381] = { "1% increased Melee Damage per 20 Intelligence" }, } },
+ ["GraftCorruptionNonDamagingAilmentEffectPerBlueGem"] = { type = "Corrupted", affix = "", "2% increased Effect of Non-Damaging Ailments for each Blue Skill Gem you have socketed", statOrder = { 9497 }, level = 66, group = "GraftCorruptionNonDamagingAilmentEffectPerBlueGem", weightKey = { "graft", "default", }, weightVal = { 40, 0 }, modTags = { }, tradeHashes = { [2324668473] = { "2% increased Effect of Non-Damaging Ailments for each Blue Skill Gem you have socketed" }, } },
+ ["GraftCorruptionCooldownSpeedPerGreenGem"] = { type = "Corrupted", affix = "", "2% increased Cooldown Recovery Rate for each Green Skill Gem you have socketed", statOrder = { 5871 }, level = 66, group = "GraftCorruptionCooldownSpeedPerGreenGem", weightKey = { "graft", "default", }, weightVal = { 40, 0 }, modTags = { }, tradeHashes = { [162292333] = { "2% increased Cooldown Recovery Rate for each Green Skill Gem you have socketed" }, } },
+ ["GraftCorruptionSkillEffectDurationPerRedGem"] = { type = "Corrupted", affix = "", "2% increased Skill Effect Duration for each Red Skill Gem you have socketed", statOrder = { 10052 }, level = 66, group = "GraftCorruptionSkillEffectDurationPerRedGem", weightKey = { "graft", "default", }, weightVal = { 40, 0 }, modTags = { }, tradeHashes = { [1430991954] = { "2% increased Skill Effect Duration for each Red Skill Gem you have socketed" }, } },
}
\ No newline at end of file
diff --git a/src/Data/ModImplicit.lua b/src/Data/ModImplicit.lua
index 0433a5f49d7..630bea03191 100644
--- a/src/Data/ModImplicit.lua
+++ b/src/Data/ModImplicit.lua
@@ -2,8250 +2,8250 @@
-- Item data (c) Grinding Gear Games
return {
- ["StrengthUniqueRing2"] = { affix = "", "+(10-20) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } },
- ["StrengthImplicitAmulet1"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 7, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } },
- ["StrengthImplicitBelt1"] = { affix = "", "+(25-35) to Strength", statOrder = { 1182 }, level = 10, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(25-35) to Strength" }, } },
- ["StrengthUniqueHelmetDexInt1"] = { affix = "", "+20 to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+20 to Strength" }, } },
- ["StrengthUniqueTwoHandMace1"] = { affix = "", "+10 to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+10 to Strength" }, } },
- ["StrengthUniqueAmulet5"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } },
- ["StrengthUniqueIntHelmet3"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } },
- ["StrengthUniqueBootsInt1"] = { affix = "", "+(5-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(5-30) to Strength" }, } },
- ["StrengthUniqueDagger2"] = { affix = "", "+25 to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+25 to Strength" }, } },
- ["StrengthUniqueBootsStrDex1"] = { affix = "", "+(40-60) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(40-60) to Strength" }, } },
- ["StrengthUniqueGlovesDex1"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } },
- ["StrengthUniqueBelt1"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 10, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } },
- ["StrengthUniqueBelt2"] = { affix = "", "+(40-50) to Strength", statOrder = { 1182 }, level = 20, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(40-50) to Strength" }, } },
- ["StrengthUniqueBelt4"] = { affix = "", "+25 to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+25 to Strength" }, } },
- ["StrengthUniqueGlovesStr2"] = { affix = "", "+50 to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+50 to Strength" }, } },
- ["StrengthUniqueTwoHandAxe3"] = { affix = "", "+(15-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-30) to Strength" }, } },
- ["StrengthUniqueBodyStrInt3"] = { affix = "", "+(30-40) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } },
- ["StrengthUniqueGlovesStrDex3"] = { affix = "", "+10 to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+10 to Strength" }, } },
- ["StrengthUniqueHelmetStrDex3"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } },
- ["StrengthUniqueClaw5_"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } },
- ["StrengthUniqueRing8"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } },
- ["StrengthUniqueBootsDexInt2"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } },
- ["StrengthUniqueTwoHandAxe5"] = { affix = "", "+10 to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+10 to Strength" }, } },
- ["StrengthUniqueTwoHandSword5"] = { affix = "", "+(40-50) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(40-50) to Strength" }, } },
- ["StrengthUniqueBelt7"] = { affix = "", "+(40-55) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(40-55) to Strength" }, } },
- ["StrengthUniqueSceptre6"] = { affix = "", "+(50-70) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(50-70) to Strength" }, } },
- ["StrengthUniqueBodyStr4"] = { affix = "", "+(10-20) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } },
- ["StrengthUniqueQuiver6"] = { affix = "", "+(15-25) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-25) to Strength" }, } },
- ["StrengthUniqueOneHandSword8"] = { affix = "", "+(35-50) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(35-50) to Strength" }, } },
- ["StrengthUniqueGlovesStrInt2"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } },
- ["StrengthUniqueRing31__"] = { affix = "", "+(15-25) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-25) to Strength" }, } },
- ["StrengthUniqueClaw9"] = { affix = "", "+(10-15) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } },
- ["StrengthUniqueRing36"] = { affix = "", "+(30-40) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } },
- ["StrengthUnique__1"] = { affix = "", "+30 to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+30 to Strength" }, } },
- ["StrengthUnique___2"] = { affix = "", "+(30-50) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } },
- ["StrengthUnique__3"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } },
- ["StrengthUnique__4"] = { affix = "", "+30 to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+30 to Strength" }, } },
- ["StrengthUnique__5"] = { affix = "", "+(20-40) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-40) to Strength" }, } },
- ["StrengthUnique__6"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } },
- ["StrengthUnique__7_"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } },
- ["StrengthUnique__8"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } },
- ["StrengthUnique__9"] = { affix = "", "+(20-40) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-40) to Strength" }, } },
- ["StrengthUnique__10"] = { affix = "", "+(20-40) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-40) to Strength" }, } },
- ["StrengthUnique__11"] = { affix = "", "+(30-40) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } },
- ["StrengthUnique__12"] = { affix = "", "+200 to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+200 to Strength" }, } },
- ["StrengthUnique__13_"] = { affix = "", "+(60-120) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(60-120) to Strength" }, } },
- ["StrengthUnique__14"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } },
- ["StrengthUnique__15"] = { affix = "", "+20 to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+20 to Strength" }, } },
- ["StrengthUnique__16"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 65, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } },
- ["StrengthUnique__17"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 62, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } },
- ["StrengthUnique__18"] = { affix = "", "+(30-50) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } },
- ["StrengthUnique__19_"] = { affix = "", "+(20-40) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-40) to Strength" }, } },
- ["StrengthUnique__20_"] = { affix = "", "+20 to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+20 to Strength" }, } },
- ["StrengthUnique__21"] = { affix = "", "+(10-20) to Strength", statOrder = { 1182 }, level = 50, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } },
- ["StrengthUnique__22"] = { affix = "", "+(20-50) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-50) to Strength" }, } },
- ["StrengthUnique__23"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } },
- ["StrengthUnique__24"] = { affix = "", "+(20-30) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(20-30) to Strength" }, } },
- ["StrengthUnique__25"] = { affix = "", "+(30-40) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } },
- ["StrengthUnique__26"] = { affix = "", "+(30-50) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } },
- ["StrengthUnique__27"] = { affix = "", "+(30-50) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } },
- ["StrengthUnique__28"] = { affix = "", "+(30-40) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } },
- ["StrengthUnique__29"] = { affix = "", "+(30-40) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } },
- ["StrengthUnique__30"] = { affix = "", "+(30-40) to Strength", statOrder = { 1182 }, level = 75, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-40) to Strength" }, } },
- ["StrengthUnique__31"] = { affix = "", "+(15-35) to Strength", statOrder = { 1182 }, level = 40, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-35) to Strength" }, } },
- ["StrengthUnique__32"] = { affix = "", "+(30-50) to Strength", statOrder = { 1182 }, level = 100, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } },
- ["StrengthUnique__33"] = { affix = "", "+(15-25) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-25) to Strength" }, } },
- ["StrengthUnique__34"] = { affix = "", "+(15-25) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-25) to Strength" }, } },
- ["PercentageStrengthUniqueBootsStrInt2"] = { affix = "", "(15-18)% increased Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(15-18)% increased Strength" }, } },
- ["PercentageStrengthUniqueHelmetStrDex6"] = { affix = "", "(5-15)% increased Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(5-15)% increased Strength" }, } },
- ["PercentageStrengthUnique__1"] = { affix = "", "100% reduced Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "100% reduced Strength" }, } },
- ["PercentageStrengthUnique__3"] = { affix = "", "10% increased Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "10% increased Strength" }, } },
- ["PercentageStrengthUnique__4_"] = { affix = "", "10% reduced Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "10% reduced Strength" }, } },
- ["PercentageStrengthUnique__5"] = { affix = "", "(6-12)% increased Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(6-12)% increased Strength" }, } },
- ["PercentageStrengthImplicitMace1"] = { affix = "", "10% increased Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "10% increased Strength" }, } },
- ["DexterityImplicitAmulet1"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 7, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } },
- ["DexterityImplicitQuiver1"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1183 }, level = 15, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } },
- ["DexterityUniqueRing3"] = { affix = "", "+10 to Dexterity", statOrder = { 1183 }, level = 10, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } },
- ["DexterityUniqueBodyDex1"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } },
- ["DexterityUniqueBootsInt1"] = { affix = "", "+(5-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(5-30) to Dexterity" }, } },
- ["DexterityUniqueBootsStrDex1"] = { affix = "", "+(40-60) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-60) to Dexterity" }, } },
- ["DexterityUniqueBootsInt2"] = { affix = "", "+5 to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+5 to Dexterity" }, } },
- ["DexterityUniqueBootsInt3"] = { affix = "", "+10 to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } },
- ["DexterityUniqueGlovesDex2"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } },
- ["DexterityUniqueGlovesStrDex1"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } },
- ["DexterityUniqueAmulet7"] = { affix = "", "+10 to Dexterity", statOrder = { 1183 }, level = 10, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } },
- ["DexterityUniqueHelmetStrDex2"] = { affix = "", "+(50-65) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(50-65) to Dexterity" }, } },
- ["DexterityUniqueBootsDex1"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } },
- ["DexterityUniqueDagger3"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } },
- ["DexterityUniqueShieldStrInt2"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } },
- ["DexterityUniqueBow4"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } },
- ["DexterityUniqueBow6"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } },
- ["DexterityUniqueBootsDex3"] = { affix = "", "+15 to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+15 to Dexterity" }, } },
- ["DexterityUniqueBow7"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } },
- ["DexterityUniqueBodyDex4"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } },
- ["DexterityUniqueHelmetDex4"] = { affix = "", "+(50-70) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(50-70) to Dexterity" }, } },
- ["DexterityUniqueGlovesStrDex3"] = { affix = "", "+10 to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+10 to Dexterity" }, } },
- ["DexterityUniqueGlovesInt4__"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } },
- ["DexterityUniqueGlovesDexInt4"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } },
- ["DexterityUniqueHelmetStrDex3"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } },
- ["DexterityUniqueRing8"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } },
- ["DexterityUniqueBootsDex4_"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } },
- ["DexterityUniqueHelmetDexInt2"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } },
- ["DexterityUniqueBootsDexInt2"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } },
- ["DexterityUniqueBelt7"] = { affix = "", "+(40-55) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-55) to Dexterity" }, } },
- ["DexterityUniqueQuiver6"] = { affix = "", "+(35-45) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(35-45) to Dexterity" }, } },
- ["DexterityUniqueQuiver7"] = { affix = "", "+30 to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+30 to Dexterity" }, } },
- ["DexterityUniqueBootsDex8"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } },
- ["DexterityUniqueDagger11"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } },
- ["DexterityUniqueDagger12"] = { affix = "", "+20 to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+20 to Dexterity" }, } },
- ["DexterityUniqueClaw9"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } },
- ["DexterityUnique__1"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 53, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } },
- ["DexterityUniqueBootsDex9"] = { affix = "", "+(25-35) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(25-35) to Dexterity" }, } },
- ["DexterityUnique__2"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1183 }, level = 57, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } },
- ["DexterityUnique__3"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-50) to Dexterity" }, } },
- ["DexterityUnique__4"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } },
- ["DexterityUnique__5"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } },
- ["DexterityUnique__6"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-40) to Dexterity" }, } },
- ["DexterityUnique__7"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } },
- ["DexterityUnique__8"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } },
- ["DexterityUnique__9"] = { affix = "", "+25 to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+25 to Dexterity" }, } },
- ["DexterityUnique__10_"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } },
- ["DexterityUnique__11"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-50) to Dexterity" }, } },
- ["DexterityUnique__12"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } },
- ["DexterityUnique__13"] = { affix = "", "+20 to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+20 to Dexterity" }, } },
- ["DexterityUnique__14"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 65, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } },
- ["DexterityUnique__15"] = { affix = "", "+(40-80) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(40-80) to Dexterity" }, } },
- ["DexterityUnique__16"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } },
- ["DexterityUnique__17"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 62, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } },
- ["DexterityUnique__18"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-40) to Dexterity" }, } },
- ["DexterityUnique__19"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1183 }, level = 54, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } },
- ["DexterityUnique__20__"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-40) to Dexterity" }, } },
- ["DexterityUnique__21_"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1183 }, level = 50, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-20) to Dexterity" }, } },
- ["DexterityUnique__22"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-50) to Dexterity" }, } },
- ["DexterityUnique__23"] = { affix = "", "+(20-50) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-50) to Dexterity" }, } },
- ["DexterityUnique__24"] = { affix = "", "+(30-55) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-55) to Dexterity" }, } },
- ["DexterityUnique__25"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-50) to Dexterity" }, } },
- ["DexterityUnique__26"] = { affix = "", "+(5-10) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(5-10) to Dexterity" }, } },
- ["DexterityUnique__27"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-40) to Dexterity" }, } },
- ["DexterityUnique__28"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } },
- ["DexterityUnique__29"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } },
- ["DexterityUnique__30"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } },
- ["DexterityUnique__31"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1183 }, level = 20, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(20-30) to Dexterity" }, } },
- ["DexterityUnique__32"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(30-40) to Dexterity" }, } },
- ["DexterityUnique__34"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(15-25) to Dexterity" }, } },
- ["StrengthAndDexterityUnique_1"] = { affix = "", "+(25-40) to Strength and Dexterity", statOrder = { 1185 }, level = 1, group = "StrengthAndDexterity", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [538848803] = { "+(25-40) to Strength and Dexterity" }, } },
- ["PercentageDexterityUniqueBodyDex7"] = { affix = "", "15% increased Dexterity", statOrder = { 1190 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "15% increased Dexterity" }, } },
- ["PercentageDexterityUniqueHelmetStrDex6"] = { affix = "", "(5-15)% increased Dexterity", statOrder = { 1190 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(5-15)% increased Dexterity" }, } },
- ["PercentageDexterityUnique__1"] = { affix = "", "100% reduced Dexterity", statOrder = { 1190 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "100% reduced Dexterity" }, } },
- ["PercentageDexterityUnique__3"] = { affix = "", "(8-12)% increased Dexterity", statOrder = { 1190 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(8-12)% increased Dexterity" }, } },
- ["PercentageDexterityUnique__4"] = { affix = "", "(10-15)% increased Dexterity", statOrder = { 1190 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(10-15)% increased Dexterity" }, } },
- ["PercentageDexterityUnique__5"] = { affix = "", "15% increased Dexterity", statOrder = { 1190 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "15% increased Dexterity" }, } },
- ["IntelligenceUniqueOneHandSword2"] = { affix = "", "+10 to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+10 to Intelligence" }, } },
- ["IntelligenceImplicitAmulet1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 7, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } },
- ["IntelligenceUniqueRing4"] = { affix = "", "+(5-20) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-20) to Intelligence" }, } },
- ["IntelligenceUniqueBootsInt1"] = { affix = "", "+(5-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-30) to Intelligence" }, } },
- ["IntelligenceUniqueBootsInt3"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } },
- ["IntelligenceUniqueGlovesInt2"] = { affix = "", "+(20-50) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-50) to Intelligence" }, } },
- ["IntelligenceUniqueBelt1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } },
- ["IntelligenceUniqueWand1"] = { affix = "", "+10 to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+10 to Intelligence" }, } },
- ["IntelligenceUniqueBootsDex1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } },
- ["IntelligenceUniqueWand2"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } },
- ["IntelligenceUniqueBootsDex3"] = { affix = "", "+15 to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+15 to Intelligence" }, } },
- ["IntelligenceUniqueBodyInt3"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } },
- ["IntelligenceUniqueShieldDex3"] = { affix = "", "+(40-60) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-60) to Intelligence" }, } },
- ["IntelligenceUniqueBodyStrInt3"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } },
- ["IntelligenceUniqueGlovesInt3"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } },
- ["IntelligenceUniqueGlovesInt5"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } },
- ["IntelligenceUniqueHelmetInt5"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } },
- ["IntelligenceUniqueHelmetInt6"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-50) to Intelligence" }, } },
- ["IntelligenceUniqueHelmetWard1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } },
- ["IntelligenceUniqueRing13"] = { affix = "", "+(60-75) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(60-75) to Intelligence" }, } },
- ["IntelligenceUniqueOneHandAxe1"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } },
- ["IntelligenceUniqueSceptre5"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } },
- ["IntelligenceUniqueGlovesStr3"] = { affix = "", "+(60-80) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(60-80) to Intelligence" }, } },
- ["IntelligenceUniqueQuiver6"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } },
- ["IntelligenceUniqueShieldInt4"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } },
- ["IntelligenceUniqueStaff8"] = { affix = "", "+(80-120) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(80-120) to Intelligence" }, } },
- ["IntelligenceUniqueBelt11"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } },
- ["IntelligenceUniqueWand8"] = { affix = "", "+(10-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-30) to Intelligence" }, } },
- ["IntelligenceUniqueHelmetInt9"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } },
- ["IntelligenceUniqueDagger10_"] = { affix = "", "+(20-40) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-40) to Intelligence" }, } },
- ["IntelligenceUniqueRing34"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } },
- ["Intelligence__1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } },
- ["IntelligenceUnique__3"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } },
- ["IntelligenceUnique__4"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } },
- ["IntelligenceUnique__5"] = { affix = "", "+40 to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+40 to Intelligence" }, } },
- ["IntelligenceUnique__6"] = { affix = "", "+(20-40) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-40) to Intelligence" }, } },
- ["IntelligenceUnique__7"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } },
- ["IntelligenceUnique__8"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } },
- ["IntelligenceUnique__9"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-50) to Intelligence" }, } },
- ["IntelligenceUnique__10"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } },
- ["IntelligenceUnique__11"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-50) to Intelligence" }, } },
- ["IntelligenceUnique__12"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } },
- ["IntelligenceUnique__13"] = { affix = "", "+20 to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+20 to Intelligence" }, } },
- ["IntelligenceUnique__14"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 65, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } },
- ["IntelligenceUnique__15_"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } },
- ["IntelligenceUnique__16"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1184 }, level = 60, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } },
- ["IntelligenceUnique__17"] = { affix = "", "+(40-70) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-70) to Intelligence" }, } },
- ["IntelligenceUnique__18"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } },
- ["IntelligenceUnique__19"] = { affix = "", "+(30-50) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-50) to Intelligence" }, } },
- ["IntelligenceUnique__20"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } },
- ["IntelligenceUnique__21"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-10) to Intelligence" }, } },
- ["IntelligenceUnique__22_"] = { affix = "", "+(30-50) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-50) to Intelligence" }, } },
- ["IntelligenceUnique__23"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } },
- ["IntelligenceUnique__24"] = { affix = "", "-(25-15) to Intelligence", statOrder = { 1184 }, level = 28, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "-(25-15) to Intelligence" }, } },
- ["IntelligenceUnique__25"] = { affix = "", "+(20-40) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-40) to Intelligence" }, } },
- ["IntelligenceUnique__26_"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } },
- ["IntelligenceUnique__27"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } },
- ["IntelligenceUnique__28"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 1184 }, level = 50, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-20) to Intelligence" }, } },
- ["IntelligenceUnique__29"] = { affix = "", "+(20-50) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-50) to Intelligence" }, } },
- ["IntelligenceUnique__30"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1184 }, level = 62, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } },
- ["IntelligenceUnique__32"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(20-30) to Intelligence" }, } },
- ["IntelligenceUnique__33"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-40) to Intelligence" }, } },
- ["IntelligenceUnique__34"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(40-50) to Intelligence" }, } },
- ["IntelligenceUnique__35"] = { affix = "", "+(30-50) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(30-50) to Intelligence" }, } },
- ["IntelligenceUnique__36"] = { affix = "", "+(5-15) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-15) to Intelligence" }, } },
- ["IntelligenceUnique__37"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(15-25) to Intelligence" }, } },
- ["IntelligenceUnique__38"] = { affix = "", "+(23-32) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(23-32) to Intelligence" }, } },
- ["PercentageIntelligenceUniqueHelmetStrDex6"] = { affix = "", "(5-15)% increased Intelligence", statOrder = { 1191 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(5-15)% increased Intelligence" }, } },
- ["PercentageIntelligenceUniqueStaff12_"] = { affix = "", "(14-18)% increased Intelligence", statOrder = { 1191 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(14-18)% increased Intelligence" }, } },
- ["PercentageIntelligenceUnique__1"] = { affix = "", "100% reduced Intelligence", statOrder = { 1191 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "100% reduced Intelligence" }, } },
- ["PercentageIntelligenceUnique__3"] = { affix = "", "(8-12)% increased Intelligence", statOrder = { 1191 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(8-12)% increased Intelligence" }, } },
- ["PercentageIntelligenceUnique__4"] = { affix = "", "(5-8)% increased Intelligence", statOrder = { 1191 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(5-8)% increased Intelligence" }, } },
- ["PercentageIntelligenceUnique__5"] = { affix = "", "(1-7)% increased Intelligence", statOrder = { 1191 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(1-7)% increased Intelligence" }, } },
- ["AllAttributesImplicitAmulet1"] = { affix = "", "+(10-16) to all Attributes", statOrder = { 1181 }, level = 25, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-16) to all Attributes" }, } },
- ["AllAttributesUniqueAmulet8"] = { affix = "", "+(80-100) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(80-100) to all Attributes" }, } },
- ["AllAttributesUniqueBelt3"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1181 }, level = 20, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } },
- ["AllAttributesUniqueAmulet9"] = { affix = "", "+(20-40) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-40) to all Attributes" }, } },
- ["AllAttributesImplicitWreath1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(16-24) to all Attributes" }, } },
- ["AllAttributesUniqueRing6"] = { affix = "", "+(10-30) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-30) to all Attributes" }, } },
- ["AllAttributesUniqueHelmetStr3"] = { affix = "", "+(20-25) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-25) to all Attributes" }, } },
- ["AllAttributesTestUniqueAmulet1"] = { affix = "", "+500 to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+500 to all Attributes" }, } },
- ["AllAttributesUniqueBodyStr3"] = { affix = "", "+(40-50) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(40-50) to all Attributes" }, } },
- ["AllAttributesUniqueTwoHandMace7"] = { affix = "", "+(25-50) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(25-50) to all Attributes" }, } },
- ["AllAttributesImplicitDemigodRing1"] = { affix = "", "+(8-12) to all Attributes", statOrder = { 1181 }, level = 16, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(8-12) to all Attributes" }, } },
- ["AllAttributesImplicitDemigodOneHandSword1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(16-24) to all Attributes" }, } },
- ["AllAttributesUniqueRing26"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1181 }, level = 25, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } },
- ["AllAttributesUniqueHelmetStrInt5"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } },
- ["AllAttributesUniqueStaff10"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } },
- ["AllAttributesUniqueAmulet22"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } },
- ["AllAttributesUnique__1"] = { affix = "", "+(30-50) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(30-50) to all Attributes" }, } },
- ["AllAttributesUnique__2"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } },
- ["AllAttributesUnique__3"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } },
- ["AllAttributesUnique__4"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } },
- ["AllAttributesUnique__5"] = { affix = "", "+(25-75) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(25-75) to all Attributes" }, } },
- ["AllAttributesUnique__6"] = { affix = "", "+(8-24) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(8-24) to all Attributes" }, } },
- ["AllAttributesUnique__7"] = { affix = "", "+(15-30) to all Attributes", statOrder = { 1181 }, level = 57, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-30) to all Attributes" }, } },
- ["AllAttributesUnique__8_"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } },
- ["AllAttributesUnique__9"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } },
- ["AllAttributesUnique__10_"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } },
- ["AllAttributesUnique__11"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } },
- ["AllAttributesUnique__12"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } },
- ["AllAttributesUnique__13_"] = { affix = "", "+20 to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+20 to all Attributes" }, } },
- ["AllAttributesUnique__14"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-25) to all Attributes" }, } },
- ["AllAttributesUnique__15"] = { affix = "", "+(25-30) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(25-30) to all Attributes" }, } },
- ["AllAttributesUnique__16_"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-25) to all Attributes" }, } },
- ["AllAttributesUnique__17_"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1181 }, level = 65, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } },
- ["AllAttributesUnique__18"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } },
- ["AllAttributesUnique__19"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } },
- ["AllAttributesUnique__20"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(15-20) to all Attributes" }, } },
- ["AllAttributesUnique__21"] = { affix = "", "+(25-30) to all Attributes", statOrder = { 1181 }, level = 85, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(25-30) to all Attributes" }, } },
- ["AllAttributesUnique__22_"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1181 }, level = 60, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(20-30) to all Attributes" }, } },
- ["AllAttributesUnique__23"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 1181 }, level = 50, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-10) to all Attributes" }, } },
- ["AllAttributesUnique__24"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } },
- ["AllAttributesUnique__25"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } },
- ["AllAttributesUnique__26"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } },
- ["AllAttributesUnique__27"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } },
- ["AllAttributesUnique__28"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-15) to all Attributes" }, } },
- ["AllAttributesUnique__29"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1181 }, level = 85, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } },
- ["AllAttributesUnique__30"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(10-20) to all Attributes" }, } },
- ["AllAttributesUnique__31"] = { affix = "", "+(7-13) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(7-13) to all Attributes" }, } },
- ["IncreasedLifeImplicitShield1"] = { affix = "", "+(10-20) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-20) to maximum Life" }, } },
- ["IncreasedLifeImplicitShield2"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } },
- ["IncreasedLifeImplicitShield3"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } },
- ["IncreasedLifeUniqueRing1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } },
- ["IncreasedLifeUniqueOneHandSword1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } },
- ["IncreasedLifeUniqueHelmetStr1"] = { affix = "", "+(25-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-50) to maximum Life" }, } },
- ["IncreasedLifeImplicitRing1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1574 }, level = 2, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } },
- ["IncreasedLifeImplicitBelt1"] = { affix = "", "+(25-40) to maximum Life", statOrder = { 1574 }, level = 10, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-40) to maximum Life" }, } },
- ["IncreasedLifeUniqueBodyStr1"] = { affix = "", "+1000 to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+1000 to maximum Life" }, } },
- ["IncreasedLifeUniqueAmulet4"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } },
- ["IncreasedLifeUniqueShieldDex2"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUniqueShieldStr1"] = { affix = "", "+(160-180) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(160-180) to maximum Life" }, } },
- ["IncreasedLifeUniqueBootsInt4"] = { affix = "", "+20 to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+20 to maximum Life" }, } },
- ["IncreasedLifeUniqueShieldStr2"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } },
- ["IncreasedLifeUniqueTwoHandAxe4"] = { affix = "", "+100 to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+100 to maximum Life" }, } },
- ["IncreasedLifeUniqueBodyDexInt1"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUniqueHelmetDex4"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } },
- ["IncreasedLifeUniqueBodyInt5"] = { affix = "", "+(25-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-50) to maximum Life" }, } },
- ["IncreasedLifeUniqueGlovesInt3"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["ReducedLifeUniqueGlovesDexInt4"] = { affix = "", "-20 to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "-20 to maximum Life" }, } },
- ["IncreasedLifeUniqueHelmetStrDex4"] = { affix = "", "+(200-300) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(200-300) to maximum Life" }, } },
- ["IncreasedLifeUniqueAmulet14"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1574 }, level = 40, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } },
- ["IncreasedLifeUniqueTwoHandMace6"] = { affix = "", "+(35-40) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(35-40) to maximum Life" }, } },
- ["IncreasedLifeUniqueBodyDex6"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } },
- ["IncreasedLifeUniqueHelmetDexInt2"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } },
- ["IncreasedLifeUniqueHelmetDex5"] = { affix = "", "+(10-20) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-20) to maximum Life" }, } },
- ["IncreasedLifeUniqueBodyStrDex3_"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } },
- ["IncreasedLifeUniqueShieldStrInt6"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } },
- ["IncreasedLifeUniqueBodyStrDex2"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUniqueBootsDex6"] = { affix = "", "+(35-45) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(35-45) to maximum Life" }, } },
- ["IncreasedLifeUniqueRing19"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } },
- ["IncreasedLifeUniqueBelt7"] = { affix = "", "+(50-60) to maximum Life", statOrder = { 1574 }, level = 50, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-60) to maximum Life" }, } },
- ["IncreasedLifeUniqueBelt8"] = { affix = "", "+(75-100) to maximum Life", statOrder = { 1574 }, level = 63, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(75-100) to maximum Life" }, } },
- ["IncreasedLifeUniqueBodyStr2"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } },
- ["IncreasedLifeUniqueDescentShield1"] = { affix = "", "+15 to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+15 to maximum Life" }, } },
- ["IncreasedLifeUniqueDescentHelmet1"] = { affix = "", "+10 to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+10 to maximum Life" }, } },
- ["IncreasedLifeUniqueWand4"] = { affix = "", "+(15-20) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(15-20) to maximum Life" }, } },
- ["IncreasedLifeImplicitGlovesDemigods1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } },
- ["IncreasedLifeUniqueOneHandAxe3"] = { affix = "", "+(10-15) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-15) to maximum Life" }, } },
- ["IncreasedLifeUniqueBootsStrDex3"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } },
- ["IncreasedLifeUniqueGlovesDexInt5"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } },
- ["IncreasedLifeUniqueHelmetStrDex5"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUniqueGlovesStrDex4"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUniqueQuiver3"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } },
- ["IncreasedLifeUniqueBootsDex7"] = { affix = "", "+(55-75) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(55-75) to maximum Life" }, } },
- ["IncreasedLifeUniqueGlovesStr3"] = { affix = "", "+(60-75) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-75) to maximum Life" }, } },
- ["IncreasedLifeUniqueBodyStrDexInt1"] = { affix = "", "+(90-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(90-100) to maximum Life" }, } },
- ["IncreasedLifeUniqueBodyStrInt5"] = { affix = "", "+(80-90) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-90) to maximum Life" }, } },
- ["IncreasedLifeUniqueBootsStr2"] = { affix = "", "+(150-200) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(150-200) to maximum Life" }, } },
- ["IncreasedLifeUniqueShieldDexInt1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUniqueShieldDex5"] = { affix = "", "+(70-90) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-90) to maximum Life" }, } },
- ["IncreasedLifeUniqueBodyStrDex4"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } },
- ["IncreasedLifeUniqueGlovesStrInt2"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUniqueShieldDex6"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUniqueShieldStrDex7"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUniqueAmulet18"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } },
- ["IncreasedLifeUniqueQuiver9"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUniqueBelt13"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } },
- ["IncreasedLifeUniqueBodyStrDex5"] = { affix = "", "+(200-300) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(200-300) to maximum Life" }, } },
- ["IncreasedLifeUniqueRing28"] = { affix = "", "+(20-40) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-40) to maximum Life" }, } },
- ["IncreasedLifeUniqueAmulet19"] = { affix = "", "+(40-80) to maximum Life", statOrder = { 1574 }, level = 60, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-80) to maximum Life" }, } },
- ["IncreasedLifeUniqueRing32"] = { affix = "", "+(0-60) to maximum Life", statOrder = { 1574 }, level = 82, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(0-60) to maximum Life" }, } },
- ["IncreasedLifeFireResistUniqueBelt14"] = { affix = "", "+(70-85) to maximum Life", statOrder = { 1574 }, level = 65, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-85) to maximum Life" }, } },
- ["IncreasedLifeUniqueBodyDexInt3"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUniqueAmulet22"] = { affix = "", "+(20-40) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-40) to maximum Life" }, } },
- ["IncreasedLifeUniqueBodyStr6"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } },
- ["IncreasedLifeUniqueBodyStrInt6"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } },
- ["IncreasedLifeUniqueBodyStrInt7"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } },
- ["IncreasedLifeUniqueOneHandMace7"] = { affix = "", "+70 to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+70 to maximum Life" }, } },
- ["IncreasedLifeUniqueShieldStr4"] = { affix = "", "+(50-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-60) to maximum Life" }, } },
- ["IncreasedLifeUniqueShieldStr5"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } },
- ["IncreasedLifeUniqueBootsStr3_"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__15"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } },
- ["IncreasedLifeUnique__4"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } },
- ["IncreasedLifeUnique__5"] = { affix = "", "+(20-40) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-40) to maximum Life" }, } },
- ["IncreasedLifeUnique__6"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUniqueAmulet25"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__1"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } },
- ["IncreasedLifeUnique__2"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__3"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUnique___7"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__8"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } },
- ["IncreasedLifeUnique__9"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__10"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } },
- ["IncreasedLifeUnique__11"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } },
- ["IncreasedLifeUnique__12_"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUniqueBootsDex9__"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__14"] = { affix = "", "+(45-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(45-60) to maximum Life" }, } },
- ["IncreasedLifeUnique__13"] = { affix = "", "+(40-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__16"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } },
- ["IncreasedLifeUnique__18"] = { affix = "", "+(35-45) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(35-45) to maximum Life" }, } },
- ["IncreasedLifeUnique__19"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } },
- ["IncreasedLifeUnique__20"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } },
- ["IncreasedLifeUnique__21"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } },
- ["IncreasedLifeUnique__22"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 1574 }, level = 50, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-150) to maximum Life" }, } },
- ["IncreasedLifeUnique__23"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__24"] = { affix = "", "+(90-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(90-100) to maximum Life" }, } },
- ["IncreasedLifeUnique__25"] = { affix = "", "+(25-35) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-35) to maximum Life" }, } },
- ["IncreasedLifeUnique__26"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } },
- ["IncreasedLifeUnique__27"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } },
- ["IncreasedLifeUnique__28"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__29"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } },
- ["IncreasedLifeUnique__30"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } },
- ["IncreasedLifeUnique__31"] = { affix = "", "+(65-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(65-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__32"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } },
- ["IncreasedLifeUnique__33"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-100) to maximum Life" }, } },
- ["IncreasedLifeUnique__34"] = { affix = "", "+(240-300) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(240-300) to maximum Life" }, } },
- ["IncreasedLifeUnique__35"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } },
- ["IncreasedLifeUnique__36_"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } },
- ["IncreasedLifeUnique__37"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } },
- ["IncreasedLifeUnique__38"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__39"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-30) to maximum Life" }, } },
- ["IncreasedLifeUnique__40"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } },
- ["IncreasedLifeUnique__41"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } },
- ["IncreasedLifeUnique__42_"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__43"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__44"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__45"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__46"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__47"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } },
- ["IncreasedLifeUnique__48"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } },
- ["IncreasedLifeUnique__49_"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__50"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__51"] = { affix = "", "+(90-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(90-100) to maximum Life" }, } },
- ["IncreasedLifeUnique__52"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__53"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 75, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__54"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__55"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__56"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__57"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__58"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__59"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__60"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__61"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } },
- ["IncreasedLifeUnique__62"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__63_"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__64"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__65"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 81, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__66"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__67_"] = { affix = "", "+(50-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-60) to maximum Life" }, } },
- ["IncreasedLifeUnique__68_"] = { affix = "", "+(50-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-60) to maximum Life" }, } },
- ["IncreasedLifeUnique__69"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-60) to maximum Life" }, } },
- ["IncreasedLifeUnique__70"] = { affix = "", "+(90-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(90-100) to maximum Life" }, } },
- ["IncreasedLifeUnique__71"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-60) to maximum Life" }, } },
- ["IncreasedLifeUnique__72_"] = { affix = "", "+(100-120) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-120) to maximum Life" }, } },
- ["IncreasedLifeUnique__73"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__74"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } },
- ["IncreasedLifeUnique__75"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__76"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__77"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } },
- ["IncreasedLifeUnique__78"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__79"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__80_"] = { affix = "", "+(20-60) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-60) to maximum Life" }, } },
- ["IncreasedLifeUnique__81"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } },
- ["IncreasedLifeUnique__82"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } },
- ["IncreasedLifeUnique__83"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__84"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__85_"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__86_"] = { affix = "", "+(100-120) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-120) to maximum Life" }, } },
- ["IncreasedLifeUnique__87"] = { affix = "", "+23 to maximum Life", statOrder = { 1574 }, level = 25, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+23 to maximum Life" }, } },
- ["IncreasedLifeUnique__88"] = { affix = "", "+(50-175) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-175) to maximum Life" }, } },
- ["IncreasedLifeUnique__89"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__90"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } },
- ["IncreasedLifeUnique__91"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } },
- ["IncreasedLifeUnique__92_"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__93"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__94"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__95"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__96__"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__97"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__98"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__99"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__100"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } },
- ["IncreasedLifeUnique__101"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } },
- ["IncreasedLifeUnique__102"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__103"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 77, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__104_"] = { affix = "", "+100 to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+100 to maximum Life" }, } },
- ["IncreasedLifeUnique__105"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__106_"] = { affix = "", "+(120-160) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(120-160) to maximum Life" }, } },
- ["IncreasedLifeUnique__107"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } },
- ["IncreasedLifeUnique__108"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } },
- ["IncreasedLifeUnique__109_"] = { affix = "", "+(45-65) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(45-65) to maximum Life" }, } },
- ["IncreasedLifeUnique__110"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__111__"] = { affix = "", "+(40-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__112"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } },
- ["IncreasedLifeUnique__113"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__114"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__115"] = { affix = "", "+(50-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-100) to maximum Life" }, } },
- ["IncreasedLifeUnique__116"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } },
- ["IncreasedLifeUnique__117"] = { affix = "", "+(-200-200) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(-200-200) to maximum Life" }, } },
- ["IncreasedLifeUnique__118"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-50) to maximum Life" }, } },
- ["IncreasedLifeUnique__119"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(50-70) to maximum Life" }, } },
- ["IncreasedLifeUnique__120"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__121"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__122"] = { affix = "", "+(25-30) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(25-30) to maximum Life" }, } },
- ["IncreasedLifeUnique__123"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1574 }, level = 25, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-50) to maximum Life" }, } },
- ["IncreasedLifeUnique__124"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } },
- ["IncreasedLifeUnique__125"] = { affix = "", "+(1-100) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(1-100) to maximum Life" }, } },
- ["IncreasedLifeUnique__126"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1574 }, level = 98, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-90) to maximum Life" }, } },
- ["IncreasedLifeUnique__127"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1574 }, level = 70, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(80-100) to maximum Life" }, } },
- ["IncreasedManaImplicitRing1"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1584 }, level = 2, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } },
- ["IncreasedManaImplicitArmour1"] = { affix = "", "+(20-25) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-25) to maximum Mana" }, } },
- ["IncreasedManaUniqueAmulet1"] = { affix = "", "+(40-70) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-70) to maximum Mana" }, } },
- ["IncreasedManaUniqueBow1"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-100) to maximum Mana" }, } },
- ["IncreasedManaUniqueTwoHandSword2"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } },
- ["IncreasedManaUniqueQuiver1"] = { affix = "", "+(10-30) to maximum Mana", statOrder = { 1584 }, level = 28, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(10-30) to maximum Mana" }, } },
- ["IncreasedManaUniqueQuiver1a"] = { affix = "", "+(10-30) to maximum Mana", statOrder = { 1584 }, level = 28, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(10-30) to maximum Mana" }, } },
- ["IncreasedManaUniqueDexHelmet1"] = { affix = "", "+(15-30) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-30) to maximum Mana" }, } },
- ["IncreasedManaUniqueIntHelmet3"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } },
- ["IncreasedManaUniqueGlovesStr1"] = { affix = "", "(10-15)% reduced maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(10-15)% reduced maximum Mana" }, } },
- ["IncreasedManaUniqueHelmetInt4"] = { affix = "", "+(25-75) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-75) to maximum Mana" }, } },
- ["IncreasedManaUniqueBootsInt4"] = { affix = "", "+20 to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+20 to maximum Mana" }, } },
- ["IncreasedManaUniqueShieldInt2"] = { affix = "", "+(15-25) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-25) to maximum Mana" }, } },
- ["IncreasedManaUniqueDagger4"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } },
- ["IncreasedManaUniqueBodyInt5"] = { affix = "", "+(25-50) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-50) to maximum Mana" }, } },
- ["IncreasedManaUniqueBootsInt5"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } },
- ["IncreasedManaUniqueGlovesInt3"] = { affix = "", "+(60-80) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-80) to maximum Mana" }, } },
- ["IncreasedManaUniqueAmulet10"] = { affix = "", "+100 to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+100 to maximum Mana" }, } },
- ["IncreasedManaUniqueWand3"] = { affix = "", "+(40-50) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-50) to maximum Mana" }, } },
- ["IncreasedManaUniqueBelt5"] = { affix = "", "+(45-55) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(45-55) to maximum Mana" }, } },
- ["IncreasedManaUniqueRing14"] = { affix = "", "+(25-30) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-30) to maximum Mana" }, } },
- ["IncreasedManaUniqueHelmetDexInt2"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } },
- ["IncreasedManaUniqueHelmetStrInt3"] = { affix = "", "+(100-120) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-120) to maximum Mana" }, } },
- ["IncreasedManaUniqueClaw7"] = { affix = "", "+(30-40) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-40) to maximum Mana" }, } },
- ["IncreasedManaUniqueRing20"] = { affix = "", "+(30-40) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-40) to maximum Mana" }, } },
- ["IncreasedManaUniqueHelmetDexInt3"] = { affix = "", "+(30-40) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-40) to maximum Mana" }, } },
- ["IncreasedManaUniqueBodyDexInt2"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-150) to maximum Mana" }, } },
- ["IncreasedManaUniqueSceptre6"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } },
- ["IncreasedManaUniqueWand4"] = { affix = "", "+(15-20) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-20) to maximum Mana" }, } },
- ["IncreasedManaUniqueBootsStrDex4"] = { affix = "", "+(20-40) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-40) to maximum Mana" }, } },
- ["IncreasedManaUniqueBootsStrDex3"] = { affix = "", "+(10-20) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(10-20) to maximum Mana" }, } },
- ["IncreasedManaUniqueRing17"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } },
- ["IncreasedManaUniqueHelmetStrDex5_"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } },
- ["IncreasedManaUniqueBodyInt9"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } },
- ["IncreasedManaUniqueAmulet18"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } },
- ["IncreasedManaUniqueRing29"] = { affix = "", "+(20-40) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-40) to maximum Mana" }, } },
- ["IncreasedManaUniqueHelmetInt8"] = { affix = "", "+(30-60) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-60) to maximum Mana" }, } },
- ["IncreasedManaUniqueAmulet19"] = { affix = "", "+(20-40) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-40) to maximum Mana" }, } },
- ["IncreasedManaUniqueTwoHandAxe9"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(100-150) to maximum Mana" }, } },
- ["IncreasedManaUniqueBodyStrInt6"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } },
- ["IncreasedManaUniqueOneHandMace7"] = { affix = "", "+70 to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+70 to maximum Mana" }, } },
- ["IncreasedManaUnique__3"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } },
- ["IncreasedManaUnique__1"] = { affix = "", "+(60-120) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-120) to maximum Mana" }, } },
- ["IncreasedManaUnique__2"] = { affix = "", "+30 to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+30 to maximum Mana" }, } },
- ["IncreasedManaUnique__4"] = { affix = "", "+(80-120) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-120) to maximum Mana" }, } },
- ["IncreasedManaUnique__5"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } },
- ["IncreasedManaUnique__6"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } },
- ["IncreasedManaUnique__7"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1584 }, level = 24, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } },
- ["IncreasedManaUnique__8"] = { affix = "", "+(30-60) to maximum Mana", statOrder = { 1584 }, level = 28, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-60) to maximum Mana" }, } },
- ["IncreasedManaUnique__9"] = { affix = "", "+(50-80) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-80) to maximum Mana" }, } },
- ["IncreasedManaUnique__10"] = { affix = "", "+(150-200) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(150-200) to maximum Mana" }, } },
- ["IncreasedManaUnique__12"] = { affix = "", "+(20-50) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-50) to maximum Mana" }, } },
- ["IncreasedManaUnique__13"] = { affix = "", "+(50-60) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-60) to maximum Mana" }, } },
- ["IncreasedManaUnique__14"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } },
- ["IncreasedManaUnique__15"] = { affix = "", "+(1-75) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(1-75) to maximum Mana" }, } },
- ["IncreasedManaUnique__16"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(30-50) to maximum Mana" }, } },
- ["IncreasedManaUnique__17"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-100) to maximum Mana" }, } },
- ["IncreasedManaUnique__18"] = { affix = "", "+(1-100) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(1-100) to maximum Mana" }, } },
- ["IncreasedManaUnique__19"] = { affix = "", "+500 to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+500 to maximum Mana" }, } },
- ["IncreasedManaUnique__20_"] = { affix = "", "+(120-160) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(120-160) to maximum Mana" }, } },
- ["IncreasedManaUnique__21"] = { affix = "", "+(40-70) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-70) to maximum Mana" }, } },
- ["IncreasedManaUnique__22__"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(50-70) to maximum Mana" }, } },
- ["IncreasedManaUnique__23"] = { affix = "", "+(40-70) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-70) to maximum Mana" }, } },
- ["IncreasedManaUnique__24"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } },
- ["IncreasedManaUnique__25"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-60) to maximum Mana" }, } },
- ["IncreasedManaUnique__26"] = { affix = "", "+(150-200) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(150-200) to maximum Mana" }, } },
- ["IncreasedManaUnique__27"] = { affix = "", "+(60-80) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-80) to maximum Mana" }, } },
- ["IncreasedManaUnique__28"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(60-100) to maximum Mana" }, } },
- ["IncreasedManaUnique__29"] = { affix = "", "+(20-25) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-25) to maximum Mana" }, } },
- ["IncreasedManaUnique__30"] = { affix = "", "+(40-70) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(40-70) to maximum Mana" }, } },
- ["IncreasedManaUnique__31"] = { affix = "", "+(55-70) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(55-70) to maximum Mana" }, } },
- ["IncreasedEnergyShieldImplicitBelt1"] = { affix = "", "+(9-20) to maximum Energy Shield", statOrder = { 1563 }, level = 2, group = "EnergyShieldImplicit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(9-20) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldImplicitBelt2"] = { affix = "", "+(60-80) to maximum Energy Shield", statOrder = { 1563 }, level = 99, group = "EnergyShieldImplicit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(60-80) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldUniqueClaw1"] = { affix = "", "+(200-300) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(200-300) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldUniqueDagger4"] = { affix = "", "+50 to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+50 to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldUniqueGlovesInt6"] = { affix = "", "+15 to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+15 to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldImplicitRing1"] = { affix = "", "+(15-25) to maximum Energy Shield", statOrder = { 1563 }, level = 25, group = "EnergyShieldImplicit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(15-25) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldUniqueAmulet14"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1563 }, level = 40, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(20-30) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldUniqueBelt5"] = { affix = "", "+(60-70) to maximum Energy Shield", statOrder = { 1563 }, level = 70, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(60-70) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldUniqueRing18"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 1563 }, level = 25, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(30-40) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldUniqueBodyStrDexInt1"] = { affix = "", "+(70-80) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(70-80) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldUniqueQuiver7"] = { affix = "", "+(100-120) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(100-120) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldUniqueBelt11"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(20-30) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldUniqueRing27"] = { affix = "", "+(15-25) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(15-25) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldUniqueRing35"] = { affix = "", "+(15-25) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(15-25) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldUnique___1"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(20-30) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldUnique__2"] = { affix = "", "+35 to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+35 to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldUnique__3"] = { affix = "", "+(70-150) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(70-150) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldUnique__4"] = { affix = "", "+(75-80) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(75-80) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldUnique__5"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(30-40) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldUnique__6"] = { affix = "", "+250 to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+250 to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldUnique__7"] = { affix = "", "+(80-120) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(80-120) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldUnique__8"] = { affix = "", "+(40-45) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(40-45) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldUnique__9"] = { affix = "", "+(50-70) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(50-70) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldUnique__10"] = { affix = "", "+(60-70) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(60-70) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldUnique__11"] = { affix = "", "+(30-35) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(30-35) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldUnique__12"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(40-60) to maximum Energy Shield" }, } },
- ["IncreasedEnergyShieldUnique__13"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(40-60) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUniqueBootsDex1"] = { affix = "", "+(100-150) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-150) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUniqueBodyInt5"] = { affix = "", "+(30-60) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-60) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUniqueHelmetDexInt5"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-40) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUniqueBodyInt9"] = { affix = "", "(200-220)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(200-220)% increased Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUniqueBootsDex8"] = { affix = "", "+(15-30) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(15-30) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUniqueHelmetStrInt5_"] = { affix = "", "+(50-70) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-70) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUniqueGlovesStr4"] = { affix = "", "+(80-100) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(80-100) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUniqueShieldInt5"] = { affix = "", "+(70-90) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(70-90) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUniqueBootsDexInt4"] = { affix = "", "+(80-100) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(80-100) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShiledUniqueBootsInt6"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(20-30) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergySheildUnique__2_"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-40) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique___4"] = { affix = "", "+20 to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+20 to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__5"] = { affix = "", "+(40-50) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-50) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__6"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(20-30) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__7"] = { affix = "", "+(150-200) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(150-200) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__8"] = { affix = "", "+(110-130) to maximum Energy Shield", statOrder = { 1564 }, level = 65, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(110-130) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__9"] = { affix = "", "+(100-120) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-120) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__10"] = { affix = "", "+(50-70) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-70) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__11"] = { affix = "", "+(30-45) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-45) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__12"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__13_"] = { affix = "", "+40 to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+40 to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__14"] = { affix = "", "+(50-80) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-80) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__15"] = { affix = "", "+(130-160) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(130-160) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__16"] = { affix = "", "+(90-110) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(90-110) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__17__"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-50) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__18_"] = { affix = "", "+(64-96) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(64-96) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__19"] = { affix = "", "+(180-200) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(180-200) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__20"] = { affix = "", "+(15-50) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(15-50) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__21"] = { affix = "", "+(80-100) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(80-100) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__22"] = { affix = "", "+(130-150) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(130-150) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__23"] = { affix = "", "+(60-80) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(60-80) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__24_"] = { affix = "", "+(160-180) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(160-180) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__25"] = { affix = "", "+(100-120) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-120) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__26"] = { affix = "", "+(40-80) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-80) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__27_"] = { affix = "", "+(50-90) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-90) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__28"] = { affix = "", "+(50-70) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-70) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__29"] = { affix = "", "+(15-20) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(15-20) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__30__"] = { affix = "", "+(150-200) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(150-200) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__31"] = { affix = "", "+(30-60) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-60) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__32"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(30-50) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__33"] = { affix = "", "+(100-200) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-200) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__34"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } },
- ["LocalIncreasedEnergyShieldUnique__35"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(40-60) to maximum Energy Shield" }, } },
- ["AddedPhysicalDamageImplicitRing1"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 1271 }, level = 2, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 4 Physical Damage to Attacks" }, } },
- ["AddedPhysicalDamageImplicitRing2"] = { affix = "", "Adds (3-4) to (10-14) Physical Damage to Attacks", statOrder = { 1271 }, level = 100, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-4) to (10-14) Phys